﻿@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;
}

/* 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: 980px;
}

    .dnnFormMessage.dnnFormError,
    .dnnFormMessage.dnnFormValidationSummary {
        background-color: rgba(255,0,0,0.15); /* red */
        border-color: rgba(255,0,0,0.2); /* red */
    }

    .dnnFormMessage.dnnFormWarning {
        background-color: rgba(255,255,0,0.15); /* yellow */
        border-color: #CDB21F; /* yellow */
    }

    .dnnFormMessage.dnnFormSuccess {
        background-color: rgba(0,255,0,0.15); /* green */
        border-color: rgba(0,255,0,0.5); /* green */
    }

/*-------------------------------------*/
/* TABLE STYLES */
/*-------------------------------------*/
.dnnTableHeader {
    display: block;
    padding: 15px;
    background: none repeat scroll 0 0 #E3E3E5;
}
.dnnTableHeader a,
.dnnTableHeader input, 
.dnnTableHeader select{
    margin: 0;
}
.dnnTableDisplay {
    margin-bottom: 18px;
    border: 1px solid #d1d1d1;
    border-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%;
    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;
}

    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 */
.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*/
/******************
DNN overrides
*******************/
span.dnnFormMessage {
  display: block;
}
div.dnnFormGroup {
  background-color: inherit;
  width: 100%;
}
.dnnGrid {
  width: 100%;
}
.dnnGridHeader th {
  text-align: left;
}
.dnnFormItem input.rvd-form-number,
.dnnFormItem input[type="text"].rvd-form-number,
input.rvd-form-number,
input[type="text"].rvd-form-number,
.dnnFormItem input[type="number"] {
  width: 45%;
  max-width: 160px;
}
.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;
}
.dnnFormItem input.rvd-form-datetime,
.dnnFormItem input[type="text"].rvd-form-datetime,
input.rvd-form-datetime,
input[type="text"].rvd-form-datetime,
.dnnFormItem input[type="datetime"] {
  width: 45%;
  max-width: 220px;
}
.dnnFormItem span.rvd-form-datetime,
.dnnFormItem span.k-widget.k-combobox {
  margin-bottom: 12px;
}
/* DNN 7.1 default template doesn't shrink form and makes it hard to see where nested form begins and ends */
.dnnForm {
  max-width: 96%;
  margin-left: auto;
  margin-right: auto;
}
/* DNN 6.x uses position relative that causes the tab to overlay over the page */
.dnnForm .ui-tabs {
  position: inherit;
}
/* Make Kendo ComboBox look like DNN form */
.dnnFormItem input[type="text"].k-input {
  width: 100%;
  margin-bottom: 0;
  border: 0;
  box-shadow: none;
  line-height: normal;
}
div.RadComboBox {
  width: 100%;
}
.dnnForm .dnnFormItem > .RadComboBox_Default .rcbInputCell .rcbEmptyMessage {
  color: #666;
}
.dnnForm .dnnFormItem > .RadComboBox_Default {
  margin-bottom: 18px;
}
.dnnForm .dnnFormItem > .RadComboBox + a {
  vertical-align: top;
  margin-top: 10px;
}
.dnnForm .dnnFormItem > .RadComboBox_Default .rcbInput {
  padding: 6px !important;
}
.dnnForm .dnnFormItem > .RadComboBox_Default td.rcbArrowCellRight,
.dnnForm .dnnFormItem > .RadComboBox_Default td.rcbArrowCellLeft {
  background: white !important;
}
.dnnForm .dnnFormItem > .RadComboBox_Default td.rcbInputCellLeft,
.dnnForm .dnnFormItem > .RadComboBox_Default td.rcbInputCellRight {
  background: white !important;
}
.dnnForm .dnnFormItem > .dnnInputFileWrapper {
  margin-bottom: 18px;
}
.dnnFormItem .rvd-htmleditor {
  display: inline-block;
  margin: 0 -8px;
  width: 43%;
}
.TelerikModalOverlay {
  background-color: #000000 !important;
  filter: alpha(opacity=80) !important;
  opacity: 0.8 !important;
}
/* Make images responsive */
/*img
{
	width: auto;
	max-width: 100%;
}*/
/* Zoom image should not shrink */
.zoomWrapperImage img {
  max-height: none;
  max-width: none;
}
p.form-control-static {
  font-size: inherit;
}
/* DNN 7.1 default template uses inline-block, which doesn't push the content down when tabs are wrapped. We need to set height auto to fix it. */
ul.dnnAdminTabNav {
  height: auto;
}
/* DNN 7.1 default template uses a large padding on the tab causing the ugly wrap */
ul.dnnAdminTabNav li.ui-tabs-active a {
  margin-top: -2px;
  padding-bottom: 8px;
}
/* DNN 7.1 default template need larger padding between tab strip and tab panel */
.ui-tabs .ui-tabs-panel {
  padding-top: 10px;
}
/* Fix DNN bug DNN-26843 that injects jScrollPane causing scroll pane to render incorrectly */
.RadComboBoxDropDown .jspContainer {
  position: absolute;
}
/* Fix RadComboBox does not show vertical scroll when available selections exceed box size */
.RadComboBoxDropDown .rcbScroll {
  overflow-y: auto !important;
}
/* Fix DNN bug DNN-4983 adding extra padding to input button causing radsplitbar to be oversized */
input[type="button"].rspCollapseBarSpacer {
  min-width: 0;
  padding: 0 0;
}
/* Fix bootstrap forces box-sizing to border-box causing RadMenu multicolumn to render as single column. See http://www.telerik.com/forums/radmenu-with-repeatcolumns-renders-as-single-column-with-bootstrap */
ul.rmMultiColumn {
  box-sizing: content-box;
}
/* Remove rounded corners from kendo menu */
.k-widget.k-menu {
  border-radius: 0;
}
/* Allow Kendo UI treeview to display icons */
.glyphicon.k-sprite,
.fa.k-sprite,
.fas.k-sprite {
  font-size: 1em;
  line-height: 1em;
}
/* Fix IE11 rendering vertical radslider text incorrectly. */
.RadSplitter .rspPaneTabText.rspRotatedTabText {
  -ms-transform: rotate(90deg);
  writing-mode: lr-tb;
}
.RadCalendar td.rcDisabled > a {
  cursor: default;
  visibility: hidden;
}
/* Fix default skin shows list style in RadWindow */
.RadWindow .rwControlButtons li {
  list-style-type: none;
}
/* Fix default DNN skin forces list style causing a dot to appear next to Bootstrap dropdowns */
ul.dropdown-menu li,
ul.nav li,
ul.pagination li {
  list-style-type: none;
}
/* Fix Websitescreative skin overrides LI element with padding causing multi-column Telerik RadMenu to show incorrectly */
ul.rmMultiColumn li.rmGroupColumn {
  padding-left: 0;
}
/* Fix bootstrap does not include some bottom margin when buttons are stacked together */
.btn-toolbar > .btn {
  margin-bottom: 5px;
}
/* Make form controls look like plain text when disabled */
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: transparent !important;
  border: 0 !important;
  font-size: 1em;
  box-shadow: none !important;
}
/* Hide arrow for select box when in plain text disabled mode */
select.form-control[disabled],
fieldset[disabled] select.form-control {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  text-indent: 0.01px !important;
  text-overflow: '' !important;
}
/* Show required field asterisk */
label.required:after {
  display: inline-block;
  padding: 0px 4px;
  background: transparent;
  content: '*';
  font-weight: bold;
  color: red;
}
/* Bootstrap-select creates a button with border radius inside input-group */
.input-group-btn .dropdown.bootstrap-select button {
  border-radius: 0;
}
/******************
Common
*******************/
.rvdActions {
  clear: both;
  display: block;
  margin-bottom: 10px;
  margin-top: 10px;
  padding-top: 10px;
}
.rvdAddNewGridAction {
  background-image: url("/Icons/Sigma/Add_16x16_Standard.png");
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
ul.rvdBreadcrumb {
  display: inline;
  margin: 0 0;
}
.rvdBreadcrumb li {
  list-style: none;
  display: inline;
  font-size: inherit;
}
.rvdBreadcrumb li:before {
  content: " / ";
  padding-right: 3px;
}
.rvdBreadcrumb li:first-child:before {
  content: "";
  padding-right: 0;
}
.rvdBreadcrumb li:last-child a {
  pointer-events: none;
  text-decoration: none;
  color: inherit;
  cursor: default;
}
.rvdCopyGridAction {
  background-image: url("/Icons/Sigma/CopyFile_16x16_Standard.png");
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
.rvdDownGridAction {
  background-image: url("/Icons/Sigma/Dn_16x16_Standard.png");
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
.rvdDownloadGridAction {
  background-image: url("/Icons/Sigma/FileDownload_16x16_Gray.png");
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
.rvdEditGridAction {
  background-image: url("/Icons/Sigma/Edit_16x16_Standard.png");
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
.rvdFormCheckBoxes {
  display: block;
  float: left;
  width: auto;
}
.rvd-form-checkboxes {
  border: solid 10px transparent;
  max-height: 250px;
  overflow: auto;
}
.dnnFormItem > div.rvd-form-checkboxes {
  width: 42%;
}
.rvdFormCheckBoxes input[type=checkbox] {
  float: none;
}
.rvdFormCheckBoxes label {
  display: inline;
  float: none;
  font-weight: normal;
  margin: 0 10px 0 4px;
  padding-right: 0;
  text-align: left;
  width: auto;
}
.rvd-form-checklist .dnnCheckbox img {
  background: transparent url("/Icons/Sigma/Delete_16X16_Standard.png") no-repeat;
}
.rvd-form-checklist .mark {
  background-color: transparent;
}
select.rvdFormListBox {
  height: 160px;
}
.rvdLinkAction {
  background-image: url("/Icons/Sigma/Edit_16x16_Standard.png");
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  padding-left: 20px;
}
.rvdUpGridAction {
  background-image: url("/Icons/Sigma/Up_16x16_Standard.png");
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
.rvdFormMessage {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: table;
  padding-left: 5px;
  padding-right: 5px;
  width: 100%;
}
.rvdFormWarning {
  background-color: #FFFFCC;
}
.rvdFormSubContainer {
  display: inline-block;
  width: 50%;
}
.dnnFormItem > .rvdFormSubContainer {
  display: inline-block;
  width: 45%;
}
a.rvdModalCloseAction {
  background-image: url("/Images/Close-icn.png");
  background-position: left center;
  background-repeat: no-repeat;
  display: block;
  min-height: 20px;
  padding-left: 30px;
  float: right;
}
.rvdModalContainer {
  background-color: White;
  width: 500px;
  vertical-align: middle;
}
.rvdModalToolbar {
  background: #4E4E4E;
  background: -moz-linear-gradient(top, #4E4E4E 0%, #282828 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4E4E4E), color-stop(100%, #282828));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4E4E4E', endColorstr='#282828', GradientType=0);
  border-bottom: solid 1px #cccccc;
  padding-bottom: 5px;
  padding-top: 5px;
  width: 100%;
}
/* Shift start anchor vertically higher so it won't be covered by admin bar */
.rvdModuleStartAnchor {
  float: left;
  position: relative;
  top: -60px;
}
.rvdPager {
  border-top: solid 1px #cccccc;
  text-align: right;
}
.rvdSliderMaxValue {
  float: right;
}
.rvdSliderMinValue {
  float: left;
}
.rvdDeleteGridAction {
  background-image: url("/Icons/Sigma/Delete_16x16_Standard.png");
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
.dnnForm .dnnFormItem > .RadPicker_Default {
  margin-bottom: 18px;
}
.dnnForm .dnnFormItem > .RadPicker_Default.rvdDateTimeInput {
  display: inline-block;
  width: 47% !important;
  min-width: 0px;
}
.dnnFormItem input.rvdCharacterInput,
input.rvdCharacterInput {
  width: 20px !important;
  min-width: 0px;
}
.dnnFormItem input.rvdQuantityInput,
input.rvdQuantityInput {
  width: 70px !important;
  min-width: 0px;
}
.dnnFormItem select.rvdUnitInput,
select.rvdUnitInput {
  width: 125px !important;
  min-width: 0px;
  margin-left: 5px;
}
/* Split form items in 2 columns */
.rvdSplit2 > div.dnnFormGroup,
.rvdSplit2 > div.dnnFormItem {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 49%;
}
/* Split form items in 3 columns */
.rvdSplit3 > div.dnnFormGroup,
.rvdSplit3 > div.dnnFormItem {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 32%;
}
/* Split form items in 4 columns */
.rvdSplit4 > div.dnnFormGroup,
.rvdSplit4 > div.dnnFormItem {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 24%;
}
.rvdUpdateGridAction {
  background: url("/Icons/Sigma/Refresh_16x16_Standard.png");
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
.rvd-loading,
.rvdUpdateProgressContainer {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.rvd-loading img,
.rvdUpdateProgress {
  left: 50%;
  position: fixed;
  top: 50%;
}
.rvdViewGridAction {
  background-image: url("/Icons/Sigma/View_16x16_Standard.png");
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 16px;
  margin-left: 5px;
  margin-right: 5px;
  width: 16px;
}
/* Add chevron indicators for Bootstrap page headers */
/* Rotate font icons when panel is collapsed to indicate state */
.collapsed em.glyphicon-chevron-down,
.collapsed em.fa-chevron-down {
  transform: rotate(-90deg);
}
.tab-pane {
  margin-bottom: 20px;
  margin-top: 20px;
}
/* Bootstrap 4 implementation in Bootstrap 3 */
.table-borderless tbody + tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
  border: 0 !important;
}
.columns.columns-2 {
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
  max-width: none !important;
}
.columns.columns-3 {
  -moz-column-count: 3;
  -webkit-column-count: 3;
  column-count: 3;
  max-width: none !important;
}
.columns.columns-4 {
  -moz-column-count: 4;
  -webkit-column-count: 4;
  column-count: 4;
  max-width: none !important;
}
.bg-transparent {
  background-color: transparent !important;
}
.border-0 {
  border: 0 !important;
}
/* Bootstrap 3 adds unnecessary left padding when input is used with label according to Bootstrap 4 syntax */
.checkbox label,
.radio label {
  padding-left: 0 !important;
}
.checkbox,
.radio {
  padding-left: 1.25rem;
}
/* Bootstrap 4 no longer adds margin for buttons in a btn-toolbar */
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group,
.btn-toolbar > .dropdown {
  margin-left: 3px;
  margin-right: 3px;
}
/* Bootstrap 4 no longer supports btn-group-xs */
.btn-group-xs > .btn,
.btn-xs {
  padding: 0.25rem 0.4rem;
  font-size: 0.875rem;
  line-height: 0.5;
  border-radius: 0.2rem;
}
/* Bootstrap 4 no longer supports col-x size in table */
td.col-1,
th.col-1 {
  width: 8.33333%;
}
td.col-2,
th.col-2 {
  width: 16.66667%;
}
td.col-3,
th.col-3 {
  width: 25%;
}
td.col-4,
th.col-4 {
  width: 33.33333%;
}
td.col-5,
th.col-5 {
  width: 41.66667%;
}
td.col-6,
th.col-6 {
  width: 50%;
}
td.col-7,
th.col-7 {
  width: 58.33333%;
}
td.col-8,
th.col-8 {
  width: 66.66667%;
}
td.col-9,
th.col-9 {
  width: 75%;
}
td.col-10,
th.col-10 {
  width: 83.33333%;
}
td.col-11,
th.col-11 {
  width: 91.66667%;
}
td.col-12,
th.col-12 {
  width: 100%;
}
td.col-sm-1,
th.col-sm-1 {
  width: 8.33333%;
}
td.col-sm-2,
th.col-sm-2 {
  width: 16.66667%;
}
td.col-sm-3,
th.col-sm-3 {
  width: 25%;
}
td.col-sm-4,
th.col-sm-4 {
  width: 33.33333%;
}
td.col-sm-5,
th.col-sm-5 {
  width: 41.66667%;
}
td.col-sm-6,
th.col-sm-6 {
  width: 50%;
}
td.col-sm-7,
th.col-sm-7 {
  width: 58.33333%;
}
td.col-sm-8,
th.col-sm-8 {
  width: 66.66667%;
}
td.col-sm-9,
th.col-sm-9 {
  width: 75%;
}
td.col-sm-10,
th.col-sm-10 {
  width: 83.33333%;
}
td.col-sm-11,
th.col-sm-11 {
  width: 91.66667%;
}
td.col-sm-12,
th.col-sm-12 {
  width: 100%;
}
td.col-md-1,
th.col-md-1 {
  width: 8.33333%;
}
td.col-md-2,
th.col-md-2 {
  width: 16.66667%;
}
td.col-md-3,
th.col-md-3 {
  width: 25%;
}
td.col-md-4,
th.col-md-4 {
  width: 33.33333%;
}
td.col-md-5,
th.col-md-5 {
  width: 41.66667%;
}
td.col-md-6,
th.col-md-6 {
  width: 50%;
}
td.col-md-7,
th.col-md-7 {
  width: 58.33333%;
}
td.col-md-8,
th.col-md-8 {
  width: 66.66667%;
}
td.col-md-9,
th.col-md-9 {
  width: 75%;
}
td.col-md-10,
th.col-md-10 {
  width: 83.33333%;
}
td.col-md-11,
th.col-md-11 {
  width: 91.66667%;
}
td.col-md-12,
th.col-md-12 {
  width: 100%;
}
td.col-lg-1,
th.col-lg-1 {
  width: 8.33333%;
}
td.col-lg-2,
th.col-lg-2 {
  width: 16.66667%;
}
td.col-lg-3,
th.col-lg-3 {
  width: 25%;
}
td.col-lg-4,
th.col-lg-4 {
  width: 33.33333%;
}
td.col-lg-5,
th.col-lg-5 {
  width: 41.66667%;
}
td.col-lg-6,
th.col-lg-6 {
  width: 50%;
}
td.col-lg-7,
th.col-lg-7 {
  width: 58.33333%;
}
td.col-lg-8,
th.col-lg-8 {
  width: 66.66667%;
}
td.col-lg-9,
th.col-lg-9 {
  width: 75%;
}
td.col-lg-10,
th.col-lg-10 {
  width: 83.33333%;
}
td.col-lg-11,
th.col-lg-11 {
  width: 91.66667%;
}
td.col-lg-12,
th.col-lg-12 {
  width: 100%;
}
td.col-xl-1,
th.col-xl-1 {
  width: 8.33333%;
}
td.col-xl-2,
th.col-xl-2 {
  width: 16.66667%;
}
td.col-xl-3,
th.col-xl-3 {
  width: 25%;
}
td.col-xl-4,
th.col-xl-4 {
  width: 33.33333%;
}
td.col-xl-5,
th.col-xl-5 {
  width: 41.66667%;
}
td.col-xl-6,
th.col-xl-6 {
  width: 50%;
}
td.col-xl-7,
th.col-xl-7 {
  width: 58.33333%;
}
td.col-xl-8,
th.col-xl-8 {
  width: 66.66667%;
}
td.col-xl-9,
th.col-xl-9 {
  width: 75%;
}
td.col-xl-10,
th.col-xl-10 {
  width: 83.33333%;
}
td.col-xl-11,
th.col-xl-11 {
  width: 91.66667%;
}
td.col-xl-12,
th.col-xl-12 {
  width: 100%;
}
/* Make tabs into accordion panels for Bootstrap 4 and Bootstrap 3 */
@media (min-width: 768px) {
  .nav-tabs + .tab-content > .card {
    border: none;
  }
  .nav-tabs + .tab-content > .card .collapse {
    display: block !important;
  }
  .nav-tabs + .tab-content.panel-group .panel-heading + .panel-collapse > .list-group,
  .nav-tabs + .tab-content.panel-group .panel-heading + .panel-collapse > .panel-body {
    border-top: none;
  }
}
@media (max-width: 767px) {
  .nav-tabs + .tab-content > .tab-pane {
    display: block !important;
    opacity: 1;
  }
}
/* Nested table inherit stripes. Add class to allow unstriped */
.table-unstriped > tbody > tr,
.dnnGridPager tr {
  background-color: transparent !important;
}
/* Nested pager table inherits border */
.dnnGridPager td,
.dnnGridPager table td {
  border: none;
}
/* Bootstrap 4 doesn't add bottom space when buttons are stacked in mobile */
@media (max-width: 767px) {
  .btn {
    margin-bottom: 5px;
  }
}
/* Large desktops and laptops */
@media (min-width: 1200px) {
  .collapse-lg.show {
    display: block;
  }
  .collapse-lg {
    display: none;
  }
}
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  .collapse-md.show {
    display: block;
  }
  .collapse-md {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .collapse-sm.show {
    display: block;
  }
  .collapse-sm {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .collapse-xs.show {
    display: block;
  }
  .collapse-xs {
    display: none;
  }
  nav.navbar {
    display: block;
  }
  ul.columns.columns-2,
  ul.columns.columns-3,
  ul.columns.columns-4 {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}
/* Small devices */
@media (min-width: 768px) {
  .text-sm-left {
    text-align: center;
  }
  .text-sm-center {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
  div.checkbox-sm-inline,
  div.radio-sm-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer;
  }
}
/******************
General
******************/
/* Change cursor to pointer for table row if clickable */
.rvdsf-module-container tr[onclick] {
  cursor: pointer;
}
div.ekko-lightbox.modal .close {
  font-size: 50px;
}
div.ekko-lightbox-nav-overlay a {
  font-size: 50px;
  text-shadow: -1px 0 gray, 0 1px gray, 1px 0 gray, 0 -1px gray;
}
.ekko-lightbox .glyphicon,
.ekko-lightbox .fas {
  font-family: 'Glyphicons Halflings';
}
a.btn-primary:visited {
  color: white;
}
a.btn-default:visited {
  color: #333;
}
a.rvdsf-btn-register:visited,
a.rvdsf-btn-login:visited {
  color: white;
}
.rvdsf-label-promotionprice {
  color: #cc0000;
}
.rvdsf-label-price > s {
  color: #666;
  font-weight: normal;
  margin-right: 10px;
}
.rvdsf-label-savings {
  background-color: #cc0000;
  color: white;
  font-size: 11px;
  height: 20px;
  min-width: 70px;
  padding: 2px 4px;
  position: absolute;
  right: 20px;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  z-index: 10;
}
.rvdsf-label-balancedue,
.rvdsf-label-rewardspoint,
.rvdsf-label-subtotalamount,
.rvdsf-label-totalbalancedue,
.rvdsf-label-totalhandlingamount,
.rvdsf-label-totalrewardspoint,
.rvdsf-label-totalpaymentreceived,
.rvdsf-label-totalsalesorderdetaildiscountamount,
.rvdsf-label-totalsavingsamount,
.rvdsf-label-totalshippingamount,
.rvdsf-label-totaltaxamount {
  font-weight: bold;
}
.rvdsf-label-totalamount {
  font-size: 1.3em;
  font-weight: bold;
}
.rvdsfBalanceDueAmount {
  font-weight: bold;
}
.rvdsf-bookingdates,
.rvdsfBookingDates {
  font-size: 0.8em;
  margin-bottom: 50px;
  margin-top: 5px;
}
.rvdsf-bookingdates dd,
.rvdsfBookingDates dd {
  float: left;
  margin-left: 0px;
  margin-right: 5px;
}
.rvdsf-bookingdates dt,
.rvdsfBookingDates dt {
  clear: left;
  float: left;
  font-weight: bold;
  margin-right: 3px;
}
.table table.rvdsf-bookingdates {
  background-color: transparent;
}
.rvdsf-dynamicformresult,
.rvdsfDynamicFormResults {
  font-size: 0.8em;
  margin-bottom: 50px;
  margin-top: 20px;
}
.rvdsf-dynamicformresult dd,
.rvdsfDynamicFormResults dd {
  float: left;
  margin-left: 0px;
  margin-right: 5px;
}
.rvdsf-dynamicformresult dt:after,
.rvdsfDynamicFormResults dt:after {
  content: ": ";
  margin-right: 3px;
}
.rvdsf-dynamicformresult dt,
.rvdsfDynamicFormResults dt {
  clear: left;
  float: left;
  font-weight: bold;
}
.table table.rvdsf-dynamicformresult {
  background-color: transparent;
}
.rvdsf-productparts {
  font-size: 0.8em;
  margin-bottom: 50px;
  margin-top: 5px;
}
.rvdsf-productparts dd {
  float: left;
  margin-left: 0px;
  margin-right: 5px;
  margin-bottom: 8px;
}
.rvdsf-productparts dd .btn {
  line-height: 1;
}
.rvdsf-productparts dt:after {
  content: ": ";
  margin-right: 3px;
}
.rvdsf-productparts dt {
  clear: left;
  float: left;
  font-weight: bold;
  margin-right: 3px;
  margin-bottom: 8px;
}
.table table.rvdsf-productparts {
  background-color: transparent;
}
.rvdsfFeaturesContainer {
  background-color: #eaeaea;
}
.dnnFormItem .rvdFormListBox {
  float: left;
  width: 45%;
  min-height: 200px;
}
.dnnFormItem > .rvdFormSubContainer > .rvdFormListBox {
  width: 100%;
}
.rvdFormListBox .RadListBox {
  width: 100%;
}
.dnnFormItem .rvdsfFormCodeEditor,
.dnnFormItem .rvdsfFormDynamicFormCodeEditor,
.dnnFormItem .rvdsfFormDynamicFormResultEditor,
.dnnFormItem .rvdsfFormFormulaEditor,
.dnnFormItem .rvdsfFormXmlEditor {
  float: left;
  width: 100%;
}
.dnnFormItem .rvdsfFormCodeEditor textarea,
.dnnFormItem .rvdsfFormDynamicFormCodeEditor textarea,
.dnnFormItem .rvdsfFormDynamicFormResultEditor textarea,
.dnnFormItem .rvdsfFormFormulaEditor textarea,
.dnnFormItem .rvdsfFormXmlEditor textarea {
  /* Use border box sizing so that width is calculated as total including padding to avoid hiding scrollbar */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: none;
  font-size: 12px;
  max-width: inherit;
}
.rvdsfMSRPPriceAmount {
  font-weight: normal;
}
.rvdsfPriceAmount {
  font-weight: bold;
}
.rvdsfProductParts {
  font-size: 0.8em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.rvdsfProductParts dd {
  float: left;
  margin-left: 0px;
  margin-right: 5px;
}
.rvdsfProductParts dt:after {
  content: ": ";
  margin-right: 3px;
}
.rvdsfProductParts dt {
  clear: left;
  float: left;
  font-weight: bold;
}
.rvdsf-productvariant-name {
  font-size: 0.8em;
  font-weight: bold;
  margin-top: 5px;
}
ul.rvdsf-socialshare-list {
  list-style-type: none;
  margin: 20px 0 0 0;
}
ul.rvdsfSocialShareActions {
  list-style-type: none;
}
ul.rvdsf-socialshare-list li,
ul.rvdsfSocialShareActions li {
  display: inline-block;
  margin: 0 2px;
  padding: 0 0;
}
ul.rvdsfSocialShareActions li span {
  vertical-align: baseline !important;
}
ul.rvdsf-socialshare-list a.rvdsf-socialshare-email,
ul.rvdsfSocialShareActions a.rvdsfSocialShareEmailAction {
  width: 32px;
  height: 32px;
  display: inline-block;
  background-image: url("/DesktopModules/Revindex.Dnn.RevindexStorefront/Media/EmailIcon32.png");
  border: none;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  /* IE 8 to 9 */
}
ul.rvdsf-socialshare-list a.rvdsf-socialshare-facebook,
ul.rvdsfSocialShareActions a.rvdsfSocialShareFacebookAction {
  width: 32px;
  height: 32px;
  display: inline-block;
  background-image: url("/DesktopModules/Revindex.Dnn.RevindexStorefront/Media/FacebookIcon32.png");
  border: none;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  /* IE 8 to 9 */
}
ul.rvdsf-socialshare-list a.rvdsf-socialshare-google,
ul.rvdsfSocialShareActions a.rvdsfSocialShareGoogleAction {
  width: 32px;
  height: 32px;
  display: inline-block;
  background-image: url("/DesktopModules/Revindex.Dnn.RevindexStorefront/Media/GooglePlusIcon32.png");
  border: none;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  /* IE 8 to 9 */
}
ul.rvdsf-socialshare-list a.rvdsf-socialshare-linkedin,
ul.rvdsfSocialShareActions a.rvdsfSocialShareLinkedInAction {
  width: 32px;
  height: 32px;
  display: inline-block;
  background-image: url("/DesktopModules/Revindex.Dnn.RevindexStorefront/Media/LinkedInIcon32.png");
  border: none;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  /* IE 8 to 9 */
}
ul.rvdsf-socialshare-list a.rvdsf-socialshare-twitter,
ul.rvdsfSocialShareActions a.rvdsfSocialShareTwitterAction {
  width: 32px;
  height: 32px;
  display: inline-block;
  background-image: url("/DesktopModules/Revindex.Dnn.RevindexStorefront/Media/TwitterIcon32.png");
  border: none;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  /* IE 8 to 9 */
}
.rvdsfRiskScoreHigh {
  -moz-border-radius: 3px;
  background-color: red;
  border: 3px solid red;
  border-radius: 3px;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  min-width: 40px;
  text-align: center;
}
.rvdsfRiskScoreLow {
  -moz-border-radius: 3px;
  background-color: yellowgreen;
  border: 3px solid yellowgreen;
  border-radius: 3px;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  min-width: 40px;
  text-align: center;
}
.rvdsfRiskScoreModerate {
  -moz-border-radius: 3px;
  background-color: gold;
  border: 3px solid gold;
  border-radius: 3px;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  min-width: 40px;
  text-align: center;
}
.dnnGrid .rvdsfRiskScoreLow,
.dnnGrid .rvdsfRiskScoreModerate,
.dnnGrid .rvdsfRiskScoreHigh {
  border: 0;
  border-radius: initial;
  font-size: 1.1em;
}
.rvdsfRegularPriceAmount > span {
  text-decoration: line-through;
  font-weight: bold;
}
.rvdsfRegularPriceText > span {
  color: #ff6a00;
  font-weight: bold;
}
.rvdsfSalesOrderDetailCount {
  font-weight: bold;
}
span.rvdsfSalePriceAmount,
.rvdsfSalePriceAmount > span {
  color: Red;
  font-weight: bold;
}
span.rvdsfSavingsAmount,
.rvdsfSavingsAmount > span {
  color: Red;
  font-weight: bold;
}
.rvdsfSubTotalAmount {
  font-weight: bold;
}
.rvdsfTotalAmount {
  font-size: 1.3em;
  font-weight: bold;
}
.rvdsfTotalDiscountAmount {
  color: Red;
  font-weight: bold;
}
.rvdsfTotalHandlingAmount {
  font-weight: bold;
}
.rvdsfTotalPaymentAmount {
  font-weight: bold;
}
.rvdsfTotalSalesOrderDetailDiscountAmount {
  font-weight: bold;
}
.rvdsfTotalShippingAmount {
  font-weight: bold;
}
.rvdsfTotalTaxesAmount {
  font-weight: bold;
}
.dnnFormItem input.rvdsfCreditCardVerificationNumberInput,
input.rvdsfCreditCardVerificationNumberInput {
  width: 50px !important;
  min-width: 0px;
}
.rvdsfCheckoutContainer .rvdsfCheckoutPaymentContainer .dnnFormItem select.rvdsfCreditCardExpiryMonthInput,
.dnnFormItem select.rvdsfCreditCardExpiryMonthInput {
  min-width: 0;
  width: auto;
}
.dnnFormItem select.rvdsfCreditCardExpiryYearInput,
.rvdsfCheckoutContainer .rvdsfCheckoutPaymentContainer .dnnFormItem select.rvdsfCreditCardExpiryYearInput,
.dnnFormItem input[type="text"].rvdsfCreditCardExpiryYearInput {
  min-width: 0;
  width: auto;
}
.rvdsfCheckoutContainer .rvdsfCheckoutPaymentContainer span.aspNetDisabled {
  display: none;
}
.rvdsf .k-calendar .k-calendar-view {
  width: 100%;
}
.rating-symbol .glyphicon-star,
.rating-symbol .fas.fa-star {
  color: orange;
  font-size: 16px;
}
.rvdsf .rating-symbol .glyphicon-star-empty,
.rvdsf .rating-symbol .far.fa-star {
  color: #ccc;
  font-size: 16px;
}
.rvdsf .rating .k-rating-item.k-state-selected,
.rvdsf .rating .k-rating-item.k-state-hover,
.rvdsf .rating .k-rating-item:hover {
  color: orange;
}
.rvdsf .rating .k-rating-container .k-rating-item .k-icon {
  font-size: 18px;
}
.rvdsf .k-rating-container .k-rating-item {
  padding: 2px 2px;
}
.rvdsf .k-rating-container .k-rating-item .k-rating-precision-complement,
.rvdsf .k-rating-container .k-rating-item .k-rating-precision-part {
  top: 0;
  left: 2px;
}
ul.rvdsf-useraddress-container {
  height: auto;
  max-height: 300px;
  overflow-x: hidden;
}
.rvdsf-useraddress-container li {
  font-size: 12px;
}
/* Make jQuery Unobtrusive Validation use DNN styles */
.dnnFormItem span.field-validation-error {
  display: block;
  position: absolute;
  overflow: visible;
  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.field-validation-error: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;
}
div.rvdsf-actionbar-container {
  margin-bottom: 20px;
}
div.rvdsf-footerbar-container {
  margin-bottom: 20px;
  /* Make footer sticky */
  position: sticky;
  bottom: 0px;
  background-color: white;
  padding: 20px 0 30px 0;
  border-top: solid 1px #eee;
  z-index: 9;
}
/* Labels */
.rvdsf-badge,
.rvdsf-label {
  text-transform: uppercase;
}
/* Order status */
.rvdsf-salesorder-status-1 {
  background-color: hotpink !important;
}
.rvdsf-salesorder-status-2 {
  background-color: gold !important;
}
.rvdsf-salesorder-status-3 {
  background-color: skyblue !important;
}
.rvdsf-salesorder-status-4 {
  background-color: yellowgreen !important;
}
.rvdsf-salesorder-status-5 {
  background-color: khaki !important;
}
.rvdsf-salesorder-status-6 {
  background-color: red !important;
}
.rvdsf-salesorder-status-7 {
  background-color: silver !important;
}
.rvdsf-salesorder-status-8 {
  background-color: yellow !important;
}
.rvdsf-salesorder-status-9 {
  background-color: deeppink !important;
}
/* Payment status */
.rvdsf-salesorder-salespaymentstatus-1 {
  background-color: hotpink !important;
}
.rvdsf-salesorder-salespaymentstatus-2 {
  background-color: yellowgreen !important;
}
.rvdsf-salesorder-salespaymentstatus-3 {
  background-color: khaki !important;
}
.rvdsf-salesorder-salespaymentstatus-4 {
  background-color: darkkhaki !important;
}
.rvdsf-salesorder-salespaymentstatus-5 {
  background-color: red !important;
}
.rvdsf-salesorder-salespaymentstatus-6 {
  background-color: silver !important;
}
/* Shipping status */
.rvdsf-salesorder-shippingstatus-1 {
  background-color: lightgreen !important;
}
.rvdsf-salesorder-shippingstatus-2 {
  background-color: gold !important;
}
.rvdsf-salesorder-shippingstatus-3 {
  background-color: yellowgreen !important;
}
.rvdsf-salesorder-shippingstatus-4 {
  background-color: red !important;
}
.rvdsf-salesorder-shippingstatus-5 {
  background-color: lightblue !important;
}
.rvdsf-salesorder-shippingstatus-6 {
  background-color: skyblue !important;
}
.rvdsf-salesorder-shippingstatus-7 {
  background-color: steelblue !important;
}
/* Recurring Sales Order status */
.rvdsf-recurringsalesorder-status-1 {
  background-color: skyblue !important;
}
.rvdsf-recurringsalesorder-status-2 {
  background-color: hotpink !important;
}
.rvdsf-recurringsalesorder-status-3 {
  background-color: red !important;
}
.rvdsf-recurringsalesorder-status-4 {
  background-color: khaki !important;
}
/* Order detail status */
.rvdsf-salesorderdetail-status-1 {
  background-color: hotpink !important;
}
.rvdsf-salesorderdetail-status-2 {
  background-color: gold !important;
}
.rvdsf-salesorderdetail-status-3 {
  background-color: skyblue !important;
}
.rvdsf-salesorderdetail-status-4 {
  background-color: yellowgreen !important;
}
.rvdsf-salesorderdetail-status-9 {
  background-color: deeppink !important;
}
/* Order detail shipping status */
.rvdsf-salesorderdetail-shippingstatus-1 {
  background-color: lightgreen !important;
}
.rvdsf-salesorderdetail-shippingstatus-2 {
  background-color: gold !important;
}
.rvdsf-salesorderdetail-shippingstatus-3 {
  background-color: yellowgreen !important;
}
.rvdsf-salesorderdetail-shippingstatus-4 {
  background-color: red !important;
}
.rvdsf-salesorderdetail-shippingstatus-5 {
  background-color: lightblue !important;
}
.rvdsf-salesorderdetail-shippingstatus-6 {
  background-color: skyblue !important;
}
.rvdsf-salesorderdetail-shippingstatus-7 {
  background-color: steelblue !important;
}
.dnnFormItem > span.k-widget.k-combobox {
  width: 45%;
  max-width: 445px;
  margin-top: 0;
}
.dnnFormItem span.k-dropdown-wrap {
  background-color: white;
}
.dnnFormItem select {
  width: 45%;
}
/******************
Admin
*******************/
.rvdsfBackAction {
  background-image: url("/Images/arrow-left.png");
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 34px;
  margin-right: 10px;
  vertical-align: text-bottom;
  width: 34px;
  border-radius: 34px;
  border: #666 solid 1px;
}
.rvdsfBackAction:hover {
  opacity: 0.5;
}
.rvdsfBackAction + h2 {
  display: inline-block;
}
.rvdsfContentContainer {
  padding-top: 40px;
}
.rvdsfContentContainer .dnnFormItem > .RadPicker_Default {
  width: 47% !important;
}
/* Add spacing for grid pager */
.rvdsf-module-container .dnnGridPager td {
  padding: 2px 2px;
}
.rvdsf-module-container .dnnGridPager a,
.rvdsf-module-container .dnnGridPager span {
  font-size: 1.2em;
  margin: 5px 5px;
}
/* Make disabled dropdown and combobox more readable */
.rvdsfContentContainer input[disabled='disabled'],
.rvdsfContentContainer select[disabled='disabled'],
.rvdsfContentContainer .RadComboBox .rcbDisabled {
  opacity: 1;
}
/* Needed to fix Chrome rendering issue with CodeMirror inside a fieldset */
.rvdsfContentContainer .dnnForm fieldset {
  /*display: table-cell;*/
  min-width: 0;
}
.rvdsfContentContainer .CodeMirror,
.rvdsfContentContainer .CodeMirror-scroll {
  height: 600px;
  border-left: solid 1px #eee;
  border-right: solid 1px #eee;
  border-bottom: solid 1px #eee;
}
.rvdsfDashboardLeftAsideContainer {
  float: left;
  padding-right: 20px;
  width: 65%;
}
.rvdsfDashboardRightAsideContainer {
  float: left;
  padding-left: 20px;
  width: 30%;
}
.rvdsfDashboardOrderStatusContainer {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.rvdsfDashboardOrderStatusContainer .dnnForm {
  min-width: 0;
}
.rvdsfDashboardOrderStatusGrid {
  border-collapse: separate;
  border-spacing: 5px;
  width: 100%;
}
.rvdsfDashboardOrderStatusGrid td {
  color: #333333;
  border-radius: 5px;
}
.rvdsfDashboardOrderStatusGrid th span {
  font-size: 1.1em;
  font-weight: bold;
}
.rvdsfDashboardOrderStatusGrid td a {
  color: black;
  text-decoration: none;
}
.rvdsfDashboardOrderStatusGrid td,
.rvdsfDashboardOrderStatusGrid th {
  font-weight: normal;
  height: 10%;
  padding: 5px;
  text-align: center;
  width: 25%;
}
.rvdsfDashboardRecentSalesActivityContainer {
  clear: both;
}
.rvdsfDashboardRecentSalesActivityChart {
  width: 100%;
  height: 300px;
  margin: 10px auto;
  border: 1px solid #cccccc;
}
.rvdsfDashboardSalesSnapshotContainer {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.rvdsfDashboardSalesSnapshotContainer .dnnForm,
.rvdsfDashboardSalesSnapshotContainer td > .dnnTooltip {
  min-width: 0;
}
.rvdsfDashboardSalesSnapshotContainer td > .dnnFormLabel {
  margin-right: 0;
  padding-right: 0;
  width: 160px;
}
.rvdsfDashboardSalesSnapshotGrid {
  border-collapse: collapse;
  width: 100%;
}
.rvdsfDashboardSalesSnapshotGrid td > .dnnLabel {
  width: 100px;
}
.rvdsfDashboardSalesSnapshotGrid td:first-child {
  font-weight: bold;
}
.rvdsfDashboardVersionContainer {
  margin-top: 20px;
  font-weight: bold;
  clear: both;
}
.rvdsfGalleryPreviewContainer {
  margin-bottom: 20px;
  max-height: 400px;
  max-width: 445px;
  overflow: auto;
}
.rvdsfSearchContainer .dnnFormItem > .RadComboBox_Default {
  margin-bottom: -12px;
}
/* DNN 7.1 renders the RadNumericTextBox with a fixed width on the span tag */
.rvdsfSearchContainer span.RadInput {
  width: 45% !important;
  margin-bottom: 18px;
}
.rvdsfMenu {
  width: 100%;
  z-index: 9 !important;
}
.rvdsfMenu .rmGroupColumn {
  /* BUG: Require the following style such that the Configuration menu won't show two black dots. */
  list-style-type: none;
}
/* Indent child row */
.rvdsfSalesOrderDetailGrid .rvdGridChildItem td:nth-child(2) {
  padding-left: 40px;
}
/* Make RadMenu look more flat */
.ModRevindexDnnRevindexStorefrontC .RadMenu_Default .rmRootGroup {
  background-color: #dfdfdf;
  border: none;
  border-bottom: 1px solid #828282;
}
/* Make RadMenu look more flat */
.ModRevindexDnnRevindexStorefrontC .RadMenu_Default a.rmLink,
.ModRevindexDnnRevindexStorefrontC .RadMenu_Default .rmRootGroup {
  background-image: none;
}
/* Make RadPanelBar look more flat */
.ModRevindexDnnRevindexStorefrontC .RadPanelBar_Default .rpLink {
  background-color: #dfdfdf;
}
/* Make RadMenu and RadPanelBar icons grayscale to look more flat */
.ModRevindexDnnRevindexStorefrontC .rmLink img,
.ModRevindexDnnRevindexStorefrontC .rpLink img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  /* IE 8 to 9 */
}
/* On hover, remove grayscale effect */
.ModRevindexDnnRevindexStorefrontC .rmLink:hover img,
.ModRevindexDnnRevindexStorefrontC .rpLink:hover img {
  -webkit-filter: inherit;
  filter: inherit;
}
/* User address book dropdown */
.dnnFormItem select.rvdsf-btn-select {
  border: 0;
  border-bottom: 1px solid #ccc;
  background-color: #eee;
  box-shadow: none;
  border-radius: 0;
  width: 140px;
}
/* Main menu */
.rvdsf-navbar .nav.navbar-nav > li > a {
  font-size: 14px;
  font-family: pb_semibold, Arial;
  font-weight: 500;
  color: #ADADAD;
  padding: 16px 15px 16px 15px;
}
.rvdsf-navbar.navbar.navbar-dark,
.rvdsf-navbar.navbar.navbar-inverse {
  background-color: #3d3c3c;
  border-radius: 0;
  padding: 0 0;
}
.rvdsf-navbar .navbar-toggler span {
  color: #ADADAD;
}
.rvdsf-navbar.navbar .nav.navbar-nav > li > a:hover,
.rvdsf-navbar.navbar .nav.navbar-nav > li.open > a {
  background-color: #2f2f2f;
}
.rvdsf-navbar .navbar-nav > li > .dropdown-menu {
  background-color: #2f2f2f;
  border: none;
  top: 100%;
  border-radius: 0;
  padding: 10px 10px;
}
.rvdsf-navbar .navbar-nav > li > .dropdown-menu a {
  font-size: 14px;
  font-family: pb_semibold, Arial;
  font-weight: 500;
  color: #ADADAD;
  height: 30px;
}
.rvdsf-navbar .navbar-nav > li > .dropdown-menu a:hover {
  color: #fff;
  background-color: transparent;
}
/* User payment set max width so Square form fits */
.rvdsfContentContainer .rvdFormSubContainer.sq-card-base {
  max-width: 445px;
}
/* Make ID labels smaller */
.rvdsf-label-id {
  font-size: 10px !important;
}
/* Prevent breadcrumb from overflowing */
.rvdsf-administration-container ul.rvdBreadcrumb li {
  display: inline-block;
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  /* Make main menu fixed to page */
  .rvd-standard-admin nav.rvdsf-navbar .navbar-nav > li > a {
    padding-top: 4px;
    padding-bottom: 10px;
  }
  .rvd-standard-admin nav.rvdsf-navbar {
    position: fixed;
    top: 70px;
    border: none;
    z-index: 10;
    left: 0;
    width: 100%;
    min-height: 34px;
  }
  .rvd-standard-admin.dnn8.authenticated nav.rvdsf-navbar {
    top: 120px;
  }
  .rvd-standard-admin #RvdsfContentAnchor {
    margin-top: -60px;
  }
}
/******************
Cart
*******************/
.rvdsf-cart-container .rvdsf-salesorderdetail-table .rvdsf-field-qty input,
.rvdsf-cart-container .rvdsf-salesorderdetail-table .rvdsf-field-qty select {
  background-color: #eee;
  border: 0;
  padding: 8px;
  width: 60px;
}
.rvdsf-cart-container .rvdsf-salesorderdetail-table .rvdsf-field-qty .rvdsf-label-amount {
  margin-top: 20px;
  font-size: 14px;
}
.rvdsf-cart-container .rvdsf-salesorderdetail-table .rvdsf-label-amount {
  font-weight: bold;
}
.rvdsf-cart-amount-container {
  font-size: 14px;
  margin-bottom: 40px;
  margin-top: 40px;
}
.rvdsf-cart-container .rvdsf-coupon-list li {
  float: left;
  list-style-type: none;
  margin-right: 20px;
  margin-top: 20px;
}
.rvdsfCartActions {
  clear: both;
  display: block;
  margin-top: 10px;
  padding-top: 10px;
}
.rvdsfCartActions .rvdsfCheckoutAction {
  float: right;
}
.rvdsfCartGalleryThumbnail > img {
  float: left;
  margin: 5px 10px 5px 5px;
}
.rvdsfCartModifiedMessage {
  background-color: #FFFF66;
  font-weight: bold;
  padding: 10px;
  display: block;
  position: relative;
  z-index: 1000;
}
.rvdsfCartProduct {
  float: left;
}
.rvdsfCartContainer .rvdsfSalesOrderDetailGrid {
  border-collapse: inherit !important;
  width: 100%;
}
.rvdsfCartTotalAmountContainer {
  margin: 10px 10px 20px auto;
  max-width: 320px;
}
.rvdsfCartTotalAmountContainer span {
  float: right;
}
.rvdsfShippingMethodSelectionContainer .rvdFormSubContainer div {
  overflow: hidden;
  margin-bottom: 20px;
}
/******************
CartSummary
*******************/
.rvdsf-cartsummary-header-container .rvdsf-label-amount {
  font-weight: bold;
  margin-left: 8px;
}
.rvdsfCartSummaryActions {
  padding-bottom: 10px;
  padding-top: 10px;
  text-align: center;
}
div.rvdsf-cartsummary-detail-container {
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 20px 20px;
}
.rvdsfCartSummaryDetailContainer {
  margin-bottom: 10px;
  margin-top: 10px;
}
.rvdsfCartSummaryDetailItem .dnnTooltip {
  float: left;
  font-weight: bold;
  display: block;
  margin-right: 16px;
  margin-top: 3px;
  text-align: right;
  width: 30%;
}
.rvdsfCartSummaryDetailItem > span {
  float: left;
  display: block;
  margin-top: 3px;
  text-align: left;
}
.rvdsfCartSummaryDetailContainer .rvdsfCartSummaryDetailItem:after {
  clear: both;
  content: ".";
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}
.rvdsfCartSummaryPaymentAcceptanceContainer {
  padding: 5px;
  text-align: center;
}
.rvdsfCartSummaryContainer .rvdsfCartTotalAmountContainer span {
  float: none;
}
.rvdsf-cartsummary-container .rvdsf-btn-viewcart span {
  color: #666;
}
.rvdsfCartSummaryAbstractContainer a.rvdsfViewCartAction {
  background-image: url("/Icons/Sigma/CatalogCart_32X32_Standard.png");
  width: 32px;
  height: 32px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: lightgrey;
  border-radius: 30px;
  display: inline-block;
  padding: 10px 10px;
  vertical-align: middle;
}
.rvdsf-cartsummary-detail-container,
.rvdsfCartSummaryAbstractContainer a.rvdsfViewCartAction:hover {
  background-color: white;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
}
.rvdsfCartSummaryAbstractContainer .rvdsfCartSummaryDetailItem {
  display: inline-block;
}
.rvdsfCartSummaryAbstractContainer .rvdsfCartSummaryDetailItem > span {
  float: none;
}
.rvdsfCartSummaryAbstractContainer .rvdsfCartSummaryDetailItem .dnnLabel {
  display: none;
}
.rvdsfCartSummaryAbstractContainer .rvdsfSalesOrderDetailCount {
  font-size: 1.4em;
  font-weight: bold;
  margin-left: 10px;
  margin-top: 16px;
}
.rvdsf-cartsummary-detail-container,
.dnnFormPopup.rvdsfCartSummaryDetailContainer {
  display: none;
  min-width: 260px;
  position: absolute;
  z-index: 1000;
}
.rvdsfCartSummaryDetailContainer .dnnFormItem.rvdsfSubTotalAmount {
  font-size: 1.1em;
  font-weight: bold;
}
.rvdsf-cartsummary-container .rvdsf-salesorderdetail-table img,
.rvdsfCartSummaryDetailContainer .rvdsfSalesOrderDetailGrid img {
  width: 32px;
}
.rvdsf-cartsummary-amount-container {
  font-size: 14px;
}
/* Hide price column */
.rvdsfCartSummaryDetailContainer .rvdsfSalesOrderDetailGrid th:nth-child(2),
.rvdsfCartSummaryDetailContainer .rvdsfSalesOrderDetailGrid td:nth-child(2) {
  display: none;
}
/******************
Category
*******************/
/* Fix left margin */
.rvdsf-category-container ul.list-group {
  margin-left: 0;
}
/* Node */
.rvdsfCategoryTreeView.RadTreeView .rtIn {
  padding: 4px 3px 3px;
  white-space: normal;
}
/* Hover on node */
.rvdsfCategoryTreeView.RadTreeView .rtHover .rtIn {
  border-style: none;
  border-width: 0px;
  padding: 4px 3px 3px;
}
/* Selected node */
.rvdsfCategoryTreeView.RadTreeView .rtSelected .rtIn {
  border-style: none;
  border-width: 0px;
  padding: 4px 3px 3px;
}
/* Space between expand icon and link */
/* Collapse icon */
.rvdsfCategoryTreeView.RadTreeView .rtMinus {
  background-image: url("/Icons/Sigma/Min_12x12_Standard.png");
  background-position: 0 0;
  width: 12px;
  height: 16px;
  margin-top: 2px;
}
/* Expand icon */
.rvdsfCategoryTreeView.RadTreeView .rtPlus {
  background-image: url("/Icons/Sigma/Max_12x12_Standard.png");
  background-position: 0 0;
  width: 12px;
  height: 16px;
  margin-top: 2px;
}
/******************
Checkout
*******************/
.rvdsf-checkout-container .rvdsf-salesorderdetail-table .rvdsf-field-qty input,
.rvdsf-checkout-container .rvdsf-salesorderdetail-table .rvdsf-field-qty select {
  background-color: #eee;
  border: 0;
  padding: 8px;
  width: 60px;
}
.rvdsf-checkout-container .rvdsf-salesorderdetail-table .rvdsf-field-qty .rvdsf-label-amount {
  margin-top: 20px;
  font-size: 14px;
}
.rvdsf-checkout-container .rvdsf-salesorderdetail-table .rvdsf-label-amount {
  font-weight: bold;
}
.rvdsf-checkout-amount-container {
  font-size: 14px;
  margin-bottom: 40px;
}
.rvdsf-checkout-container .rvdsf-coupon-list li,
.rvdsf-checkout-container .rvdsf-rewardspoint-list li,
.rvdsf-checkout-container .rvdsf-voucher-list li {
  float: left;
  list-style-type: none;
  margin-right: 20px;
  margin-top: 20px;
}
.rvdsfCheckoutActions {
  clear: both;
  display: block;
  margin-top: 10px;
  padding-top: 10px;
}
.rvdsfCheckoutActions .rvdsfReviewOrderAction,
.rvdsfCheckoutActions .rvdsfPlaceOrderAction {
  float: right;
}
.rvdsfCheckoutPageViewModeSingle .rvdsfCheckoutActions .rvdsfPlaceOrderAction {
  float: none;
}
.rvdsfCheckoutAccountActions {
  margin-top: 10px;
  display: block;
  padding-top: 10px;
}
.rvdsf-checkout-breadcrumb,
.rvdsfCheckoutBreadcrumb {
  -moz-border-radius: 10px;
  background: #EEEEEE;
  border-radius: 10px;
  margin: 0 0 20px;
  padding: 5px 20px;
  text-align: center;
}
.rvdsf-checkout-breadcrumb a,
.rvdsfCheckoutBreadcrumb a {
  vertical-align: middle;
}
.rvdsf-checkout-breadcrumb a[disabled],
.rvdsfCheckoutBreadcrumb a[disabled],
.rvdsfCheckoutBreadcrumb .aspNetDisabled {
  color: #333333;
  text-decoration: none;
}
.rvdsf-checkout-breadcrumb-separator,
.rvdsfCheckoutBreadcrumbSeparator {
  background: url("/DesktopModules/Revindex.Dnn.RevindexStorefront/Media/StepSeparatorIcon.gif");
  background-repeat: no-repeat;
  background-position: left center;
  display: inline-block;
  height: 16px;
  margin-left: 10px;
  margin-right: 10px;
  vertical-align: middle;
  width: 16px;
}
a.rvdsf-checkout-breadcrumb-selected,
a.rvdsfCheckoutBreadcrumbSelected {
  color: inherit;
  font-weight: bold;
}
.rvdsfCheckoutContainer select {
  max-width: 300px;
}
.rvdsfCheckoutContainer .rvdsfSalesOrderDetailGrid {
  border-collapse: inherit !important;
  width: 100%;
}
.rvdsfCheckoutCouponList {
  clear: both;
  display: block;
  margin: 15px;
  text-align: center;
  width: 100%;
}
.rvdsfCheckoutRewardsPointList {
  clear: both;
  display: block;
  margin: 15px;
  text-align: center;
  width: 100%;
}
.rvdsfCheckoutVoucherList {
  clear: both;
  display: block;
  margin: 15px;
  text-align: center;
  width: 100%;
}
/* Hide breadcrumb in single page checkout mode */
.rvdsfCheckoutPageViewModeSingle .rvdsfCheckoutBreadcrumb {
  display: none;
}
.rvdsfCheckoutPageViewModeSingle .rvdsfCheckoutBillingAndShippingContainer,
.rvdsfCheckoutPageViewModeSingle .rvdsfCheckoutPaymentContainer {
  float: left;
  width: 60%;
}
.rvdsfCheckoutPageViewModeSingle .rvdsfCheckoutReviewOrderContainer {
  float: right;
  width: 39%;
  position: relative;
}
.rvdsfCheckoutPageViewModeSingle .rvdsfCheckoutReviewOrderContainer img {
  width: 15%;
}
/* Hide price column */
.rvdsfCheckoutPageViewModeSingle .rvdsfSalesOrderDetailGrid th:nth-child(2),
.rvdsfCheckoutPageViewModeSingle .rvdsfSalesOrderDetailGrid td:nth-child(2) {
  display: none;
}
/* Fix Square payment display */
.rvdsf-checkout-container div.form-control.sq-card-base {
  height: unset;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  border-radius: unset;
  padding: 0 0;
}
/******************
Confirmation
*******************/
.rvdsfConfirmationActions {
  clear: both;
  display: block;
  margin-top: 10px;
  padding-top: 10px;
}
.rvdsfConfirmationContainer .rvdsfSalesOrderDetailGrid {
  border-collapse: inherit !important;
  width: 100%;
}
.rvdsfConfirmationContainer .rvdsfPaymentMethods {
  display: inline-block;
}
.rvdsfConfirmationContainer .rvdsfPaymentMethods dd {
  float: left;
}
.rvdsfConfirmationContainer .rvdsfPaymentMethods dt {
  clear: left;
  float: left;
  min-width: 190px;
}
.rvdsfConfirmationBillingInformationContainer {
  clear: left;
  float: left;
  width: 50%;
  margin-bottom: 40px;
}
.rvdsfConfirmationOrderInformationContainer {
  float: left;
  width: 50%;
  margin-bottom: 40px;
}
.rvdsfConfirmationOrderNumber {
  font-size: 1.1em;
  font-weight: bold;
}
.rvdsfConfirmationOrderInformationContainer .dnnFormItem .dnnTooltip {
  width: 50%;
}
.rvdsfConfirmationPaymentInformationContainer {
  float: left;
  width: 50%;
  margin-bottom: 40px;
}
.rvdsfConfirmationShippingInformationContainer {
  float: left;
  width: 50%;
  margin-bottom: 40px;
}
.rvdsfConfirmationShippingInformationContainer:after {
  clear: both;
  content: ".";
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}
.rvdsf-confirmation-container table.rvdsf-salesorderdetail-table {
  margin-top: 60px;
}
/******************
Crosssell product
*******************/
.rvdsfCrosssellProductContainer {
  margin-top: 20px;
}
.rvdsfCrosssellProductContainer .rvdsfProductDisplayName {
  font-size: 1em;
}
.rvdsfCrosssellProductContainer ul.dnnActions {
  float: right;
}
.rvdsfCrosssellProductList {
  margin: 10px 10px 10px 10px;
  text-align: center;
}
.rvdsfCrosssellProductItemInfoContainer .dnnFormItem {
  min-height: 0;
}
.rvdsfCrosssellProductItemInfoContainer .rvdsfProductDisplayRating {
  margin: 0 auto;
}
.rvdsfCrosssellProductGroup {
  display: inline-block;
}
.rvdsfCrosssellProductItem {
  margin: 10px 10px 10px 10px;
}
.rvdsfCrosssellProductItemAbstractContainer {
  float: left;
  width: 30%;
}
.rvdsfCrosssellProductItemInfoContainer {
  display: inline-block;
  margin-left: 10px;
  width: 60%;
}
.rvdsfCrosssellProductProductGroup {
  margin-bottom: 40px;
}
.rvdsfCrosssellProductProductList {
  width: 480px;
}
.rvdsf-crosssellproduct-container .rvdsf-crosssellproduct-header {
  margin-bottom: 10px;
  min-height: 60px;
}
.rvdsf-crosssellproduct-container .rvdsf-product-container {
  padding: 0 0 60px 0;
  text-align: center;
}
.rvdsf-crosssellproduct-container div.rvdsf-product-info-container {
  min-height: 100px;
}
.rvdsf-crosssellproduct-container .rvdsf-product-gallery-container {
  border: #ddd 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
}
.rvdsf-crosssellproduct-container .rvdsf-product-gallery-container img {
  max-height: 140px;
}
.rvdsf-crosssellproduct-container .btn-toolbar .btn {
  float: none;
  width: 100%;
  margin: 3px;
}
.rvdsf-crosssellproduct-container div.rvdsf-field-name {
  margin: 5px auto;
}
.rvdsf-crosssellproduct-container .rvdsf-field-name a {
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}
.rvdsf-crosssellproduct-container div.rvdsf-field-price {
  margin: 5px auto;
}
.rvdsf-crosssellproduct-container .rvdsf-field-price {
  font-size: 14px;
  font-weight: bold;
}
.rvdsf-crosssellproduct-container .rvdsf-field-qty input,
.rvdsf-crosssellproduct-container .rvdsf-field-qty select {
  background-color: #eee;
  border: 0;
  padding: 8px;
  width: 60px;
}
.rvdsf-crosssellproduct-container div.rvdsf-field-rating {
  margin: 5px auto;
}
.rvdsf-crosssellproduct-container div.rvdsf-field-rating span.badge {
  background-color: #eee;
  color: #999;
  font-size: 10px;
  vertical-align: top;
}
/******************
Currency
*******************/
div.rvdsf-currency-container {
  margin-top: 5px;
}
/******************
Distributor
*******************/
/* Fix left margin */
.rvdsf-distributor-container ul.list-group {
  margin-left: 0;
}
/* Node */
.rvdsfDistributorTreeView.RadTreeView .rtIn {
  padding: 4px 3px 3px;
  white-space: normal;
}
/* Hover on node */
.rvdsfDistributorTreeView.RadTreeView .rtHover .rtIn {
  border-style: none;
  border-width: 0px;
  padding: 4px 3px 3px;
}
/* Selected node */
.rvdsfDistributorTreeView.RadTreeView .rtSelected .rtIn {
  border-style: none;
  border-width: 0px;
  padding: 4px 3px 3px;
}
/* Space between expand icon and link */
/* Collapse icon */
.rvdsfDistributorTreeView.RadTreeView .rtMinus {
  background-image: url("/Icons/Sigma/Min_12x12_Standard.png");
  background-position: 0 0;
  width: 12px;
  height: 16px;
  margin-top: 2px;
}
/* Expand icon */
.rvdsfDistributorTreeView.RadTreeView .rtPlus {
  background-image: url("/Icons/Sigma/Max_12x12_Standard.png");
  background-position: 0 0;
  width: 12px;
  height: 16px;
  margin-top: 2px;
}
/******************
ManageOrder
******************/
.rvdsfManageOrderVoucherList {
  clear: both;
  display: block;
  margin: 15px;
  text-align: center;
  width: 100%;
}
.rvdsf-manageorder-container .rvdsf-voucher-list li {
  float: left;
  list-style-type: none;
  margin-right: 20px;
  margin-top: 20px;
}
/* Fix Square payment display */
.rvdsf-manageorder-container div.form-control.sq-card-base {
  height: unset;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  border-radius: unset;
  padding: 0 0;
}
/******************
ManagePayment
******************/
/* User payment set max width so Square form fits */
.rvdsfManagePaymentContainer .rvdFormSubContainer.sq-card-base {
  max-width: 445px;
}
/* Fix Square payment display */
.rvdsf-managepayment-container div.form-control.sq-card-base {
  height: unset;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  border-radius: unset;
  padding: 0 0;
}
/******************
ManageReturn
******************/
div.rvdsf-managereturn-productsearch-container {
  background-color: #ddd;
  margin: 0 0;
  padding: 40px 0;
}
.rvdsf-managereturn-container .rvdsf-product-gallery-container {
  border: #ddd 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 240px;
}
.rvdsf-managereturn-container .rvdsf-product-info-container div.rvdsf-field-name {
  margin: 5px auto 20px auto;
}
.rvdsf-managereturn-container .rvdsf-product-info-container .rvdsf-label-name {
  font-size: 20px;
  font-weight: bold;
}
.rvdsf-managereturn-container .rvdsf-product-gallery-container img {
  max-height: 220px;
}
.rvdsf-managereturn-container .rvdsf-product-form-container .rvdsf-field-qty input {
  background-color: #eee;
  border: 0;
  padding: 8px;
  width: 60px;
}
.rvdsf-managereturn-productpart-container {
  display: inline-block;
  margin: 10px 10px;
  padding: 10px 10px;
  width: 150px;
  height: 150px;
}
/******************
ManageVoucher
*******************/
.rvdsf-managevoucher-cardbackground {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat, repeat;
  background-image: url("/DesktopModules/Revindex.Dnn.RevindexStorefront/Media/VoucherBackground.png");
  width: 100%;
  height: 160px;
  max-width: 280px;
  max-height: 160px;
}
.rvdsf-managevoucher-cardcontent {
  padding-top: 85px;
  text-align: center;
  font-size: 18px;
}
/*****************
ManageWishList
******************/
.rvdsf-managewishlist-container .rvdsf-product-gallery-container {
  border: #ddd 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
}
.rvdsf-managewishlist-container .rvdsf-product-gallery-container img {
  max-height: 140px;
}
.rvdsf-managewishlist-container .rvdsf-product-container {
  /*border-bottom: 1px #ddd solid;*/
  padding: 20px 0;
}
.rvdsf-managewishlist-container .rvdsf-label-savings {
  left: 20px;
  right: inherit;
  /*top: 20px;*/
}
.rvdsf-managewishlist-container .rvdsf-product-gallery-container {
  display: inline-flex;
  margin-right: 10px;
  width: 160px;
}
.rvdsf-managewishlist-container .rvdsf-product-info-container {
  display: inline-block;
  vertical-align: top;
  padding-bottom: 20px;
  /*width: 40%;*/
}
/*.rvdsf-managewishlist-container .rvdsf-product-form-container {
    display: inline-block;
    max-width: 5%;
    vertical-align: top;
}*/
/*.rvdsf-managewishlist-container .btn-toolbar {
    float: right;
    width: 20%;
}*/
/*.rvdsf-managewishlist-container .btn-toolbar .btn {
    float: none;
    width: 100%;
    margin: 3px;
}*/
.rvdsf-managewishlist-container div.rvdsf-field-name {
  margin: 5px auto;
}
.rvdsf-managewishlist-container .rvdsf-field-name a {
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}
.rvdsf-managewishlist-container div.rvdsf-field-price {
  margin: 5px auto;
}
.rvdsf-managewishlist-container .rvdsf-field-price {
  font-size: 14px;
  font-weight: bold;
}
.rvdsf-managewishlist-container .rvdsf-field-qty input,
.rvdsf-managewishlist-container .rvdsf-field-qty select {
  background-color: #eee;
  border: 0;
  padding: 8px;
  width: 60px;
}
.rvdsf-managewishlist-container div.rvdsf-field-rating {
  margin: 5px auto;
}
.rvdsf-managewishlist-container div.rvdsf-field-rating span.badge {
  background-color: #eee;
  color: #999;
  font-size: 10px;
  vertical-align: top;
}
/******************
Manufacturer
*******************/
/* Fix left margin */
.rvdsf-manufacturer-container ul.list-group {
  margin-left: 0;
}
/* Node */
.rvdsfManufacturerTreeView.RadTreeView .rtIn {
  padding: 4px 3px 3px;
  white-space: normal;
}
/* Hover on node */
.rvdsfManufacturerTreeView.RadTreeView .rtHover .rtIn {
  border-style: none;
  border-width: 0px;
  padding: 4px 3px 3px;
}
/* Selected node */
.rvdsfManufacturerTreeView.RadTreeView .rtSelected .rtIn {
  border-style: none;
  border-width: 0px;
  padding: 4px 3px 3px;
}
/* Space between expand icon and link */
/* Collapse icon */
.rvdsfManufacturerTreeView.RadTreeView .rtMinus {
  background-image: url("/Icons/Sigma/Min_12x12_Standard.png");
  background-position: 0 0;
  width: 12px;
  height: 16px;
  margin-top: 2px;
}
/* Expand icon */
.rvdsfManufacturerTreeView.RadTreeView .rtPlus {
  background-image: url("/Icons/Sigma/Max_12x12_Standard.png");
  background-position: 0 0;
  width: 12px;
  height: 16px;
  margin-top: 2px;
}
/******************
Product display
******************/
.rvdsf-product-container ul.rvdsf-form-colorpicker {
  margin-left: 0;
}
.rvdsf-product-container .rvdsf-form-colorpicker li {
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  cursor: pointer;
  display: inline-block;
  height: 32px;
  list-style-type: none;
  margin: 3px;
  vertical-align: middle;
  width: 32px;
}
.rvdsf-product-container .rvdsf-form-colorpicker a {
  display: none;
}
.rvdsf-product-container li.rvdsf-form-colorpicker-selected {
  outline-style: solid;
  outline-width: 3px;
  outline-color: #cccccc;
  cursor: default;
}
.rvdsf-product-container ul.rvdsf-form-imageswatch {
  margin-left: 0;
}
.rvdsf-product-container .rvdsf-form-imageswatch li {
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  cursor: pointer;
  display: inline-block;
  height: 32px;
  list-style-type: none;
  margin: 3px;
  vertical-align: middle;
  width: 32px;
}
.rvdsf-product-container .rvdsf-form-imageswatch a {
  display: none;
}
.rvdsf-product-container li.rvdsf-form-imageswatch-selected {
  outline-style: solid;
  outline-width: 3px;
  outline-color: #cccccc;
  cursor: default;
}
a.rvdsfProductDisplayGalleryDisplay {
  /* Needed to force height otherwise zoom effect floats the child elements and tiles underneath is not aligned */
  display: inline-block;
}
.rvdsfProductDisplayGalleryThumbnail > img {
  max-width: 100%;
  margin: 5px;
}
.rvdsfProductDisplayAbstractContainer {
  float: left;
  min-height: 1px;
  min-width: 20%;
  text-align: center;
  width: 30%;
}
.rvdsfProductDisplayActions {
  padding-bottom: 20px;
  padding-top: 10px;
}
.rvdsfProductDisplayContainer .rvdFormColorPickerList li {
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  cursor: pointer;
  display: inline-block;
  height: 16px;
  list-style-type: none;
  margin: 3px;
  vertical-align: middle;
  width: 16px;
}
.rvdsfProductDisplayContainer .rvdFormColorPickerList a {
  display: none;
}
.rvdsfProductDisplayContainer li.rvdsfFormColorPickerItemSelected {
  outline-style: solid;
  outline-width: 3px;
  outline-color: #cccccc;
  cursor: default;
}
.rvdsfProductDisplayContainer .rvdFormImageSwatchList li {
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  cursor: pointer;
  display: inline-block;
  height: 32px;
  list-style-type: none;
  margin: 3px;
  vertical-align: middle;
  width: 32px;
}
.rvdsfProductDisplayContainer .rvdFormImageSwatchList a {
  display: none;
}
.rvdsfProductDisplayContainer li.rvdsfFormImageSwatchItemSelected {
  outline-style: solid;
  outline-width: 3px;
  outline-color: #cccccc;
  cursor: default;
}
.rvdsfProductDisplayDetailContainer {
  clear: both;
  padding-top: 20px;
}
.rvdsfProductDisplayGalleryDetailed {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}
.rvdsfProductDisplayGalleryTileGroup {
  margin-bottom: 3px;
  margin-left: 5px;
  margin-top: 3px;
  text-align: center;
}
.rvdsfProductDisplayGalleryTileList {
  margin-bottom: 5px;
  margin-top: 5px;
}
.rvdsfProductDisplayGalleryTile {
  border: solid 1px #999999 !important;
  cursor: pointer;
  vertical-align: middle;
}
.rvdsfProductDisplayInfoContainer {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  min-width: 60%;
  width: 60%;
}
.rvdsfProductDisplayInfoContainer .dnnFormItem {
  min-height: 0px;
  padding: 0px;
}
.rvdsfProductDisplayInfoContainer .dnnFormItem label,
.rvdsfProductDisplayInfoContainer .dnnFormItem .dnnFormLabel,
.rvdsfProductDisplayInfoContainer .dnnFormItem .dnnTooltip {
  min-width: 100px;
}
.rvdsfProductDisplayName {
  display: block;
}
.rvdsfProductDisplayRating {
  display: block;
  width: auto !important;
}
div.rvdsfProductDisplayProductComponentItem {
  margin-top: 20px;
  margin-bottom: 20px;
}
.rvdsfProductDisplayProductComponentItem span {
  font-size: 1.1em;
  font-weight: bold;
}
.rvdsfProductDisplayProductPartItem img {
  max-width: 40px;
  margin: 0 8px 0 8px;
}
.rvdsfProductDisplayProductPartList {
  font-size: 0.9em;
}
span.rvdsfProductPartPrice {
  margin-left: 10px;
  font-weight: bold;
}
.rvdsfProductDisplayProductPartItem .rvdQuantityInput {
  float: right;
}
.rvdsfProductDisplayRequiredProductContainer {
  margin-bottom: 10px;
  margin-top: 10px;
}
.rvdsfProductDisplayRequiredProductList {
  padding: 30px 0;
}
.rvdsfProductDisplayRequiredProductItem.dnnFormItem {
  font-weight: bold;
  padding: 5px 0;
}
.rvdsfProductDisplayBuyingGuide,
.rvdsfProductDisplayFAQ,
.rvdsfProductDisplayOverview,
.rvdsfProductDisplayReviews,
.rvdsfProductDisplaySpecifications,
.rvdsfProductDisplaySummary,
.rvdsfProductDisplayTerms {
  margin-bottom: 5px;
  margin-top: 5px;
}
.rvdsfProductDisplayProductAttributeList {
  margin-top: 10px;
}
.rvdsfProductDisplayProductAttributeList h4 {
  margin-bottom: 5px;
  margin-top: 5px;
}
.rvdsfProductDisplayProductAttributeList ul {
  overflow: hidden;
}
.rvdsfProductDisplayProductAttributeList li {
  list-style-type: none;
}
.rvdsfProductDisplayProductAttributeList .dnnFormItem {
  border-bottom: solid 1px #cccccc;
  padding-bottom: 20px;
}
.rvdsfProductDisplayRating.RadRating a,
.rvdsfProductDisplayRating.RadRating a span {
  background-image: url("/DesktopModules/Revindex.Dnn.RevindexStorefront/Media/RatingEmptyStarIcon.gif");
  background-position: 0 0;
}
.rvdsfProductDisplayRating.RadRating .rrtOver a,
.rvdsfProductDisplayRating.RadRating .rrtOver a span {
  background-image: url("/DesktopModules/Revindex.Dnn.RevindexStorefront/Media/RatingHoverStarIcon.gif");
  background-position: 0 0;
}
.rvdsfProductDisplayRating.RadRating .rrtSelected.rrtOver a span {
  background-image: url("/DesktopModules/Revindex.Dnn.RevindexStorefront/Media/RatingHoverStarIcon.gif");
  background-position: 0 0;
}
.rvdsfProductDisplayRating.RadRating .rrtSelected a span {
  background-image: url("/DesktopModules/Revindex.Dnn.RevindexStorefront/Media/RatingFilledStarIcon.gif");
  background-position: 0 0;
}
.rvdsfProductDisplayRating.RadRating .rrtHover a span {
  background-image: url("/DesktopModules/Revindex.Dnn.RevindexStorefront/Media/RatingHoverStarIcon.gif");
  background-position: 0 0;
}
.rvdsfProductDisplaySummary {
  display: block;
}
/******************
ProductComparison
*******************/
.rvdsf-productcomparison-table th,
.rvdsf-productcomparison-table td {
  text-align: center;
}
.rvdsf-productcomparison-table th:first-child,
.rvdsf-productcomparison-table td:first-child {
  background-color: #efefef;
  font-weight: bold;
  text-align: left;
  width: 120px;
}
.rvdsf-productcomparison-table .rvdsf-product-gallery-container {
  border: #ddd 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
}
.rvdsf-productcomparison-table .rvdsf-product-gallery-container img {
  max-height: 140px;
}
.rvdsf-productcomparison-container div.rvdsf-field-name {
  margin: 5px auto;
}
.rvdsf-productcomparison-container .rvdsf-field-name a {
  color: inherit;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
.rvdsf-productcomparison-container .rvdsf-field-price {
  font-weight: bold;
}
.rvdsf-productcomparison-container div.rvdsf-field-rating span.badge {
  background-color: #eee;
  color: #999;
  font-size: 10px;
  vertical-align: top;
}
.rvdsfProductComparisonGrid td > .dnnTooltip label,
.rvdsfProductComparisonGrid td > .dnnTooltip {
  font-weight: bold;
  text-align: right;
  min-width: 0px;
}
.rvdsfProductComparisonGrid table {
  width: 100%;
}
.rvdsfProductComparisonGrid .rgGroupHeader {
  font-weight: bold;
  font-size: 1.2em;
}
.rvdsfProductComparisonGrid .rgGroupHeader td {
  border-bottom: solid 1px #cccccc;
  padding: 8px 0 8px 0 !important;
}
.rvdsfProductComparisonGrid td > .dnnFormLabel {
  width: auto;
}
.rvdsfProductComparisonGrid .rgCollapse {
  background-image: url("/Icons/Sigma/Min_12x12_Standard.png");
  background-position: 0 0;
  width: 12px;
  height: 16px;
  margin-top: 0px;
}
.rvdsfProductComparisonGrid .rgExpand {
  background-image: url("/Icons/Sigma/Max_12x12_Standard.png");
  background-position: 0 0;
  width: 12px;
  height: 16px;
  margin-top: 0px;
}
/******************
ProductDetail
*******************/
.rvdsf-productdetail-container .btn-toolbar .btn {
  min-width: 140px;
  margin: 3px;
}
.rvdsf-productdetail-container .rvdsf-label-savings {
  font-size: 14px;
  height: 22px;
  min-width: 100px;
  position: static;
  float: right;
}
.rvdsf-productdetail-container .rvdsf-product-gallery-container {
  border: #ddd 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 240px;
}
.rvdsf-productdetail-container .rvdsf-product-gallery-container img {
  max-height: 220px;
}
.rvdsf-productdetail-container .rvdsf-product-gallery-container .zoomWrapperImage img {
  max-height: none;
}
.rvdsf-productdetail-container .rvdsf-product-gallery-tile-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 5px 0 20px 0;
  width: 100%;
}
.rvdsf-productdetail-container img.rvdsf-product-gallery-tile {
  cursor: pointer;
  margin: 2px 2px;
  padding: 2px 2px;
  height: 48px;
  width: 48px;
  object-fit: cover;
}
.rvdsf-productdetail-container .rvdsf-field-compare {
  margin: 10px 0;
  text-align: center;
}
.rvdsf-productdetail-container .rvdsf-product-info-container div.rvdsf-field-name {
  margin: 5px auto;
}
.rvdsf-productdetail-container .rvdsf-product-info-container .rvdsf-label-name {
  font-size: 20px;
  font-weight: bold;
}
.rvdsf-productdetail-container .rvdsf-product-info-container .rvdsf-label-savings {
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  min-width: 100px;
}
.rvdsf-productdetail-container .rvdsf-product-info-container .rvdsf-field-part .rvdsf-label-savings {
  font-size: 9px;
  height: 20px;
  line-height: 20px;
  min-width: 60px;
}
.rvdsf-productdetail-container .rvdsf-product-info-container div.rvdsf-field-price {
  margin: 5px auto 20px auto;
}
.rvdsf-productdetail-container .rvdsf-product-info-container .rvdsf-field-price {
  font-size: 18px;
  font-weight: bold;
}
.rvdsf-productdetail-container .rvdsf-product-form-container .rvdsf-label-componentname {
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0;
}
.rvdsf-productdetail-container .rvdsf-product-form-container .rvdsf-field-part .rvdsf-field-gallery {
  border: #ddd 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  overflow: hidden;
}
.rvdsf-productdetail-container .rvdsf-product-form-container .rvdsf-field-part .rvdsf-label-name {
  font-size: 12px;
  font-weight: bold;
}
.rvdsf-productdetail-container .rvdsf-product-form-container .rvdsf-field-part .rvdsf-label-price {
  font-size: 12px;
  font-weight: bold;
}
.rvdsf-productdetail-container .rvdsf-product-form-container .rvdsf-field-qty input,
.rvdsf-productdetail-container .rvdsf-product-form-container .rvdsf-field-qty select {
  background-color: #eee;
  border: 0;
  padding: 8px;
  width: 60px;
}
.rvdsf-productdetail-container .rvdsf-product-info-container div.rvdsf-field-rating {
  margin: 5px auto;
}
.rvdsf-productdetail-container div.rvdsf-field-rating span.badge {
  background-color: #eee;
  color: #999;
  font-size: 10px;
  vertical-align: top;
}
.rvdsf-productdetail-container div.rvdsf-field-description-container {
  clear: both;
  padding-top: 40px;
}
.rvdsf-productdetail-container .rvdsf-field-description-container div.tab-content {
  margin: 20px 0;
}
.rvdsf-productdetail-table th,
.rvdsf-productdetail-table td {
  text-align: left;
}
.rvdsf-productdetail-table th:first-child,
.rvdsf-productdetail-table td:first-child {
  background-color: #efefef;
  font-weight: bold;
  text-align: left;
  width: 30%;
}
.rvdsf-productdetail-container .rvdsf-requiredproduct-container h6 {
  font-size: 16px;
}
.rvdsf-productdetail-container .rvdsf-requiredproduct-container .rvdsf-label-name {
  font-size: 14px;
}
.rvdsf-productdetail-container .rvdsf-requiredproduct-container .rvdsf-productvariant-name {
  font-size: 12px;
}
.rvdsf-productdetail-container .carousel .carousel-control {
  visibility: hidden;
}
.rvdsf-productdetail-container .carousel:hover .carousel-control {
  visibility: visible;
}
.rvdsf-product-review-item {
  margin: 40px 0;
  border-top: 1px solid #ddd;
  padding: 10px 0;
}
.rvdsf-product-review-item .rvdsf-field-comment {
  white-space: pre-wrap;
}
.rvdsf-product-review-item .rvdsf-field-date {
  color: #666;
  font-weight: bold;
}
.rvdsf-product-review-item .rvdsf-field-name {
  color: #999;
  font-style: italic;
  font-weight: bold;
}
.rvdsf-product-review-container .rvdsf-input-comment {
  height: 100px;
}
.rvdsf-product-review-container .rvdsf-input-captcha {
  width: 100%;
  text-align: center;
  border: 1px solid #ddd;
  padding: 10px 10px;
  margin-bottom: 5px;
}
.rvdsf-product-review-container .rvdsf-input-captcha img {
  display: inline-block;
  height: 40px;
  width: 180px;
}
.rvdsf-product-review-container .rvdsf-input-captcha button {
  display: inline-block;
  height: 40px;
}
.rvdsfProductDetailContainer .rvdsfProductDisplayName {
  font-size: 1.5em;
}
.rvdsfProductDetailContainer .rvdsfProductComparisonInput {
  display: inherit;
  margin-bottom: 10px;
  margin-top: 10px;
}
.rvdsfProductReviewItemAbstractContainer {
  border-top: solid 1px #cccccc;
  float: left;
  min-height: 100px;
  margin-right: 30px;
  padding: 3px 3px 10px 3px;
  width: 25%;
}
.rvdsfProductReviewItem {
  width: 100%;
}
.rvdsfProductReviewItemInfoContainer {
  border-top: solid 1px #cccccc;
  padding: 3px;
}
.rvdsfProductReviewList {
  overflow: hidden;
  margin-bottom: 5px;
  margin-top: 5px;
}
.rvdsfProductReviewGroup {
  clear: both;
}
.rvdsfProductReviewDate {
  display: block;
  margin-top: 10px;
}
.rvdsfProductReviewTitle {
  font-weight: bold;
}
.rvdsfProductReviewUser {
  font-style: italic;
}
/******************
ProductFilter
******************/
.rvdsf-productfilter-container .btn-toolbar {
  background-color: #eee;
  padding: 10px 10px;
  margin: 0 0 20px 0;
}
.rvdsf-productfilter-container div.rvdsf-field-definition {
  margin: 20px 20px;
}
.rvdsf-productfilter-container .rvdsf-field-definition label.control-label {
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  margin-bottom: 10px;
  width: 100%;
}
.rvdsf-productfilter-container .slider.slider-horizontal {
  margin: 30px 15px 10px 15px;
  width: 90%;
}
.rvdsfProductFilterActions {
  text-align: center;
}
.rvdsfProductFilterContainer .dnnForm {
  min-width: 0;
}
.rvdsfProductFilterContainer .dnnFormItem label,
.rvdsfProductFilterContainer .dnnFormItem .dnnFormLabel,
.rvdsfProductFilterContainer .dnnFormItem .dnnTooltip {
  float: none;
  text-align: left;
  width: 100px;
}
.rvdsfProductFilterList ul {
  overflow: hidden;
}
.rvdsfProductFilterList li {
  list-style-type: none;
}
.rvdsfProductFilterSliderInput {
  float: left;
  width: 80px;
}
/* DNN 7.1 causes the slider to take one extra line */
span.rvdsfProductFilterSliderInput {
  white-space: normal;
}
/******************
ProductList
******************/
.rvdsf-productlist-subcategories .list-group-item {
  border: 0;
}
.rvdsf-productlist-subcategories .rvdsf-field-name {
  margin-top: 5px;
  text-align: center;
}
.rvdsf-productlist-navbar {
  background-color: #eee;
  min-height: 52px;
  padding: 10px;
}
.rvdsf-productlist-navbar .btn-group.bootstrap-select {
  width: auto !important;
}
.rvdsf-productlist-navbar .bootstrap-select .btn-default,
.rvdsf-productlist-navbar .bootstrap-select .btn-default2:hover,
.rvdsf-productlist-navbar .bootstrap-select .btn-default:active,
.rvdsf-productlist-navbar .bootstrap-select .btn-default:visited,
.rvdsf-productlist-navbar .bootstrap-select .btn-default:focus {
  background-color: #eee;
  border-color: #eee;
  font-weight: bold;
}
.rvdsf-productlist-navbar .bootstrap-select .btn-default:hover {
  background-color: #fff;
  border-color: #fff;
}
.rvdsf-productlist-navbar .rvdsf-field-pageviewmode a {
  color: #888;
  font-size: 28px;
}
.rvdsf-productlist-container .rvdsf-field-pageviewmode a.active {
  color: #333;
}
.rvdsf-productlist-grid,
.rvdsf-productlist-list {
  padding: 20px;
}
.rvdsf-productlist-grid .btn-toolbar {
  justify-content: center;
}
/* Push newline after 3rd column */
.rvdsf-productlist-grid div.col-sm-4:nth-child(3n+1) {
  clear: left;
}
.rvdsf-productlist-grid .rvdsf-product-container {
  padding: 0 0 60px 0;
  text-align: center;
}
.rvdsf-productlist-grid div.rvdsf-product-info-container {
  min-height: 100px;
}
.rvdsf-productlist-container .rvdsf-product-gallery-container {
  border: #ddd 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
}
.rvdsf-productlist-container .rvdsf-product-gallery-container img {
  max-height: 140px;
}
.rvdsf-productlist-list .rvdsf-product-container {
  border-bottom: 1px #ddd solid;
  padding: 20px 0;
}
.rvdsf-productlist-list .rvdsf-label-savings {
  left: 20px;
  right: inherit;
  top: 20px;
}
.rvdsf-productlist-list .rvdsf-product-gallery-container {
  display: inline-flex;
  margin-right: 10px;
  width: 160px;
}
.rvdsf-productlist-list .rvdsf-product-info-container {
  display: inline-block;
  vertical-align: top;
  width: 40%;
}
.rvdsf-productlist-list .rvdsf-product-form-container {
  display: inline-block;
  max-width: 5%;
  vertical-align: top;
}
.rvdsf-productlist-list .rvdsf-product-form-container .rvdsf-field-qty label {
  display: none;
}
.rvdsf-productlist-list .btn-toolbar {
  float: right;
  width: 20%;
}
.rvdsf-productlist-container .btn-toolbar .btn {
  float: none;
  width: 100%;
  margin: 3px;
}
.rvdsf-productlist-container div.rvdsf-field-name {
  margin: 5px auto;
}
.rvdsf-productlist-container .rvdsf-field-name a {
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}
.rvdsf-productlist-container div.rvdsf-field-price {
  margin: 5px auto;
}
.rvdsf-productlist-container .rvdsf-field-price {
  font-size: 14px;
  font-weight: bold;
}
.rvdsf-productlist-container .rvdsf-field-qty input,
.rvdsf-productlist-container .rvdsf-field-qty select {
  background-color: #eee;
  border: 0;
  padding: 8px;
  width: 60px;
}
.rvdsf-productlist-container div.rvdsf-field-rating {
  margin: 5px auto;
}
.rvdsf-productlist-container div.rvdsf-field-rating span.badge {
  background-color: #eee;
  color: #999;
  font-size: 10px;
  vertical-align: top;
}
.rvdsf-productlist-pager {
  background-color: #eee;
  padding: 5px 5px;
  text-align: center;
}
.rvdsfProductListSubCategoryGroup {
  display: inline-block;
}
.rvdsfProductListSubCategoryList {
  text-align: center;
}
.rvdsfProductListSubCategoryItem {
  margin: 10px 10px 10px 10px;
}
.rvdsfProductListSubCategoryGalleryThumbnail > img {
  display: block;
  max-width: 100%;
  margin: 5px;
}
.rvdsfProductListToolbar {
  border-top: solid 1px #cccccc;
  margin-top: 10px;
  padding-top: 10px;
}
.rvdsfProductListToolbar .dnnFormItem,
.rvdsfProductListToolbar .dnnFormItem label,
.rvdsfProductListToolbar .dnnFormItem .dnnTooltip {
  display: inline-block;
  float: none;
  margin-right: 5px;
  white-space: nowrap;
  width: auto;
}
.rvdsfProductListToolbar .rvdsfPageViewModeInput select,
.rvdsfProductListToolbar .rvdsfPageViewDisplayOrderInput select,
.rvdsfProductListToolbar .rvdsfPageViewSizeInput select {
  width: auto;
}
.rvdsfProductListToolbar .dnnFormLabel,
.rvdsfProductListToolbar .dnnLabel {
  margin-right: 5px;
  padding-right: 0px;
  width: auto;
}
.rvdsfProductListProductList .rvdsfProductDisplayInfoContainer .dnnFormItem label,
.rvdsfProductListProductList .rvdsfProductDisplayInfoContainer .dnnFormItem .dnnFormLabel,
.rvdsfProductListProductList .rvdsfProductDisplayInfoContainer .dnnFormItem .dnnTooltip {
  min-width: 0;
}
.rvdsfProductListProductList .rvdsfProductComparisonInput {
  display: inherit;
  margin-bottom: 10px;
  margin-top: 10px;
}
.rvdsfProductListProductItem {
  display: inline-block;
  margin-top: 10px;
  vertical-align: top;
  width: 49%;
}
.rvdsfPageViewModeList .rvdsfProductListProductItem {
  width: 100%;
}
/******************
ProductSearch
******************/
.rvdsfProductSearchContainer {
  text-align: center;
}
.rvdsfProductSearchQueryTextBox {
  width: 40%;
}
/******************
ProductShowcase
******************/
.rvdsf-productshowcase-container .carousel .item {
  height: 460px;
}
.rvdsf-productshowcase-container a.carousel-control {
  background-image: none;
  width: 20px;
}
.rvdsf-productshowcase-container .carousel-control .glyphicon,
.rvdsf-productshowcase-container .carousel-control .fas {
  color: black;
}
.rvdsf-productshowcase-container .rvdsf-product-container {
  text-align: center;
}
.rvdsf-productshowcase-container .rvdsf-product-gallery-container {
  border: #ddd 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
}
.rvdsf-productshowcase-container .rvdsf-product-gallery-container img {
  max-height: 140px;
}
.rvdsf-productshowcase-container div.rvdsf-product-info-container {
  min-height: 100px;
}
.rvdsf-productshowcase-container .btn-toolbar .btn {
  width: 100%;
  margin: 3px;
}
.rvdsf-productshowcase-container div.rvdsf-field-name {
  margin: 5px auto;
}
.rvdsf-productshowcase-container .rvdsf-field-name a {
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}
.rvdsf-productshowcase-container div.rvdsf-field-price {
  margin: 5px auto;
}
.rvdsf-productshowcase-container .rvdsf-field-price {
  font-size: 14px;
  font-weight: bold;
}
.rvdsf-productshowcase-container .rvdsf-field-qty input,
.rvdsf-productshowcase-container .rvdsf-field-qty select {
  background-color: #eee;
  border: 0;
  padding: 8px;
  width: 60px;
}
.rvdsf-productshowcase-container div.rvdsf-field-rating {
  margin: 5px auto;
}
.rvdsf-productshowcase-container div.rvdsf-field-rating span.badge {
  background-color: #eee;
  color: #999;
  font-size: 10px;
  vertical-align: top;
}
/* BUG: RadRotator shows a dot between images. We need to hide the bullet list item point. */
.rvdsfProductShowcaseContainer .rrItem {
  list-style-type: none;
}
.rvdsfProductShowcaseRotator {
  margin: 0 auto;
}
.rvdsfProductShowcaseRotator div.rrClipRegion {
  border: solid 1px #cccccc;
}
.rvdsfProductShowcaseRotator .rrButton.rrButtonDown,
.rvdsfProductShowcaseRotator .rrButton.rrButtonDown:hover {
  background-image: url("/Icons/Sigma/Dn_16x16_Standard.png");
  background-position: center bottom;
}
.rvdsfProductShowcaseRotator .rrButton.rrButtonLeft,
.rvdsfProductShowcaseRotator .rrButton.rrButtonLeft:hover {
  background-image: url("/Icons/Sigma/Lt_16x16_Standard.png");
  background-position: left center;
}
.rvdsfProductShowcaseRotator .rrButton.rrButtonRight,
.rvdsfProductShowcaseRotator .rrButton.rrButtonRight:hover {
  background-image: url("/Icons/Sigma/Rt_16x16_Standard.png");
  background-position: right center;
}
.rvdsfProductShowcaseRotator .rrButton.rrButtonUp,
.rvdsfProductShowcaseRotator .rrButton.rrButtonUp:hover {
  background-image: url("/Icons/Sigma/Up_16x16_Standard.png");
  background-position: center top;
}
.rvdsfProductShowcaseRotator .rvdsfProductDisplayInfoContainer .dnnFormItem label,
.rvdsfProductShowcaseRotator .rvdsfProductDisplayInfoContainer .dnnFormItem .dnnFormLabel,
.rvdsfProductShowcaseRotator .rvdsfProductDisplayInfoContainer .dnnFormItem .dnnTooltip {
  min-width: 0;
}
.rvdsfProductShowcaseRotatorContainer .dnnLabel {
  padding-right: 0;
}
.rvdsfProductShowcaseRotator .rvdsfProductDisplayContainer {
  display: inline-block;
  margin: 10px 10px 10px 10px;
  min-width: 0;
}
.rvdsfProductShowcaseRotator .rvdsfProductDisplayAbstractContainer {
  float: none;
  width: 100%;
}
.rvdsfProductShowcaseRotator .rvdsfProductDisplayInfoContainer {
  text-align: center;
  width: 100%;
}
/*** Center rating ***/
.rvdsfProductShowcaseRotator .rvdsfProductDisplayRating {
  margin: 0 auto;
  text-align: center;
}
.rvdsfProductShowcaseRotator .RadRating li {
  float: none;
  display: inline-block;
}
.rvdsfProductShowcaseRotator .RadRating a,
.rvdsfProductShowcaseRotator .RadRating a span {
  line-height: inherit;
}
/*** End center rating ***/
.rvdsfProductShowcaseRotatorContainer {
  padding: 0 50px 0 50px;
}
.rvdsfProductShowcaseRotatorContainer .caroufredsel_wrapper {
  margin: 0 auto !important;
}
.rvdsfProductShowcaseRotatorContainer.rvdsfProductShowcaseRotatorScrollVertical {
  padding: 20px 0 20px 0;
}
ul.rvdsfProductShowcaseRotator > li {
  float: left;
  list-style: none outside none;
}
.rvdsfProductShowcasePagination.rvdPreviousAction {
  background-image: url("/Icons/Sigma/Lt_16x16_Standard.png");
  background-position: left center;
  display: none;
  height: 16px;
  left: 10px;
  position: absolute;
  top: 50%;
  width: 16px;
}
.rvdsfProductShowcaseRotatorScrollVertical .rvdsfProductShowcasePagination.rvdPreviousAction {
  background-image: url("/Icons/Sigma/Up_16x16_Standard.png");
  left: 50%;
  top: 30px;
}
.rvdsfProductShowcasePagination.rvdNextAction {
  background-image: url("/Icons/Sigma/Rt_16x16_Standard.png");
  background-position: right center;
  display: none;
  height: 16px;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 16px;
}
.rvdsfProductShowcaseRotatorScrollVertical .rvdsfProductShowcasePagination.rvdNextAction {
  background-image: url("/Icons/Sigma/Dn_16x16_Standard.png");
  bottom: -14px;
  left: 50%;
  top: inherit;
}
.rvdsfProductShowcasePagination.rvdNumericAction {
  display: none;
  text-align: center;
}
.rvdsfProductShowcasePagination.rvdNumericAction a {
  margin: 0 3px;
  text-decoration: none;
}
.rvdsfProductShowcasePagination.rvdNumericAction a.selected {
  text-decoration: underline;
}
/******************
QuickOrder
******************/
.rvdsf-quickorder-container .rvdsf-field-qty input,
.rvdsf-quickorder-container .rvdsf-field-qty select {
  background-color: #eee;
  border: 0;
  padding: 8px;
  width: 60px;
}
.rvdsf-quickorder-container .rvdsf-salesorderdetail-table .rvdsf-field-qty input,
.rvdsf-quickorder-container .rvdsf-salesorderdetail-table .rvdsf-field-qty select {
  background-color: #eee;
  border: 0;
  padding: 8px;
  width: 60px;
}
.rvdsf-quickorder-container .rvdsf-salesorderdetail-table .rvdsf-field-qty .rvdsf-label-amount {
  margin-top: 20px;
  font-size: 14px;
}
.rvdsf-quickorder-container .rvdsf-salesorderdetail-table .rvdsf-label-amount {
  font-weight: bold;
}
.rvdsf-quickorder-amount-container {
  font-size: 14px;
  margin-bottom: 40px;
  margin-top: 40px;
}
.rvdsf-quickorder-container .rvdsf-coupon-list li {
  float: left;
  list-style-type: none;
  margin-right: 20px;
  margin-top: 20px;
}
.rvdsfQuickOrderContainer .rvdsfSalesOrderDetailGrid {
  border-collapse: inherit !important;
  width: 100%;
}
/******************
Related product
*******************/
.rvdsfRelatedProductContainer {
  margin-top: 20px;
}
.rvdsfRelatedProductContainer .rvdsfProductDisplayName {
  font-size: 1em;
}
.rvdsfRelatedProductList {
  margin: 10px 10px 10px 10px;
  text-align: center;
}
.rvdsfRelatedProductItemInfoContainer .dnnFormItem {
  min-height: 0;
  text-align: center;
}
/*** Center rating ***/
.rvdsfRelatedProductItemInfoContainer .rvdsfProductDisplayRating {
  margin: 0 auto;
  text-align: center;
}
.rvdsfRelatedProductItemInfoContainer .RadRating li {
  float: none;
  display: inline-block;
}
.rvdsfRelatedProductItemInfoContainer .RadRating a,
.rvdsfRelatedProductItemInfoContainer .RadRating a span {
  line-height: inherit;
}
/*** End center rating ***/
.rvdsfRelatedProductGroup {
  display: inline-block;
  vertical-align: top;
}
.rvdsfRelatedProductItem {
  margin: 10px 10px 10px 10px;
}
/******************
Seller
*******************/
/* Fix left margin */
.rvdsf-seller-container ul.list-group {
  margin-left: 0;
}
/******************
WishList
*******************/
.rvdsf-wishlist-grid,
.rvdsf-wishlist-list {
  padding: 20px;
}
/* Push newline after 3rd column */
.rvdsf-wishlist-grid div.col-sm-4:nth-child(3n+1) {
  clear: left;
}
.rvdsf-wishlist-grid .rvdsf-product-container {
  padding: 0 0 60px 0;
  text-align: center;
}
.rvdsf-wishlist-grid div.rvdsf-product-info-container {
  min-height: 100px;
}
.rvdsf-wishlist-container .rvdsf-product-gallery-container {
  border: #ddd 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
}
.rvdsf-wishlist-container .rvdsf-product-gallery-container img {
  max-height: 140px;
}
.rvdsf-wishlist-container .btn-toolbar .btn {
  float: none;
  width: 100%;
  margin: 3px;
}
.rvdsf-wishlist-container div.rvdsf-field-name {
  margin: 5px auto;
}
.rvdsf-wishlist-container .rvdsf-field-name a {
  color: inherit;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}
.rvdsf-wishlist-container div.rvdsf-field-price {
  margin: 5px auto;
}
.rvdsf-wishlist-container .rvdsf-field-price {
  font-size: 14px;
  font-weight: bold;
}
.rvdsf-wishlist-container .rvdsf-field-qty input,
.rvdsf-wishlist-container .rvdsf-field-qty select {
  background-color: #eee;
  border: 0;
  padding: 8px;
  width: 60px;
}
.rvdsf-wishlist-container div.rvdsf-field-rating {
  margin: 5px auto;
}
.rvdsf-wishlist-container div.rvdsf-field-rating span.badge {
  background-color: #eee;
  color: #999;
  font-size: 10px;
  vertical-align: top;
}
.rvdsfWishListContributors {
  display: none;
  margin-bottom: 5px;
  margin-top: 5px;
}
.rvdsfWishListGrid {
  width: 100%;
}
.rvdsfWishListDetailGrid {
  width: 100%;
}
/******************
Welcome
******************/
.rvdsfWelcomeSteps {
  display: inline-block;
  margin: 0 0 10px;
}
.rvdsfWelcomeSteps .icon {
  font-size: 14px;
}
.rvdsfWelcomeSteps li {
  list-style: none;
  float: left;
}
.rvdsfWelcomeSteps li a {
  color: #FFF;
  display: block;
  background: #999999;
  font-size: 12px;
  text-decoration: none;
  position: relative;
  height: 32px;
  line-height: 30px;
  padding: 0 10px 0 5px;
  text-align: center;
  margin-right: 23px;
}
.rvdsfWelcomeSteps li:nth-child(even) a {
  background-color: #999999;
}
.rvdsfWelcomeSteps li:nth-child(even) a:before {
  border-color: #999999;
  border-left-color: transparent;
}
.rvdsfWelcomeSteps li:nth-child(even) a:after {
  border-left-color: #999999;
}
.rvdsfWelcomeSteps li:first-child a {
  padding-left: 15px;
  -moz-border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px 0 0 4px;
}
.rvdsfWelcomeSteps li:first-child a:before {
  border: none;
}
.rvdsfWelcomeSteps li:last-child a {
  padding-right: 15px;
  -moz-border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0;
  border-radius: 0 4px 4px 0;
  background-color: #666666;
  background-color: black;
}
.rvdsfWelcomeSteps li:last-child a:before {
  border-color: black;
  border-left-color: transparent;
}
.rvdsfWelcomeSteps li:last-child a:after {
  border: none;
}
.rvdsfWelcomeSteps li a:before,
.rvdsfWelcomeSteps li a:after {
  content: "";
  position: absolute;
  top: 0;
  border: 0 solid #999999;
  border-width: 16px 11px;
  width: 0;
  height: 0;
}
.rvdsfWelcomeSteps li a:before {
  left: -20px;
  border-left-color: transparent;
}
.rvdsfWelcomeSteps li a:after {
  left: 100%;
  border-color: transparent;
  border-left-color: #999999;
}
.rvdsfWelcomeSteps li a:hover {
  background-color: YellowGreen;
}
.rvdsfWelcomeSteps li a:hover:before {
  border-color: YellowGreen;
  border-left-color: transparent;
}
.rvdsfWelcomeSteps li a:hover:after {
  border-left-color: YellowGreen;
}
.rvdsfWelcomeSteps li a:active {
  background-color: DarkGreen;
}
.rvdsfWelcomeSteps li a:active:before {
  border-color: DarkGreen;
  border-left-color: transparent;
}
.rvdsfWelcomeSteps li a:active:after {
  border-left-color: DarkGreen;
}
/******************
Deprecated
These CSS classes will remain available for a period of time
before being permanently removed on a major releases (x.0.0).
*******************/
.rvdsfGridViewDataRow:hover {
  background-color: #FFFF66;
}
/*****************
Responsive
******************/
@media only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
  .dnnLabel {
    width: 20%;
  }
  .rvdSplit2 > div.dnnFormGroup,
  .rvdSplit3 > div.dnnFormGroup,
  .rvdSplit4 > div.dnnFormGroup,
  .rvdSplit2 > div.dnnFormItem,
  .rvdSplit3 > div.dnnFormItem,
  .rvdSplit4 > div.dnnFormItem {
    display: block;
    width: 100%;
  }
  .rvdsfCheckoutPageViewModeSingle .rvdsfCheckoutBillingAndShippingContainer,
  .rvdsfCheckoutPageViewModeSingle .rvdsfCheckoutPaymentContainer {
    float: none;
    width: auto;
  }
  .rvdsfCheckoutPageViewModeSingle .rvdsfCheckoutReviewOrderContainer {
    float: none;
    margin-bottom: inherit !important;
    position: inherit;
    top: inherit !important;
    width: auto;
  }
  .rvdsfCheckoutPageViewModeSingle .rvdsfCheckoutReviewOrderContainer img {
    width: auto;
  }
  .rvdsfCartGalleryThumbnail > img {
    display: none;
  }
  .rvdsf-checkout-breadcrumb a,
  .rvdsf-checkout-breadcrumb a[disabled],
  .rvdsfCheckoutBreadcrumb a,
  .rvdsfCheckoutBreadcrumb a[disabled] {
    display: block;
    margin-bottom: 5px;
  }
  .rvdsf-checkout-breadcrumb-separator,
  .rvdsfCheckoutBreadcrumbSeparator {
    display: none;
  }
  .rvdsfConfirmationBillingInformationContainer {
    float: none;
  }
  .rvdsfConfirmationOrderInformationContainer {
    float: none;
  }
  .rvdsfConfirmationPaymentInformationContainer {
    float: none;
  }
  .rvdsfConfirmationShippingInformationContainer {
    float: none;
  }
  .rvdsfCrosssellProductProductList {
    width: auto;
  }
  .rvdsfDashboardLeftAsideContainer {
    float: none;
    padding-right: inherit;
    width: 100%;
  }
  .rvdsfDashboardRightAsideContainer {
    float: none;
    padding-left: inherit;
    width: 100%;
  }
  .rvdsf-productdetail-container .btn-toolbar .btn {
    width: 100%;
  }
  .rvdsfProductDisplayAbstractContainer {
    float: none;
    min-width: 0;
    width: auto;
  }
  .rvdsfProductDisplayInfoContainer {
    float: none;
    min-width: 0;
    width: auto;
  }
  .rvdsfProductListToolbar .rvdsfPageViewModeInput {
    display: none;
  }
  .rvdsfProductListProductList {
    text-align: center;
  }
  .rvdsfProductListProductList .rvdsfProductComparisonInput {
    display: none;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .rvdsfProductListProductItem {
    display: inline-block;
    margin-top: 10px;
    vertical-align: top;
    width: auto;
  }
  .rvdsfProductShowcaseRotator {
    width: 95% !important;
  }
  /* Hide date, origin column, payment, shipping status, fraud score */
  .rvdsfSalesOrderSalesOrderGrid th:nth-child(3),
  .rvdsfSalesOrderSalesOrderGrid td:nth-child(3),
  .rvdsfSalesOrderSalesOrderGrid th:nth-child(4),
  .rvdsfSalesOrderSalesOrderGrid td:nth-child(4),
  .rvdsfSalesOrderSalesOrderGrid th:nth-child(6),
  .rvdsfSalesOrderSalesOrderGrid td:nth-child(6),
  .rvdsfSalesOrderSalesOrderGrid th:nth-child(7),
  .rvdsfSalesOrderSalesOrderGrid td:nth-child(7),
  .rvdsfSalesOrderSalesOrderGrid th:nth-child(8),
  .rvdsfSalesOrderSalesOrderGrid td:nth-child(8) {
    display: none;
  }
  /* Hide image, SKU, status, shipping status */
  .rvdsfContentContainer .rvdsfSalesOrderDetailGrid th:nth-child(1),
  .rvdsfContentContainer .rvdsfSalesOrderDetailGrid td:nth-child(1),
  .rvdsfContentContainer .rvdsfSalesOrderDetailGrid th:nth-child(3),
  .rvdsfContentContainer .rvdsfSalesOrderDetailGrid td:nth-child(3),
  .rvdsfContentContainer .rvdsfSalesOrderDetailGrid th:nth-child(4),
  .rvdsfContentContainer .rvdsfSalesOrderDetailGrid td:nth-child(4),
  .rvdsfContentContainer .rvdsfSalesOrderDetailGrid th:nth-child(5),
  .rvdsfContentContainer .rvdsfSalesOrderDetailGrid td:nth-child(5) {
    display: none;
  }
  .rvdsfSearchContainer div.dnnFormItem {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: auto;
  }
}
/* 
 * Deprecated DNN CSS class names will remain available for some time
 * before being  permanently removed. Removal will occur according to
 * the  following process:
 *
 * 1. Removal will only occur with a major (x.y) release, never
 *    with a maintenance (x.y.z) release.
 * 2. Removal will not occur less than six months after the release
 *    when it was deprecated.
 * 3. Removal will not occur until after deprecation has been noted 
 *    in at least two major releases.
 *
 *                                              |        |Planned |
 *  Name                                        |Release |Removal |
 *---------------------------------------------- -------- -------- 
 * Mod{NAME}C                                     5.6.2    6.2
 *   {NAME} = sanitized version of the DesktopModule Name 
 *   Used on <div> tag surrounding Module Content, inside container
 *---------------------------------------------- -------- -------- 
 */  



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

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

.ControlPanel {
}

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

.LeftPane  { 
}

.ContentPane  { 
}

.RightPane  { 
}

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

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

A.SelectedTab:visited  {
}

A.SelectedTab:hover    {
}

A.SelectedTab:active   {
}

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

A.OtherTabs:visited  {
}

A.OtherTabs:hover    {
}

A.OtherTabs:active   {
}

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

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

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

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

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

.NormalRed
{
}

.NormalBold
{
}

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

A.CommandButton:visited  {
}

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

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

/* GENERIC */
H1  {
}

H2  {
}

H3  {
}

H4  {
}

H5, DT  {
}

H6  {
}

TFOOT, THEAD    {
}

TH  {
}

A:link  {
}

A:visited   {
}

A:hover {
}

A:active    {
}

SMALL   {
}

BIG {
}

BLOCKQUOTE, PRE {
}


UL LI   {
}

UL LI LI    {
}

UL LI LI LI {
}

OL LI   {
}

OL OL LI    {
}

OL OL OL LI {
}
OL UL LI   {
}

HR {
}

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

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

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

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/* Main Menu */

.MainMenu_MenuContainer {
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/* Login Styles */
.LoginPanel{
}

.LoginTabGroup{
}

.LoginTab {
}

.LoginTabSelected{
}

.LoginTabHover{
}

.LoginContainerGroup{
}

.LoginContainer{
}


h2.dnnFormSectionHead a, h2.dnnFormSectionHead a.dnnSectionExpanded {color:#fff;
}
