﻿
@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 */


.status-container > .dnnClear {
    border-top: 1px solid #eee;
    padding: 20px;
}

    .status-container > .dnnClear > ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

        .status-container > .dnnClear > ul > li {
            margin: 0;
            padding: 0 8px 0 10px;
            list-style-type: none;
            display: inline-block;
            border-left: 1px solid #ddd;
        }

            .status-container > .dnnClear > ul > li:first-child {
                padding-left: 0;
                border-left: none;
            }


.list-tbl td {
    padding: 15px;
}

div.blog-list-title a.dnnSocialLink {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: bold;
}

div.blog-list-title ul.blog-list-title-detail {
    display: block;
    margin: 0;
    padding: 0;
}

    div.blog-list-title ul.blog-list-title-detail li {
        list-style-type: none;
        display: inline-block;
        padding: 0 5px 0 5px;
        border-left: 1px solid #bbb;
    }

        div.blog-list-title ul.blog-list-title-detail li:first-child {
            padding: 0 5px 0 0;
            border-left: none;
        }

.list-row .blog-list-summary {
    margin-bottom: 15px;
    word-wrap: break-word;
}

.blog-list-summary p {
    margin-bottom: 0;
}

.list-row .blog-list-author-avatar {
    width: 55px;
    float: left;
}

.detail-main-container.blog-author {
    padding-top: 0;
}

.blog-author-bio {
    padding: 15px;
    background-color: rgb(238, 238, 238);
}

.blog-author-all .blog-comments-author {
    margin-bottom: 12px;
    display: block;
}

.blog-author-all > p {
    margin: 0 0 12px 0;
}

.blog-author-all a.dnnSocialLink {
    font-weight: bold;
}

.blog-author-bio .avatar40 {
    float: left;
    margin-right: 20px;
}

.blog-author-all {
    margin-left: 60px;
    padding: 0 20px 0 10px;
}

.blog-content-summary {
    padding: 15px;
    background: #eaeaea;
    margin: 20px 0 20px 0;
}

    .blog-content-summary > p {
        margin: 12px 0 0 0;
    }

        .blog-content-summary > p:first-child {
            margin: 0;
        }

.moduleThreadContainer .detail-content-edit {
    margin: 20px 25px 10px 25px;
}

	.moduleThreadContainer .detail-content-edit a {
		display: inline-block;
	    margin-left: 0;
	}

.blog-content-container {
    margin: 20px 0 20px 0;
    word-wrap: break-word;
}

    .blog-content-container img {
        max-width: 100% !important;
    }

    .blog-content-container p {
        margin: 0 0 15px 0;
    }


.blog-comment-container > h3 {
    font-family: arial;
    font-size: 20px;
    font-weight: normal;
    padding: 20px;
}


.dnnBlogEditEntry {
    margin-top: 20px;
    padding: 10px;
    background: #fff;
}

    .dnnBlogEditEntry .dnnLabel {
        width: 110px;
        padding: 0;
    }

.editorContainer {
    padding: 0;
    margin: 8px 0 0 0;
}

    .editorContainer .redactor-box {
        display: block;
        margin-bottom: 18px;
    }

.blog-settings-dialog {
    display: none;
}

.blog-settings-container {
    padding: 20px 0;
}

    .blog-settings-container .dnnMultipleControls,
    .blog-entry-form-container .dnnMultipleControls {
        width: 57%;
        display: inline-block;
        padding: 12px;
    }

#postFields.blog-settings-container  .dnnFormItem .dnnMultipleControls select {
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
    display: block;
    width: 100%;
}

.blog-settings-container .dnnMultipleControls p,
.blog-entry-form-container .dnnMultipleControls p {
    margin: 0;
}

    .blog-settings-container .dnnMultipleControls p.dnnRight,
    .blog-entry-form-container .dnnMultipleControls p.dnnRight {
        width: 92%;
        margin-top: 2px;
    }
    .blog-entry-form-container .dnnMultipleControls span.normalCheckBox {
        display: inline-block;
        margin-top: 2px;
    }

.blog-meta-url {
    padding: 20px;
    background-color: #eee;
    margin: 0 38px 20px 38px;
}

.blog-entry-form-container .dnnFormItem .dnnMultipleControls .entry-publishdate {
    width: 120px;
}

.blog-entry-form-container .dnnMultipleControls div.timeInput {
    display: inline-block;
    margin-left: 4px;
}

.blog-entry-form-container .dnnMultipleControls.blog-author-select {
    padding: 12px;
    margin: 20px 0 20px 0;
    width: 100%;
}

    .blog-entry-form-container .dnnMultipleControls.blog-author-select p {
        margin: 0 0 12px 0;
    }

    .blog-entry-form-container .dnnMultipleControls.blog-author-select select {
        -webkit-box-sizing: border-box; 
        -moz-box-sizing: border-box;    
        box-sizing: border-box;
        width: 100%;
        display: block;        
    }

.blog-entry-form-container .dnnFormItem input[type="text"],
.blog-entry-form-container .dnnFormItem select {
    width: 57%;
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;    
    box-sizing: border-box;         
}

span.timeIndicator {
    background-image: url("/DesktopModules/DNNCorp/Blogs/images/timepicker.png");
    background-position: 0 11px;
    background-repeat: no-repeat;
    display: inline-block;
    height: 30px;
    vertical-align: top;
    width: 20px;
}

.blog-entry-form-container .dnnMultipleControls div.timeInput select {
    margin-bottom: 10px;
    display: inline-block;
    padding: 7px;
    width: 60px !important;
}

.dnnMultipleControlsFormItem .dnnLabel {
    margin-top: 20px;
}

.dnnFormItemCheckbox.dnnMultipleControlsFormItem .dnnLabel {
    margin-top: 15px;
}

/* Roster */
.blogRoster ul.tagCollections {
    list-style-type: none;
    margin: 15px 0 10px 0;
}

    .blogRoster ul.tagCollections li {
        list-style-type: none;
        margin: 0 0 0 0;
        padding: 2px;
    }

        .blogRoster ul.tagCollections li a {
            display: block;
            font-weight: bold;
        }

        .blogRoster ul.tagCollections li .blog-selected {
            padding: 2px 4px 2px 4px;
            background-color: rgb(238, 238, 238);
            border-radius: 4px;
            margin-right: 26px;
            margin-left: -4px;
        }

        .blogRoster ul.pager-ul li.pager-ul-desc~li{
            display: none;
        }


a.blog-social-rss {
    float: right;
    background-image: url("/DesktopModules/DNNCorp/Blogs/Images/rss.png");
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin: -26px 0 0 0;
}

    a.blog-social-rss:hover {
        background-image: url("/DesktopModules/DNNCorp/Blogs/Images/rssSelect.png");
    }

.blogRoster li a.blog-social-rss {
    margin: -21px -4px 0 0;
}

div.comments-disabled-message {
    margin-bottom: 0;
}

/* blog list view - summary image */
.list-row .blog-entry-image {
    float: left;
    width: 120px;
    height: 120px;
}

    .list-row .blog-entry-image span {
        display: inline-block;
        border: transparent;
        text-decoration: none;
        height: 120px;
        width: 120px;
        overflow: hidden;
    }

    .list-row .blog-entry-image em {
        display: table-cell;
        width: 120px;
        height: 120px;
        vertical-align: middle;
    }

    .list-row .blog-entry-image img {
        display: inline-block;
        border: none;
        width: 100%;
    }

    .list-row .blog-entry-image + div {
        margin-left: 140px;
    }

    .list-row .blog-entry-image.hide {
        display: none;
    }

    .list-row .blog-entry-image.hide + div {
        margin-left: 0;
    }

/* blog detail view - summary image */
.detail-main-container .blog-entry-image {
    margin-bottom: 15px;
}

    .detail-main-container .blog-entry-image img {
        max-width: 100%;
    }

/* strange tags seperator issue in this module list view*/
.list-row ul.list-row-tags a {
    margin-right: 0;
}

.editorContainer .redactor-box .redactor-editor {
    min-height: 300px;
    max-height: inherit;
    height: auto;
}




.status-container .loading {
    height: 35px;
    background-image: url("/DesktopModules/DNNCorp/MyStatus/Images/horizontal-loading.gif");
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.65;
}

.status-container * a.disabled {
    opacity: 0.65;
}

.status-container * ul > li {
    list-style-type: none;
}

.status-container .logout {
    float: right;
    font-weight: bold;
    padding: 20px;
}

/* Compact View Styles */
.status-compact-container .status-profile-container {
    background-color: #F5F4F2; /* fallback */
    background-repeat: repeat-x;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#f6f2f1)); /* Safari 4-5, Chrome 1-9 */
    background: -webkit-linear-gradient(top, #fff, #f6f2f1); /* Safari 5.1, Chrome 10+ */
    background: -moz-linear-gradient(top, #fff, #f6f2f1); /* Firefox 3.6+ */
    background: -ms-linear-gradient(top, #fff, #f6f2f1); /* IE 10 */
    background: -o-linear-gradient(top, #fff, #f6f2f1); /* Opera 11.10+ */
    min-height: 50px;
    padding: 16px 16px 0 20px;
    border-bottom: 1px solid #eee;
}

.status-compact-container .avatar {
    float: left;
    margin: 1px 8px 0 0;
    border: 2px solid #ddd;
    background-color: #ddd;
    width: 35px;
    height: 35px;
}

    .status-compact-container .avatar span {
        display: inline-block;
        border: transparent;
        text-decoration: none;
        height: 35px;
        width: 35px;
        overflow: hidden;
    }

    .status-compact-container .avatar em {
        display: table-cell; /* vertical centering hack */
        width: 35px;
        height: 35px; /* same as thumbnail dimensions */
        vertical-align: middle; /* vertical centering hack */
    }

    .status-compact-container .avatar img {
        display: inline-block;
        border: none;
        width: 100%;
    }

.status-compact-container .name {
    margin-left: 6px;
    margin-top: 2px;
}

    .status-compact-container .name > a.dnnSocialLink {
        font-size: 115%;
    }

    .status-compact-container .name > a > span {
        font-weight: bold;
        z-index: 5;
    }

    .status-compact-container .name > a > h6 {
        font-weight: bold;
        z-index: 5;
        margin: 0;
        color: #0099cc;
        display: inline;
    }

.status-compact-container .collections {
    background-color: #fff;
    margin: 8px 10px 10px 20px;
}

    .status-compact-container .collections .collection {
        clear: both;
    }

/* Loading animation for a collection with data in it, and thus a larger div */
.status-compact-container .status-collection.loading.data {
    background: url("/DesktopModules/DNNCorp/MyStatus/Images/horizontal-loading.gif") center center no-repeat;
}

/* Loading animation for a collection with no data already loaded */
.status-compact-container .status-collection.loading {
    background: url("/DesktopModules/DNNCorp/MyStatus/Images/horizontal-loading.gif") center right no-repeat;
}

.status-compact-container .builtins {
    margin-left: 20px;
}

    .status-compact-container .builtins .collection {
        clear: both;
        font-weight: bold;
        padding-top: 4px;
        margin-bottom: 12px;
    }

.status-compact-container ul.item-list > li {
    margin: 0;
    font-weight: normal;
}

    .status-compact-container ul.item-list > li:last-child {
        margin-bottom: 8px;
    }

.status-compact-container ul.item-list {
    clear: both;
    margin-left: 12px;
    margin-top: 3px;
}

.status-compact-container .secondary-collections ul.item-list {
    margin-left: 20px;
}

.status-compact-container .pager > a {
    -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.4), inset 0 1px 0 0 rgba(255, 255, 255, 1);
    background: #fff; /* Old browsers */
    background: linear-gradient(to bottom, #fff, #eee6e5); /* W3C */
    border: 1px solid #ddd;
    box-shadow: 0 1px 0 0 #000000, inset 0 1px 0 0 #ffffff;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.4), inset 0 1px 0 0 rgba(255, 255, 255, 1);
    color: #555;
    display: block;
    float: left;
    height: 16px;
    margin-top: 0;
    text-shadow: 0 1px 0 #fff;
    width: 16px;
}

.status-container a.pager-prev.enabled:hover,
.status-container a.pager-next.enabled:hover {
    border: 1px solid rgb(255, 134, 134);
}

.status-compact-container .pager > a:active {
    opacity: 0.7;
}

.status-compact-container .pager .status-pager-next {
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    background-image: url("/DesktopModules/DNNCorp/MyStatus/images/right.png");
    background-position: center;
    background-repeat: no-repeat;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    float: right;
}

.status-compact-container .pager .status-pager-prev {
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-top-left-radius: 3px;
    background-image: url("/DesktopModules/DNNCorp/MyStatus/images/left.png");
    background-position: center;
    background-repeat: no-repeat;
    border-bottom-left-radius: 3px;
    border-right: none;
    border-top-left-radius: 3px;
    float: right;
}

.status-compact-container .pager > span {
    margin-right: 15px;
}

.status-compact-container .pager.disabled {
    display: none;
}

.status-compact-container .disabled {
    opacity: 0.65;
}

.status-compact-container .primary-collections {
    padding-top: 8px;
}

.status-compact-container .primary-collections,
.status-compact-container .secondary-collections {
    border-bottom: 1px solid #eee;
}

.status-compact-container .secondary-collections {
    margin-top: 8px;
    padding: 8px 8px 4px 0;
}

.status-compact-container ul.collections {
    list-style-type: none;
}

    .status-compact-container ul.collections > li {
        list-style-type: none;
        line-height: 1.5em;
        clear: both;
        font-weight: bold;
    }

        .status-compact-container ul.collections > li.activity-icon-link {
            font-size: 13px;
            font-weight: bold;
            line-height: 22px;
            padding-left: 25px;
        }

.status-compact-container .points-completion-panel {
    background-color: #fff;
    padding: 10px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
}

.status-compact-container .completion-panel {
    float: right;
    height: 45px;
    width: 43px;
    position: relative;
}

.status-compact-container .points-panel {
    float: left;
}

    .status-compact-container .points-panel .points {
        font-weight: bold;
        margin-top: 5px;
        float: left;
    }

    .status-compact-container .points-panel .badge {
        float: left;
        width: 40px;
        margin-top: 3px;
        margin-right: 10px;
    }

.status-compact-container .chart {
    width: 90px;
    height: 45px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.status-compact-container .points-panel .badge img{
    width: 40px;
    height: 40px;
}

.status-container .bottom-icons {
    padding: 16px;
}

.status-container .notification-count {
    background-color: #FD9733;
    border-radius: 3px;
    color: white;
    height: 18px;
    text-align: center;
    padding: 1px 5px 0 5px;
    position: absolute;
    top: -8px;
    right: -5px;
}

.status-container * a.notification-icon {
    background: url("/DesktopModules/DNNCorp/MyStatus/images/mail-icon.png") center center no-repeat;
    float: left;
    width: 30px;
    height: 25px;
    position: relative;
}

.status-container * a.info-icon {
    background: url("/DesktopModules/DNNCorp/MyStatus/images/info-icon.png") center center no-repeat;
    float: left;
    width: 40px;
    height: 25px;
    position: relative;
}

.status-collection-Bookmarks .icon {
    float: left;
    background: url("/DesktopModules/DNNCorp/MyStatus/Images/bookmark.png") top left no-repeat;
    width: 23px;
    height: 20px;
    margin: -3px 0 0 -3px;
}

.status-collection-RecentActivity .icon {
    float: left;
    background: url("/DesktopModules/DNNCorp/MyStatus/Images/recentActivity.png") top left no-repeat;
    width: 23px;
    height: 20px;
    margin: -3px 0 0 -3px;
}

.status-collection-RecentlyViewed .icon {
    float: left;
    background: url("/DesktopModules/DNNCorp/MyStatus/Images/recentlyViewed.png") top left no-repeat;
    width: 23px;
    height: 20px;
    margin: -3px 0 0 -3px;
}

.status-compact-container li.collection.loading > div.pager {
    opacity: 1.0;
}

.statusLogin {
    display: block;
    margin: 0 0 12px 0;
}

    .statusLogin a.anonymousLogin {
        line-height: 32px;
        display: block;
    }

/* -- Tooltip (tag menu) -- */
.status-container .tag-menu {
    display: none;
    z-index: 1000;
    position: absolute;
    white-space: nowrap;
    padding: 10px 15px 10px 15px;
    border-radius: 3px;
    background: rgba(0,0,0,0.75);
    font-size: 11px;
    color: #ddd;
    text-align: left;
}

    .status-container .tag-menu > p {
        margin-bottom: 0;
        display: block;
    }

    .status-container .tag-menu:after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        opacity: 0.75;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid #000;
    }

.status-compact-container .badgeTooltip .tag-menu {
    bottom: 45px;
    left: -15px;
}

    .status-compact-container .badgeTooltip .tag-menu:after {
        left: 20px;
        bottom: -7px;
    }

.status-compact-container .completion-panel .tag-menu {
    bottom: 45px;
    right: -20px;
}

    .status-compact-container .completion-panel .tag-menu:after {
        right: 20px;
        bottom: -7px;
    }
/* -- end Tooltip -- */


.related-content-container {}

.related-content-container ul.token-input-list-facebook {
  width: 250px;
}

.related-content-container .related-content-types > table {
  width: 350px;
  border: none;
  border-spacing: 6px;
}

.related-content-container .related-content-types label.related-content-types-label {
  white-space: nowrap;
  padding-top: 8px;
  padding-right: 6px;
}

.related-content-container .related-content-types > table tr {
  vertical-align: middle;
}

.related-content-item {
  width: 100%;
  max-height: 450px;
}

.related-content-item span p {
    margin: 0;
}

.related-content-container.loading {
  opacity: 1.0;
  background-image: url("/images/dnnanim.gif");
  background-position: center center;
  background-repeat: no-repeat;
}

tr.related-content-item td.loading {
  background-image: none;
}

.related-search-text {
  width: 200px;
}

.related-content-types-label {
  font-weight: bold;
}

.related-filter-label {
  font-weight: bold;
}

.related-content-types {
  display: block;
  float: right;
}

.related-content-types-input {
  width: 250px;
}

.related-content-type {
  white-space: nowrap;
}

.related-content-author {
  white-space: nowrap;
}

.related-content-creation-date {
  white-space: nowrap;
}

.related-content-title {
  width: 150px;
  font-weight: bold;
}

tr.related-item-selected {
  background-color: rgba(128, 128, 128, 0.44);
}

.related-table-header {
  white-space: nowrap;
}

.related-content-edit {
  display: none;
  max-height: 600px;
}

.related-content-edit-container {
  float: right;
  margin: 10px 0 0 0;
}

.related-content-edit-container > a {
  cursor: pointer;
  font-weight: bold;
}


.relatedcontent-detail-container {
    padding: 20px;
    background-color: #ffffff;
}

    .relatedcontent-detail-container .Title6 {
        font-size: 15px;
        font-weight: normal;
        color: #666;
    }

.relatedcontent-detail-container ul.dnnRelated {
    list-style-type: none;   
    margin: 15px 0 0 5px;
}

    .relatedcontent-detail-container ul.dnnRelated > li {
        list-style-type: none;
        margin-bottom: 5px;
    }

    .relatedcontent-detail-container ul.dnnRelated > li a {
        font-weight: bold;
    }

#tagContainer ul.tagCollections {
    list-style-type: none;
    margin: 15px 0 10px 0;
}

#tagContainer ul.tagCollections li {
    list-style-type: none;
    margin: 0;
    padding: 5px;
}

#tagContainer ul.tagCollections li a {
    display: block;
    margin-right: 35px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
}

#tagContainer ul.tagCollections li span {
    display: block;
    float: right;
    padding: 2px 4px 2px 4px;
    background-color: #ccc;
    font-size: 10px;
    border-radius: 6px;
    min-width: 20px;
    text-align: center;
    font-weight: bold;
}

    .social-share-container.loading {
        background: url("/images/dnnanim.gif") center center no-repeat;
        height: 25px;
        width: 257px;
    }

        .social-share-container.loading ul {
            display: none;
        }

        .social-share-container.loading .social-share-transforming {
            display: none;
        }

    .social-share-container.transforming .social-share-transforming {
        display: block;
    }

    .social-share-container:not(.transforming) .social-share-transforming {
        display: none;
    }

    .social-share-container.transforming ul {
        display: none;
    }

    .social-share-container .social-share-facebook-like-container {
        position: relative;
        display: inline-block;
    }

.social-share-dialog {
    display: none;
}

.social-share-url-dialog {
    display: none;
    min-height: 20px !important;
}


/* Social links */
ul.socialConnect {
    display: block;
    margin: 0 0 15px 0;
    float: right;
}

    ul.socialConnect li {
        float: left;
        color: #999;
        font-weight: bold;
        list-style-type: none;
        padding-left: 15px;
    }

    ul.socialConnect li:first-child {
         padding-left: 0;
    }

        ul.socialConnect li a {
            display: inline-block;
            vertical-align: top;
            background-image: url("/DesktopModules/DNNCorp/SocialShare/images/spriteSocial.png");
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

            ul.socialConnect li a.socialConnect-twitter {
                background-position: -7px -6px;
            }

            ul.socialConnect li a.socialConnect-facebook {
                background-position: -37px -6px;
            }

            ul.socialConnect li a.socialConnect-linkedin {
                background-position: -67px -6px;
            }

            ul.socialConnect li a.socialConnect-googleplus {
                background-position: -97px -6px;
            }
            ul.socialConnect li a.socialConnect-pinterest {
                background-position: -127px -5px;
            }

            ul.socialConnect li a.socialConnect-twitter:hover {
                background-position: -157px -6px;
            }

            ul.socialConnect li a.socialConnect-facebook:hover {
                background-position: -187px -6px;
            }

            ul.socialConnect li a.socialConnect-linkedin:hover {
                background-position: -217px -6px;
            }

            ul.socialConnect li a.socialConnect-googleplus:hover {
                background-position: -247px -6px;
            }
            ul.socialConnect li a.socialConnect-pinterest:hover {
                background-position: -277px -5px;
            }


img {
    -ms-interpolation-mode: bicubic;
}

input::-ms-clear {
    display: none;
}

.ko-container {
    display: none;
}

.dnnFormPopup {
    border: none;
    outline: none;
}

.moduleContainer + .dnnLeft.dnnFormMessage {
    float: none;
}

.searchControl-normalView .dnnTableFilter {
    margin: 0;
}

.dnnFormPopup .ui-dialog-content.social-report-content {
    padding: 25px 12px;
}

.dnnFormPopup .social-report-content + .ui-dialog-buttonpane button {
    margin: 0 5px 0 0;
}

.social-report-content > h3 {
    font-family: Arial;
    font-size: 16px;
}

.social-report-reason-list {
    background-color: transparent;
}

    .social-report-reason-list ul {
        margin-top: 20px;
        list-style-type: none;
        margin-left: 0;
    }

        .social-report-reason-list ul > li {
            list-style-type: none;
        }

.social-report-other {
    display: none;
}

    .social-report-other > textarea {
        width: 425px;
        height: 75px;
    }

.social-report-content.loading {
    background-image: url("/Images/dnnanim.gif");
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.75;
}

div.comment-sort {
    padding: 20px 0 0 95px;
    font-weight: bold;
}

    div.comment-sort > span.separator,
    div.comment-load-more > span.separator {
        border-left: 1px solid #ccc;
    }

    div.comment-sort > a,
    div.comment-load-more > a.sort {
        margin: 0 10px;
        padding-bottom: 4px;
    }

        div.comment-sort > a:not(.selected),
        div.comment-load-more > a.sort:not(.selected) {
            color: inherit;
        }

        div.comment-sort > a.selected,
        div.comment-load-more > a.sort.selected {
            cursor: default;
            border-bottom: 2px solid;
        }

ul.comment-actions {
    list-style-type: none;
    margin-top: 20px;
}

    ul.comment-actions > li > a {
        padding-left: 25px;
        padding-bottom: 10px;
        cursor: pointer;
    }

ul.comment-social-actions {
    float: right;
    list-style-type: none;
}

    ul.comment-social-actions > li {
        display: block;
        float: left;
        height: 20px;
        margin-right: 5px;
        width: 20px;
    }

.comment-panel {
    padding: 15px 20px 10px 20px;
    border-top: 1px solid #dfdfdf;
}

.comment .avatar40 {
    float: left;
    display: block;
}

.comment-actions-menu {
    display: block;
    float: right;
    position: relative;
}

    .comment-actions-menu a.approve-comment-actions {
        display: block;
        width: 25px;
        height: 25px;
        background-image: url("/DesktopModules/DNNCorp/SocialLibrary/images/approve-comment-icon.png");
        background-position: center center;
        background-repeat: no-repeat;
        cursor: default;
    }


    .comment-actions-menu a.comment-actions {
        display: block;
        width: 25px;
        height: 25px;
        background-image: url("/icons/sigma/edit_16X16_Gray.png");
        background-position: center center;
        background-repeat: no-repeat;
    }

    .comment-actions-menu ul.comment-actions-dropdown {
        display: none;
        position: absolute;
        right: 0;
        top: 25px;
        background-color: #eaeaea;
        list-style: none;
        margin: 0;
        padding: 0;
        min-width: 150px;
        z-index: 100;
    }

        .comment-actions-menu ul.comment-actions-dropdown li {
            list-style: none;
            margin: 0;
            padding: 0;
            border-top: 1px solid #ccc;
        }

            .comment-actions-menu ul.comment-actions-dropdown li:first-child {
                border-top: none;
            }

            .comment-actions-menu ul.comment-actions-dropdown li a {
                display: block;
                padding: 5px 10px 5px 10px;
                white-space: nowrap;
                border-left: 3px solid transparent;
            }

                .comment-actions-menu ul.comment-actions-dropdown li a:hover {
                    border-left: 3px solid #a9a9a9;
                }

.comment-inline-login > div > div {
    margin: 0 0 5px 0;
}

.comment-inline-login input[type="text"],
.comment-inline-login input[type="password"] {
    display: inline-block;
    width: 40%;
}

    .comment-inline-login input[type="text"] + label,
    .comment-inline-login input[type="password"] + label {
        color: #999;
        display: inline-block;
        margin-left: 10px;
    }

.comment-inline-login label b {
    font-weight: bold;
    font-size: 13px;
}

.comment-detail {
    margin-left: 62px;
    padding: 15px 20px 0 20px;
    border-left: 1px solid #dfdfdf;
}

.comment-inline-detail {
    margin-left: 55px;
    padding: 0 0 0 10px;
    border-left: none;
}

.comment-inline-content {
    display: inline-block;
    margin-left: 6px;
    margin-bottom: 6px;
}

.comment-inline-date {
    display: block;
    color: #bbb;
    margin-bottom: 15px;
}

.commentsControl.loading {
    background-image: url("/Images/dnnanim.gif");
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.6;
}

.commentsControl.initial-loading > * {
    visibility: hidden;
}

.commentsControl.initial-loading {
    background-image: url("/Images/dnnanim.gif");
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.6;
}

.comments-panel > span {
    margin: 10px 15px 0 0;
}

ul.comment-pager-ul {
    list-style-type: none;
    margin: 10px 0 0 0;
}

    ul.comment-pager-ul > li {
        display: block;
        float: left;
        margin-right: 3px;
    }

        ul.comment-pager-ul > li > span:after,
        ul.comment-pager-ul > li > a:after {
            content: ",";
        }

        ul.comment-pager-ul > li.pager-ul-last > a:after {
            content: "";
        }

.comment-pager-rightside {
    margin: 10px 0 0 0;
    float: right;
}

    .comment-pager-rightside > .dnnLeft {
        margin-right: 30px;
    }

.comment-context-card {
    display: none;
    position: absolute;
    z-index: 1000;
    background-color: white;
    padding: 20px;
    min-height: 100px;
    width: 275px;
    -moz-box-shadow: 0 0 15px 15px #eee;
    -webkit-box-shadow: 0 0 15px 15px #eee;
    box-shadow: 0 0 15px 15px #eee;
    border-radius: 5px;
}

    .comment-context-card .comment-context-card-top:after {
        width: 0;
        height: 0;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-right: 12px solid #fff;
        content: '';
        position: absolute;
        left: -12px;
        top: 80px;
    }

    .comment-context-card .comment-context-card-top {
        padding-bottom: 15px;
        border-bottom: 1px solid #ccc;
    }

    .comment-context-card .avatar {
        float: left;
        margin-right: 10px;
        width: 40px;
        height: 40px;
        border: 3px solid #ccc;
        background-color: #ddd;
    }

        .comment-context-card .avatar span {
            display: inline-block;
            border: transparent;
            text-decoration: none;
            height: 40px;
            width: 40px;
            overflow: hidden;
        }

        .comment-context-card .avatar em {
            display: table-cell; /* vertical centering hack */
            width: 40px;
            height: 40px; /* same as thumbnail dimensions */
            vertical-align: middle;
        }

        .comment-context-card .avatar img {
            display: inline-block;
            border: none;
            width: 100%;
        }

    .comment-context-card .displayName {
        float: left;
    }

        .comment-context-card .displayName > span {
            display: block;
            font-weight: bold;
        }

    .comment-context-card .comment-date {
        font-style: italic;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .comment-context-card a.see-full-comment {
        display: block;
        margin-top: 10px;
        font-weight: bold;
    }

    .comment-context-card .comment-context-card-bottom {
        margin-top: 15px;
        border-top: 1px solid #ccc;
        padding-top: 15px;
    }

        .comment-context-card .comment-context-card-bottom .dnnPrimaryAction {
            padding: 6px 9px 6px 9px;
            margin: 0;
            min-width: inherit;
        }

        .comment-context-card .comment-context-card-bottom a.see-full-profile {
            display: block;
            float: right;
            font-weight: bold;
            margin-top: 3px;
        }

    .comment-context-card .close-button {
        float: right;
        width: 17px;
        height: 15px;
    }

        .comment-context-card .close-button a {
            display: block;
            width: 17px;
            height: 15px;
            background-image: url("/DesktopModules/DNNCorp/SocialLibrary/images/hoverCardClose.png");
        }

    .comment-context-card > .loading {
        min-height: 100px;
        min-width: 300px;
    }

.comment-container {
    background-color: #fff;
    padding: 10px 20px 10px 20px;
}

    .comment-container.comment {
        padding: 0 20px 0 20px;
    }

        .comment-container.comment:first-child {
            padding-top: 5px;
        }

.comment-post {
    margin-left: 66px;
}

    .comment-post textarea.message, .comment-post [contenteditable].message {
        height: 120px;
        width: 95%;
        max-width: inherit;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
    }

.comment-panel .avatar {
    display: block;
    float: left;
    padding: 0;
    margin-right: 16px;
    border: 3px solid #ddd;
    width: 40px;
    height: 40px;
}

    .comment-panel .avatar + .dnnLeft {
        margin-top: 5px;
    }

    .comment-panel .avatar span {
        display: inline-block;
        border: transparent;
        text-decoration: none;
        height: 40px;
        width: 40px;
        overflow: hidden;
    }

    .comment-panel .avatar em {
        display: table-cell; /* vertical centering hack */
        width: 40px;
        height: 40px; /* same as thumbnail dimensions */
        vertical-align: middle; /* vertical centering hack */
    }

    .comment-panel .avatar img {
        display: inline-block;
        border: none;
        width: 100%;
    }

.comments-container-normalview .comment .likes {
    margin-bottom: 20px;
}

.comment-author {
    margin-right: 15px;
}

.comment-inline-author {
    margin-right: 2px !important;
    vertical-align: top;
    float: left;
}

textarea.message {
    height: 120px;
    width: 100%;
}

[contenteditable].message {
    background: #fff;
    border: 1px solid #ccc;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: min-height 0.2s, padding 0.2s;
    -moz-transition: min-height 0.2s, padding 0.2s;
    transition: min-height 0.2s, padding 0.2s;
    height: 120px;
    padding: 10px;
    cursor: text;
    outline: none;
    margin-bottom: 20px;
    overflow: auto;
    display: inline-block;
    width: 100%;
}

.comment-update-dialog .dnnForm .dnnFormItem {
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.comment-update-dialog .dnnForm .dnnFormItem .message {
    margin-bottom: 0;
}

.comment-date {
    display: block;
}

.comment-content {
    padding: 16px 0 0 0;
    display: block;
    word-wrap: break-word;
}

ul.comment-inline-actions {
    margin-top: 2px !important;
}

ul.comment-actions {
    list-style-type: none;
    margin: 20px 0 0 0;
    padding: 0;
}

    ul.comment-actions > li {
        border-right: 1px solid #edeae9;
        display: block;
        float: left;
        padding: 0 10px 0 10px;
    }

        ul.comment-actions > li a {
            display: block;
            height: 10px;
        }

        ul.comment-actions > li:first-child {
            border-left: none;
            padding-left: 0;
        }

        ul.comment-actions > li:last-child {
            border-right: none;
        }

        ul.comment-actions > li a > span {
            display: inline-block;
            vertical-align: top;
            margin: 2px 0 0 0;
        }

            ul.comment-actions > li a > span.comment-like-count {
                margin: 2px 15px 0 -4px;
            }

.comment-reply {
    background: transparent url("/DesktopModules/DNNCorp/SocialLibrary/Images/reply.png") no-repeat;
    background-position: 0 -2px;
}

.comment-report {
    background: transparent url("/DesktopModules/DNNCorp/SocialLibrary/Images/report.png") no-repeat;
    background-position: 0 -2px;
}

.comment-remove {
    background: transparent url("/DesktopModules/DNNCorp/SocialLibrary/Images/remove.png") no-repeat;
    background-position: 0 2px;
    padding-left: 18px !important;
}

.comment-approve {
    background: transparent url("/DesktopModules/DNNCorp/SocialLibrary/Images/approve.png") no-repeat;
    background-position: 0 2px;
    padding-left: 18px !important;
}

.comment-unapproved {
    color: #999;
    display: inline-block;
    line-height: 16px;
}

.comment-like {
    background: transparent url("/DesktopModules/DNNCorp/SocialLibrary/Images/Likebtn.png") no-repeat;
    background-position: 0 -2px;
}

.comment-like-liked {
    background: transparent url("/DesktopModules/DNNCorp/SocialLibrary/Images/LikebtnSelected.png") no-repeat;
    background-position: 0 -2px;
}

.comment-load-more {
    padding: 15px;
    background: #f1f1f1;
    border-bottom: 1px solid #ccc;
}


    .comment-load-more > span {
        display: block;
        float: right;
        font-weight: bold;
        margin-right: 10px;
    }

    .comment-load-more > a {
        display: block;
        float: right;
        font-weight: bold;
    }

        .comment-load-more > a.sort {
            float: left;
        }

    .comment-load-more:before {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 15px 0 0 15px;
        border-color: transparent transparent transparent #f1f1f1;
        margin: -30px 0 15px -15px;
    }

.commentsControl .inline-comment {
    padding: 15px 15px 0 15px;
    margin: 0;
    background: #f1f1f1;
}

    .commentsControl .inline-comment:first-child {
        padding-top: 25px;
        margin-top: 20px;
    }

        .commentsControl .inline-comment:first-child:before {
            content: "";
            display: block;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 15px 0 0 15px;
            border-color: transparent transparent transparent #f1f1f1;
            margin: -40px 0 20px -15px;
        }

.commentsControl .comment-inline-post {
    padding: 15px 15px 0 15px;
    margin: 0;
    background: #f1f1f1;
}

    .commentsControl .comment-inline-post textarea {
        max-width: inherit;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        margin-bottom: 8px;
    }

.commentsControl .comment-inline-post-fake {
    padding: 15px 15px 15px 15px;
    margin: 0;
    background: #f1f1f1;
}

    .commentsControl .comment-inline-post-fake input.inline-poster-fake {
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.social-profile-editor {
    overflow: hidden;
}


    .social-profile-editor ul.social-profile-tabs {
        position: relative;
        padding: 0;
        display: block;
        height: 46px;
        margin: 0;
        background: transparent url("/images/InstallWizardBG.png") repeat-x;
    }

        .social-profile-editor ul.social-profile-tabs li {
            float: left;
            position: relative;
            margin: 0;
            padding: 0;
            border-bottom: 0 !important;
            list-style: none;
            white-space: nowrap;
        }

            .social-profile-editor ul.social-profile-tabs li.active {
                margin-bottom: 0;
            }

            .social-profile-editor ul.social-profile-tabs li a {
                display: block;
            }

.social-profile-step span {
    display: block;
    float: left;
}

.social-profile-step {
    height: 46px;
    padding: 0 0 0 20px;
    background: transparent url("/images/InstallWizardBG.png") repeat-x;
    background-position: 0 0;
    cursor: pointer;
}

.social-profile-editor > ul.social-profile-tabs li:first-child .social-profile-step {
    padding-left: 30px;
}

.social-profile-tabs .social-profile-step .number {
    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;
}

.social-profile-tabs .social-profile-step .title {
    margin: 13px 20px 0 0;
    color: #999;
    font-weight: bold;
    text-decoration: none;
}

.social-profile-tabs .social-profile-step .arrow {
    width: 25px;
    height: 46px;
    background: transparent url("/images/InstallWizardBG.png") no-repeat;
    background-position: 0 -401px;
}

.social-profile-editor > ul.social-profile-tabs li.active .social-profile-step {
    height: 46px;
    background-position: 0 -100px;
}

.social-profile-editor > ul.social-profile-tabs li.active .step .number {
    background-color: #333;
}

.social-profile-editor > ul.social-profile-tabs li.active .step .title {
    color: #333;
}

.social-profile-editor .page {
    display: none;
    clear: both;
    margin: 15px 0;
    padding: 5px;
}

    .social-profile-editor .page h1 {
        margin-top: 0;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }

    .social-profile-editor .page .form label {
        display: inline-block;
        font-weight: bold;
        font-size: 13px;
    }

.social-profile-editor .step.error .social-profile-step span {
    color: red;
    font-size: 14px;
    font-weight: bold;
}

.social-profile-editor .page .form table {
    border-spacing: 0;
}

    .social-profile-editor .page .form table td {
        vertical-align: middle;
    }

.social-profile-editor .page .form .help {
    margin-left: 20px;
    min-height: 36px;
    background-image: url("/images/help-icn.png");
    background-position: left center;
    background-repeat: no-repeat;
}

    .social-profile-editor .page .form .help div {
        vertical-align: middle;
        font-style: italic;
        font-size: 13px;
        margin-left: 40px;
    }

.social-profile-editor .validationFailure {
    border: 2px solid rgba(200, 0, 0, 0.65);
}

.social-profile-editor .actionButtons {
    width: 80px;
}

    .social-profile-editor .actionButtons div {
        width: 40px;
        height: 40px;
        border: 1px solid #c9c9c9;
        background: #f0f2f1;
        background: linear-gradient(to bottom, #fff, #f0f2f1); /* W3C */
        margin: 0 0 80px 15px;
        cursor: pointer;
    }

        .social-profile-editor .actionButtons div.actionsAddButton {
            background-image: url("/DesktopModules/DNNCorp/SocialLibrary/images/right.png");
            background-position: center;
            background-repeat: no-repeat;
        }

        .social-profile-editor .actionButtons div.actionsRemoveButton {
            background-image: url("/DesktopModules/DNNCorp/SocialLibrary/images/left.png");
            background-position: center;
            background-repeat: no-repeat;
        }

.social-profile-location {
    border: 1px solid #d0d0d0;
    background-color: #808080;
    margin-top: -20px;
}

    .social-profile-location.loading {
        background-color: black;
        background-image: url("/Images/dnnanim.gif");
        background-repeat: no-repeat;
        background-position: center center;
        opacity: 0.75;
    }

.social-profile-location-suggest {
    display: none;
}

    .social-profile-location-suggest ul.locations {
        margin-top: 15px;
        font-size: 16px;
        font-weight: bold;
    }

.social-profile-avatar {
    width: 350px;
    height: 350px;
    border: 1px solid #d0d0d0;
}

.jvectormap-label {
    z-index: 1500;
}

.social-profile-container .location-page {
    padding: 15px 0 0;
    margin: 0;
}

    .social-profile-container .location-page .dnnLabel {
        width: 70px !important;
    }

.social-profile-container .photo-page .dnnLabel {
    width: 95px !important;
}

.dnnFormPopup .ui-dialog-buttonpane .ui-dialog-buttonset {
    float: left;
}

.social-profile-dialog .ui-dialog-titlebar {
    height: 0 !important;
    padding: 0;
}

.social-profile-final-suggestion {
    display: none;
    padding-top: 10px !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    min-height: 0 !important;
}

.social-profile-return-world {
    display: inline-block;
    float: right;
    padding-right: 40px;
    padding-top: 15px;
    font-weight: bold;
}

.social-profile-image {
    border: 1px solid #eee;
}

.social-profile-image-container {
    position: relative;
    top: -40px;
    height: 0;
    z-index: 100;
}

.social-profile-container input[type="file"] {
    z-index: 6500;
}

.social-profile-image-container.image-loaded {
    height: auto;
    margin-top: 0;
}

.social-profile-image-progress {
    width: 400px !important;
    height: 25px !important;
}

.social-profile-image-name {
    display: block !important;
    margin-top: -8px !important;
    padding-left: 6px;
    white-space: nowrap;
}

.social-profile-image-file-container {
    display: inline-block;
    height: 30px !important;
    margin-top: -20px !important;
}

.social-help-button {
    display: block;
    background: url("/DesktopModules/DNNCorp/SocialLibrary/Images/help_icon.png") center center no-repeat;
    height: 22px;
    width: 22px;
}

.dnnSocialLike {
    background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/social_like.png");
}

.dnnSocialLikeActive {
    background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/social_like_active.png");
}

.dnnSocialBookmark {
    background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/social_bookmark.png");
}

.dnnSocialBookmarkActive {
    background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/social_bookmark_active.png");
}

.dnnSocialSubscribe {
    background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/social_message.png");
}

.dnnSocialSubscribeActive {
    background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/social_message_active.png");
}

.dnnSocialTicketNotCreated {
    background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/icon-add-zendesk-ticket.png");
}

.dnnSocialTicketCreated {
    background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/icon-zendesk-ticket-added.png");
}

/* Like Control */
.likes > a.dnnSocialLink,
.likes > span {
    display: inline-block;
    font-weight: bold;
    margin-left: 3px;
}
/* like tag menu */
.approve-comment-actions .tag-menu,
.likes .tag-menu {
    display: none;
    z-index: 1000;
    position: absolute;
    white-space: nowrap;
    padding: 10px 15px 10px 15px;
    border-radius: 3px;
    background: #000000;
    background: rgba(0,0,0,0.75);
    color: #ddd;
    text-align: left;
    bottom: 100%;
}

.approve-comment-actions .tag-menu {
    bottom: 130%;
    left: -10px;
}

    .approve-comment-actions .tag-menu:after,
    .likes .tag-menu:after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        opacity: 0.75;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid #000;
        left: 20px;
        bottom: -7px;
    }

.likes .tag-menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .likes .tag-menu ul li {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

/* Like Popup */
.like-popup {
    display: none;
}

.like-popup-list {
    margin: 10px 0 10px 0;
    height: 300px;
    overflow: auto;
}

    .like-popup-list table {
        width: 100%;
    }

.like-popup-loadmore {
    display: block;
    background: #ccc;
    color: #666;
    padding: 10px;
    text-align: center;
    margin: 5px 0 10px 0;
}

.like-popup td.avatar-td {
    width: 45px;
}

.like-popup td.name-td {
    padding: 0 15px 0 15px;
    vertical-align: middle;
    overflow: hidden;
}

    .like-popup td.name-td a.dnnSocialLink {
        font-weight: bold;
        font-size: 15px;
    }

.like-popup td.friend-td {
    width: 125px;
}

    .like-popup td.friend-td a.dnnSecondaryAction.disabled,
    .like-popup td.friend-td a.dnnSecondaryAction.disabled:hover,
    .like-popup td.friend-td a.dnnSecondaryAction.disabled:active {
        background: #bbb;
        border: 1px solid #aaa;
        color: #fff;
        font-weight: normal;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        text-shadow: none;
        cursor: default;
    }

/* Calendar */
.social-calendar-table {
    width: 100%;
}

.social-calendar-header {
    text-align: center;
    vertical-align: middle;
    width: 150px;
    height: 32px;
}

.social-calendar-year-prev {
    background: url("/DesktopModules/DNNCorp/SocialLibrary/Images/calendar-year-prev.png") center center no-repeat;
    display: inline-block;
    height: 21px;
    width: 21px;
}


.social-calendar-year-prev {
    background: url("/DesktopModules/DNNCorp/SocialLibrary/Images/calendar-year-prev.png") center center no-repeat;
    display: inline-block;
    height: 21px;
    width: 21px;
}

.social-calendar-year-next {
    background: url("/DesktopModules/DNNCorp/SocialLibrary/Images/calendar-year-next.png") center center no-repeat;
    display: inline-block;
    height: 21px;
    width: 21px;
}

.social-calendar-month-prev {
    background: url("/DesktopModules/DNNCorp/SocialLibrary/Images/calendar-month-prev.png") center center no-repeat;
    display: inline-block;
    height: 21px;
    width: 21px;
}

.social-calendar-month-next {
    background: url("/DesktopModules/DNNCorp/SocialLibrary/Images/calendar-month-next.png") center center no-repeat;
    display: inline-block;
    height: 21px;
    width: 21px;
}

.social-calendar-outside-day {
    color: gray;
}

.social-calendar-highlight-day {
    background: url("/DesktopModules/DNNCorp/SocialLibrary/Images/reddot.png") center center no-repeat;
    color: black;
    font-weight: bold;
}

.social-module-companions {
    padding: 20px;
}


/* time date picker */
div.allDayEvent span.dnnCheckbox {
    margin-bottom: 0;
}

div.timeInput {
    display: inline-block;
    vertical-align: top;
}

div.timeZone {
    margin-bottom: 3px;
}

    div.timeZone > label {
        display: inline-block;
        vertical-align: top;
        margin-right: 10px;
        font-weight: bold;
    }

    div.timeZone > span {
        display: inline-block;
        vertical-align: top;
    }

#wizard .dnnFormItem #txtFromDate,
#wizard .dnnFormItem #txtToDate {
    width: 100px;
    margin-bottom: 0;
}

span.timeIndicator {
    display: inline-block;
    vertical-align: top;
    background-image: url("/DesktopModules/DNNCorp/SocialLibrary/images/timepicker.png");
    background-position: 0 11px;
    background-repeat: no-repeat;
    width: 20px;
    height: 30px;
}

span.timeSeparator {
    display: inline-block;
    vertical-align: top;
    padding: 7px 2px 7px 2px;
    font-weight: bold;
}

#wizard .dnnFormItem #selectFromTimeHours,
#wizard .dnnFormItem #selectToTimeHours,
#wizard .dnnFormItem #selectFromTimeMinutes,
#wizard .dnnFormItem #selectToTimeMinutes,
#wizard .dnnFormItem #selectFromTimeAMPM,
#wizard .dnnFormItem #selectToTimeAMPM {
    width: 60px;
    display: inline-block;
    padding: 7px;
    margin-bottom: 0;
}

#selectFromTimeHours[disabled], #selectToTimeHours[disabled],
#selectFromTimeMinutes[disabled], #selectToTimeMinutes[disabled],
#selectFromTimeAMPM[disabled], #selectToTimeAMPM[disabled] {
    color: #999;
}

img.ui-datepicker-trigger {
    display: inline-block;
    margin-left: -20px;
    margin-right: 10px;
    margin-top: -3px;
}

.ui-datepicker {
    padding: 8px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #000;
    background: rgba(0,0,0,0.75);
    font-size: 11px;
    display: none;
}

    .ui-datepicker:after {
        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;
    }

    .ui-datepicker .ui-datepicker-header {
        display: block;
        background: #f0f2f1;
        background: linear-gradient(to bottom, #fff, #f0f2f1); /* W3C */
        color: #000000;
        color: rgba(0,0,0,0.75);
        padding: 6px;
        border-bottom: 1px solid #b4b3b4;
    }

.ui-datepicker-header:after {
    clear: both;
    content: ".";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
}

.ui-datepicker-prev {
    float: left;
}

.ui-datepicker-next {
    float: right;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 16px;
    display: block;
    width: 15px;
    height: 15px;
    overflow: hidden;
    margin: 0 4px;
    background-color: transparent;
    background-repeat: no-repeat;
    text-indent: -2222px;
    text-decoration: none;
}

.ui-datepicker .ui-datepicker-prev {
    left: 15px;
    background-image: url("/DesktopModules/DNNCorp/SocialLibrary/images/datepickerArrows.png");
    margin: 0 !important;
    background-position: -15px;
}

.ui-datepicker .ui-datepicker-next {
    right: 15px;
    background-image: url("/DesktopModules/DNNCorp/SocialLibrary/images/datepickerArrows.png");
    margin: 0 !important;
    background-position: -70px;
}

    .ui-datepicker .ui-datepicker-prev span,
    .ui-datepicker .ui-datepicker-next span {
        display: block;
        color: #000;
    }

.ui-datepicker .ui-datepicker-title {
    color: #000;
    color: rgba(0,0,0,0.75);
    font-size: 12px !important;
    font-weight: bold;
    text-align: center;
}

.ui-datepicker table {
    width: 100%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em;
}

.ui-datepicker th {
    padding: 4px;
    line-height: 18px;
    font-weight: normal;
    background: #d9d9d9; /* Old browsers */
    background: linear-gradient(to bottom, #d9d9d9, #c7c7c7); /* W3C */
}

.ui-datepicker .ui-datepicker-calendar td {
    border: 0;
    padding: 4px 4px 0 4px;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    background: #fff;
}

    .ui-datepicker .ui-datepicker-calendar td span,
    .ui-datepicker .ui-datepicker-calendar td a {
        display: block;
        padding: .2em;
        text-align: center;
        text-decoration: none;
        color: #666;
    }

    .ui-datepicker .ui-datepicker-calendar td:hover {
        background-color: #e8f1fa;
    }

        .ui-datepicker .ui-datepicker-calendar td:hover span,
        .ui-datepicker .ui-datepicker-calendar td:hover a {
            color: #000;
        }

    .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-current-day {
        background-color: #606263;
    }

        .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-current-day span,
        .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-current-day a {
            color: #fff;
        }

    .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-other-month {
        background: #d9d9d9; /* Old browsers */
        background: linear-gradient(to bottom, #d9d9d9,#c7c7c7); /* W3C */
    }

.ui-datepicker .ui-datepicker-calendar tr:first-child td {
    border-top: none;
}

.ui-datepicker .ui-datepicker-calendar tr td:first-child {
    border-left: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
    background-image: none;
    margin: .7em 0 0 0;
    padding: 0 .2em;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}

    .ui-datepicker .ui-datepicker-buttonpane button {
        float: right;
        margin: .5em .2em .4em;
        cursor: pointer;
        padding: .2em .6em .3em .6em;
        width: auto;
        overflow: visible;
    }

        .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
            float: left;
        }

.moduleTitleContainer {
    padding: 18px;
}

.dnnFilterSet h3 {
    margin-bottom: 10px;
}

.activeIndicator {
    background-color: #4387d2;
    color: #fff;
}

.inactiveIndicator {
    background-color: #eee;
}

.moduleTopInsetShadowBox {
    background-color: #fff;
    border-top: 1px solid #eee;
}

.moduleBotInsetShadowBox {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.suggestion-modalShadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background: rgba(0, 0, 0, 0.65);
    display: none;
}

.dnnFormPopup .ui-dialog-buttonpane button.ui-state-disabled {
    display: none;
}

/* button fix */
.dnnFixedSizeComboBox + a.dnnSecondaryAction {
    padding: 10px;
}

/*
  Tags box style fix
*/
div.dnnTagsInput {
    padding: 4px 0 0 4px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.dnnCoreMessagingContent {
    padding-top: 0;
}

    .dnnCoreMessagingContent > .messageControls {
        padding-top: 0;
        padding-bottom: 0;
    }

        .dnnCoreMessagingContent > .messageControls p {
            margin-bottom: 5px;
        }

    .dnnCoreMessagingContent ul.messages,
    .dnnCoreMessagingContent ul.messages ul {
        margin-left: 0;
    }

.DnnModule-Messaging-Notifications .dnnAdminTabNav a span {
    color: #fff;
    -webkit-appearance: none;
    box-shadow: none;
    -moz-box-shadow: none;
}

/* token input ui fix */
ul.token-input-list-facebook {
    padding: 0 !important;
}

.token-input-list-facebook .token-input-input-token-facebook input[type="text"] {
    border: none;
    margin: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#scopeWrapperLoading {
    background-image: url("/images/dnnanim.gif");
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    display: none;
}

/* Pager Fix */
ul > li.pager-ul-desc {
    margin-right: 15px !important;
}

ul > li.pager-ul-last > span:after,
ul > li.pager-ul-last > a:after {
    content: "";
}

/* nebula wizard control */
.ui-dialog-content .social-wizard {
    margin-top: 15px;
}

.social-wizard > ul.wizard-tabs {
    position: relative;
    padding: 0;
    display: block;
    height: 70px;
    margin: 0;
    background: transparent url("/DesktopModules/DNNCorp/SocialLibrary/images/socialWizard.png") repeat-x;
    background-position: 0 -700px;
    border: 1px solid #ccc;
    border-bottom: 2px solid #999;
    border-radius: 3px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -moz-border-radius: 3px;
}

    .social-wizard > ul.wizard-tabs.active {
        background-position: 0 -800px;
    }

    .social-wizard > ul.wizard-tabs.hover {
        background-position: 0 -900px;
    }

    .social-wizard > ul.wizard-tabs li {
        float: left;
        position: relative;
        margin: 0;
        padding: 0;
        list-style: none;
        white-space: nowrap;
        background: transparent url("/DesktopModules/DNNCorp/SocialLibrary/images/socialWizard.png") repeat-x;
        background-position: 0 -700px;
    }

        .social-wizard > ul.wizard-tabs li:first-child {
            -moz-border-top-left-radius: 3px;
            -moz-border-bottom-left-radius: 3px;
            border-top-left-radius: 3px;
            border-bottom-left-radius: 3px;
        }

        .social-wizard > ul.wizard-tabs li.active {
            background-position: 0 -800px;
        }

        .social-wizard > ul.wizard-tabs li.hover {
            background-position: 0 -900px;
        }

        .social-wizard > ul.wizard-tabs li a {
            display: block;
        }

.wizardStep > span {
    display: block;
    float: left;
}

.wizardStep {
    height: 70px;
    padding: 0 0 0 20px;
    cursor: pointer;
}

    .wizardStep > div.dnnLeft {
        min-width: 140px;
    }

.social-wizard > ul.wizard-tabs li:first-child .wizardStep {
    padding-left: 20px;
}

.wizardStepNumber {
    margin: 15px 10px 0 0;
    padding: 3px 8px 3px 8px;
    background-color: #999;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    color: #fff;
    font-weight: bold;
}

.wizardStepTitle {
    margin: 18px 20px 0 0;
    color: #999;
    font-weight: bold;
    text-decoration: none;
    display: block;
}

.wizardStepDescription {
    display: block;
    color: #999;
    font-size: 11px;
    margin: 0 20px 0 0;
    max-width: 220px;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* wizard step Arrow styles */
.wizardStepArrow {
    width: 27px;
    height: 70px;
    background: transparent url("/DesktopModules/DNNCorp/SocialLibrary/images/socialWizard.png") no-repeat;
}

    .wizardStepArrow.normal-normal {
        background-position: 0 -400px;
    }

    .wizardStepArrow.normal-active {
        background-position: 0 0;
    }

    .wizardStepArrow.active-normal {
        background-position: 0 -100px;
    }

    .wizardStepArrow.hover-normal {
        background-position: 0 -200px;
    }

    .wizardStepArrow.normal-hover {
        background-position: 0 -300px;
    }

    .wizardStepArrow.hover-active {
        background-position: 0 -500px;
    }

    .wizardStepArrow.active-hover {
        background-position: 0 -600px;
    }

.social-wizard > ul.wizard-tabs li.active .wizardStepNumber {
    background-color: #333;
}

.social-wizard > ul.wizard-tabs li.active .wizardStepTitle {
    color: #333;
}

.social-wizard .wizardPage {
    clear: both;
    margin: 15px 0;
    padding: 5px;
}

    .social-wizard .wizardPage h1 {
        margin-top: 0;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }

    .social-wizard .wizardPage .form label {
        display: inline-block;
        font-weight: bold;
        font-size: 13px;
    }

    .social-wizard .wizardPage .form div.error {
        margin-left: 105px;
        margin-top: 5px;
        color: red;
        font-size: 14px;
        font-weight: bold;
    }

/* popup form fix */
.dnnFormPopup .ui-dialog-content, #iPopUp .ui-dialog-content {
    max-height: 840px !important;
}

/* normal checkbox fix */
.dnnFormItem input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 8px 4px 4px 0;
}

/* default vote button style  - override by skin.css */
.share-idea-vote-options .button,
.idea-vote-options .button {
    background: #f5f5f5; /* Old browsers */
    background: linear-gradient(to bottom, #f5f5f5, #dfdfdf); /* W3C */
    vertical-align: top;
    color: #333;
}

    .share-idea-vote-options .button.left,
    .idea-vote-options .button.left {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        box-shadow: #ddd 0 1px 1px 0;
        display: inline-block;
        font-family: Arial, helvetica, sans-serif;
        font-weight: bold;
        font-size: 12px;
        margin-bottom: 0;
        margin-left: 0;
        margin-right: -3px;
        margin-top: 0;
        padding: 7px 10px 7px 10px;
        text-align: center;
        text-decoration: none;
    }

    .share-idea-vote-options .button.center,
    .idea-vote-options .button.center {
        border-radius: 1px;
        box-shadow: #ddd 0 1px 1px 0;
        display: inline-block;
        font-family: Arial, helvetica, sans-serif;
        font-weight: bold;
        font-size: 12px;
        margin-bottom: 0;
        margin-left: 0;
        margin-right: -3px;
        margin-top: 0;
        padding: 7px 10px 7px 10px;
        text-align: center;
        text-decoration: none;
    }

    .share-idea-vote-options .button.vright,
    .idea-vote-options .button.vright {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        box-shadow: #ddd 0 1px 1px 0;
        display: inline-block;
        font-family: Arial, helvetica, sans-serif;
        font-weight: bold;
        font-size: 12px;
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        padding: 7px 10px 7px 10px;
        text-align: center;
        text-decoration: none;
    }

    .share-idea-vote-options .button.single,
    .idea-vote-options .button.single {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        box-shadow: #ddd 0 1px 1px 0;
        display: inline-block;
        font-family: Arial, helvetica, sans-serif;
        font-weight: bold;
        font-size: 12px;
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        padding: 7px 10px 7px 10px;
        text-align: center;
        text-decoration: none;
    }

    .share-idea-vote-options .button.disabled,
    .idea-vote-options .button.disabled,
    .share-idea-vote-options .button.disabled:hover,
    .idea-vote-options .button.disabled:hover,
    .share-idea-vote-options .button.disabled:active,
    .idea-vote-options .button.disabled:active {
        background-color: #ccc;
        color: #aaa;
        cursor: not-allowed;
    }

.dnnFormItem select[disabled] {
    opacity: 0.5;
}

/* Social Calendar
-------------------------------------*/
#blogArchive,
#eventCalendar {
    padding: 20px;
    margin: 15px 0 15px 0;
    background: #fff;
}

.fc-calendar-container {
    position: relative;
    width: 205px;
}

.fc-calendar {
    width: 100%;
    height: 100%;
    display: table;
}

    .fc-calendar.fc-four-rows {
        height: 160px;
    }

    .fc-calendar.fc-five-rows {
        height: 192px;
    }

    .fc-calendar.fc-six-rows {
        height: 224px;
    }

    .fc-calendar .fc-head {
        height: 32px;
        line-height: 30px;
        background: #ccc;
        color: #fff;
        display: table-row;
    }

    .fc-calendar .fc-row {
        width: 100%;
        border-bottom: 1px solid #ddd;
        display: table-row;
        height: 32px;
    }

        .fc-calendar .fc-row > div,
        .fc-calendar .fc-head > div {
            display: table-cell;
            width: 14.2%;
        }

        .fc-calendar .fc-row > div {
            border-right: 1px solid #ddd;
            border-top: 1px solid #ddd;
            overflow: hidden;
        }

    .fc-calendar .fc-head > div {
        text-align: center;
        border-right: 1px solid #ddd;
    }

    .fc-calendar .fc-row > div > span.fc-date {
        display: block;
        width: 28px;
        color: #ddd;
        text-shadow: 0 -1px 0 rgba(255,255,255,0.8);
        text-align: center;
    }

    .fc-calendar .fc-row > div > span.other-month {
        display: block;
        width: 28px;
        color: #ddd;
        text-shadow: 0 -1px 0 rgba(255,255,255,0.8);
        text-align: center;
    }

    .fc-calendar .fc-row > div > span.fc-weekday {
        padding-left: 5px;
        display: none;
    }

    .fc-calendar .fc-row > div.fc-today {
        background: #fff4c3;
    }

    .fc-calendar .fc-row > div.fc-out {
        opacity: 0.6;
    }

    .fc-calendar .fc-row > div:last-child,
    .fc-calendar .fc-head > div:last-child {
        border-right: none;
    }

    .fc-calendar .fc-row:last-child {
        border-bottom: none;
    }

/* Custom calendar elements */
.custom-calendar-wrap {
    margin: 10px auto;
    position: relative;
    overflow: hidden;
}

    .custom-calendar-wrap > h3 {
        font-size: 15px;
    }

.custom-inner {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

    .custom-inner:before,
    .custom-inner:after {
        content: '';
        width: 99%;
        height: 50%;
        position: absolute;
        background: #f6f6f6;
        bottom: -4px;
        left: 0.5%;
        z-index: -1;
        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

    .custom-inner:after {
        content: '';
        width: 98%;
        bottom: -7px;
        left: 1%;
        z-index: -2;
    }

.custom-header {
    background: #fff;
    padding: 10px 0 10px 0;
    position: relative;
    border-bottom: 1px solid #ddd;
}

    .custom-header .custom-month,
    .custom-header .custom-year,
    .custom-header .custom-month-year-separate {
        text-align: center;
        color: #666;
        font-size: 16px;
        font-weight: bold;
        display: inline-block;
        vertical-align: top;
        margin-top: 10px;
    }

    .custom-header ul.dnnButtonGroup {
        float: right;
    }

        .custom-header ul.dnnButtonGroup .custom-prev,
        .custom-header ul.dnnButtonGroup .custom-next {
            height: 18px;
            width: 10px;
            display: block;
        }

        .custom-header ul.dnnButtonGroup .custom-prev {
            background: url("/DesktopModules/DNNCorp/SocialLibrary/images/left.png") no-repeat center;
        }

        .custom-header ul.dnnButtonGroup .custom-next {
            background: url("/DesktopModules/DNNCorp/SocialLibrary/images/right.png") no-repeat center;
        }


        .custom-header ul.dnnButtonGroup .custom-today {
            font-weight: bold;
            color: #888;
        }

/* Modifications */
.fc-calendar-container {
    width: auto;
    background: transparent;
    box-shadow: inset 0 1px rgba(255,255,255,0.8);
}

.fc-calendar .fc-head {
    background: transparent;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
}

.fc-calendar .fc-row > div {
    background: #fff;
}

    .fc-calendar .fc-row > div:empty {
        background: transparent;
    }

    .fc-calendar .fc-row > div > span.fc-date {
        margin: 8px auto 0 auto;
        color: #666;
        font-weight: 400;
        pointer-events: none;
    }

    .fc-calendar .fc-row > div > span.other-month {
        margin: 8px 0 0 0;
        color: #999;
        font-weight: 400;
        pointer-events: none;
    }

    .fc-calendar .fc-row > div.fc-today {
        box-shadow: inset 0 -1px 1px #000000;
        box-shadow: inset 0 -1px 1px rgba(0,0,0,0.1);
    }

        .fc-calendar .fc-row > div.fc-today > span.fc-date {
            color: #fff;
            text-shadow: 0 1px 1px #000000;
            text-shadow: 0 1px 1px rgba(0,0,0,0.1);
        }

    .fc-calendar .fc-row > div.fc-selected {
        background: #ccc;
        background-image: none !important;
        box-shadow: inset 0 -1px 1px #000000;
        box-shadow: inset 0 -1px 1px rgba(0,0,0,0.1);
    }


    .fc-calendar .fc-row > div.fc-content {
        background-image: url("/DesktopModules/DNNCorp/SocialLibrary/images/reddot.png");
        background-repeat: no-repeat;
        background-position: center 1px;
        cursor: pointer;
    }

        .fc-calendar .fc-row > div.fc-content.fc-today {
            background-image: none;
        }

    .fc-calendar .fc-row > div > div a,
    .fc-calendar .fc-row > div > div span {
        display: none;
        font-size: 22px;
    }

/* module subscribe */
.moduleSubscribe {
    padding: 20px;
}

    .moduleSubscribe h3 {
        font-size: 15px;
    }

    .moduleSubscribe a {
        display: block;
        font-weight: bold;
        background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/social_message.png");
        background-repeat: no-repeat;
        padding: 3px 0 0 28px;
    }

        .moduleSubscribe a.dnnUnsubscribeModule {
            background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/social_message_active.png");
        }

.status-compact-container {
    background: #fff;
}

/* dnnTableDisplay fix */
.dnnTableDisplay {
    border-collapse: collapse;
}

/* social module search box */
.dnnFilterSet {
    padding: 20px 20px 30px 20px;
    background-color: #edeae9;
}

    .dnnFilterSet table {
        width: 100%;
    }

        .dnnFilterSet table td:first-child {
            width: 100%;
        }

            .dnnFilterSet table td:first-child div.txtWrapper {
                width: 100%;
                overflow: hidden;
            }

        .dnnFilterSet table div.txtWrapper input[type="text"] {
            margin: 0;
            padding: 9px;
            background-color: #fff;
            border: 1px solid #ccc;
            width: 96%;
            box-shadow: none;
        }

        .dnnFilterSet table div.txtWrapper + a {
            display: block;
            margin-top: 12px;
            font-size: 14px;
            width: 150px;
        }

        .dnnFilterSet table a.dnnPrimaryAction {
            white-space: nowrap;
            margin-left: 10px;
        }

/* social module search suggestions */
.search-suggestion {
    padding: 20px;
    background: #fff;
    margin-top: 150px;
    display: none;
}

    .search-suggestion > .triangle {
        width: 39px;
        height: 31px;
        background-image: url("/DesktopModules/DNNCorp/SocialLibrary/images/triangle.png");
        margin: -50px 0 20px 30px;
    }

.search-suggestion-title {
    width: 450px;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 0 10px 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

ul.search-suggestion-list {
    width: 450px;
    color: #999;
}

    ul.search-suggestion-list > li {
        margin-bottom: 4px;
        width: 180px;
        margin-right: 10px;
        margin-left: 10px;
        float: left;
    }

div.search-suggestion-instruction {
    float: right;
    width: 210px;
    padding-left: 10px;
}

    div.search-suggestion-instruction > p {
        margin: 10px 33px 8px 0;
        font-size: 14px;
        font-weight: bold;
    }

        div.search-suggestion-instruction > p > a {
            font-size: 12px;
        }

    div.search-suggestion-instruction a.search-suggestion-btn {
        margin: 10px 0 10px 0;
        padding: 10px 25px 10px 25px;
    }

div.search-suggestion-instruction-icon {
    margin: 5px 0 10px 90px;
    width: 30px;
    height: 30px;
    background-color: #eee;
}

.suggestion-modalContainer {
    position: absolute;
    z-index: 90001;
}

/* social module list container */
.list-container {
    margin-top: 25px;
    background-color: #fff;
}

    .list-container > .status-container {
        background-color: #fff;
    }

.status-container > .status-scroll {
    margin: 20px;
}

.status-scroll > a > span {
    color: #777;
    font-weight: bold;
}

.status-scroll > a.selected > span {
    color: #fff;
}

/* social module sort filter */
.sort-filter-container {
    padding: 20px 20px 10px 20px;
    border-bottom: 1px solid #edeae9;
}

    .sort-filter-container > div.dnnLeft {
        margin-right: 20px;
    }

    .sort-filter-container > div.dnnRight {
        margin-top: 15px;
    }

    .sort-filter-container select {
        border: 1px solid #ccc;
        border-radius: 3px;
        color: #888;
        cursor: pointer;
        display: inline-block;
        margin: 0;
        outline: none;
        padding: 9px 8px 8px 8px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-shadow: none;
    }

/* social module pager */
ul.pager-ul {
    display: block;
    float: left;
    list-style-type: none;
    margin: 0;
}

    ul.pager-ul > li {
        display: block;
        float: left;
        margin-right: 3px;
    }

        ul.pager-ul > li > span:after,
        ul.pager-ul > li > a:after {
            content: ", ";
        }

        ul.pager-ul > li.pager-ul-last > span:after,
        ul.pager-ul > li.pager-ul-last > a:after {
            content: "";
        }

.dnnPagingCount span {
    padding: 0 10px 0 0;
}

div.pager-rightside > a, div.dnnPagingButtons > a {
    display: block;
    float: left;
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    margin-top: -6px;
    background: #fff; /* Old browsers */
    background: linear-gradient(to bottom, #fff, #eee6e5); /* W3C */
    box-shadow: 0 1px 0 0 #000000, inset 0 1px 0 0 #ffffff;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.4), inset 0 1px 0 0 rgba(255, 255, 255, 1);
    text-shadow: 0 1px 0 #ffffff;
    color: #555;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    div.pager-rightside > a.pager-prev, div.dnnPagingButtons > a.pager-prev {
        border-right: none;
        -webkit-border-top-left-radius: 3px;
        -webkit-border-bottom-left-radius: 3px;
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
        background-image: url("/DesktopModules/DNNCorp/SocialLibrary/images/left.png");
        background-repeat: no-repeat;
        background-position: center;
    }

    div.pager-rightside > a.pager-next, div.dnnPagingButtons > a.pager-next {
        -webkit-border-top-right-radius: 3px;
        -webkit-border-bottom-right-radius: 3px;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
        background-image: url("/DesktopModules/DNNCorp/SocialLibrary/images/right.png");
        background-repeat: no-repeat;
        background-position: center;
    }

.pager-next.disabled, .pager-prev.disabled {
    opacity: 0.65;
}

.pager-bottom {
    padding: 20px;
}

/* social module list view table container */
.loading-container.loading {
    background-image: url("/Images/dnnanim.gif");
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.75;
}

.bottom-create-btn {
    margin-right: 15px;
}

    .bottom-create-btn > a.dnnPrimaryAction {
        margin: 0;
    }

    .bottom-create-btn + div,
    .bottom-create-btn + div + div {
        margin-top: 10px;
    }

div.list-noresult {
    margin: 20px;
    font-size: 13px;
    font-weight: bold;
}

.list-tbl-container {
    background-color: #fff;
    padding: 20px 10px 20px 10px;
}

table.list-tbl {
    background-color: #fff;
    width: 100%;
    table-layout: fixed;
}

    table.list-tbl tbody tr.list-row {
        border-top: 1px solid #EDEAE9;
    }

        table.list-tbl tbody tr.list-row:first-child {
            border-top: none;
        }

/* social module list view some common label style */
.list-row-content {
    word-wrap: break-word;
    margin: 0 0 15px 0;
}

.list-row-comment-link {
    float: right;
}

ul.list-row-tags {
    display: inline;
    vertical-align: top;
    margin: 0 0 0 5px;
    padding: 0;
}

    ul.list-row-tags > li {
        display: inline-block;
        list-style-type: none;
        padding: 0;
        margin: 0 5px 0 0;
    }

        ul.list-row-tags > li:after {
            content: ',';
        }

        ul.list-row-tags > li:last-child:after {
            content: '';
        }

    ul.list-row-tags a {
        font-weight: normal;
        font-size: 10pt;
        margin-right: -4px;
        padding: 0;
        cursor: pointer;
        white-space: nowrap;
    }

.list-row-summary-container {
    vertical-align: top;
}

/* Social Tabs Styles */
.dnnSocialTabs > a {
    display: block;
    float: left;
    margin-right: 5px;
    padding: 9px 15px 9px 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background: #fff;
    background: linear-gradient(to bottom, #fff 0,#eee6e5 100%);
    box-shadow: inset 0 1px 0 0 #ffffff;
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 1);
    text-shadow: 0 1px 0 #fff;
}

    .dnnSocialTabs > a:hover {
        background: #e0dede;
        background: linear-gradient(to bottom, #e0dede,#f5f5f5 100%);
        color: #555;
    }

    .dnnSocialTabs > a.selected {
        border: 1px solid #a29b96;
        background: #bfb8b3;
        background: linear-gradient(to bottom, #d1cdc8 0, #b6afa9 100%);
        box-shadow: inset 0 1px 0 0 #ffffff;
        box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
        color: #fff;
        text-shadow: 0 -1px 0 #999;
        cursor: default;
    }

/* social module detail view common */
.detail-container {
    padding: 20px;
}

.moduleTitleContainer > .status-indicator {
    float: left;
    width: 46px;
    height: 46px;
    margin-right: 20px;
    margin-top: 5px;
    margin-left: 5px;
}

.title-container {
    float: left;
    padding-top: 4px;
    max-width: 500px;
}

    .title-container > h3.content-title {
        display: block;
        float: left;
    }

    .title-container > p.title-returnPrev {
        margin: -5px 0 0 0;
    }


ul.detail-social-actions {
    float: right;
    list-style-type: none;
    margin-top: 8px;
}

    ul.detail-social-actions > li {
        display: block;
        float: left;
        height: 20px;
        margin-right: 5px;
        width: 20px;
    }

        ul.detail-social-actions > li a {
            display: block;
            height: 24px;
            width: 24px;
        }

        ul.detail-social-actions > li span {
            display: block;
            height: 24px;
            width: 24px;
        }

.moduleThreadContainer .info-panel {
    border-bottom: 1px solid #edeae9;
    padding: 20px;
    color: #666;
}

    .moduleThreadContainer .info-panel > ul {
        margin: 0;
    }

        .moduleThreadContainer .info-panel > ul > li {
            display: block;
            float: left;
            padding: 0 8px 0 8px;
            line-height: 1em;
            border-left: 1px solid #ccc;
            margin-bottom: 8px;
        }

            .moduleThreadContainer .info-panel > ul > li:first-child {
                border-left: none;
                padding-left: 0;
            }


.detail-main-container {
    padding: 25px 20px 20px 20px;
}

    .detail-main-container.answer-comment {
        padding: 0 20px 0 20px;
    }

        .detail-main-container.answer-comment:first-child {
            padding-top: 5px;
        }

        .detail-main-container.answer-comment:last-child {
            padding-bottom: 20px;
        }

.detail-avatar-container {
    float: left;
    margin-right: 20px;
}

.avatar40 {
    display: block;
    border: 3px solid #ddd;
    background-color: #ddd;
    width: 40px;
    height: 40px;
}

    .avatar40 span {
        display: inline-block;
        border: transparent;
        text-decoration: none;
        height: 40px;
        width: 40px;
        overflow: hidden;
    }

    .avatar40 em {
        display: table-cell;
        width: 40px;
        height: 40px;
        vertical-align: middle;
    }

    .avatar40 img {
        display: inline-block;
        border: none;
        width: 100%;
    }

.highlight-content {
    padding: 20px;
    background-color: #f1f1f1;
}

span.detail-comments-author {
    margin-right: 15px;
}

span.detail-comments-date {
    display: block;
}

.answer-content > p {
    margin-top: 20px;
}

.answer-comments-content {
    margin: 20px 0 20px 0;
    position: relative;
}

    .answer-comments-content img {
        max-width: 100% !important;
    }

    .answer-comments-content p {
        margin: 0 0 15px 0;
        color: #888;
    }


ul.detail-bottom-social-actions {
    list-style-type: none;
    margin-top: 0;
    padding-left: 0;
    margin-left: 0;
}

    ul.detail-bottom-social-actions > li {
        border-left: 1px solid #dfdfdf;
        display: block;
        float: left;
        line-height: 1em;
        padding: 0 10px 0 10px;
    }

        ul.detail-bottom-social-actions > li > a {
            padding: 2px 0 0 25px;
            cursor: pointer;
            display: inline-block;
        }

            ul.detail-bottom-social-actions > li > a > span {
                display: inline-block;
            }

                ul.detail-bottom-social-actions > li > a > span.idea-like-count {
                    margin: 0 15px 0 -4px;
                }

        ul.detail-bottom-social-actions > li:first-child {
            border-left: none;
            padding: 0 10px 0 0;
        }


.idea-reply {
    background: transparent url("/DesktopModules/DNNCorp/SocialLibrary/Images/reply.png") no-repeat;
    background-position: 0 -2px;
}

.idea-report {
    background: transparent url("/DesktopModules/DNNCorp/SocialLibrary/Images/report.png") no-repeat;
    background-position: 0 -2px;
}

.idea-comment {
    background: transparent url("/DesktopModules/DNNCorp/SocialLibrary/Images/comment.png") no-repeat;
    background-position: 0 -2px;
}

.idea-like {
    background: transparent url("/DesktopModules/DNNCorp/SocialLibrary/Images/Likebtn.png") no-repeat;
    background-position: 0 -2px;
}

.idea-like-liked {
    background: transparent url("/DesktopModules/DNNCorp/SocialLibrary/Images/LikebtnSelected.png") no-repeat;
    background-position: 0 -2px;
}

ul.answer-comments-actions {
    margin-top: 20px;
    list-style-type: none;
}

    ul.answer-comments-actions > li {
        display: block;
        float: left;
        line-height: 1em;
        padding: 0 10px 0 10px;
        border-right: 1px solid #dfdfdf;
    }

        ul.answer-comments-actions > li:first-child {
            padding-left: 0;
        }

        ul.answer-comments-actions > li:last-child {
            border-right: none;
        }

.answer-vote.loading {
    opacity: 0.65;
    background-image: url("/images/dnnanim.gif");
    background-position: center center;
    background-repeat: no-repeat;
}

.answer-vote > a {
    display: block;
    width: 46px;
    height: 18px;
    background-color: #eee;
}

    .answer-vote > a:hover {
        background-color: #ccc;
    }

    .answer-vote > a.nohover:hover {
        background-color: #eee;
        cursor: default;
    }

.answer-vote.loading > span.answer-vote-numberOfVote {
    background-color: transparent;
}

.moduleThreadContainer > .answer-comments-panel {
    padding: 15px 20px 10px 20px;
    border-top: 1px solid #dfdfdf;
}

    .moduleThreadContainer > .answer-comments-panel > .dnnRight {
        margin-top: 10px;
    }

.answer-comments-panel > div.avatar40 {
    float: left;
    margin-right: 20px;
}

.answer-comments-panel > a.answer-comment-button,
.answer-comments-panel > a.answer-comment-button-top {
    float: left;
    margin: 5px 20px 0 0;
}

.answer-comments-panel > span {
    display: block;
    float: left;
    margin: 10px 15px 0 0;
}

.answer-add-panel.loading {
    background-image: url("/Images/dnnanim.gif");
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.75;
}

.detail-content-edit {
    float: right;
    padding: 0;
}

    .detail-content-edit a {
        display: inline-block;
        margin-left: 25px;
    }

#postFields {
    padding-top: 32px;
    padding-bottom: 16px;
}

    #postFields .dnnLabel {
        width: 20%;
    }

    #postFields .redactor-box,
    #wizard .redactor-box {
        display: inline-block;
        width: 57%;
        margin-bottom: 18px;
    }

    #wizard .dnnFormItem textarea,
    #postFields .dnnFormItem textarea,
    #wizard .dnnFormItem input[type="text"],
    #postFields .dnnFormItem input[type="text"],
    #wizard .dnnFormItem input[type="number"],
    #postFields .dnnFormItem input[type="number"],
    #postFields .dnnFormItem select,
    #wizard .dnnFormItem select {
        width: 57%;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        max-width: inherit;
        box-shadow: none;
    }

.dnnFormItem .redactor-box textarea {
    width: 100% !important;
}

#wizard .dnnFormItem input[type="number"],
#postFields .dnnFormItem input[type="number"] {
    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;
}

#postFields .dnnFormItem input[type="checkbox"],
#wizard .dnnFormItem input[type="checkbox"] {
    margin-bottom: 18px;
}

#wizard .dnnFormItem .dnnFileUploadScope,
#postFields .dnnFormItem .dnnFileUploadScope,
.blog-entry-form-container .dnnFormItem .dnnFileUploadScope {
    width: 57%;
    min-width: 490px;
}

.dnnMultipleControls {
    background: #eee;
    padding: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 57%;
    max-width: inherit;
}

#postFields .dnnFormItem .dnnMultipleControls input[type="checkbox"],
#wizard .dnnFormItem .dnnMultipleControls input[type="checkbox"] {
    margin-bottom: 0;
}

.answer-add-panel .redactor-box {
    width: 95%;
}

.idea-vote-options {
    position: absolute;
    border: 1px solid #bbb;
    background-color: white;
    padding: 15px 10px 10px 10px;
    display: none;
    box-shadow: 0 0 8px 8px rgba(197, 197, 197, 0.6);
    z-index: 50;
    white-space: nowrap;
    border-collapse: separate;
}

.share-idea-vote-options {
    display: block;
    margin-left: 25%;
}

td {
    vertical-align: top;
}

/* Social Group Invite
-------------------------------------*/
.inviteSection {
    width: 425px;
    float: left;
}

.inviteList {
    overflow: auto;
    height: 220px;
}

    .inviteList .container {
        border-bottom: 1px #ddd solid;
        margin: 0 20px 12px 0;
        float: left;
        width: 45%;
        height: 55px;
    }

.invitePrivateList {
    overflow: auto;
    width: 850px;
    height: 220px;
}

    .invitePrivateList .container {
        border-bottom: 1px #ddd solid;
        margin: 0 20px 12px 0;
        float: left;
        width: 22%;
        height: 55px;
    }

        .invitePrivateList .container .primary,
        .inviteList .container .primary {
            width: 40px;
            float: left;
        }

        .invitePrivateList .container .secondary,
        .inviteList .container .secondary {
            margin-left: 55px;
        }


.user-name {
    display: block;
    margin: 0 0 5px 0;
}

.inviteByEmailSection {
    width: 400px;
    float: right;
}

.inviteByEmail {
    background-color: #edeae9;
    padding: 10px;
    height: 100%;
}

.inviteLabel {
    color: #666;
    line-height: 2;
    letter-spacing: 0;
    font-weight: bold;
    text-align: left;
    padding-bottom: 15px;
}

textarea.inviteTextArea {
    resize: none !important;
    width: 100% !important;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.inviteButton {
    padding: 5px 0 5px 0 !important;
    min-width: 60px !important;
}

.invitedEmailText {
    display: inline-block;
    float: right;
    padding-right: 5px;
    display: none;
}

.memberText {
    color: #cfcfcf;
}

.inviteProcessing {
    display: none;
    font-style: italic;
    float: right;
    padding-right: 5px;
}

.inviteUser {
    float: right;
    display: block;
}

.dnnFileUploadScope {
    display: inline-block;
    background-color: #F0F0F0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0;
}

    .dnnFileUploadScope > div:first-child {
        float: right;
        width: 250px;
    }

    .dnnFileUploadScope .dnnLeft .dnnFormItem {
        width: 250px;
    }

        .dnnFileUploadScope .dnnLeft .dnnFormItem .dnnDropDownList {
            width: 80%;
        }

        .dnnFileUploadScope .dnnLeft .dnnFormItem input[type="button"] {
            margin-left: 45px;
            width: 80%;
        }

        .dnnFileUploadScope .dnnLeft .dnnFormItem.dnnFileUploadFolder {
            display: none !important;
        }

.accessibility {
    display: inline-block;
    width: 57%;
    background-color: #F0F0F0;
    padding: 10px 5px 10px 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.accessibility-review {
    margin: 0 0 10px 80px;
}

.mustBeApproved {
    margin-left: 30px;
    font-style: italic;
}

.accessibility-label {
    display: inline-block;
    vertical-align: top;
}

.accessibility-help {
    display: inline-block;
    margin: 6px 0 0 15px;
    max-width: 400px;
    vertical-align: top;
}

.invite-page {
    margin: 0 22px 0 22px;
}

/* Remove User Dialog
-------------------------------------*/
.dnnForm.removeUser-container {
    padding: 20px;
    width: auto !important;
}

.removeUser-container .reasonLabel {
    width: 100%;
    text-align: left;
}

.removeUser-container .reason .reasonText {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    height: 100px;
    resize: none !important;
}

/* Image Gallery
--------------------------------------*/
.evoq-gallery-control .evoq-gallery-container .evoq-gallery-thumbnail {
}

    .evoq-gallery-control .evoq-gallery-container .evoq-gallery-thumbnail img {
        display: block;
        max-width: 100%;
    }

.evoq-gallery-control a.evoq-gallery-footer {
    display: block;
    float: right;
    margin-top: 10px;
}

.evoq-gallery-navigation {
    position: fixed;
    bottom: 25px;
    color: #fff;
    left: 50%;
    margin-left: -150px;
    width: 300px;
    font-size: 25px;
    background: transparent;
    border: none;
    outline: none;
}

    .evoq-gallery-navigation > a.evoq-gallery-navigation-left {
        display: block;
        float: left;
        color: #fff;
        width: 30px;
        text-align: left;
    }

    .evoq-gallery-navigation > a.evoq-gallery-navigation-right {
        display: block;
        float: right;
        color: #fff;
        width: 30px;
        text-align: right;
    }

    .evoq-gallery-navigation > span {
        display: block;
        margin: 0 30px 0 30px;
        text-align: center;
    }


.dnnFormPopup #gallery-image-zoom.ui-dialog-content,
.dnnFormPopup #gallery-image-zoom-mobile.ui-dialog-content {
    max-height: none !important;
}

/* upload attachments */
.dnnFormPopup .dnnForm .dnnFormItem.social-attachment-uploader {
    background-color: #f0f0f0;
    margin-bottom: -16px;
    padding-left: 25%;
    width: 75%;
}

    .dnnFormPopup .dnnForm .dnnFormItem.social-attachment-uploader .dnnFileUploadScope {
        margin-bottom: 0;
    }

    .dnnFormPopup .dnnForm .dnnFormItem.social-attachment-uploader .social-attachment-txt {
        margin-left: 10px;
        margin-bottom: 8px;
        display: inline-block;
    }

        .dnnFormPopup .dnnForm .dnnFormItem.social-attachment-uploader .social-attachment-txt span {
            color: #999;
        }

    .dnnFormPopup .dnnForm .dnnFormItem.social-attachment-uploader .dnnDropDownList .dt-container {
        right: 0;
    }

/* attachments view in detail */
.detail-attachments-area {
    padding: 8px;
    background: #dedede;
    margin: 0 0 20px 0;
    position: relative;
}

    .detail-attachments-area a.detail-attachments-arrow {
        display: block;
        position: absolute;
        right: 12px;
        top: 16px;
        width: 7px;
        height: 7px;
        background-image: url("/DesktopModules/DNNCorp/SocialLibrary/images/sort-sprite.png");
    }

        .detail-attachments-area a.detail-attachments-arrow.up {
            background-position: 0 -20px;
        }

        .detail-attachments-area a.detail-attachments-arrow.down {
            background-position: 0 0;
        }


    .detail-attachments-area ul.detail-attachments-expanded {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .detail-attachments-area ul.detail-attachments-expanded > li {
            list-style-type: none;
            margin: 0;
            padding: 0;
        }

            .detail-attachments-area ul.detail-attachments-expanded > li > * {
                display: inline-block;
                vertical-align: top;
                margin-right: 4px;
            }

            .detail-attachments-area ul.detail-attachments-expanded > li > a.detail-attachments-delete {
                width: 11px;
                height: 9px;
                margin-top: 4px;
                background-image: url("/DesktopModules/DNNCorp/SocialLibrary/images/remove.png");
            }

/*  IE8 fix */
body.IE8 div.dnnTagsInput > div > input[type='text'] {
    border: none !important;
    background: transparent;
    outline: none;
    font-weight: normal;
    font-family: helvetica;
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    padding: 3px 0 3px 0;
    margin-bottom: 5px !important;
}

/* Content exchange search styles */
.social-content-exchange-title {
    margin: 18px 25px 12px;
    font-weight: bold;
    font-size: 14px;
}

    .social-content-exchange-title span {
        color: #000000;
    }

.social-content-exchange-summary {
    background-color: #F1F1F1;
    margin: 10px 25px 20px;
    padding: 10px;
    max-height: 100px;
    overflow: auto;
}

    .social-content-exchange-summary span {
        font-weight: bold;
    }

.content-exchange-search-parent-header {
    background-color: #F1F1F1;
    margin: 10px 25px 0;
    padding: 10px;
}

    .content-exchange-search-parent-header label {
        font-weight: bold;
    }

    .content-exchange-search-parent-header input {
        margin-top: 5px;
        width: 95%;
        font-size: 11px;
    }

div#parentsList {
    margin: 0 25px;
}

    div#parentsList table {
        width: 100%;
        margin: 0;
    }

tr.content-exchange-search-item-selected {
    background-color: rgba(128, 128, 128, 0.44);
}

.redactor-box textarea:focus {
    background-color: #111 !important;
    color: #ccc !important;
}

.redactor-box textarea {
    position: relative !important;
    overflow: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: inherit !important;
    outline: none !important;
    border: none !important;
    background-color: #222 !important;
    box-shadow: none !important;
    color: #ccc !important;
    font-size: 13px !important;
    font-family: Menlo, Monaco, monospace, sans-serif !important;
    resize: none !important;
}
/*  Create Event resizing */
div.events div.redactor-box .redactor-editor {
    min-height: 50px !important;
    height: 50px !important;
    max-height: 50px !important;
}

.redactor-box .redactor-editor {
    min-height: 260px !important;
    height: 260px !important;
    max-height: 260px !important;
}

.redactor-dropdown,
.redactor-toolbar-tooltip {
    z-index: 100000 !important;
}

.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;
}


/* Module Search Part*/
.dnnMobileTableFilter {
    margin: 0;
}

.dnnMobileFilterSet {
    padding: 15px;
    background: #edeae9;
}

    .dnnMobileFilterSet > input[type="text"],
    .dnnMobileFilterSet > select {
        display: block;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        width: 100%;
        -webkit-border-radius: 0 !important;
        border-radius: 0 !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    .dnnMobileFilterSet > a.dnnMobileFilterSet-Cancel {
        display: none;
        float: right;
        width: 15%;
        padding: 7px 4px 7px 4px;
        margin: 2px 0 0 0;
        background: #fe9e47;
        text-align: center;
        color: #fff;
        font-weight: bold;
    }

.dnnMobileSocialSearchResult {
    display: none;
    margin: 66px 0 0 0;
    background: #fff;
    padding: 0;
}

    .dnnMobileSocialSearchResult > ul {
        display: block;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .dnnMobileSocialSearchResult > ul > li {
            display: block;
            list-style: none;
            border-bottom: 1px solid #ccc;
        }

            .dnnMobileSocialSearchResult > ul > li a {
                display: block;
                margin: 10px 15px 10px 15px;
                font-size: 14px;
                font-weight: bold;
            }

.dnnMobileTwoButtonsGroup {
    width: 100%;
}

    .dnnMobileTwoButtonsGroup a.dnnPrimaryAction,
    .dnnMobileTwoButtonsGroup a.dnnSecondaryAction {
        width: 50%;
        padding: 20px 0 20px 0;
        margin: 0;
        float: left;
        display: block;
    }

    .dnnMobileTwoButtonsGroup a.dnnSecondaryAction {
        float: right;
    }

.moduleContainer a.dnnMobileCreateNewButton {
    display: block;
    background: #fe9e47;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.moduleContainer a.dnnMobileCreateNewButton-searchResult {
    display: block;
    background: #339795;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin: 15px;
    text-transform: uppercase;
}

.dnnMobileListContainer {
    margin: 15px 0 0 0;
    padding: 15px;
    background: #fff;
}

.dnnMobileStatusContainer > select {
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    display: block;
    box-sizing: border-box;
    width: 100%;
    color: #777;
    padding: 6px;
}

.dnnMobileTotalCountContainer {
    margin: 15px -10px 0 -10px;
    padding: 15px 10px 15px 10px;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

    .dnnMobileTotalCountContainer > span {
        display: block;
        font-size: 15px;
        font-weight: bold;
        color: #666;
    }

.dnnMobileListTblContainer {
    margin: 10px 0 0 0;
}

.dnnMobileListTbl {
    width: 100%;
    table-layout: fixed;
}

    .dnnMobileListTbl td.dnnMobileIdeaVote {
        width: 20%;
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        padding: 0;
        vertical-align: middle;
    }

        .dnnMobileListTbl td.dnnMobileIdeaVote a.idea-vote-button.dnnTertiaryAction,
        .dnnMobileListTbl td.dnnMobileIdeaVote a.idea-vote-button.dnnTertiaryAction:hover {
            display: block;
            padding: 15px;
            margin: 0;
            -webkit-border-radius: 0;
            border-radius: 0;
            background: #fff;
            border: none;
            min-width: inherit;
            color: #666;
            width: auto !important;
        }

            .dnnMobileListTbl td.dnnMobileIdeaVote a.idea-vote-button.dnnTertiaryAction.voting,
            .dnnMobileListTbl td.dnnMobileIdeaVote a.idea-vote-button.dnnTertiaryAction.voting:hover {
                background: #eeeeee;
                color: #000;
            }

            .dnnMobileListTbl td.dnnMobileIdeaVote a.idea-vote-button.dnnTertiaryAction > span {
                display: block;
                margin: .8em 0 .7em 0;
                text-align: center;
                color: #666;
                line-height: 1em;
            }

    .dnnMobileListTbl td.dnnMobileEventVote a.idea-vote-button.dnnTertiaryAction > span {
        margin: 0;
    }

    .dnnMobileListTbl td.dnnMobileIdeaVote a.idea-vote-button.dnnTertiaryAction.activeIndicator > span {
        color: #fff;
        margin: 0;
        line-height: 1.3em;
    }

    .dnnMobileListTbl td.dnnMobileIdeaVote.answer-answerCount {
        background: #eee6e5;
        padding: 12px 0 12px 0;
        vertical-align: middle;
        width: 25%;
    }

        .dnnMobileListTbl td.dnnMobileIdeaVote.answer-answerCount.answer-noanswer {
            background-image: url("/DesktopModules/DNNCorp/answers/images/noanswer.png");
            background-repeat: no-repeat;
            background-position: top right;
        }

        .dnnMobileListTbl td.dnnMobileIdeaVote.answer-answerCount.answer-accepted {
            background-image: url("/DesktopModules/DNNCorp/answers/images/mobileCheckmark.png");
            background-repeat: no-repeat;
            background-position: top right;
        }

    .dnnMobileListTbl td.dnnMobileIdeaVote.activeIndicator span {
        color: #fff !important;
    }

    .dnnMobileListTbl td.dnnMobileIdeaTitle {
        border-bottom: 1px solid #ddd;
        padding: 12px;
    }

        .dnnMobileListTbl td.dnnMobileIdeaTitle a.dnnSocialLink span.idea-title {
            font-size: 14px;
        }

        .dnnMobileListTbl td.dnnMobileIdeaTitle div span {
            color: #aaa;
            display: inline-block;
            margin-right: 3px;
        }

        .dnnMobileListTbl td.dnnMobileIdeaTitle p.answer-content-summary {
            color: #aaa;
            margin: 15px 0 15px 0;
        }

.dnnMobileListTblContainer a.dnnMobileLoadMoreLink {
    display: block;
    background: #ccc;
    color: #666;
    text-transform: uppercase;
    padding: 20px;
    text-align: center;
    margin: 10px 0 0 0;
}

/* Common Detail View */
.dnnMobile-moduleThreadContainer {
    background-color: #fff;
    padding: 15px;
}

    .dnnMobile-moduleThreadContainer a.dnnMobile-detailViewReturn {
        display: inline-block;
        background: #eee;
        width: 55px;
        height: 50px;
        background-image: url("/images/datePickerArrows.png");
        background-repeat: no-repeat;
        background-position: 3px 0px;
        vertical-align: top;
        margin-right: -2px;
    }

    .dnnMobile-moduleThreadContainer a.dnnMobile-voteButton {
        display: inline-block;
        width: 55px;
        height: 50px;
        min-width: inherit !important;
        text-align: center;
        margin: 0 !important;
        padding: 0;
        vertical-align: top;
    }

        .dnnMobile-moduleThreadContainer a.dnnMobile-voteButton > span {
            display: block;
            padding-top: 20px;
            overflow: hidden;
        }

ul.dnnMobile-socialActions {
    margin: 0 0 5px 0;
    float: right;
    display: block;
    list-style-type: none;
    background-color: #eee;
}

    ul.dnnMobile-socialActions > li {
        display: inline-block;
        float: none;
        width: auto;
        height: auto;
        margin: 0;
        list-style-type: none;
    }

        ul.dnnMobile-socialActions > li a {
            width: 32px;
            height: 32px;
            background-color: #eee;
            background-position: center center;
            background-repeat: no-repeat;
            display: block;
        }

         ul.dnnMobile-socialActions > li span {
            width: 32px;
            height: 32px;
            background-color: #eee;
            background-position: center center;
            background-repeat: no-repeat;
            display: block;
        }

            ul.dnnMobile-socialActions > li a.dnnSocialSubscribe,
            ul.dnnMobile-socialActions > li a.dnnSocialSubscribeActive {
                margin-left: -2px;
            }

.dnnMobile-moduleThreadContainer .avatar40 {
    float: left;
}

.dnnMobile-moduleThreadContainer span.idea-numberOfVotes,
.dnnMobile-moduleThreadContainer span.idea-votes-span {
    color: #999;
    display: inline-block;
    margin-right: 3px;
}

.dnnMobile-moduleThreadContainer span.idea-title-status {
    margin: 0;
    display: inline-block;
}

.dnnMobile-moduleThreadContainer h3 {
    margin: 0 !important;
    padding: 10px 0 10px 0;
    font-size: 22px;
    font-family: Arial;
    line-height: 1.3em;
}

.dnnMobile-moduleThreadContainer .comment-info {
    display: block;
    vertical-align: top;
    padding: 12px 0 0 0;
}

.dnnMobile-moduleThreadContainer span.idea-comments-author,
.dnnMobile-moduleThreadContainer span.comment-author,
.dnnMobile-moduleThreadContainer span.idea-comments-date,
.dnnMobile-moduleThreadContainer span.comment-date {
    display: inline-block;
    vertical-align: top;
    padding: 0 0 0 8px;
    font-weight: normal;
    margin: 0;
}

.dnnMobile-moduleThreadContainer span.idea-comments-date,
.dnnMobile-moduleThreadContainer span.comment-date {
    color: #888;
    margin: 0;
}

.dnnMobile-contentBody {
    margin: 15px 0 0 0;
    word-wrap: break-word;
}

    .dnnMobile-contentBody p {
        margin: 0 0 15px 0;
        color: #888;
    }

ul.dnnMobile-ideaActions {
    list-style-type: none;
    margin: 15px 0 15px 0;
}

    ul.dnnMobile-ideaActions > li {
        display: inline-block;
        margin: 0 -4px 0 0;
        padding: 0;
        border: none;
        width: 33%;
    }

        ul.dnnMobile-ideaActions > li > a {
            cursor: pointer;
            display: block;
            height: 35px;
            background-color: #eee;
            background-repeat: no-repeat;
            background-position: center center;
        }

            ul.dnnMobile-ideaActions > li > a.idea-reply {
                background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/reply.png");
            }

            ul.dnnMobile-ideaActions > li > a.idea-like {
                background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/likebtn.png");
            }

            ul.dnnMobile-ideaActions > li > a.idea-like-liked {
                background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/likebtnselected.png");
            }

            ul.dnnMobile-ideaActions > li > a.idea-report {
                background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/report.png");
            }

.comments-container-common {
    display: none;
}

.dnnMobile-subHeader {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    clear: both;
    margin: 0 0 15px 0;
}

.dnnMobileLike.likes {
    margin: 10px 0 10px 0;
}

/* Comment Control */
.dnnMobile-moduleThreadContainer div.comment-content {
    margin: 0 0 15px 55px;
    padding: 0;
    color: #999;
}

ul.dnnMobile-comment-actions {
    list-style-type: none;
    margin: 0 0 20px 45px;
}

    ul.dnnMobile-comment-actions > li {
        display: inline-block;
        margin: 0 -2px 0 0;
        padding: 0;
        border: none;
        width: 20%;
    }

        ul.dnnMobile-comment-actions > li > a {
            cursor: pointer;
            display: block;
            height: 35px;
            background-color: #fff;
            background-repeat: no-repeat;
            background-position: center center;
        }

            ul.dnnMobile-comment-actions > li > a.dnnMobile-comment-reply {
                background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/reply.png");
            }

                ul.dnnMobile-comment-actions > li > a.dnnMobile-comment-reply.authoring {
                    background-color: #eee;
                }

            ul.dnnMobile-comment-actions > li > a.dnnMobile-comment-like {
                background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/likebtn.png");
            }

            ul.dnnMobile-comment-actions > li > a.dnnMobile-comment-like-liked {
                background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/likebtnselected.png");
            }

            ul.dnnMobile-comment-actions > li > a.dnnMobile-comment-report {
                background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/report.png");
            }

            ul.dnnMobile-comment-actions > li > a.dnnMobile-comment-remove {
                background-image: url("/DesktopModules/DNNCorp/SocialLibrary/Images/remove.png");
            }

    ul.dnnMobile-comment-actions.dnnMobile-comment-inline-actions {
        margin: 0 0 20px 0;
    }

.comments-container-mobileview a.dnnMobile-comment-button,
.comments-container-mobileview a.dnnMobile-comment-viewmore-button {
    width: 48%;
    padding: 20px 0 20px 0;
    margin: 0 !important;
    text-transform: uppercase;
}

.comments-container-mobileview .comment-post.dnnMobile-comment-post {
    background: #eee;
    width: auto;
    float: none;
    margin: 0;
    padding: 15px 0 0 0;
    width: 100%;
}

    .comments-container-mobileview .comment-post.dnnMobile-comment-post .dnnFormItem {
        margin: 0 10px 0 10px;
        background: #fff;
        display: block;
        float: none;
    }

        .comments-container-mobileview .comment-post.dnnMobile-comment-post .dnnFormItem textarea, 
        .comments-container-mobileview .comment-post.dnnMobile-comment-post .dnnFormItem div[contenteditable] {
            box-sizing: border-box;
            width: 100%;
            padding: 7px;
            background-color: #fff;
            border: 1px solid #ccc;
            -moz-border-radius: 0;
            -webkit-border-radius: 0;
            border-radius: 0;
            -webkit-box-shadow: none;
            box-shadow: none;
            height: 125px;
            display: block;
            max-width: inherit;
            max-height: inherit;
            margin: 0 0 10px 0;
        }

        .comments-container-mobileview .comment-post.dnnMobile-comment-post .dnnFormItem .redactor_box {
            width: 100%;
            background-color: #fff;
            border: 1px solid #ccc;
            min-height: 125px;
            display: block;
            margin: 0 0 10px 0;
        }

            .comments-container-mobileview .comment-post.dnnMobile-comment-post .dnnFormItem .redactor_box .redactor_editor {
                min-height: 110px;
            }

    .comments-container-mobileview .comment-post.dnnMobile-comment-post.dnnMobile-comment-post-reply {
        margin: -20px 0 20px 0;
    }

    .comments-container-mobileview .comment-post.dnnMobile-comment-post ul.answer-post-actions {
        margin: 0;
        padding: 0;
        display: block;
        float: none;
    }

        .comments-container-mobileview .comment-post.dnnMobile-comment-post ul.answer-post-actions > li {
            margin: 0;
            padding: 0;
            display: inline-block;
            float: none;
            width: 49%;
        }

        .comments-container-mobileview .comment-post.dnnMobile-comment-post ul.answer-post-actions a {
            width: 100%;
            display: block;
            padding: 20px 0 20px 0;
            margin: 0;
            text-transform: uppercase;
        }

.comments-container-mobileview .dnnMobileLike.likes {
    margin: -15px 0 15px 0;
}
.comments-container-mobileview .answer-add-panel .redactor-box{ 
    width: 100%;
}
.dnnMobile-comment-post .comment-inline-login {
    margin: 0 10px 10px 10px;
}

.dnnMobile-comment-post .comment-inline-login > div > div {
    margin: 0 0 10px 0;
}

.dnnMobile-comment-post .comment-inline-login input[type="text"], 
.dnnMobile-comment-post .comment-inline-login input[type="password"] {
    display: block;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dnnMobile-comment-post .comment-inline-login a.dnnMobile-comment-option {
    display: inline-block;
    padding: 10px 0 10px 0;
    text-align: center;
    background: #eee;
    color: #777;
    border: 1px solid #ccc;
    margin-right: -4px;
    width: 43px;
    margin-bottom: 15px;
}

.dnnMobile-comment-post .comment-inline-login a.dnnMobile-comment-option.selected {
    background: #ccc;
    color: #fff;
}

/* inline comment */
.dnnMobile-comment {
    margin: 10px 0 10px 0;
    padding: 10px 0 0 0;
    border-top: 1px solid #eee;
}

    .dnnMobile-comment span.dnnMobile-comment-inline-date {
        display: inline-block;
        margin-left: 5px;
        color: #888;
    }

    .dnnMobile-comment .dnnMobile-comment-inline-content {
        display: block;
        margin: 8px 0 0 0;
        color: #888;
    }

.dnnMobile-comment-load-more {
    margin-left: -55px;
    border-top: 1px solid #eee;
    font-weight: bold;
    padding: 10px 0 0 0;
    text-align: center;
}

/* REPORT Control */
.dnnFormPopup.dnnFormPopupMobileView .social-report-content > div,
.dnnFormPopup.dnnFormPopupMobileView .social-report-content > h3 {
    font-family: Arial;
    font-size: 16px;
}

.dnnFormPopup.dnnFormPopupMobileView .social-report-other > textarea {
    box-sizing: border-box;
    padding: 7px;
    background-color: #fff;
    border: 1px solid #ccc;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    height: 125px;
    max-width: inherit;
    max-height: inherit;
}

/* LIKE POPUP Control */
.dnnFormPopup.dnnFormPopupMobileView .like-popup-list {
    height: 100%;
}

/* IDEA Mobile */
.dnnMobile-idea-vote-options {
    position: absolute;
    background-color: #eee;
    padding: 15px 10px 10px 10px;
    display: none;
    z-index: 50;
    white-space: nowrap;
    width: Calc(90% - 30px);
}

td > .dnnMobile-idea-vote-options {
    position: static;
    width: 95%;
}

.dnnMobile-share-idea-vote-options {
    width: 100%;
    padding: 0;
}

    .dnnMobile-idea-vote-options a.button,
    .dnnMobile-share-idea-vote-options a.button {
        display: block;
        width: 15%;
        height: 33px;
        text-align: center;
        padding-top: 16px;
        float: left;
        background: #339795;
        color: #fff;
        margin: 0 2px 2px 0;
        font-size: 18px;
        font-weight: bold;
    }

        .dnnMobile-idea-vote-options a.button.selectedVotes,
        .dnnMobile-share-idea-vote-options a.button.selectedVotes {
            background: #ff5f76;
        }

        .dnnMobile-idea-vote-options a.button.disabled,
        .dnnMobile-share-idea-vote-options a.button.disabled {
            background: #ccc;
            color: #999;
        }

.dnnMobile-idea-vote-options div.remaining {
    margin: 10px 0 5px 0;
    text-align: center;
    font-size: 12px;
    color: #888;
    font-weight: bold;
}

    .dnnMobile-idea-vote-options div.remaining span.value {
        color: #fe9e47;
    }

/* ANSWER Mobile */
.dnnMobile-moduleThreadContainer a.dnnMobile-voteButton.activeIndicator {
    background-image: url("/DesktopModules/DNNCorp/answers/images/mobileCheckmark.png");
    background-repeat: no-repeat;
    background-position: center center;
}

.dnnMobile-contentBody.answer-content {
    padding: 0 0 15px 0;
    margin: 15px 0 15px 0;
    border-bottom: 1px solid #eee;
}

.dnnMobile-contentBody .answer-vote {
    margin: 0;
}

    .dnnMobile-contentBody .answer-vote > a.answer-vote-upbtn {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .dnnMobile-contentBody .answer-vote > a.answer-vote-downbtn {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

.dnnMobile-contentBody .answer-contentBody {
    margin-left: 55px;
    margin-bottom: 15px;
}

.answer-comments-content {
    word-wrap: break-word;
}

.dnnMobile-contentBody img {
    max-width: 100% !important;
    height: auto;
}

.dnnMobile-contentBody iframe {
    max-width: 100% !important;
    height: auto;
}

.dnnMobile-contentBody .answer-contentBody .comment-template-container {
    padding: 0;
}

.comments-container-mobileview.answer-comments-panel {
    margin: 20px 0 20px 0;
}

ul.dnnMobile-comment-actions.answer-comment-actions {
    margin: 0 0 0 55px;
}

ul.dnnMobile-ideaActions.answer-comment-actions {
    margin: 15px 6px 0 62px;
}

    ul.dnnMobile-ideaActions.answer-comment-actions + .dnnMobileLike {
        margin-top: 15px;
    }

.mobileView .dnnMobile-moduleThreadContainer a.dnnMobile-addanswer-button.dnnPrimaryAction {
    width: 96%;
    padding: 20px 0 20px 0;
    margin: 20px 0 20px 0 !important;
    text-transform: uppercase;
}

@media (max-width: 47.9em) {
    .idea-comment-warning {
        width: auto !important;
    }
}

/* BLOG Mobile */
.dnnMobile-blog-title {
    margin: 15px 0 15px 0;
}

    .dnnMobile-blog-title a.blog-social-rss {
        margin: -30px 0 0 0;
    }

.dnnFormPopup.dnnFormPopupMobileView .captioned-box .entry-publishdate {
    display: inline-block;
    width: 90%;
    box-sizing: border-box;
}

.dnnFormPopup.dnnFormPopupMobileView > .blog-entry-form-container {
    padding: 0;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem.dnnFormItemCheckbox > .dnnLabel {
    display: inline-block;
    width: auto !important;
}

    .dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem.dnnFormItemCheckbox > .dnnLabel + span {
        margin-top: 0;
        margin-bottom: 12px;
    }

.dnnBlogEditEntry.blog-list-container.dnnFormPopup.dnnFormPopupMobileView {
    position: static;
}
.dnnFormPopup.dnnFormPopupMobileView.dnnBlogEditEntry .dnnForm .dialog-footer > ul {
    text-align: right;
}
.dnnFormPopup.dnnFormPopupMobileView.dnnBlogEditEntry .dnnForm .dialog-footer > ul > li{
    max-width: 25%;
    width: auto;
    margin: 0;
}

.mobileView .blog-entry-form-container .dnnMultipleControls.blog-author-select select {
    width: 100%;
}

.mobileView .list-row-summary-image {
    margin: 12px 0 12px 0;
}
.mobileView .list-row-summary-image > img {
    max-width: 100% !important;
    height: auto;
}

/* WIKI Mobile */
.dnnFormPopup.dnnFormPopupMobileView .wiki-editor-form {
    margin-top: 15px;
}

/* EVENT Mobile */
.dnnMobileListTbl .dnnMobileIdeaVote.dnnMobileEventVote {
    vertical-align: bottom;
    width: 30%;
}

.dnnMobileListTbl td.dnnMobileIdeaVote.dnnMobileEventVote a.idea-vote-button.dnnTertiaryAction,
.dnnMobileListTbl td.dnnMobileIdeaVote.dnnMobileEventVote a.idea-vote-button.dnnTertiaryAction:hover {
    background: #eee;
}

.dnnMobileIdeaVote.dnnMobileEventVote .attending-count {
    margin: 15px 0 10px 0;
}

    .dnnMobileIdeaVote.dnnMobileEventVote .attending-count span {
        display: block;
    }

.dnnMobileIdeaTitle.dnnMobileEventTitle > a.dnnSocialLink {
    display: block;
    margin-bottom: 1em;
}

.dnnMobile-idea-vote-options.dnnMobile-event-vote-options a.button {
    width: 32%;
    font-size: 12px;
}

.dnnMobileIdeaVote.dnnMobileEventVote div.socialevents-todaylabel {
    left: 0;
    top: 12px;
    height: auto;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnMultipleControls {
    float: none;
    width: 100%;
}

    .dnnFormPopup.dnnFormPopupMobileView #wizard .dnnFormItem .dnnMultipleControls #txtFromDate,
    .dnnFormPopup.dnnFormPopupMobileView #wizard .dnnFormItem .dnnMultipleControls #txtToDate {
        display: inline-block;
        width: 90%;
        box-sizing: border-box;
        margin-bottom: 18px;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.dnnFormPopup.dnnFormPopupMobileView #wizard .dnnFormItem #selectFromTimeHours,
.dnnFormPopup.dnnFormPopupMobileView #wizard .dnnFormItem #selectToTimeHours,
.dnnFormPopup.dnnFormPopupMobileView #wizard .dnnFormItem #selectFromTimeMinutes,
.dnnFormPopup.dnnFormPopupMobileView #wizard .dnnFormItem #selectToTimeMinutes,
.dnnFormPopup.dnnFormPopupMobileView #wizard .dnnFormItem #selectFromTimeAMPM,
.dnnFormPopup.dnnFormPopupMobileView #wizard .dnnFormItem #selectToTimeAMPM {
    width: 50px;
    display: inline-block;
    padding: 7px 3px 7px 0;
    margin-bottom: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dnnFormPopup.dnnFormPopupMobileView #guest-page .dnnMultipleControls {
    float: none !important;
    width: auto;
}

.dnnFormPopup.dnnFormPopupMobileView div#inviteFriendsFormItem > div.inviteFriendsDiv {
    float: none !important;
    width: auto;
}

.dnnFormPopup.dnnFormPopupMobileView table.inviteFriendsTable tr th:first-child,
.dnnFormPopup.dnnFormPopupMobileView table.inviteFriendsTable tr td:first-child {
    width: 20px;
    padding: 4px 0 4px 10px;
}

.dnnFormPopup.dnnFormPopupMobileView table.inviteFriendsTable td input[type="checkbox"].normalCheckBox {
    margin: 8px 0 0 0;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem .inviteFriendsSearch input[type="text"] {
    display: block;
    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 .social-wizard a.dnnPrimaryAction {
    float: right;
}

.dnnFormPopup.dnnFormPopupMobileView .social-wizard a.dnnSecondaryAction {
    float: left;
}

.dnnFormPopup.dnnFormPopupMobileView .social-wizard .wizardStepTitle {
    color: #000;
}

.dnnFormPopup.dnnFormPopupMobileView .social-wizard .wizardStepNumber {
    background-color: #000;
}

.dnnFormPopup.dnnFormPopupMobileView .social-wizard > ul.wizard-tabs {
    border-radius: 0;
    -moz-border-radius: 0;
}

.dnnFormPopup.dnnFormPopupMobileView .social-wizard .wizardStepDescription {
    margin: 0;
}

.dnnFormPopup.dnnFormPopupMobileView .social-wizard > ul.wizard-tabs li .wizardStep {
    padding-left: 10px !important;
}

.dnnFormPopup.dnnFormPopupMobileView .social-wizard-indicator {
    position: absolute;
    width: 50px;
    height: 10px;
    top: 5px;
    right: 15px;
}

    .dnnFormPopup.dnnFormPopupMobileView .social-wizard-indicator > span {
        display: inline-block;
        background: #aaa;
        width: 10px;
        height: 10px;
        border-radius: 10px;
        margin-right: 5px;
    }

.dnnFormPopup.dnnFormPopupMobileView > .social-wizard-indicator > span.active {
    background: #666;
}

.dnnMobile-moduleThreadContainer .socialevents-detail-dateaddress span {
    margin-bottom: 10px;
}

.dnnMobile-moduleThreadContainer .socialeevents-embedded-map {
    margin: 12px 0 12px 0;
}

.dnnMobile-moduleThreadContainer .socialevent-actions {
    margin-bottom: 10px;
}

    .dnnMobile-moduleThreadContainer .socialevent-actions > a {
        width: 48%;
        padding: 20px 0 20px 0;
        margin: 0 !important;
        text-transform: uppercase;
        display: inline-block;
    }

        .dnnMobile-moduleThreadContainer .socialevent-actions > a.idea-vote-button.dnnTertiaryAction,
        a.idea-vote-button.dnnTertiaryAction.attendees-rsvp {
            border-radius: 0;
            -moz-border-radius: 0;
            -webkit-border-radius: 0;
            box-shadow: none;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            text-shadow: none;
            border: none;
        }

a.idea-vote-button.dnnTertiaryAction.attendees-rsvp {
    display: block;
    float: right;
    cursor: default;
}

td.guest-list-name-td.dnnMobileIdeaTitle a.dnnSocialLink {
    font-size: inherit;
    display: block;
}

td.guest-list-name-td.dnnMobileIdeaTitle a.dnnSecondaryAction {
    margin: 5px 0 0 0;
}

    td.guest-list-name-td.dnnMobileIdeaTitle a.dnnSecondaryAction.disabled,
    td.guest-list-name-td.dnnMobileIdeaTitle a.dnnSecondaryAction.disabled:active,
    td.guest-list-name-td.dnnMobileIdeaTitle a.dnnSecondaryAction.disabled:hover {
        cursor: default;
    }


/* MYSTATUS EXPAND Mobile */
.dnnMobile-profile-container {
    padding: 10px;
    background: #fff;
}

	.dnnMobile-profile-container .reportUser > a{
		padding-left: 25px;
	}

.dnnMobile-profile-detail {
    display: block;
    float: left;
    margin: 0 0 0 10px;
    max-width: 100%;
}

    .dnnMobile-profile-detail span.dnnMobile-profile-fullname {
        display: block;
        font-weight: bold;
        font-size: 13px;
        word-wrap: break-word;
    }

    .dnnMobile-profile-detail span.dnnMobile-profile-address {
        display: block;
        background: #fff url("/DesktopModules/DNNCorp/mystatus/images/address.png") no-repeat;
        padding: 1px 0 0 20px;
        margin: 5px 0 0 -5px;
    }
		
	.dnnMobile-profile-detail  a.userRemovedMsg
	{
		padding: 5px;
		background-color: #fb0044 !important;
		background: #fb0044 !important;
		color: #fff !important;
		font-weight: bold;
	}

.dnnMobile-profile-description {
    font-size: 15px;
    margin: 12px 0 3px 0;
    font-family: "Titillium Web", Arial, Helvetica, sans-serif;
    color: #333;
}

.dnnMobile-biography {
    color: #999;
}

ul.dnnMobile-profile-statistics {
    width: 100%;
    margin: 5px 0 0 0;
    padding: 0;
    list-style-type: none;
}

    ul.dnnMobile-profile-statistics > li {
        display: block;
        width: 48%;
        float: left;
        margin: 5px 5px 0 0;
        padding: 15px 0 12px 0;
        background-color: #eee;
        list-style-type: none;
    }

        ul.dnnMobile-profile-statistics > li.li-rightside {
            margin: 5px 0 0 0;
        }

        ul.dnnMobile-profile-statistics > li > span {
            display: block;
            text-align: center;
            color: #999;
            font-size: 10px;
        }

            ul.dnnMobile-profile-statistics > li > span.dnnMobile-profile-item-data {
                color: #fe9e47;
                font-size: 18px;
                font-weight: bold;
            }

/* Hide mystatus compactview in mobile view */
@media (max-width: 42.625em) {
    .ModMyStatusC .status-container {
        margin: 0;
    }

    .ModMyStatusC .status-compact-container,
    .ModMyStatusC .statusLogin {
        display: none;
    }
}

/* BADGE Mobile */
.mobileView ul.dnnBadgeList {
    width: 100%;
}

.mobileView .badgeContainer {
    margin: 0 0 15px 0;
    width: 100%;
    cursor: pointer;
}

    .mobileView .badgeContainer .dnnMobileUserBadgeDetail {
        padding: 15px 15px 0 15px;
        clear: both;
    }

        .mobileView .badgeContainer .dnnMobileUserBadgeDetail .completed-by {
            padding: 10px 0 0 0;
            margin: 10px 0 -5px 0;
            border-top: 1px solid #ccc;
        }

            .mobileView .badgeContainer .dnnMobileUserBadgeDetail .completed-by ul {
                margin: 0;
                vertical-align: top;
            }

                .mobileView .badgeContainer .dnnMobileUserBadgeDetail .completed-by ul li {
                    display: inline-block;
                    margin: 0 5px 5px 0;
                }

                    .mobileView .badgeContainer .dnnMobileUserBadgeDetail .completed-by ul li label {
                        display: block;
                        font-weight: bold;
                        margin-top: 13px;
                    }

                    .mobileView .badgeContainer .dnnMobileUserBadgeDetail .completed-by ul li a {
                        border: medium none transparent;
                        display: inline-block;
                        height: 40px;
                        overflow: hidden;
                        text-decoration: none;
                        width: 40px;
                        border: 2px solid #ccc;
                    }

                        .mobileView .badgeContainer .dnnMobileUserBadgeDetail .completed-by ul li a em {
                            display: table-cell;
                            height: 40px;
                            vertical-align: middle;
                            width: 40px;
                        }

                    .mobileView .badgeContainer .dnnMobileUserBadgeDetail .completed-by ul li img {
                        border: medium none;
                        display: inline-block;
                        width: 100%;
                    }

/* GROUP DIRECTORY Mobile */
.dnnMobileListTbl.dnnMobileGroupDirectoryTbl td.dnnMobileIdeaVote {
    border-right: none;
    padding-top: 12px;
    width: 110px;
}

.dnnMobileListTbl.dnnMobileGroupDirectoryTbl td.dnnMobileIdeaTitle {
    padding: 15px 12px 0 12px;
}

td.dnnMobileIdeaVote .group-member-info {
    padding: 10px;
    background-color: #eee;
}

    td.dnnMobileIdeaVote .group-member-info span {
        display: block;
        text-align: center;
    }

        td.dnnMobileIdeaVote .group-member-info span.member-count {
            font-weight: bold;
            font-size: 16px;
            margin-bottom: 3px;
        }

        td.dnnMobileIdeaVote .group-member-info span.member-label {
            color: #666;
        }

td.dnnMobileIdeaVote a.joinButton {
    display: block;
    margin-top: 5px;
}

.dnnMobileListTbl.dnnMobileGroupDirectoryTbl td.dnnMobileIdeaTitle .answer-content-summary {
    margin: 10px 0 15px 0;
    line-height: 1.5em;
    height: 4.5em;
    overflow: hidden;
}

/* GROUP SPACE create group wizard fileupload */
.mobileView #wizard .dnnFormItem .dnnFileUploadScope, 
.mobileView #postFields .dnnFormItem .dnnFileUploadScope, 
.mobileView .blog-entry-form-container .dnnFormItem .dnnFileUploadScope {
    width: 100%;
    min-width: 100%;
    margin-right: 0;
}

    .mobileView .dnnFileUploadScope > .dnnLeft {
        width: 35%;
        margin: 10px 0 10px 10px;
        padding: 0;
    }

    .mobileView .dnnFileUploadScope > div:first-child {
        float: right;
        margin: 0 10px 0 0;
        width: 50%;
        position: relative;
    }

    .mobileView .dnnFileUploadScope .dnnLeft .dnnFormItem {
        margin: 0;
        width: 100%;
    }

    .mobileView .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone {
        float: right;
        width: 100%;
        height: 100px;
    }

        .mobileView .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone span {
            display: none !important;
        }

        .mobileView .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone img {
            max-width: 100% !important;
            max-height: 100% !important;
        }

    .mobileView .dnnFileUploadScope .dnnLeft .dnnFormItem.dnnFileUploadFolder + div {
        display: none !important;
    }

    .mobileView .dnnFileUploadScope .dnnLeft .dnnFormItem input[type="button"] {
        width: 100% !important;
        border: none;
        margin: 10px 10px 0 0;
        background: #999;
        color: #fff;
        border-radius: 0;
        text-shadow: none;
        box-shadow: none;
        padding: 10px;
    }

    .mobileView .dnnFileUploadScope .dnnFormItem span.dnnMobileUploadGroupImage {
        display: block;
        float: none;
        width: 100%;
        margin: 15px 0 10px -5px;
        padding: 0;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
    }

    .mobileView .dnnFormPopup {
        border-radius: 0;
    }

    .mobileView .dnnFormPopup.fu-dialog {
        width: auto !important;
        left: 0 !important;
        right: 0 !important;
    }

    .mobileView .dnnFormPopup.fu-dialog .fu-container {
        padding: 0 !important;
    }

    .mobileView .dnnFormPopup.fu-dialog div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
        display: none !important;
    }

    .mobileView .fu-container .fu-fileupload-statuses-container {
        height: inherit !important;
    }

    .mobileView .fu-dialog-content ul.dnnButtonGroup {
        display: none !important;
    }

    .mobileView a.fu-fileupload-thumbnail, 
    .mobileView a.fu-fileupload-thumbnail:link, 
    .mobileView a.fu-fileupload-thumbnail:visited, 
    .mobileView a.fu-fileupload-thumbnail:hover, 
    .mobileView a.fu-fileupload-thumbnail:active {
         display: none !important;
    }

.mobileView #wizard .accessibility {
    width: 100%;
    padding: 0;
}

    .mobileView #wizard .accessibility .accessibility-review {
        margin: 0 10px 10px 30px;
    }

.mobileView #wizard .accessibility-label {
    margin: 5px 0 0 5px;
}

.mobileView #wizard .accessibility-help {
    margin: 0 10px 8px 35px;
    display: block;
}

.mobileView .checkboxlist {
    width: 100%;
    float: none;
}

.mobileView .groupTabs {
    display: none;
}

/* GROUP Invite members */
.mobileView .invite-page {
    height: auto;
    margin: 0;
}

.mobileView .inviteList {
    overflow: hidden;
    height: auto;
}

.mobileView .inviteList .container {
    width: 100%;
    margin: 0 0 10px 0;
}

.mobileView .inviteList .container .primary {
    margin-bottom: 10px;
}

.mobileView  .inviteSection,
.mobileView  .inviteByEmailSection {
    width: 100%;
    float: none;
}

.mobileView  .inviteUser {
    float: left;
    margin: 0 0 10px 0;
}

/* GROUP SPACE Mobile */
.dnnMobile-groupOverview-main {
    padding: 15px;
    background: #fff;
}

.dnnMobile-groupOverview-nav {
    width: 100px;
    float: right;
}

    .dnnMobile-groupOverview-nav > div {
        width: 50px;
        height: 50px;
        background-position: center;
        background-repeat: no-repeat;
        cursor: pointer;
        float: left;
    }

        .dnnMobile-groupOverview-nav > div.inactive {
            background-color: #ddd;
        }

        .dnnMobile-groupOverview-nav > div.active {
            background-color: #808080;
        }

    .dnnMobile-groupOverview-nav .navHome.inactive {
        background-image: url("/DesktopModules/DNNCorp/groupSpaces/images/icon-home-inactive.png");
    }

    .dnnMobile-groupOverview-nav .navHome.active {
        background-image: url("/DesktopModules/DNNCorp/groupSpaces/images/icon-home-active.png");
    }

    .dnnMobile-groupOverview-nav .navSearch.inactive {
        background-image: url("/DesktopModules/DNNCorp/groupSpaces/images/icon-search-inactive.png");
    }

    .dnnMobile-groupOverview-nav .navSearch.active {
        background-image: url("/DesktopModules/DNNCorp/groupSpaces/images/icon-search-active.png");
    }

.dnnMobile-groupOverview-primary {
    margin: 35px 0 25px 0;
}

    .dnnMobile-groupOverview-primary .groupOverview-imageContainer {
        padding: 0;
        margin: 0 20px 0 0;
        width: 100px;
    }

        .dnnMobile-groupOverview-primary .groupOverview-imageContainer .group-image {
            margin: 0;
            width: 100px;
            height: 100px;
        }

            .dnnMobile-groupOverview-primary .groupOverview-imageContainer .group-image span {
                width: 100px;
                height: 100px;
            }

                .dnnMobile-groupOverview-primary .groupOverview-imageContainer .group-image span em {
                    width: 100px;
                    height: 100px;
                }

    .dnnMobile-groupOverview-primary .groupOverview-infoContainer {
        margin-left: 115px;
    }

        .dnnMobile-groupOverview-primary .groupOverview-infoContainer .group-name {
            font-size: 20px;
            line-height: 1.5em;
            font-weight: bold;
            color: #666;
            display: block;
        }

        .dnnMobile-groupOverview-primary .groupOverview-infoContainer .statDate {
            font-size: 16px;
            line-height: 1.5em;
            color: #999;
            display: block;
        }

        .dnnMobile-groupOverview-primary .groupOverview-infoContainer .dnnPrimaryAction,
        .dnnMobile-groupOverview-primary .groupOverview-infoContainer .dnnSecondaryAction {
            display: inline-block;
            margin: 8px 0 0 0;
            font-size: 14px;
            padding: 12px;
        }

.dnnMobile-groupOverview-stats {
    margin: 0 -15px -15px -15px;
    border-top: 1px solid #eee;
}

    .dnnMobile-groupOverview-stats > div {
        border-right: 1px solid #eee;
        padding: 15px 25px 15px 25px;
        display: inline-block;
        vertical-align: top;
    }

        .dnnMobile-groupOverview-stats > div > span {
            display: block;
            text-align: center;
        }

            .dnnMobile-groupOverview-stats > div > span.stat {
                font-size: 20px;
                line-height: 1.4em;
                font-weight: bold;
                color: #000;
            }

            .dnnMobile-groupOverview-stats > div > span.statName {
                line-height: 1em;
                color: #999;
            }

.dnnMobile-groupOverview-search {
    display: none;
    background-color: #808080;
}

    .dnnMobile-groupOverview-search > div {
        padding: 10px;
    }

    .dnnMobile-groupOverview-search input[type="text"] {
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        text-shadow: none;
    }

.dnnMobileGroupSearchResult {
    display: none;
    margin: 56px 0 0 0;
    background: #fff;
}

    .dnnMobileGroupSearchResult > ul {
        display: block;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .dnnMobileGroupSearchResult > ul > li {
            display: block;
            list-style: none;
            border-bottom: 1px solid #ccc;
        }

            .dnnMobileGroupSearchResult > ul > li > span {
                display: block;
                padding: 10px 15px 10px 15px;
                font-size: 14px;
                font-weight: bold;
                border-bottom: 1px solid #ccc;
            }

            .dnnMobileGroupSearchResult > ul > li > ul {
                margin-left: 10px;
            }

                .dnnMobileGroupSearchResult > ul > li > ul > li {
                    display: block;
                    list-style: none;
                }

                    .dnnMobileGroupSearchResult > ul > li > ul > li > a {
                        display: block;
                        margin: 10px 15px 10px 15px;
                        font-weight: bold;
                    }

.dnnMobileGroupSpaces > a.dnnMobileGroupSpaces-indicator {
    background-image: url("/DesktopModules/DNNCorp/groupSpaces/images/icon-groups-navbar.png");
    background-color: transparent;
    width: 50px;
    height: 50px;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    float: left;
    border-right: 1px solid #fff;
}

.dnnMobileGroupSpaces > a.dnnMobileGroupSpaces-label {
    display: block;
    padding: 17px 15px 0 15px;
    font-size: 14px;
    float: left;
    color: #fff;
}

.dnnMobileGroupsTab {
    margin: 0;
    padding: 0;
    list-style-type: none;
    background: #eee;
    display: none;
}

    .dnnMobileGroupsTab > li {
        padding: 15px;
        margin: 0;
        list-style-type: none;
        border-bottom: 1px solid #ccc;
    }

        .dnnMobileGroupsTab > li > a {
            color: #666;
            font-size: 14px;
            display: block;
        }

/* ACTIVITY Mobile */
.mobileView .journalEditor-Container {
    display: block;
    margin: 0 10px 0 10px;
    z-index: 0;
}

    .mobileView .journalEditor-Container #journalEditor {
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        -webkit-box-shadow: none;
        text-shadow: none;
        width: auto;
        background: #fff;
        padding: 5px;
    }

        .mobileView .journalEditor-Container #journalEditor #journalPlaceholder {
            white-space: nowrap;
            overflow: hidden;
            padding: 0;
        }

.mobileView .journalrow div.journalitem ul.jcmt li.cmtfakeeditarea input[type="text"] {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.mobileView #journalEditor #journalContent {
    width: 90%;
}

.mobileView #journalEditor #tbar {
    margin-right: 6px;
    margin-top: 4px;
    width: auto;
    min-width: inherit;
    position: static;
}
.mobileView #journalEditor #tbar > span#tbar-perm,
.mobileView #journalEditor #tbar > span#tbar-attach {
    display: none;
}

.mobileView #journalOptionArea div.journal_onlineFileShare {
    display: none;
}

.mobileView #journalOptionArea div.journal_localFileShare {
    width: 100%;
    float: none;
}

.mobileView #journalOptionArea div.journal_localFileShare span.dnnInputFileWrapper {
    width: 80% !important;
}

.mobileView #journalOptionArea div.journal_localFileShare span.browser-upload-btn {
    display: none;
}

.mobileView div.journalTools div#journalOptionArea div.fileUploadArea div#itemUpload .progress_bar_wrapper {
    display: none !important;
}

.mobileView div.journalTools div#journalOptionArea div.fileUploadArea div#itemUpload .file-upload-error {
    display: none !important;
}

.mobileView .journalTools .avatar {
    display: none;
}

.mobileView .journalViewTools-container {
    padding: 20px 10px 20px 10px;
}

.mobileView div#journalItems {
    background-color: #FFFFFF;
    padding: 20px 10px 0 10px;
}

.mobileView .journalrow div.journalitem {
    margin-left: 55px;
    padding-left: 10px;
}

    .mobileView .journalrow div.journalitem > div > i {
        word-wrap: break-word;
    }

    .mobileView .journalrow div.journalitem .journalfooter abbr {
        display: block;
        margin: 0 0 5px 0;
    }

.mobileView .dnnSocialLink.journalitem-remove {
    display: none;
}

.mobileView .journalViewTools {
    height: auto;
    padding: 0 0 12px 0;
}

.mobileView .journalrow div.journalitem .jlink > a {
    float: none;
    margin: 0 0 12px 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    border: none;
}

.mobileView .journalrow div.journalitem .jlink > a > img {
    max-width: 100%;
}

.mobileView  .journalTools #journalOptionArea #linkArea #imagePreviewer {
    width: 100%;
    float: none;
    margin: 10px 0 10px 0;
    padding: 0;
}
.mobileView .journalTools #journalOptionArea #linkArea #imagePreviewer #image,
.mobileView .journalTools #journalOptionArea #linkArea #imagePreviewer #image span,
.mobileView .journalTools #journalOptionArea #linkArea #imagePreviewer #image span em {
    width: 100%;
    height: 250px;
}

.mobileView .select-view {
    -moz-border-radius: none;
    -moz-box-shadow: none;
    -webkit-border-radius: 0;
    -webkit-box-shadow: none;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    display: block;
    box-sizing: border-box;
    -moz-box-sizeing: border-box;
    width: 100%;
    padding: 7px;
}

.mobileView .journalTools #share {
    width: 50%;
    padding: 15px;
}

.mobileView a.dnnPrimaryAction#getNew,
.mobileView div#journalBottomControls a.dnnPrimaryAction{
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 15px;
}

.mobileView .journalrow div.journalitem .likes {
    margin-bottom: 5px;
}

.mobileView .journalrow div.journalitem ul.jcmt {
    margin-left: -65px;
    margin-top: -10px;
}

    .mobileView .journalrow div.journalitem ul.jcmt > li {
        padding: 5px;
    }

        .mobileView .journalrow div.journalitem ul.jcmt > li.jcmt-loadmore {
            border-right: 5px solid #ff5f76;
            padding-right: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #ccc;
            padding-top: 15px;
            margin-top: 20px;
        }

            .mobileView .journalrow div.journalitem ul.jcmt > li.jcmt-loadmore:before,
            .mobileView .journalrow div.journalitem ul.jcmt > li:first-child:before {
                display: none;
            }

        .mobileView .journalrow div.journalitem ul.jcmt > li:first-child {
            padding-top: 15px;
        }

    .mobileView .journalrow div.journalitem ul.jcmt li textarea {
        -webkit-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .mobileView .journalrow div.journalitem ul.jcmt div.jcmtbuttons > a {
        margin: 0;
        width: 45%;
        padding: 10px 0 10px 0;
    }

    .mobileView .journalrow div.journalitem ul.jcmt ul.cmt-actions {
        margin-left: 50px;
    }

    .mobileView .journalrow div.journalitem ul.jcmt > li.cmtfakeeditarea {
        padding-bottom: 15px;
    }

.mobileView .journalBottomContorls-container {
    padding: 20px 10px;
}

/* hide activity stream filter in mobile view */
.mobileView .leftPaneNarrow .DnnModule-ActivityStream,
.mobileView .rightPane .DnnModule-ActivityStream {
    display: none;
}

/* Leaderboard */
.dnnMobileLeaderboardTbl {
    table-layout: fixed;
    overflow: hidden;
    white-space: nowrap;
}
.dnnMobileLeaderboardTbl > thead th {
    padding: 20px 10px 20px 10px;
    text-align: left;
    background-color: #eee;
    border-left: 1px solid #fff;
    font-weight: bold;
}

.dnnMobileLeaderboardTbl > thead th:first-child {
    width: 30px;
}

.dnnMobileLeaderboardTbl > thead th:first-child + th + th {
    width: 25px;
}

.dnnMobileLeaderboardTbl > tbody td {
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.dnnMobileLeaderboardTbl > tbody td:first-child {
    font-weight: bold;
    font-size: 13px;
    border-left: 1px solid #eee;
}

.dnnMobileLeaderboardTbl > tbody td .avatar40 {
    display: block;
    margin: 10px 0 10px 10px;
    float: left;
}

.dnnMobileLeaderboardTbl > tbody td .avatar40 + div {
    margin-left: 65px;
    overflow: hidden;
}

.dnnMobileLeaderboardTbl > tbody td a.dnnSocialLink {
    display: block;
    margin: 12px 0 3px 0;
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
}

.dnnMobileLeaderboardTbl > tbody td a.dnnSocialLink + span {
    display: block;
    font-size: 11px;
    text-align: left;
    white-space: nowrap;
}

.dnnMobileLeaderboardTbl > tbody td span.dnnLeaderboard-points {
    font-weight: bold;
    font-size: 13px;
}

.mobileView .dnnMobileBottomPager > a.dnnSecondaryAction {
    display: block;
    width: 49%;
    margin: 15px 0 0 0;
    float: left;
    padding: 25px 0 25px 0;
}

.mobileView .dnnMobileBottomPager > a.dnnSecondaryAction  + a.dnnSecondaryAction {
    float: right;
}

.dnnMobileLeaderboardTbl > tbody > tr.dnnLeaderHighlighted td {
    background-color: #dfdfdf;
    background-color: rgba(0, 0, 0, 0.04);
}

.dnnMobileLeaderboardTbl > tbody > tr.dnnLeaderHighlighted td:first-child {
    position: relative; /* necessary */
    text-align: left; /* necessary*/
    background: none; /* remove background */
    padding: 0;
    border-left: none;
}


/* Mozila Firefox fix -- Please don't change it */
@-moz-document url-prefix() {
    .dnnMobileLeaderboardTbl > tbody > tr.dnnLeaderHighlighted td:first-child {
        display: block;
        width: 100%;
    }
}
    
.dnnMobileLeaderboardTbl > tbody > tr.dnnLeaderHighlighted td:first-child > div {
    margin: 0 0 0 10px;
    padding: 25px 10px 25px 0;
    height: 100%; /* necessary */
    width: calc(100% - 20px); /* necessary */
    background: #dfdfdf; /* reapplies bg to child */
    background: rgba(0, 0, 0, 0.04); /* reapplies bg to child */
    text-align: center;
}

.dnnMobileLeaderboardTbl > tbody > tr.dnnLeaderHighlighted td:first-child:before,
.dnnMobileLeaderboardTbl > tbody > tr.dnnLeaderHighlighted td:first-child:after {
    content: '';
    position: absolute;
    border-right: 10px solid rgba(0, 0, 0, 0.04);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.dnnMobileLeaderboardTbl > tbody > tr.dnnLeaderHighlighted td:first-child:before {
    top: 0;
    height: 50%;
    border-bottom: 10px solid transparent;
}

.dnnMobileLeaderboardTbl > tbody > tr.dnnLeaderHighlighted td:first-child:after {
    bottom: 0;
    height: 50%;
    border-top: 10px solid transparent;
}

/* challenge mobile */
.mobileView div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: none;
}

.mobileView .dnnFormItem > ul.token-input-list-facebook {
    width: 100%;
}

.mobileView .dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="text"].dateInput {
    display: inline;
    width: auto !important;
}

.mobileView div.chart-summary > div {
    padding: 8px;
}

    .mobileView div.chart-summary > div span {
        display: block;
        float: right;
        font-size: 15px;
        font-weight: bold;
        min-width: 20px;
    }

    .mobileView div.chart-summary > div span.summary-title {
        float: left;
    }

.mobileView .journalTools #journalOptionArea #itemUpload .filePreviewArea div.preview-photo-item {
    display: block;
    float: none;
    margin: 0 0 10px 0;
    padding: 0;
    width: auto;
}

/* attachments view in detail */
.dnnMobile-detail-attachments-title {
    padding: 8px 0 8px 8px;
    background: #eee;
    margin-right: 5px;
}

    .dnnMobile-detail-attachments-title span {
        display: inline-block;
        vertical-align: top;
        height: 22px;
        margin-top: 5px;
        font-size: 14px;
    }
    .dnnMobile-detail-attachments-title span.dnnMobile-attachments-pin {
        width: 29px;
        height: 27px;
        margin-top: 0;
        margin-right: 10px;
        background-image: url("/DesktopModules/DNNCorp/SocialLibrary/images/pin.png");
    }

ul.dnnMobile-detail-attachments-expanded {
    margin: 10px 0 10px 0;
    padding: 0;
    list-style-type: none;
    font-size: 14px;
}

    ul.dnnMobile-detail-attachments-expanded > li {
        margin: 0;
        list-style-type: none;
        padding: 0;
    }

/* Gallery control */

#gallery-image-zoom-mobile .owl-wrapper-outer.autoHeight {
    margin-top: 35px;
}

#gallery-image-zoom-mobile .gallery-bottom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35px;
    background: rgba(0, 0, 0, 0.65098);
}

    #gallery-image-zoom-mobile .gallery-bottom a {
        display: block;
        float: right;
        margin: 10px 10px 0 0;
        font-size: 15px;
        font-weight: bold;
        color: #fff;
    }

#gallery-image-zoom-mobile .owl-wrapper {
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, 0.65);
}

    #gallery-image-zoom-mobile .item > img {
        display: block;
        border: none;
        height: auto;
        max-width: 100%;
        margin: 0 auto 0 auto;
    }

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction {
    float: right;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    float: left;
}

@font-face{font-family:'RedactorFont';src:url(data:application/x-font-ttf;charset=utf-8;base64,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) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,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) format('woff');font-weight:normal;font-style:normal}.redactor-box{position:relative;overflow:visible;margin-bottom:24px}.redactor-box textarea{display:block;position:relative;margin:0;padding:0;width:100%;overflow:auto;outline:0;border:0;background-color:#111;box-shadow:none;color:#ccc;font-size:13px;font-family:Menlo,Monaco,monospace,sans-serif !important;resize:none}.redactor-box textarea:focus{outline:0}.redactor-editor,.redactor-box{background:#fff}.redactor-editor,.redactor-box,.redactor-box textarea{z-index:auto}.redactor-box-fullscreen{z-index:1051}.redactor-toolbar{z-index:100}.redactor-dropdown{z-index:1052}#redactor-modal-overlay,#redactor-modal-box,#redactor-modal{z-index:500001}body .redactor-box-fullscreen{position:fixed;top:0;left:0;width:100%}.redactor-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.redactor-editor{position:relative;overflow:auto;margin:0 !important;padding:20px;min-height:80px;outline:0;white-space:normal;border:1px solid #eee;font-family:Arial,Helvetica,Verdana,Tahoma,sans-serif !important;font-size:14px;line-height:1.6em}.redactor-editor:focus{outline:0}.toolbar-fixed-box+.redactor-editor{padding-top:32px !important}.redactor-placeholder:after{position:absolute;top:20px;left:20px;content:attr(placeholder);display:block;color:#999 !important;font-weight:normal !important}.redactor-toolbar{position:relative;top:0;left:0;margin:0 !important;padding:0 !important;list-style:none !important;font-size:14px !important;line-height:1 !important;background:#fff;border:0;box-shadow:0 1px 2px rgba(0,0,0,0.2)}.redactor-toolbar:after{content:"";display:table;clear:both}.redactor-toolbar.redactor-toolbar-overflow{overflow-y:auto;height:29px;white-space:nowrap}.redactor-toolbar.redactor-toolbar-external{z-index:999;box-shadow:none;border:1px solid rgba(0,0,0,0.1)}.redactor-toolbar li{vertical-align:top;display:inline-block;margin:0 !important;padding:0 !important;outline:0;list-style:none !important;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;font-size:100% !important}.redactor-toolbar li a{display:block;color:#333 !important;text-align:center;padding:9px 10px !important;font-size:100% !important;background:#fff !important;outline:0;border:0;text-decoration:none;cursor:pointer;zoom:1;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.redactor-toolbar li a:hover{outline:0;background-color:#1f78d8 !important;color:#fff !important}.redactor-toolbar li a:hover i:before{color:#fff}.redactor-toolbar li a:active,.redactor-toolbar li a.redactor-act{outline:0;background-color:#ccc !important;color:#444 !important}.redactor-toolbar li a.redactor-btn-image{width:14px;height:14px;background-position:center center;background-repeat:no-repeat}.redactor-toolbar li a.fa-redactor-btn{display:inline-block;padding:9px 10px 8px 10px;line-height:1}.redactor-toolbar li a.redactor-button-disabled{filter:alpha(opacity=30);-moz-opacity:.3;opacity:.3}.redactor-toolbar li a.redactor-button-disabled:hover{color:#333;outline:0;background-color:transparent !important;cursor:default}.redactor-toolbar li a.redactor-button-focus{color:#fff;background:#000}.redactor-box .CodeMirror{display:none}.re-icon{font-family:'RedactorFont' !important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1 !important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.re-icon i:before{position:relative;font-size:14px}re-advancedmode:before{content:"\e600"}.re-video:before{content:"\e600"}.re-unorderedlist:before{content:"\e601"}.re-undo:before{content:"\e602"}.re-underline:before{content:"\e603"}.re-textdirection:before{content:"\e604"}.re-fontcolor:before{content:"\e605"}.re-table:before{content:"\e606"}.re-redo:before{content:"\e607"}.re-quote:before{content:"\e608"}.re-outdent:before{content:"\e609"}.re-orderedlist:before{content:"\e60a"}.re-link:before{content:"\e60b"}.re-horizontalrule:before{content:"\e60c"}.re-italic:before{content:"\e60d"}.re-indent:before{content:"\e60e"}.re-image:before{content:"\e60f"}.re-fullscreen:before{content:"\e610"}.re-normalscreen:before{content:"\e611"}.re-formatting:before{content:"T";font-weight:bold}.redactor_toolbar li a.re-formatting{padding:7px 10px 11px}.re-fontsize:before{content:"\e613"}.re-fontfamily:before{content:"\e614"}.re-deleted:before{content:"\e615"}.re-html:before{content:"\e616"}.re-clips:before{content:"\e617"}.re-bold:before{content:"\e618"}.re-backcolor:before{content:"\e619"}.re-file:before{content:"\e61a"}.re-alignright:before{content:"\e61b"}.re-alignment:before,.re-alignleft:before{content:"\e61c"}.re-alignjustify:before{content:"\e61d"}.re-aligncenter:before{content:"\e61e"}.re-gallery:before{content:"\e61f"}.redactor-toolbar-tooltip{position:absolute;z-index:1054;text-align:center;top:0;left:0;background:#000;color:#fff;padding:5px 8px;line-height:1;font-family:Arial,Helvetica,Verdana,Tahoma,sans-serif !important;font-size:12px;border-radius:2px}.redactor-dropdown{position:absolute;top:28px;left:0;padding:0;min-width:220px;max-height:254px;overflow:auto;background-color:#fff;box-shadow:0 1px 7px rgba(0,0,0,0.25);font-size:14px;font-family:Arial,Helvetica,Verdana,Tahoma,sans-serif !important;line-height:1.6em}.redactor-dropdown a{display:block;padding:10px 15px;color:#000;text-decoration:none;border-bottom:1px solid rgba(0,0,0,0.07)}.redactor-dropdown a:last-child{border-bottom:0}.redactor-dropdown a:hover{background-color:#1f78d8;color:#fff !important;text-decoration:none}.redactor-dropdown a.selected{background-color:#000;color:#fff}.redactor-dropdown a.redactor-dropdown-link-inactive,.redactor-dropdown a.redactor-dropdown-link-inactive:hover{background:0;cursor:default;color:#000 !important;filter:alpha(opacity=40);-moz-opacity:.4;opacity:.4}.redactor-dropdown a.redactor-dropdown-link-selected{color:#fff;background:#000}#redactor-image-box{position:relative;max-width:100%;display:inline-block;line-height:0;outline:1px dashed rgba(0,0,0,0.6)}#redactor-image-editter{position:absolute;z-index:5;top:50%;left:50%;margin-top:-11px;margin-left:-18px;line-height:1;background-color:#000;color:#fff;font-size:11px;padding:7px 10px;cursor:pointer}#redactor-image-resizer{position:absolute;z-index:2;line-height:1;cursor:nw-resize;bottom:-4px;right:-5px;border:1px solid #fff;background-color:#000;width:8px;height:8px}.redactor-link-tooltip{position:absolute;z-index:99;padding:10px;line-height:1;display:inline-block;background-color:#000;color:#555 !important}.redactor-link-tooltip,.redactor-link-tooltip a{font-size:12px;font-family:Arial,Helvetica,Verdana,Tahoma,sans-serif !important}.redactor-link-tooltip a{color:#ccc;margin:0 5px;text-decoration:none}.redactor-link-tooltip a:hover{color:#fff}#redactor-droparea{position:relative;overflow:hidden;padding:140px 20px;border:3px dashed rgba(0,0,0,0.1)}#redactor-droparea.drag-hover{background:rgba(200,222,250,0.75)}#redactor-droparea.drag-drop{background:rgba(250,248,200,0.5)}#redactor-droparea-placeholder{text-align:center;font-size:12px;color:rgba(0,0,0,0.7)}#redactor-progress{position:fixed;top:0;left:0;width:100%;z-index:1000000;height:10px}#redactor-progress span{display:block;width:100%;height:100%;background-color:#3d58a8;background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0.2) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0.2) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0.2) 75%,transparent 75%,transparent);-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;background-size:40px 40px}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}#redactor-modal-overlay{position:fixed;top:0;left:0;margin:auto;overflow:auto;width:100%;height:100%;background-color:#000 !important;filter:alpha(opacity=30);-moz-opacity:.3;opacity:.3}#redactor-modal-box{position:fixed;top:0;left:0;bottom:0;right:0;overflow-x:hidden;overflow-y:auto}#redactor-modal{outline:0;position:relative;margin:auto;margin-bottom:20px;padding:0;background:#fff;color:#000;font-size:14px !important;font-family:Arial,Helvetica,Verdana,Tahoma,sans-serif !important;box-shadow:0 1px 70px rgba(0,0,0,0.5)}#redactor-modal header{padding:30px 40px 5px 40px;font-size:18px;font-weight:bold}#redactor-modal section{padding:30px 40px 50px 40px}#redactor-modal label{display:block;float:none !important;margin:15px 0 3px 0 !important;padding:0}#redactor-modal input[type="radio"],#redactor-modal input[type="checkbox"]{position:relative;top:-1px}#redactor-modal select{width:100%}#redactor-modal input[type="text"],#redactor-modal input[type="password"],#redactor-modal input[type="email"],#redactor-modal input[type="url"],#redactor-modal textarea{position:relative;z-index:2;margin:0;padding:5px 4px;height:28px;border:1px solid #ccc;border-radius:1px;background-color:white;box-shadow:0 1px 2px rgba(0,0,0,0.2) inset;color:#333;width:100%;font-size:14px;font-family:Arial,Helvetica,Verdana,Tahoma,sans-serif !important;-moz-transition:border .3s ease-in;transition:border .3s ease-in}#redactor-modal input[type="text"]:focus,#redactor-modal input[type="password"]:focus,#redactor-modal input[type="email"]:focus,#redactor-modal input[type="url"]:focus,#redactor-modal textarea:focus{outline:0;border-color:#5ca9e4;box-shadow:0 0 0 2px rgba(70,161,231,0.3),0 1px 2px rgba(0,0,0,0.2) inset}#redactor-modal input[type="text"].redactor-input-error,#redactor-modal input[type="password"].redactor-input-error,#redactor-modal input[type="email"].redactor-input-error,#redactor-modal input[type="url"].redactor-input-error,#redactor-modal textarea.redactor-input-error{border-color:#e82f2f;box-shadow:0 0 0 2px rgba(232,47,47,0.3),0 1px 2px rgba(0,0,0,0.2) inset}#redactor-modal textarea{display:block;margin-top:4px;line-height:1.4em}#redactor-modal-tabber{margin-bottom:15px;font-size:12px}#redactor-modal-tabber a{border:1px solid #ddd;line-height:1;padding:8px 15px;margin-right:-1px;text-decoration:none;color:#000}#redactor-modal-tabber a:hover{background-color:#1f78d8;border-color:#1f78d8;color:#fff}#redactor-modal-tabber a.active{cursor:default;background-color:#ddd;border-color:#ddd;color:rgba(0,0,0,0.6)}#redactor-modal #redactor-modal-list{margin-left:0;padding-left:0;list-style:none;max-height:250px;overflow-x:auto}#redactor-modal #redactor-modal-list li{border-bottom:1px solid #ddd}#redactor-modal #redactor-modal-list li:last-child{border-bottom:0}#redactor-modal #redactor-modal-list a{padding:10px 5px;color:#000;text-decoration:none;font-size:13px;display:block;position:relative}#redactor-modal #redactor-modal-list a:hover{background-color:#eee}#redactor-modal-close{position:absolute;top:10px;right:10px;width:30px;height:30px;text-align:right;color:#bbb;font-size:30px;font-weight:300;cursor:pointer;-webkit-appearance:none;padding:0;border:0;background:0;outline:0}#redactor-modal-close:hover{color:#000}#redactor-modal footer button{position:relative;width:100%;padding:14px 16px;margin:0;outline:0;border:0;background-color:#ddd;color:#000;text-align:center;text-decoration:none;font-weight:normal;font-size:12px;font-family:Arial,Helvetica,Verdana,Tahoma,sans-serif !important;line-height:1;cursor:pointer}#redactor-modal footer button:hover{color:#777;background:0;background:#bbb;text-decoration:none}#redactor-modal footer button.redactor-modal-delete-btn{background:0;color:#fff;background-color:#b52525}#redactor-modal footer button.redactor-modal-delete-btn:hover{color:rgba(255,255,255,0.6);background-color:#881b1b}#redactor-modal footer button.redactor-modal-action-btn{background:0;color:#fff;background-color:#2461b5}#redactor-modal footer button.redactor-modal-action-btn:hover{color:rgba(255,255,255,0.6);background-color:#1a4580}.redactor-dropdown .redactor-formatting-blockquote{color:rgba(0,0,0,0.4);font-style:italic}.redactor-dropdown .redactor-formatting-pre{font-family:monospace,sans-serif}.redactor-dropdown .redactor-formatting-h1{font-size:36px;line-height:36px;font-weight:bold}.redactor-dropdown .redactor-formatting-h2{font-size:24px;line-height:36px;font-weight:bold}.redactor-dropdown .redactor-formatting-h3{font-size:21px;line-height:30px;font-weight:bold}.redactor-dropdown .redactor-formatting-h4{font-size:18px;line-height:26px;font-weight:bold}.redactor-dropdown .redactor-formatting-h5{font-size:16px;line-height:23px;font-weight:bold}.redactor-editor code,.redactor-editor pre{font-family:Menlo,Monaco,monospace,sans-serif !important}.redactor-editor div,.redactor-editor p,.redactor-editor ul,.redactor-editor ol,.redactor-editor table,.redactor-editor dl,.redactor-editor blockquote,.redactor-editor pre{font-size:14px;line-height:1.6em}.redactor-editor a{color:#15c;text-decoration:underline}.redactor-editor object,.redactor-editor embed,.redactor-editor video,.redactor-editor img{max-width:100%}.redactor-editor div,.redactor-editor p,.redactor-editor ul,.redactor-editor ol,.redactor-editor table,.redactor-editor dl,.redactor-editor figure,.redactor-editor blockquote,.redactor-editor pre{margin:0;margin-bottom:15px;border:0;background:0;box-shadow:none}.redactor-editor iframe,.redactor-editor object,.redactor-editor hr{margin-bottom:15px}.redactor-editor blockquote{margin-left:1.6em !important;padding-left:0;color:#777;font-style:italic}.redactor-editor ul,.redactor-editor ol{padding-left:2em}.redactor-editor ul ul,.redactor-editor ol ol,.redactor-editor ul ol,.redactor-editor ol ul{margin:2px;padding:0;padding-left:2em;border:0}.redactor-editor ol ol li{list-style-type:lower-alpha}.redactor-editor ol ol ol li{list-style-type:lower-roman}.redactor-editor ul li{list-style:disc}.redactor-editor dl dt{font-weight:bold}.redactor-editor dd{margin-left:1em}.redactor-editor table{border-collapse:collapse;font-size:1em;width:100%}.redactor-editor table td,.redactor-editor table th{padding:5px;border:1px solid #ddd;vertical-align:top}.redactor-editor table thead td,.redactor-editor table th{font-weight:bold;border-bottom-color:#888}.redactor-editor code{background-color:#d8d7d7}.redactor-editor pre{padding:1em;border:1px solid #ddd;border-radius:3px;background:#f8f8f8;white-space:pre;font-size:90%}.redactor-editor hr{display:block;height:1px;border:0;border-top:1px solid #ccc}.redactor-editor h1,.redactor-editor h2,.redactor-editor h3,.redactor-editor h4,.redactor-editor h5,.redactor-editor h6{font-weight:bold;color:#000;padding:0;background:0;text-rendering:optimizeLegibility;margin:0 0 .5em 0}.redactor-editor h1,.redactor-editor h2,.redactor-editor h3,.redactor-editor h4{line-height:1.3}.redactor-editor h1{font-size:36px}.redactor-editor h2{font-size:24px;margin-bottom:.7em}.redactor-editor h3{font-size:21px}.redactor-editor h4{font-size:18px}.redactor-editor h5{font-size:16px}.redactor-editor h6{font-size:12px;text-transform:uppercase}.dnnFormItem span.dnnFormMessage.dnnFormError{z-index:1000}

 .redactor-img-btn{display:none}#redactor-modal footer .redactor-modal-btn.redactor-modal-action-btn:disabled{background:#ddd;color:#aaa;cursor:default}.re-dnnImageUpload{padding:9px 10px !important}.re-dnnImageUpload:before{content:"\e60f"}#redactor-modal-overlay{opacity:.5}#redactor-modal header{color:#fff;font-family:proxima_nova_semibold;font-size:20px;background:none repeat scroll 0 0 #092836;height:64px;padding:18px 20px 22px !important;-webkit-border-top-left-radius:6px;-webkit-border-top-right-radius:6px;-moz-border-radius-topleft:6px;-moz-border-radius-topright:6px;border-top-left-radius:6px;border-top-right-radius:6px;height:auto;line-height:1.428}#redactor-modal{-webkit-border-radius:6px !important;-moz-border-radius:6px !important;border-radius:6px !important}#redactor-modal-body{-webkit-border-bottom-right-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomright:6px;-moz-border-radius-bottomleft:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px}#redactor-modal-body footer{-webkit-border-bottom-right-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomright:6px;-moz-border-radius-bottomleft:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px}#redactor-modal-close{top:24px;right:13px;font-size:30px}#redactor-modal-close:hover{color:#999 !important}#redactor-modal-body section{padding:20px !important}#redactor-modal-body .redactor-droparea{position:relative;margin:auto;margin-bottom:5px;width:100%}#redactor-modal-body .redactor-droparea .redactor-dropareabox{color:#555;position:relative;z-index:1;padding:60px 0;width:99%;text-align:center;border:none !important;background:#f4f4f4;background:url("/DesktopModules/DNNCorp/EvoqLibrary/ClientScripts/redactor/Images/dragndrop-image.png") no-repeat center center;display:block;overflow:hidden;height:78px;font-size:0;padding-bottom:0}#redactor-modal-body .redactor-dropalternative{border:none !important;background:#f4f4f4;background:url("/DesktopModules/DNNCorp/EvoqLibrary/ClientScripts/redactor/Images/image-drop-or.png") no-repeat center center;display:block;overflow:hidden;height:14px;font-size:0;margin-bottom:100px}#redactor-modal-body #redactor-tab1{padding-bottom:38px;border:2px dashed #d1d1d1;background:#f4f4f4}#redactor-modal-body #redactorInsertImageForm{position:relative}#redactor-modal-body #redactor-file{position:absolute;top:0;right:0;left:0;margin:0;opacity:0;filter:alpha(opacity=0);direction:ltr;cursor:pointer;height:100%;display:block;width:100%;font-size:100px}#redactor-modal-body #redactor-file.onlyUpload{position:absolute;top:5px;right:213px;font-size:28px;height:auto;-ms-opacity:0;opacity:0}#redactor-modal-body #redactor-tab1>span.image-type{display:block;text-align:center;color:#aaa;font-size:12px}#redactor-modal footer{padding:15px;background:#f4f4f4;text-align:right}#redactor-modal footer .redactor-modal-btn{width:auto !important;padding:10px 20px}#redactor-modal footer .redactor-modal-btn.redactor-modal-close-btn{background:#ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#717171;font-size:15px;font-family:proxima_nova_semibold;margin-right:5px}#redactor-modal footer .redactor-modal-btn.redactor-modal-delete-btn{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;font-size:15px;font-family:proxima_nova_semibold;margin-right:5px}#redactor-modal footer .redactor-modal-btn.redactor-modal-action-btn{background:#0087c6;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#fff;font-size:15px;font-family:proxima_nova_semibold}#redactor-tabs{margin-bottom:18px;overflow:auto;padding-top:2px}#redactor-tabs a>span{float:left}#redactor-tabs a>span{color:#555 !important;font-size:12px !important;font-family:proxima_nova_semibold !important;padding:9px 19px 9px 48px;border:1px solid #c6c6c6 !important;background:url("/DesktopModules/DNNCorp/EvoqLibrary/ClientScripts/redactor/Images/icon-upload-file.png") no-repeat 19px 6px !important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;border-radius:0;margin:0;border-width:1px 0 1px 1px !important}#redactor-tabs a.redactor-tabs-act>span{background-color:#f3f3f3 !important}#redactor-tabs a.redactor-tabs-act:hover>span{background-color:#f3f3f3 !important}#redactor-tabs a.leftside>span{-webkit-border-top-left-radius:3px;-moz-border-top-left-radius:3px;-ms-border-top-left-radius:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-bottom-left-radius:3px;-ms-border-bottom-left-radius:3px;border-bottom-left-radius:3px}#redactor-tabs a.rightside>span{-webkit-border-top-right-radius:3px;-moz-border-top-right-radius:3px;-ms-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-bottom-right-radius:3px;-ms-border-bottom-right-radius:3px;border-bottom-right-radius:3px;border-right-width:1px !important}#redactor-tabs #redactor-tab-control-1>span{background-image:url("/DesktopModules/DNNCorp/EvoqLibrary/ClientScripts/redactor/Images/icon-upload-file.png") !important}#redactor-tabs #redactor-tab-control-2>span{background-image:url("/DesktopModules/DNNCorp/EvoqLibrary/ClientScripts/redactor/Images/icon-stored-location.png") !important}#redactor-tabs #redactor-tab-control-3>span{background-image:url("/DesktopModules/DNNCorp/EvoqLibrary/ClientScripts/redactor/Images/icon-from-url.png") !important}#redactor-tabs #redactor-tab-control-1:hover>span{background-image:url("/DesktopModules/DNNCorp/EvoqLibrary/ClientScripts/redactor/Images/icon-upload-file_hover.png") !important}#redactor-tabs #redactor-tab-control-2:hover>span{background-image:url("/DesktopModules/DNNCorp/EvoqLibrary/ClientScripts/redactor/Images/icon-stored-location_hover.png") !important}#redactor-tabs #redactor-tab-control-3:hover>span{background-image:url("/DesktopModules/DNNCorp/EvoqLibrary/ClientScripts/redactor/Images/icon-from-url_hover.png") !important}#redactor-modal-body .redactor-droparea .redactor-drag-drop-text,#redactor-modal-body .redactor-droparea .redactor-or-text,#redactor-modal-body .redactor-droparea .redactor-browse-to-upload{position:absolute;color:#777}#redactor-modal-body .redactor-droparea .redactor-drag-drop-text,#redactor-modal-body .redactor-droparea .redactor-or-text{position:absolute;color:#777}#redactor-modal{font-family:proxima_nova_semibold !important}#redactor-modal #redactor-modal-header{font-size:24px !important}#redactor-modal #redactor-tabs{font-size:12px !important}#redactor-modal .link-form label{font-size:12px !important}#redactor-modal .link-form input{font-size:14px !important}#redactor-modal .preview-main .preview-name{font-size:14px !important}#redactor-modal .link-form .example-url{font-size:12px !important}#redactor-modal-body .redactor-droparea{text-align:center}#redactor-modal-body .redactor-droparea .redactor-drag-drop-text{font-size:17px;z-index:9;top:95px;width:100%}#redactor-modal-body .redactor-droparea .redactor-or-text{font-size:15px;top:auto;margin-top:30px;width:100%}#redactor-modal-body .redactor-droparea .redactor-browse-to-upload{font-size:15px;top:auto;margin-top:90px;width:100%}#redactor-modal-body .redactor-droparea .redactor-browse-to-upload>*{border:solid 1px #bbb;padding:8px 10px 6px 12px;cursor:pointer;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}#redactor-modal-body .redactor-droparea .redactor-browse-to-upload.onlyUpload{top:5px}#redactor-image-box-select{display:inline-block;height:29px;box-shadow:none;background:#fff;width:208px;margin:10px 0 !important;padding:5px}#redactor-tab2 .redactor-content{display:inline-block !important;vertical-align:top}#redactor-tab2 .redactor-search{background:#ccc;padding:10px 0 10px 10px;width:100%}#redactor-image-box .redactor-thumb-holder img{left:50%;position:absolute;top:50%;-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transform:translate(-50%,-50%);max-width:93px;max-height:93px}.redactor-thumb-wrapper{float:left;width:105px;margin-right:52px;height:auto;display:inline-block;position:relative}@media(max-width:767px){.redactor-thumb-wrapper{margin-right:45px}}.redactor-thumb-wrapper:first(3n+1){margin-right:0}.redactor-thumb-wrapper.checked .redactor-thumb-holder{-webkit-box-shadow:0 0 3px 1px rgba(187,235,254,1);-moz-box-shadow:0 0 3px 1px rgba(187,235,254,1);box-shadow:0 0 3px 1px rgba(187,235,254,1)}.redactor-thumb-holder{background:none repeat scroll 0 0 #fff;border:1px solid #c6c6c6;display:inline-block;height:103px;position:relative;width:103px;cursor:pointer}#dnnRedactor-select{display:inline-block;background:#ccc;padding:10px 12px 10px 0}#dnnRedactor-select .dnnDropDownList{width:208px;font-family:proxima_nova_semibold !important;vertical-align:top}#dnnRedactor-select .dnnDropDownList .selected-item{height:27px;border:1px solid #b9b9b9;box-shadow:none;border-left:0;border-top-left-radius:0;border-bottom-left-radius:0;background:0;background-color:#fff}#dnnRedactor-select .dnnDropDownList .selected-item>a{padding:5px 0 0 8px;font-family:proxima_nova_semibold !important}#dnnRedactor-select .dnnDropDownList .dt-container{width:218px;border-radius:5px}#dnnRedactor-select .dnnDropDownList .dt-container .dt-header{display:none}#dnnRedactor-select .dnnDropDownList .dt-container .dt-footer{display:none}#dnnRedactor-select .dnnDropDownList .dt-container .dt-content{margin-top:0;height:200px !important}#dnnRedactor-select .dnnDropDownList .dt-container .dt-content .dt-tree ul.tv-nodes{margin:4px 0 0 0;padding-left:16px}#dnnRedactor-select .dnnDropDownList .dt-container .dt-content .dt-tree ul.tv-nodes.tv-root{margin:4px 0 0 0;padding-left:0}#dnnRedactor-select .dnnDropDownList .dt-container .dt-content .dt-tree ul.tv-nodes li.tv-node{padding:2px 0;border:0;position:relative;overflow:visible}#dnnRedactor-select .dnnDropDownList .dt-container .dt-content .dt-tree ul.tv-nodes li.tv-node>a.text{font-family:proxima_nova_semibold !important;background-image:url("/DesktopModules/DNNCorp/EvoqLibrary/ClientScripts/redactor/Images/folder-icon.png");padding-left:32px;color:#4d4d4d;text-decoration:none}#dnnRedactor-select .dnnDropDownList .dt-container .dt-content .dt-tree ul.tv-nodes li.tv-node>a.text:hover{background-color:transparent;color:#4d4d4d;border:1px solid transparent;padding-bottom:0}#dnnRedactor-select .dnnDropDownList .dt-container .dt-content .dt-tree ul.tv-nodes li.tv-node>a.text:hover:after{content:"";display:block;position:absolute;top:0;left:-500px;width:1000px;height:24px;z-index:-1;background-color:#e6e6e6}.redactor-thumb-wrapper p{color:#848484;font-size:10px;margin-top:10px;text-align:center;height:24px;overflow:hidden;line-height:18px;line-height:18px}#redactor-tab2 .redactor-search #redactor-search-file{border:1px solid #b9b9b9;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;border-top-right-radius:0;border-bottom-right-radius:0;height:auto;padding:8px 12px 6px 37px;width:320px;background-image:url("/DesktopModules/DNNCorp/EvoqLibrary/ClientScripts/redactor/Images/search-icon.png");background-position:7px 5px;background-repeat:no-repeat;box-shadow:none;box-sizing:border-box;height:29px}#redactor-tab2 .redactor-search #redactor-search-file:focus{outline:0;box-shadow:none}#redactor-tab2 #redactor-image-box{background:#f4f4f4;border:1px solid #e1e1e1;margin-top:5px;padding:17px 30px;height:270px;overflow:auto;outline:0;position:relative;display:block}#redactor-image-box .redactor-thumb-wrapper.checked .active-state{background:url("/DesktopModules/DNNCorp/EvoqLibrary/ClientScripts/redactor/Images/checked.png") no-repeat scroll 0 0 rgba(0,0,0,0);height:21px;position:absolute;right:3px;top:3px;width:21px}#redactor-tab3{background:#f4f4f4;border:1px solid #e1e1e1;margin-top:5px;padding:17px 30px;font-family:proxima_nova_semibold !important}#redactor-tab3 .link-form>label{color:#717171;font-size:13px;margin-top:10px}#redactor-tab3 .link-form>label>span{font-size:10px}#redactor-tab3 #redactor-file-link{background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset;color:#555;display:block;font-size:14px;line-height:1.42857;padding:6px 12px;transition:border-color .15s ease-in-out 0,box-shadow .15s ease-in-out 0;width:96%}#redactor-tab3 #redactor-file-link.error{border-color:red}#redactor-tab3 .preview-main{background-color:#f4f4f4;padding:40px 0;overflow:auto;display:none}#redactor-tab3 .preview-img{width:160px;height:160px;border:1px solid #c6c6c6;background:#fff;position:relative;float:left}#redactor-tab3 .preview-img img{max-width:90%;max-height:90%;position:absolute;margin:auto;top:0;left:0;right:0;bottom:0}#redactor-tab3 .preview-name{margin-left:195px}.redactor-box.redactor-box-fullscreen #image-edit-bar{position:fixed}.dnnEditState .redactor-box.redactor-box-fullscreen .redactor-editor.imageInlineEdit{width:100%;left:85px}.redactor-box.redactor-box-fullscreen #image-edit-bar>span.rotate{padding-left:92px}#redactor-modal-image-insert{position:relative}#redactor-modal-image-upload-status{display:none;position:absolute;left:0;top:0;box-sizing:border-box;width:100%;height:100%;background:#fff;z-index:10;padding:20px;font-family:proxima_nova_semibold !important}#redactor-modal-image-upload-status .upload-status-container{border:1px solid #cecece;width:100%;height:100%;background-color:#ebebeb;padding:1px;overflow:hidden}#redactor-modal-image-upload-status .upload-status-container .upload-status-caption{background-color:#e0e0e0;height:35px;line-height:35px;color:#757575;padding-left:12px}#redactor-modal-image-upload-status .upload-status-container .upload-status-main{background-color:#f4f4f4;padding:65px 0 0 16px;height:100%}#redactor-modal-image-upload-status .upload-status-container .upload-status-preview{width:160px;height:160px;border:1px solid #c6c6c6;background:#fff;position:relative;float:left}#redactor-modal-image-upload-status .upload-status-container .upload-status-preview img{max-width:90%;max-height:90%;position:absolute;margin:auto;top:0;left:0;right:0;bottom:0}#redactor-modal-image-upload-status .upload-status-container .upload-status-name{margin-left:195px}#redactor-modal-image-upload-status .upload-status-container .upload-status-progress{margin:36px 0 0 195px;width:300px;height:6px}#redactor-modal-image-upload-status .upload-status-container .upload-status-progress .bar{height:100%;background:#e5e5e5}#redactor-modal-image-upload-status .upload-status-container .upload-status-progress .bar span{background-color:#2fa6eb;display:block;height:100%;width:0}#redactor-modal-image-upload-status .upload-status-container .upload-status-progress.failed .bar span{background-color:#eb2f2f;width:100% !important}#redactor-modal-image-upload-status .upload-status-container .upload-status-progress.abort .bar span{background-color:#ebce2f;width:100% !important}#redactor-modal-image-upload-status .upload-status-container .upload-status-progress.complete .bar span{background-color:#2fa6eb}#redactor-modal-image-upload-status .upload-status-container .upload-status-progress .btn-cancel{display:inline-block;width:16px;height:16px;float:right;margin:-11px -36px 0 0;background:url("/DesktopModules/DNNCorp/EvoqLibrary/ClientScripts/redactor/Images/icon-upload-cancel.png") no-repeat center center;cursor:pointer}#redactor-modal-image-upload-status .upload-status-container .upload-status-progress.complete .btn-cancel{background-image:url("/DesktopModules/DNNCorp/EvoqLibrary/ClientScripts/redactor/Images/icon-upload-complete.png")}#redactor-modal-image-upload-status .upload-status-container .upload-status-message{margin:10px 0 0 195px;color:#717171;font-style:italic}#redactor-modal-body .fakeloader{height:5px;width:100%;background-color:#e4e4e4}#redactor-modal-body .fakeloader div.progress{height:5px;width:0;background-color:#0da4f4;float:left}#redactor-tabs a#redactor-tab-control-1>span,#redactor-tabs a#redactor-tab-control-2>span,#redactor-tabs a#redactor-tab-control-3>span{height:auto;width:auto;padding:7px 24px 6px 52px}#redactor-modal-body #redactor-tab1.redactor-tab{height:290px}#redactor-modal-body .redactor-droparea.redactor-droparea{padding:20px 0 28px 0 !important}#redactor-modal-body .redactor-droparea .redactor-drag-drop-text{top:auto}

@charset "UTF-8";
/* Anova Container Set styles */

/* NoTitle
-------------------------------------*/
.DNNContainer_noTitle { }

/* Title_h1 
-------------------------------------*/
.DNNContainer_Title_h1 h1 .TitleH1 {
	display: block;
}

/* Title_lightGray 
-------------------------------------*/
.DNNContainer_Title_h5 h5 .TitleH5 {
	display: block;
	margin-bottom: 15px;
}

.DNNContainer_Title_h5 {
	padding: 20px;
	background-color: #e8e4e3;
}

/* Title_white 
-------------------------------------*/
.DNNContainer_Title_h6 h6 .TitleH6 {
	display: block;
} 

.DNNContainer_Title_h6 {
	padding: 20px;
	background-color: #fff;
	border: 1 px solid #e8e8e8;
}



