﻿/* - Start of /Portals/_default/default.css - */
@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;
}

.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;
}

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 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 .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;
}

/*-------------------------------------*/
/* 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("/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 > label#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; 
}


/* - End of /Portals/_default/default.css - */
/* - Start of /DesktopModules/HTML/module.css - */
.dnnHTMLSettings, .dnnEditHtml, .dnnMyWork{width:95%;margin:2em auto;}
	.dnnFormItem input[type=checkbox], .dnnPageSettings .dnnFormItem input[type=radio]{width:auto;}
	.dnnFormItem .dnnHTMLSRadioButtons label, .dnnFormItem .dnnPSRadioButtons input, .dnnFormItem .dnnHTMLSRadioButtons label, .dnnFormItem .dnnHTMLSRadioButtons input{float:left;padding:0;width:2%;text-align:left;}
	.dnnFormItem .dnnHTMLSRadioButtons label{width:auto;padding:0 15px 0 6px;font-weight:normal}
	.dnnHTMLSRadioButtons br{display:none !important;font-size:0;line-height:0;border-collapse:collapse;}
	.ehcContent textarea{width:50%;height:180px;margin-top:1em;}
	.dnnFormItem .dnnPublish label{width:auto;margin-right:10px;}
	.dnnFormItem .dnnPublish input[type="checkbox"]{margin-right:30px;}
	.dnnPublish {float: left;}
table.DnnGridNestedTable{ margin: 0 !important;}
div a.toggleMore{font-family:Helvetica, Arial, sans-serif;font-size:14px;font-weight: bold;margin:0;padding:5px 25px;color: #fff;text-decoration: none;
	background: #1f81a8; /* Old browsers */
	background: -moz-linear-gradient(top, #248aba 0%, #1f81a8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#248aba), color-stop(100%,#1f81a8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #248aba 0%,#1f81a8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #248aba 0%,#1f81a8 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #248aba 0%,#1f81a8 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#248aba', endColorstr='#1f81a8',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, #248aba 0%,#1f81a8 100%); /* W3C */
	-webkit-border-radius: 3px;-moz-border-radius: 3px;border-radius: 3px;
	-webkit-box-shadow: 0px 1px 0px 1px #1f81a8;
	-moz-box-shadow: 0px 1px 0px 1px #1f81a8;
	box-shadow: 0px 1px 0px 1px #1f81a8;
	text-shadow: 0px 1px 1px black;}
	
.ehContent{ margin-top: 20px;}
#dnnPanel-Summary{ display: block;}
.summaryHelp{margin: 0 30px 5px;}
.RadGrid{ overflow: auto;}
.previewC{ width: 100%;}
.autoSaveStatusError{font-weight: bold}
#divSavingMessageSummary {
    margin-top: 5px;
}
#divSavingMessageErrorSummary {
    margin-top: 5px;
}

.previewPanelContainer {
    border: #E6EBEA solid 5px;    
    margin-top: 5px;
    /*min-width: 750px;*/
}
.previewPanel {
    border: #a9a9a9 solid 1px;
    padding: 10px 10px 10px 10px;
    height: 260px;
    overflow: auto;
}
.previewContent {
    padding-bottom: 10px;
}
.comparisonPanel {
    float: left;
    width: 50%;
}
.comparisonPanel del {
	background-color:#FEC8C8;
	text-decoration:inherit;
	display: inline-block;
}
.comparisonPanel ins {
    background-color: #cfc;
	text-decoration:inherit;
	display: inline-block;
}
.comparisonPanel ins.mod {
    background-color: #FFE1AC;
}
.comparisonPanel del > img {
    opacity: .5;
	filter:Alpha(Opacity=50);
}
.comparisonPanel ins > img {
    opacity: .5;
	filter:Alpha(Opacity=50);
}
.comparisonButtons {
    background-color: #E6EBEA;
    margin: 0;
    float: left;
    padding-bottom: 5px;
    padding-right: 20px;
}
.comparisonButtons li {
    display: inline;
    margin: 10px;    
}
.comparisonButtons a {
    color: #A2A1A1;
    text-decoration: none;
    margin-left: 18px;
}
.comparisonButtons .comparisonButtonSelected {
    font-weight: bold;
    color: #000000;
}
.dnnwfPermissions .dnnGrid.dnnPermissionsGrid {
    float: left;
	width: 45%;
	max-width: 445px;
}
div.DnnModule.reviewContent {
    background: #fff;
	padding: 2px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	opacity: 1;
}

.dnnHTMLSettings .dnnFormGroup {
    width: 45%  
}

.dnnHTMLSettings .dnnFormGroup span {
    display: inline-block;
}
/* - End of /DesktopModules/HTML/module.css - */
/* - Start of /Resources/Search/SearchSkinObjectPreview.css - */
.searchInputContainer {
    display: inline-block !important;
    margin: 0 -3px 0 0 !important;
    position: relative !important;
}
    .searchInputContainer > input[type="text"]::-ms-clear {
        display: none;
    }

    .searchInputContainer a.dnnSearchBoxClearText {
        display: block !important;
        position: absolute !important;
        right: 10px !important;
        width: 16px !important;
        height: 16px !important;
        background: none !important;
        cursor: pointer;
        margin: 7px 0 7px 0;
        z-index: 20;
    }

        .searchInputContainer a.dnnSearchBoxClearText.dnnShow {
            background: url("/images/search/clearText.png") center center no-repeat !important;
        }

ul.searchSkinObjectPreview {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    margin: 0;
    list-style: none;
    border: 1px solid #c9c9c9;
    width: 350px;
    z-index: 200;
    padding: 0;
}

ul.searchSkinObjectPreview li {
    list-style: none !important;
}

    ul.searchSkinObjectPreview > li {
        padding: 6px 12px 6px 22px;
        border-top: 1px solid #c9c9c9;
        color: #666;
        cursor: pointer;
        position: relative;
        margin: 0;
        text-transform: none;
    }

        ul.searchSkinObjectPreview > li:hover {
            background-color: #e8f1fa;
            color: #333;
        }

        ul.searchSkinObjectPreview > li > span {
        }

        ul.searchSkinObjectPreview > li > span img.userpic {
            width: 32px;
            height: 32px;
            display: block;
            float: left;
            margin-right: 4px;
        }

            ul.searchSkinObjectPreview > li > span > b {
                font-weight: bold;
                color: #000;
            }

        ul.searchSkinObjectPreview > li p {
            margin: 0;
            font-size: 10px;
            line-height: 1.2em;
            color: #999;
            font-style: italic;
            white-space: normal;
        }

            ul.searchSkinObjectPreview > li p b {
                color: #000;
            }

        ul.searchSkinObjectPreview > li.searchSkinObjectPreview_group {
            padding: 6px 12px 6px 12px;
            font-weight: bold;
            color: #000;
            border-bottom: 2px solid #000;
            cursor: inherit;
        }

            ul.searchSkinObjectPreview > li.searchSkinObjectPreview_group:hover {
                background-color: #fff;
                color: #000;
            }

        ul.searchSkinObjectPreview > li > a.searchSkinObjectPreview_more {
            display: inline !important;
            position: static !important;
            background: none !important;
            z-index: inherit !important;
            width: auto !important;
            height: auto !important;
            text-indent: inherit !important;
            float: none !important;
        }

/* - End of /Resources/Search/SearchSkinObjectPreview.css - */
/* - Start of /DesktopModules/StepChange/Feefo/module.css - */
.feefoModule { 
	background:#F08B1E;
	color:#FFF;
	font-size:15px;
	padding:25px;
	box-sizing:border-box;
}

.feefoModule--round {
	padding:45px 5px 0 5px;
	border-radius:100%;
	text-align:center;
	width:150px;
	margin:0 auto;
	height:150px;
}

.feefoModule__title, .feefoModule__text, .feefoModule__logo, .feefoModule__disclaimer, .feefoModule__link, .feefoModule__link:link, .feefoModule__link:visited, .feefoModule__link:active, #page #content .feefoModule__title, #page #content .feefoModule__text, #page #content .feefoModule__logo, #page #content .feefoModule__disclaimer, #page #content .feefoModule__link, #page #content .feefoModule__link:link, #page #content .feefoModule__link:visited, #page #content .feefoModule__link:active {
	color:#FFF;
	margin:0;
	line-height:22px;
}

.default .feefoModule img {
	padding:0;
}

.feefoModule__title, #page #content .feefoModule__title {
	font-size:22px;
	line-height:30px;
}

.feefoModule__text, #page #content .feefoModule__text {
	font-size:15px;
	line-height:18px;
}

.feefoModule__disclaimer, #page #content .feefoModule__disclaimer, .articlePageContainer .feefoModule__disclaimer {
	font-size:13px;
	font-style:italic;
	margin-bottom:15px;	
	line-height:18px;
}

.feefoModule__stars--small {
	width:100px;
}


.feefoModule__logo--small {
	width:75px;
}

.feefoModule__margin, #page #content .feefoModule__margin {
	margin-bottom:15px;
}

.feefoModule__margin--small, #page #content .feefoModule__margin--small {
	margin-bottom:8px;
}
/* - End of /DesktopModules/StepChange/Feefo/module.css - */
/* - Start of /Portals/0/Skins/stepchange/skin.css - */
@charset "utf-8";
/* CSS Document */

/* TABLE OF CONTENTS */
/* ----------------- */
/* 1. Global ------- */
/* 2. Header ------- */
/* 3. Nav ---------- */
/* 4. Content ------ */
/* 5. Footer ------- */
/* 6. Pages ------- */


/* -----------------------------------*/
/* --------->>> 1. GLOBAL <<<---------*/
/* -----------------------------------*/
body {
    margin:0 0 50px 0;
    color: #333333;
    /* -- Wider background shadow --*/
}

input {
    padding:0px;
    margin:0px;
}



/* -----------------------------------*/
/* --------->>> 2. HEADER <<<---------*/
/* -----------------------------------*/


/*** HEADER ***/

.dmplogin {
    float:right;
    padding:6px 16px 9px 16px;
    font-size:1em;
    color:#bbb;
    margin-left:10px;
    background:#fafafa;
    border:solid 1px #ededed;
    text-decoration:none;
    -moz-border-radius: 0px 0px 3px 3px;
    -webkit-border-radius: 0px 0px 3px 3px;
    border-radius: 0px 0px 3px 3px; 
}
.dmplogin a {
    font-size:1.1em;
    color:#666;
    text-decoration:none !important;
    position:relative;
    display:block;
    float:left;
}
.dmplogin a + a {
    float:right;
}
.dmplogin a:hover {
    text-decoration:underline;
}
.dmplogin a span:hover {
    text-decoration: underline;
}
.mast {
    height:86px;
    background:#fff;
    overflow:auto;
}
.dmplogin a.selected { font-weight: bold; }


.callback-panel { /* TB */
	width: 190px;
	color: #b4bdc3;
	float: right;
	position: relative;
	margin: 12px 0 12px 0;
	background: url("/portals/0/skins/stepchange/images/telephone.jpg") no-repeat left top;
	padding-left: 50px;
	-webkit-font-smoothing:antialiased;
	min-height: 42px;
}


.second-hero-bottom .callback-panel,
.orange-five .callback-panel,
.bluegrey-thirty .callback-panel,
.bluegrey-twenty .callback-panel,
.bluegrey-ten .callback-panel,
.bluegrey-fifty .callback-panel,
.blank .callback-panel { /* TB */
	background: url("/portals/0/skins/stepchange/images/speech-blue-icon.png") no-repeat left top;
}
.chat-panel { /* TB */
	width: 190px;
	color: #b4bdc3;
	float: right;
	position: relative;
	margin: 12px 0 12px 0;
	background: url("/portals/0/skins/stepchange/images/telephone.jpg") no-repeat left top;
	padding-left: 50px;
	-webkit-font-smoothing:antialiased;
	min-height: 42px;
}
.mail-panel { /* TB */
	width: 190px;
	color: #b4bdc3;
	float: right;
	position: relative;
	margin: 12px 0 12px 0;
	background: url("/portals/0/skins/stepchange/images/telephone.jpg") no-repeat left top;
	padding-left: 50px;
	-webkit-font-smoothing:antialiased;
	min-height: 42px;
}
.chat-panel p,
.callback-panel p,
.mail-panel p { /* TB */
	line-height: 42px;
}
.second-hero-bottom .chat-panel,
.bluegrey-thirty .chat-panel,
.bluegrey-twenty .chat-panel,
.bluegrey-ten .chat-panel,
.orange-five .chat-panel,
.bluegrey-fifty .chat-panel,
.blank .chat-panel { /* TB */
	background: url("/portals/0/skins/stepchange/images/two-speech-blue-icon.png") no-repeat left top;
}
.purple-primary .notes-panel,
.purple-eighty .notes-panel,
.purple-eighty-bottom .notes-panel,
.purple-twenty-bottom .notes-panel,
.purple-sixtyfive .notes-panel,
.purple-sixtyfive .notes-panel {  /* TB */
	background: url("/Portals/0/Skins/images/purple-notes.png") no-repeat left top;
	color: white;
}
.notes-panel { /* TB */
	width: 190px;
	color: #b4bdc3;
	position: relative;
	margin: 12px 0 12px 0;
	background: url("/portals/0/skins/stepchange/images/notes-blue-icon.png") no-repeat left top;
	padding-left: 50px;
	-webkit-font-smoothing:antialiased;
}
.notes-panel ul { /* TB */
	margin-top: 0;
}
.second-hero-bottom .telephone-panel,
.bluegrey-thirty .telephone-panel,
.bluegrey-twenty .telephone-panel,
.bluegrey-ten .telephone-panel,
.bluegrey-fifty .telephone-panel,
.orange-five .telephone-panel,
.blank .telephone-panel {  /* TB */
	background: url("/portals/0/skins/stepchange/images/bluegrey-phone.png") no-repeat left top;
	color: #4c4c4c;
}
.purple-primary .telephone-panel,
.purple-eighty .telephone-panel,
.purple-eighty-bottom .telephone-panel,
.purple-twenty-bottom .telephone-panel,
.purple-sixtyfive .telephone-panel,
.purple-sixtyfive .telephone-panel {  /* TB */
	background: url("/portals/0/skins/stepchange/images/purple-phone.png") no-repeat left top;
	color: white;
}
.purple-primary .mail-panel,
.purple-eighty .mail-panel,
.purple-eighty-bottom .mail-panel,
.purple-twenty-bottom .mail-panel,
.purple-sixtyfive .mail-panel,
.purple-sixtyfive .mail-panel {  /* TB */
	background: url("/portals/0/skins/stepchange/images/purple-mail.png") no-repeat left top;
	color: white;
}
.bluegrey-thirty .mail-panel,
.bluegrey-thirty .mail-panel,
.bluegrey-twenty .mail-panel,
.bluegrey-ten .mail-panel,
.bluegrey-fifty .mail-panel,
.orange-five .mail-panel,
.blank .mail-panel { /* TB */
	color: #4c4c4c;
	background: url("/portals/0/skins/stepchange/images/mail-blue-icon.png") no-repeat left top;
}
.purple-primary .callback-panel,
.purple-eighty .callback-panel,
.purple-eighty-bottom .callback-panel,
.purple-twenty-bottom .callback-panel,
.purple-sixtyfive .callback-panel,
.purple-sixtyfive .callback-panel {
	background: url("/portals/0/skins/stepchange/images/purple-speech.png") no-repeat left top;
	color: white;
}
.purple-primary .chat-panel,
.purple-eighty .chat-panel,
.purple-eighty-bottom .chat-panel,
.purple-twenty-bottom .chat-panel,
.purple-sixtyfive .chat-panel,
.purple-sixtyfive .chat-panel {
	background: url("/portals/0/skins/stepchange/images/purple-chat.png") no-repeat left top;
	color: white;
}

.orange-primary .telephone-panel { /* TB */
	 background: url("/portals/0/skins/stepchange/images/bluegrey-phone-orange.png") no-repeat left top;
 }
 .orange-primary .callback-panel { /* TB */
	 background: url("/portals/0/skins/stepchange/images/orange-callback-orange.png") no-repeat left top;
 }
 .orange-primary .chat-panel { /* TB */
	 background: url("/portals/0/skins/stepchange/images/orange-chat-icon.png") no-repeat left top;
 }
 .orange-primary .mail-panel { /* TB */
	 background: url("/portals/0/skins/stepchange/images/bluegrey-mail-orange.png") no-repeat left top;
 }
.orange-primary .notes-panel { /* TB */
	background: url("/portals/0/skins/stepchange/images/orange-notes.png") no-repeat left top;
}


.telephone-panel { /* TB */
	width: 200px;
	color: #b4bdc3;
	float: right;
	position: relative;
	margin: 12px 0 12px 0;
	background: url("/portals/0/skins/stepchange/images/telephone.jpg") no-repeat left top;
	padding-left: 50px;
	-webkit-font-smoothing:antialiased;
	padding-top:3px;
}
.telephone-panel p {
	font-size:24px;
	line-height: 22px;
}
.telephone-panel p span 
{
  font-family: Corbel-Italic, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif; /* Tom */
  font-style:normal; /* Tom */
  font-size: 14px;
  display: block;
  clear: both;
}
.orangeline {
    height:6px;
    background: -moz-linear-gradient(left,  #f48f37 0%, #f7b316 48%, #f48f37 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#f48f37), color-stop(48%,#f7b316), color-stop(100%,#f48f37)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left,  #f48f37 0%,#f7b316 48%,#f48f37 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left,  #f48f37 0%,#f7b316 48%,#f48f37 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left,  #f48f37 0%,#f7b316 48%,#f48f37 100%); /* IE10+ */
    background: linear-gradient(to right,  #f48f37 0%,#f7b316 48%,#f48f37 100%); /* W3C */
    -moz-border-radius: 3px;
    -webkit-border-radius:3px;
    border-radius:3px;
}

.subline {
	float: left;
	color: #b4bdc3;
	font-family: Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
	-webkit-font-smoothing:antialiased;
	font-size: 18px;
	margin: 10px 0 0 0;
	line-height: 21px; 
}
.header .subline {
    margin: 19px 0 0 0;
}
.header .telephone-panel 
{
    margin:21px 0 4px 0;
}

/* -----------------------------------*/
/* ----------->>> 3. NAV <<<----------*/
/* -----------------------------------*/

.nav-section {
	position: relative;
	z-index: 300;
}
.topnav {
    width:auto;
    height: 39px;
    margin: 5px 0 20px 0;
    padding:0;
    background:#e3e9ec;
    -moz-user-select: none;
    background: -moz-linear-gradient(top, #ffffff 0%, #cad5da 95%, #e3e9ec 100%);
    -webkit-user-select: none;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(95%,#cad5da), color-stop(100%,#e3e9ec));
    background: linear-gradient(top, #ffffff 0%,#cad5da 95%,#e3e9ec 100%);
    border: solid 1px #cad5da;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius:3px;
}
ul.nav {
	list-style-type: none;
	float: left;
	margin: 0;
	padding: 0;
	margin-top: -5px;
	
	/*top:-5px;
	position: relative;*/
}
ul.nav li.active {
	border-top: solid 5px #7c4682;
}

ul.nav li {
	float: left;
	background: url("/portals/0/skins/stepchange/images/nav-divide.jpg") no-repeat left center;
	padding: 0;
	border-top: solid 5px transparent;
	list-style: none; /* TB - ADDED */
}
ul.nav li:hover {
	background:url("/Portals/0/Skins/images/nav-divide.jpg"), #ffffff; /* Old browsers */
	background:url("/Portals/0/Skins/images/nav-divide.jpg"), -moz-linear-gradient(top,  #ffffff 0%, #e1edf3 100%); /* FF3.6+ */
	background:url("/Portals/0/Skins/images/nav-divide.jpg"), -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e1edf3)); /* Chrome,Safari4+ */
	background:url("/Portals/0/Skins/images/nav-divide.jpg"), -webkit-linear-gradient(top,  #ffffff 0%,#e1edf3 100%); /* Chrome10+,Safari5.1+ */
	background:url("/Portals/0/Skins/images/nav-divide.jpg"), -o-linear-gradient(top,  #ffffff 0%,#e1edf3 100%); /* Opera 11.10+ */
	background:url("/Portals/0/Skins/images/nav-divide.jpg"), -ms-linear-gradient(top,  #ffffff 0%,#e1edf3 100%); /* IE10+ */
	background:url("/Portals/0/Skins/images/nav-divide.jpg"), linear-gradient(to bottom,  #ffffff 0%,#e1edf3 100%); /* W3C */
	background-repeat: no-repeat;
}
ul.nav li:first-child { 
	background-position: 1000px 1000px;
}
ul.nav li:first-child:hover {
	background:url("/Portals/0/Skins/images/nav-divide.jpg"), #ffffff; /* Old browsers */
	background:url("/Portals/0/Skins/images/nav-divide.jpg"), -moz-linear-gradient(top,  #ffffff 0%, #e1edf3 100%); /* FF3.6+ */
	background:url("/Portals/0/Skins/images/nav-divide.jpg"), -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e1edf3)); /* Chrome,Safari4+ */
	background:url("/Portals/0/Skins/images/nav-divide.jpg"), -webkit-linear-gradient(top,  #ffffff 0%,#e1edf3 100%); /* Chrome10+,Safari5.1+ */
	background:url("/Portals/0/Skins/images/nav-divide.jpg"), -o-linear-gradient(top,  #ffffff 0%,#e1edf3 100%); /* Opera 11.10+ */
	background:url("/Portals/0/Skins/images/nav-divide.jpg"), -ms-linear-gradient(top,  #ffffff 0%,#e1edf3 100%); /* IE10+ */
	background:url("/Portals/0/Skins/images/nav-divide.jpg"), linear-gradient(to bottom,  #ffffff 0%,#e1edf3 100%); /* W3C */
	background-repeat: no-repeat;
	background-position: -1px 1px;
}
ul.nav li:first-child a {
	border-radius: 3px 0px 0px 0px;
}
ul.nav li a:first-child {
	display: block;
	color: #333;
	font-size: 0.9em;
	padding:9px 16px;
	text-shadow: 0px 1px 0px white;
	cursor: pointer;
}
ul.nav li a:hover {
	text-decoration: none;
}
ul.nav li.active a {
	background: white;
	border-bottom: solid 1px white;
}
ul.nav li.active>a:first-of-type:hover,
.active-active-tab {
	background: transparent !important;
	border-bottom: solid 1px transparent !important;
}
ul.nav li:hover .leftmenu {
	left:auto;
	display: block;
	top:auto;
	left: 67px;
}
ul.nav li:hover .rightmenu {
	left:auto;
	display: block;
	top:auto;
	right: 0;
}
.searchform {
    float:right;
    width:200px;
    display: inline-block;
    zoom: 1; /* ie7 hack for display:inline-block */
    *display: inline;
    border: solid 0px #2a323a;
    margin:8px 12px 0 0;
    padding:0px;
}
.searchform input {
    font-size: 12px;
    line-height:1.2em;    
    color:#666;
    filter:chroma(color=#000000); /* ie7 hack for removing black border - unfortunately it creates an 'on focus' style instead */
}
.searchform .searchfield,
.searchform input[type="text"] {
    background: #fff;
    padding: 3px 5px 3px 5px;
    line-height:1.2em;
    width: 77%;
    border: solid 1px #bec8cd;
    outline: none;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius:3px;
    float: left;
}
.searchform .searchbutton {
    color: #fff;
    border: solid 1px #fff;
    padding: 4px 2px 4px 2px;
    font-size: 12px;
    line-height:0.95em;
    height:13px;
    overflow: hidden;
    text-indent: -999px;
    width: 11%;
    text-shadow: 0 1px 1px rgba(0,0,0,.6);
    background: url("/portals/0/skins/stepchange/images/magnify.png") no-repeat center #8a5b91;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius:3px;
    display:inline-block;
    float:none;
}

#breadcrumbs {
	margin:0;
	padding: 0;
	list-style-type: none; 
	color: #aaaaaa;
	font-size: 12px;
    margin-top: -10px;
}

#breadcrumbs a {
	color: #333;
	margin:0 8px;
    text-decoration:none;
    padding: 15px 0;
    display: inline-block;
}


#breadcrumbs li:last-child {
	margin-left: 8px;
}
/* -----------------------------------*/
/* --------->>> 4. CONTENT <<<--------*/
/* -----------------------------------*/

.main {
	min-height:350px;
	clear:both;
}

.purple-list-box {
background-color:#F4E9F3; border-radius:5px;padding:0px 0px 5px 0px;
}
.purple-list-box h4 {
background-color:#8C6199; font-size:1.8em;padding:2px 0px;
color:#FFFFFF;
font-weight:bold;
}
.purple-list-box a, .purple-list-box li {
display:block; padding:13px 15px; font-size:1.2em; color:#7A4B88; border-top:solid 1px #E5D5E6;
}
.purple-list-box a:first-child {
border-top:none;
}
.purple-list-box a:hover {
background-color:#DFC3E8; text-decoration:none;
}

.newsletterSignup { background-color:#F4F7F8;border-radius:5px;padding:20px 20px 10px 20px;margin-bottom:20px; }
.signupBox { margin-top:20px; width:400px; }

.Normal .three-slides a,
.Normal .four-slides a,
.Normal .horiz-controls a {
    color: #333;
    text-decoration:none;
}
#rotating-banners {
	
}
.hero {
	height: 304px;
	position: relative;
	float: none;
}
#rotating-banners div {
	opacity: 0;
	z-index: 1;
	width: 100%;
	display: none;
	position: absolute;
	left: 0;
	top: 0;
}
.module #rotating-banners {
	background: white;
	min-height: 210px;
	position: relative;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
	box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
	/* Temp measure while we wait for our font embedding licence */
  font-family: Corbel-Italic, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
  -webkit-font-smoothing:antialiased;
}
.module #rotating-banners div em {
	font-size:1.3em;
}
.module #rotating-banners div {
	padding:30px;
	width: auto;
	font-size: 14px;
	/*font-style: italic;*/
}

.module #rotating-banners p img
{
    width:100%;
    height:auto;
}
.hero #rotating-banners .slide 
{
    height:304px;
    overflow:hidden;
}
#rotating-banners div .super-title {
	font-size:40px;
	line-height: 1em !important; /* TB */
}
#rotating-banners div .slide-content {
	-webkit-font-smoothing:antialiased;
	position: absolute;
	z-index: 200;
	display: block;
	margin-left:24px;
	opacity: 1;
	padding:8px 8px 16px 8px;
}
.hero #rotating-banners div h1,
.hero #rotating-banners div h2,
.hero #rotating-banners div h3,
.hero #rotating-banners div h4,
.hero #rotating-banners div h5,
.hero #rotating-banners div h6
{
	color: white;
	width:340px;
	line-height: 1.2em;
}
.horiz-hero #rotating-banners div h1,
.horiz-hero #rotating-banners div h2,
.horiz-hero #rotating-banners div h3,
.horiz-hero #rotating-banners div h4,
.horiz-hero #rotating-banners div h5,
.horiz-hero #rotating-banners div h6
{
    width:525px;
}
.hero #rotating-banners div .caption {
	color: #fcdbbb;
	text-indent: 8px;
	display: block;
}
.hero #rotating-banners div blockquote {
	color: white;
	width: 275px;
	padding-left: 0px;
	text-indent: 28px;
	margin: 16px 0px 20px 0px;
	background:url("/portals/0/stepchange/skins/images/quote-mark-white.png") -8px 0px no-repeat;
}
.hero #rotating-banners div p {
	font-size: 20px;
	color: white;
	line-height: 28px;
	width: 340px;
}
.horiz-hero #rotating-banners div p {
	width:500px;
}
.hero #rotating-banners div a:hover {
	background: rgba(255,255,255,0.2);
	text-decoration: none;
}
.hero #rotating-banners div a {
	font-size:24px;
	color: white;
	padding:8px 8px;
    text-decoration:none;
	cursor: pointer;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	margin-left: -12px;
}

#rotating-banners div.slide-active {
	display: block;
	opacity: 1;
}
#banner-controls { /* TB */
	
}
.horiz-controls a { /* TB */
	float: left;
	background:#ddd;
	display: block;
	padding: 16px 15px;
	width: 161px; /* width (304px) minus padding (30px) */
	height: 25px; /* height (75px) minus padding (24px) */
	border-bottom: solid 1px #aaaaaa;
	border-right: solid 1px #aaaaaa;
	-webkit-user-select: none;
	text-align: center;
	
	-webkit-box-shadow:0px -3px 3px rgba(0,0,0,0.3), inset -1px 1px 0px #fff;
	-moz-box-shadow:0px -3px 3px rgba(0,0,0,0.3), inset -1px 1px 0px #fff;
	box-shadow:0px -3px 3px rgba(0,0,0,0.3), inset -1px 1px 0px #fff;
	
	background: -moz-linear-gradient(top, #ffffff 0%, #d5dde1 95%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(95%,#d5dde1));
    background: linear-gradient(top, #ffffff 0%,#d5dde1 95%);
    font-size:18px;
    line-height: 140%;
    color: #aaaaaa;

    -webkit-text-shadow: 0px 1px rgba(255,255,255,0.7);
    -moz-text-shadow: 0px 1px rgba(255,255,255,0.7);
    text-shadow: 0px 1px rgba(255,255,255,0.7);
    position: relative;
}
.horiz-controls a.slide-active { /* TB */
	color: #797979;
	background: url("/portals/0/containers/stepchange/images/heropanels/purple-active.jpg") #ddd;
    background: url("/portals/0/containers/stepchange/images/heropanels/purple-active.jpg"), -moz-linear-gradient(top, #ffffff 0%, #cad5da 100%);
    background: url("/portals/0/containers/stepchange/images/heropanels/purple-active.jpg"), -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#cad5da));
    background: url("/portals/0/containers/stepchange/images/heropanels/purple-active.jpg"), linear-gradient(top, #ffffff 0%,#cad5da 100%);
    background-position: bottom center;
    background-repeat: repeat-x;
}
.horiz-controls a:first-child {  /* TB */
	-webkit-border-radius: 0 0 0 3px;
	-moz-border-radius: 0 0 0 3px;
	border-radius: 0 0 0 3px;
	border-left: solid 1px #aaaaaa;
	width: 160px;
}
.horiz-controls a:last-child {  /* TB */
	-webkit-border-radius: 0 0 3px 0;
	-moz-border-radius:0 0 3px 0;
	border-radius: 0 0 3px 0;
}
.horiz-controls {  /* TB */
	height: 56px;
	width: 100%;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
}
.horiz-controls a span.control-arrow { /* TB */
	display: none;
}
.horiz-controls a span.slide-active { /* TB */
	top:-24px;
	position: absolute;
	display: block;
	background: url("/portals/0/containers/stepchange/images/heropanels/active-slide-horiz.png") no-repeat bottom;
	width: 100%;
	left: 0;
}
.four-slides, 
.three-slides { /* TB */
	height: 304px;
	width: 305px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	opacity:1;
	display:block;
}
.four-slides a {
	background:#ddd;
	display: block;
	padding: 12px 15px;
	width: 274px; /* width (304px) minus padding (30px) */
	height: 51px; /* height (75px) minus padding (24px) */
	border-bottom: solid 1px #aaaaaa;
	border-right: solid 1px #aaaaaa;
	-webkit-user-select: none;
	-webkit-box-shadow:-3px 0px 3px rgba(0,0,0,0.3), inset -1px 1px 0px #fff;
	-moz-box-shadow:-3px 0px 3px rgba(0,0,0,0.3), inset -1px 1px 0px #fff;
	box-shadow:-3px 0px 3px rgba(0,0,0,0.3), inset -1px 1px 0px #fff;
	background: -moz-linear-gradient(top, #ffffff 0%, #d5dde1 95%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(95%,#d5dde1));
    background: linear-gradient(top, #ffffff 0%,#d5dde1 95%);
    font-size:18px;
    line-height: 140%;
    color: #aaaaaa;

    -webkit-text-shadow: 0px 1px rgba(255,255,255,0.7);
    -moz-text-shadow: 0px 1px rgba(255,255,255,0.7);
    text-shadow: 0px 1px rgba(255,255,255,0.7);
    position: relative;
}



.four-slides a:first-child {
	border-radius: 0px 3px 0px 0px;
	border-top: solid 1px #aaaaaa;
	height: 50px;
}
.four-slides a:last-child {
	border-radius: 0px 0px 3px 0px; /*RF - Was missing*/
}

.three-slides a {
	background:#ddd;
	display: block;
	padding: 26px 15px;
	width: 274px; /* width (304px) minus padding (30px) */
	height: 48px; /* height (75px) minus padding (24px) */
	border-bottom: solid 1px #aaaaaa;
	border-right: solid 1px #aaaaaa;
	-webkit-user-select: none;
	-webkit-box-shadow:-3px 0px 3px rgba(0,0,0,0.3), inset -1px 1px 0px #fff;
	-moz-box-shadow:-3px 0px 3px rgba(0,0,0,0.3), inset -1px 1px 0px #fff;
	box-shadow:-3px 0px 3px rgba(0,0,0,0.3), inset -1px 1px 0px #fff;
	background: -moz-linear-gradient(top, #ffffff 0%, #d5dde1 95%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(95%,#d5dde1));
    background: linear-gradient(top, #ffffff 0%,#d5dde1 95%);
    font-size:18px;
    line-height: 140%;
    color: #aaaaaa;
    -webkit-text-shadow: 0px 1px rgba(255,255,255,0.7);
    -moz-text-shadow: 0px 1px rgba(255,255,255,0.7);
    text-shadow: 0px 1px rgba(255,255,255,0.7);
    position: relative;
}


.three-slides a:first-child {
	border-radius: 0px 3px 0px 0px;
	border-top: solid 1px #aaaaaa;
}
.three-slides a:last-child {
	border-radius: 0px 0px 3px 0px;
}
#banner-controls a:hover { text-decoration: none; }


.four-slides a.slide-active,
.three-slides a.slide-active { /* TB */
	color: #797979;
	background: url("/portals/0/containers/stepchange/images/heropanels/slide-highlight.jpg") #ddd;
    background: url("/portals/0/containers/stepchange/images/heropanels/slide-highlight.jpg"), -moz-linear-gradient(top, #ffffff 0%, #cad5da 100%);
    background: url("/portals/0/containers/stepchange/images/heropanels/slide-highlight.jpg"), -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#cad5da));
    background: url("/portals/0/containers/stepchange/images/heropanels/slide-highlight.jpg"), linear-gradient(top, #ffffff 0%,#cad5da 100%);
    background-position: right center;
    background-repeat: repeat-y;
    -webkit-box-shadow:-3px 0px 3px rgba(0,0,0,0.3);
	-moz-box-shadow:-3px 0px 3px rgba(0,0,0,0.3);
	box-shadow:-3px 0px 3px rgba(0,0,0,0.3);
}
.three-slides a:first-child span.control-arrow {
	height: 100px;
}
.four-slides a:first-child span.control-arrow {
	height: 74px;
}
.three-slides a span.control-arrow {
	display: none;
	position: absolute;
	top:0;
	left: -18px;
	height: 101px;
	width: 18px;
	background: url("/portals/0/containers/stepchange/images/heropanels/slide-arrow-tall.png") no-repeat center;
	
	/*border-radius: 50%/50%;
	background-image: -moz-linear-gradient(top, #ffffff 0%, #cad5da 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#cad5da));
    background-image: linear-gradient(top, #ffffff 0%,#cad5da 100%);
    -webkit-box-shadow:-3px 0px 3px rgba(0,0,0,0.3);
	-moz-box-shadow:-3px 0px 3px rgba(0,0,0,0.3);
	box-shadow:-3px 0px 3px rgba(0,0,0,0.3);*/
}
.four-slides a span.control-arrow {
	display: none;
	position: absolute;
	top:0;
	left: -18px;
	height: 75px;
	width: 18px;
	background: url("/portals/0/containers/stepchange/images/heropanels/images/slide-arrow.png") no-repeat center;
}
.four-slides a span.slide-active,
.three-slides a span.slide-active { /* TB */
	display: block;
}
.prev-button:hover, 
.next-button:hover,
.scroll-left:hover,
.scroll-right:hover { /* TB */
	opacity: 1;
}
.prev-button, .next-button,
.scroll-left,
.scroll-right { /* TB */
	position: absolute;
	z-index: 300;
	background: #e3d5e2;
	padding-top: 25px;
	height: 0px;
	width:25px;
	overflow: hidden;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	top: 40%; /* RF was 40% */
	opacity: 0.7;
	cursor: pointer;
}
.history .prev-button, .history .next-button,
.history .scroll-left,
.history .scroll-right {
    top: 90%;
}
.prev-button,
.scroll-left {
	left:-12px;
	background: url("/portals/0/skins/stepchange/images/leftarrow.png") no-repeat center #e3d5e2;
}
.next-button,
.scroll-right {
	right: -12px;
	background: url("/portals/0/skins/stepchange/images/rightarrow.png") no-repeat center #e3d5e2;
}
.scroll-right {
	right:10px;
	background-color: #cad5da;
	opacity: 0.9;
}
.scroll-left {
	left:10px;
	background-color: #cad5da;
	opacity: 0.9;
}
.history { /* TB */
	position: relative;
	min-height: 120px;
	width:99%;
}
.history .module-content { /* TB */
	padding: 0 !important;
	height: 210px;
}
.history .timeline { /* TB */
	width: 100%;
	height: 250px; /* RF was 220px */
	margin-bottom: -5px; /* RF was 10px */
	width: 100%;
	overflow-x:hidden;
	overflow-y: hidden;
	white-space: nowrap;
	position: relative;
}
.timeline-entry h1, 
.timeline-entry h2, 
.timeline-entry h3, 
.timeline-entry h4, 
.timeline-entry h5, 
.timeline-entry h6, 
.timeline-entry p { /* TB */
	margin:0 0 4px 0 !important;

}
.timeline-entry h1, 
.timeline-entry h2, 
.timeline-entry h3, 
.timeline-entry h4, 
.timeline-entry h5, 
.timeline-entry h6 { /* TB */
	font-size: 16px;
}
.timeline-entry p { /* TB */
	font-size: 12px;
	white-space:normal;
}
.time-line-holder { /* TB */
	width: 3500px;
	border-bottom: solid 3px #e4eaec;
	height: 200px;
}
.timeline-entry:after { /* TB */
	content: "";
	display: block;
	position: absolute;
	bottom: -24px;
	background: red;
	height: 24px;
	width: 22px;
	background: url("/portals/0/containers/stepchange/images/time-line-spot.png") no-repeat;
}
.timeline-entry { /* TB */
	background: white;
	width: 197px;
	height: 134px;
	display: block;
	border: solid 1px #E4EAEC;
	padding: 14px;
	-webkit-box-shadow: 0px 3px 6px rgba(122, 122, 122, 0.1);
	-moz-box-shadow: 0px 3px 6px rgba(122, 122, 122, 0.1);
	box-shadow: 0px 3px 6px rgba(122, 122, 122, 0.1);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	margin-top: 10px;
	margin-left: 15px;
	position: relative;
	top: 10px;
	float: left;
}
/* --------->>> Debt remedy page <<<---------*/
.hero-inner { /* TB */
	width: 288px;
	float: left;
	margin:24px 0 24px 24px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	position: relative;
}
.hero-inner h1,
.hero-inner h2,
.hero-inner h3,
.hero-inner h4,
.hero-inner h5,
.hero-inner h6 { /* TB */
	width: 230px;
}
.hero-inner .module { /* TB */
	margin-bottom: 0;
}
.dr-panel {
	position: relative;
	zoom:1;
}
.dr-panel .gutter {
    margin-bottom:0 !important;
}
.dr-halfpanel {
	width: 46%;
	float: left;
	margin:12px 0px 12px 18px;
}
.dr-halfpanel ul,
.dr-halfpanel p {
	margin:2px 0px !important;
}
.dr-halfpanel ul li 
{
    list-style-type:disc !important;
}
.bluegrey-hero { /* TB */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.bluegrey-hero .module { /* TB */
	margin-bottom: 0;
}
.bluegrey-hero .module:first-child { /* TB */
	padding-top: 16px;
}
#watch-video {
	cursor: pointer;
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    background: #7F4F8D;
    display: block;
    position: absolute;
    bottom: 0;
    padding: 8px 16px;
    width: 272px;
    line-height: 34px;
    left:0px;
}
#employee-video { /* TB */
	cursor: pointer;
	color: white;
	text-decoration: none;
	font-size: 1.2em;
	background: #7F4F8D;
	display: block;
	position: absolute;
	bottom: 0;
	padding: 8px 0;
	width: 100%;
	line-height: 34px;
	right: 0px;
	text-indent: 100px;
}
#dr-half-panel-1 ul {
	font-size:12px;
}
#watch-video:hover,
#employee-video:hover {  /* TB */
	text-decoration: none;
	background: #8c6199;
}
#watch-video:active,
#employee-video:active {  /* TB */
	background: #a17eac;
}
.dr-open-saved {
	max-width: 550px;
}
.dr-open-saved p {
	padding:4px 0;
	margin:0;
}
/*.dr-open-saved input[type="text"] {
	min-width: 175px;
}*/

#DRWebReferenceTextBox 
{
    min-width: 175px;
}

.purple-twenty-bottom #DRWebReferenceTextBox 
{
    min-width: 215px;
}

.sub-nav-column {  /* TB */
	margin-top: 16px;
}
.sub-nav-column h1,
.sub-nav-column h2,
.sub-nav-column h3,
.sub-nav-column h4,
.sub-nav-column h5,
.sub-nav-column h6 { /* TB */
	font-size: 2.2em;
	background: -moz-linear-gradient(top,  #a17eac 0%, #6f397f 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a17eac), color-stop(100%,#6f397f)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #a17eac 0%,#6f397f 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #a17eac 0%,#6f397f 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #a17eac 0%,#6f397f 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #a17eac 0%,#6f397f 100%); /* W3C */
	color: white;
	padding: 8px 16px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.sub-nav-column h1 a,
.sub-nav-column h2 a,
.sub-nav-column h3 a,
.sub-nav-column h4 a,
.sub-nav-column h5 a,
.sub-nav-column h6 a {
    color: white; /* purple menu title is now a link */
    text-decoration:none;
}


.sub-nav { 
	list-style: none !important; /* TB */
	margin:0;
	padding: 0;
	list-style-position: inside;
}
.sub-nav li { 
	padding: 0 14px; /* TB */
	list-style-type: none !important; /* TB */
}
.sub-nav li:hover,
.sub-nav li.active {
	background:#f4f7f8;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background: url("/portals/0/skins/stepchange/images/end-arrow.png") #F4F7F8 center right no-repeat; /* TB */
}

.sub-nav li a { 
	padding: 8px 13px;
	display: inline-block;
	color: #333;
	cursor: pointer;
	background: url("/portals/0/skins/stepchange/images/arrow-right-double-footer.png") -1px 15px no-repeat; /* TB */
	
}

/* -----------------------------------*/
/* --------->>> 5. FOOTER <<<---------*/
/* -----------------------------------*/

.footer {
	margin-top: 48px;
    padding:15px 0 0 0;
    width:100%; 
    height:auto;
    background:#f3f7f8 url("/Portals/0/Skins/stepchange/images/link-shape_footer.png") top right  no-repeat;
    border-top:#fcb316 6px solid;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    font-size:0.85em;
}

/* Footer links */

.footer .footernav {
    float:left;
    width:197px;
    margin:0 20px 0 0;
}
.footer .border {
    border-right: 1px solid #ccc;
    margin:0;
}
.footer .footernav ul {
    margin:0px 0 20px 17px;
    padding:0;
    list-style-type: none;
    max-width: 170px;
}
.footer .footernav li a {
    display: block;
    font:1.2em arial;
    color:#585858; width:auto;
    padding: 10px 0px 12px 0px;
    text-decoration: none;
    border-bottom: 0px solid #fff;
    font-weight: bold;
}
.footer .footernav a:hover {
    text-decoration:underline;
}
.footer .footernav li ul {
    list-style: disc url("/Portals/0/Skins/stepchange/images/arrow-right-double-footer.png") outside;
    margin: 0 0 0 15px;
    padding: 0px;
}
/*.footer .footernav li li a:before {
    content: "\00BB \0020";
}*/
.footer .footernav li li a {
    display: block;
    font:1em arial;
    color: #79797b;
    width:auto;
    padding: 3px 0px 2px 0px;
    text-decoration: none;
    border-bottom: 0px solid #fff;
    font-weight: normal;
}
.footer .footernav ul li {
    padding-bottom: 0;
    list-style-type:none;
}

/* Media & Careers box */
.mediacareers {
    width:auto;
    margin:5px 0 12px 0;
    padding:5px 17px 10px 17px;
}
.mediacareers h2 {
    font:1.6em arial;
    color:#888;
    width:auto;
    margin: 0 0 10px 0;
    padding: 0 0 8px 0;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    font-weight:bold;
}

.mediacareers h2 a {
    color:#585858;
    background: url("/Portals/0/Skins/stepchange/images/arrow-right-double-footer.png") right no-repeat;
    padding: 0 10px 0 0;
}
.mediacareers h2 a:hover {
    text-decoration:underline;
}



.mediacareers img {
    float:left;
    margin:0 10px 0 0;
}
.mediacareers p {
    margin:0 0 12px 0;
    /*font-size:0.75em;*/
    /*line-height:1.2em;*/
    color:#666;
}
.mediacareers ul {
    list-style-type: none;
    list-style: disc url("/Portals/0/Skins/stepchange/images/arrow-right-double-footer.png") outside;
    margin: 0 0 13px 15px;
    padding: 0px;
}
.mediacareers ul li {
    padding-bottom:0;
}
.mediacareers li a {
    display: block;
    /*font:0.75em arial;*/
    color: #79797b;
    padding: 3px 0px 2px 0px;
    text-decoration: none;
    border-bottom: 0px solid #fff;
    font-weight: normal;
}
.mediacareers a:hover {
    text-decoration:underline;
}



/* Copyright and logo */
.bottomnav {
    padding:10px 17px 42px 17px;
}
.bottomnav .smalllink {
    padding:8px 7px 0 0;
    float:left;
    /*font:0.75em arial;*/
    color:#79797b;
    text-decoration:none
}
.bottomnav .smalllink a {
    color:#79797b;
    text-decoration:none
}
.bottomnav .smalllink a:hover {
    text-decoration:underline
}
.bottomnav .copyright {
    padding-top:8px;
    float:right;
    /*font:0.75em arial;*/
    color:#79797b;
}


/* Colophon */
.colophon {
    margin:30px 0 50px 0;
}

.colophon h4 { 
    color:#333;
    padding-left: 15px;
}    

.colophon p {
    font-style:italic;
    color: #333;
    line-height: 1.4em;
    padding-left: 15px;
}
.scrResults 
{
    margin:0;
    padding:0;
}
.scrResults li.scrItem h3 
{
    font-size:20px;
}
.scrTitle a
{
    color:#6F397F !important;
}
.scrPath 
{
    color:#C5B0CC;
}
.scrRelevance 
{
    display:none;
}
.scrExcerpt, .scrRelevance 
{
    color:#797979;
}
.scrItem 
{
    width:80%;
}
.scrHeader 
{
    text-align:left;
    font-size:12px;
}

/* -----------------------------------*/
/* --------->>> 6. PAGES <<<---------*/
/* -----------------------------------*/

.module.darkGreyPanel { background:#EDF1F2; padding:20px; border-radius:12px; }
.darkGreyPanel	h2 { color:$primary; background:none; padding:0; margin:0; }
.darkGreyPanel input { border:none; padding:10px 0px; border-radius:3px 0px 0px 3px; box-shadow:none; text-indent:10px; min-width:212px; color:#797979; float:left; font-size:14px; }
.darkGreyPanel .drlink { position:relative; background:#A784AC; width:36px; height:36px; display:block; float:left; border-radius:0 3px 3px 0; }
.darkGreyPanel .triangle { @include dr-triangle; top:26px; right:12px; }
.darkGreyPanel .disclaimer { font-style:italic; margin:10px 0 0 0; font-size:12px; }

/* Debt Remedy start page */
.landingPage .header { padding-top:25px; }
@media screen\0 {
    .landingPage .flex {
        min-height: 0;
    }
}
.landingPage .c-header { margin-top:34px; }
.landingPage .footer { margin-top:20px; border:none; background:none; padding-top:0; }
.landingPage .footer .smallprint { display:none;  }
.landingPage .footernav { display:none; }
.landingPage .footer .mediacareers { display:none; }
.landingPage .footer .additional-text { padding:0; margin:0; }
.landingPage .footer .additional-text br { padding:0; margin:0; height:0; line-height:0; }
.landingPage .footer .bottomnav { padding-left:0; }
.landingPage .colophon * { padding-left:0 !important; }
.landingPage h1 { color:#FFFFFF; margin:0px 0px 0px 0px; }
.landingPage h2 { margin:0px 0px 5px 0px; }
.landingPage h3, .landingPage h4, .landingPage h5, .landingPage h6 { margin:0 0 5px 0; }
.landingPage h5 { margin-bottom:15px; }
.landingPage h3 { font-size:2.8em; }

.landingPage .clear { clear:both; line-height:0; font-size:0; }
.landingPage .dmplogin, .landingPage .telephone-panel, .landingPage .subline, .landingPage .orangeline, .landingPage .callback-headpanel, .landingPage .searchform, .landingPage .c-header__searchform, .landingPage .c-header__links-wrapper { display:none; }

.landingPage .returning { padding:10px; border-top-left-radius:10px; border-top-right-radius:10px; margin-top:-40px; margin-right:20px; font-size:1.4em; position:relative; position:absolute; margin-top:-47px; padding-right:25px; }
.landingPage .returning input { width:120px; font-size:0.8em; margin:0px 5px; }
.landingPage .parma { background:#F0EBF2; color:#6F397F; }

.landingPage .purple-ten img { margin:0; }
.landingPage .purple-ten .cta-large, .landingPage .textBlock .cta-large { margin:10px 0px 0px 0px; font-size:2.6em; position:relative; padding:16px 60px 16px 40px; }

.landingPage .triangle { width:0px; height:0px; border-left:8px solid #A8A4A9; border-top:8px solid transparent; border-bottom:8px solid transparent; position:absolute; top:50%; margin:-8px 0px 0px 10px; right:12px; display:block; cursor:pointer; }
.landingPage .cta-large .triangle { top:30px; right:35px; border-left:8px solid #FFF; margin-top:-13px; }

/* Main Banner */
.landingPage .textBlock { width:500px; height:200px; float:left; background:#6F397F; padding:50px 40px; border-top-left-radius:5px; border-bottom-left-radius:5px; }

.landingPage .imageBlock { background:url("/portals/0/img/landing/drbanner.jpg") no-repeat #6F397F; width:380px; height:300px; border-top-right-radius:5px; border-bottom-right-radius:5px; float:left; }

.landingPage .mainBanner { background-color:#6F397F; width:960px; border-radius:10px; }
.landingPage .mainBanner h1 { font-size:3.4em; }
.landingPage .mainBanner h1+p { font-size:2em; color:#C5B1D1; padding-bottom:20px; }

.landingPage .textBlock .roundel { float:right; width:128px; height:129px; }

/* Ticklist */
.landingPage .ticklist { border-radius:10px; }
.landingPage .ticklist ul { list-style:url("/portals/0/img/landing/tick.png"); padding:0px 0px 0px 30px; margin:0; }
.landingPage .ticklist li { padding:5px 0px; }

/* How it works */
.landingPage .iconBlock { width:30%; float:left; margin:15px 3% 10px 0px; }
.landingPage .iconBlock .number { display:block; width:26px; height:21px; float:left; padding-top:5px; border-radius:13px; text-align:center; background-color:#D3CCD6; font-size:16px; color:#FFF; }
.landingPage .iconBlock p { margin:8px 0px; line-height:1.3em; }
.landingPage .iconBlock h5 { margin:0; }
.landingPage .iconBlock div { margin:0px 0px 0px 35px; }
.landingPage .iconBlock .icon { display:block; height:73px; width:100px; margin-left:auto; margin-right:auto; background:url("/portals/0/img/landing/icons.jpg"); }
.landingPage .iconBlock .pig { background-position:-100px 0px; }
.landingPage .iconBlock .hands { background-position:-200px 0px; }

/* Divider */
.landingPage .divider { height:1px; width:100%; line-height:0;font-size:0; }

/*Footer */
.landingPage .footerBlock { float:left; width:18%; padding:10px; }
.landingPage .footerBlock li a { color:#333; }
.landingPage .footerBlock ul, .landingPage .footerBlock li { list-style:none; margin:0; padding:0; }
.landingPage .footerBlock h6 { font-size:16px; }
.landingPage .herolinks, .landingPage .logo, .landingPage .c-left-block-container, .landingPage .c-right-block-container { display:none !important; }
.landingPage .footerLogo { float:right; width:188px; text-align:center; }

/* Return to Debt Remedy */
.landingPage .returndr { padding-left:20px; }
.landingPage .returndr h5, .landingPage .returndr p { margin-bottom:2px; }
.landingPage .returndr .inputContainer { position:relative; width:175px; margin-top:10px; }
.landingPage .returndr input[type="text"] { font-size:1.2em; width:130px; }

/* Home page banner */
.homeBanner img { margin-bottom:2px; }
.bannerContent { overflow:auto; }
.bannerContent>div { width:320px; margin:0; float:left; }
.bannerContent>div .DNNModuleContent { padding:25px; position:relative; box-sizing:border-box; background:#F08B1E; }
.homeBanner p, .bannerContent>div p { margin:0; color:#FFF; font-size:15px; }
.bannerContent>div img { margin:0 auto 25px auto; display:block; }
.bannerContent>div .DNNModuleContent:after { content:""; background:#CE781B; position:absolute; bottom:10%; left:0; height:80%; width:1px; }
.bannerContent>div h1, .bannerContent>div h2 { margin:0 0 14px 0; color:#FFF; font-size:22px; }
.bannerContent>div a { color:#FFF; display:inline-block; font-weight:bold; }
/* - End of /Portals/0/Skins/stepchange/skin.css - */
/* - Start of /Portals/0/Containers/stepchange/container.css - */
@charset "utf-8";
/* CSS Document */
/* Container styles */

/* -----------------------------------*/
/* -->>> GLOBAL CONTAINER STYLES <<<--*/
/* -----------------------------------*/

.module h1, .module h2, .module h3, .module h4 {
    margin:0 0 0 0;
    -moz-border-radius: 3px 3px 0px 0px;
    -webkit-border-radius: 3px 3px 0px 0px;
    border-radius: 3px 3px 0px 0px;
}

.module {
    width:auto;
    margin:0 0 24px 0;
    padding:16px 17px 16px 17px;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
    -webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none; 
}

.module img { /* for left and right spacing of inline images */
    /* margin:0 20px 0 20px; */    
}
.module ul li 
{
    list-style-type:disc;
}
.module p:last-child,
.module ul:last-child,
.module ol:last-child,
.module dl:last-child { /* we want any <p> to have no margin-bottom. whether in div or not */
	margin-bottom:0;
}
.module ul:last-child li:last-child {
	padding-bottom: 0;
}

.module h1, .module h2, .module h3, .module h4, .module h5, .module h6 { /* for sub headings in all boxes to make headers closer to the para below than the one above */
    margin:0 0 8px 0;
}
.module p {
	margin-bottom: 10px; /* TB */
}
.module > h1:first-child, .module > h2:first-child, .module > h3:first-child, .module > h4:first-child, .module > h5:first-child, .module > h6:first-child {
    margin:0 0 8px 0; 
}
.module img {
	margin-right:8px;
}
.topped h1, .topped h2, .topped h3, .topped h4, .topped h5, .topped h6 { /* for sub headings in topped boxes */
    padding:0; /* Don't need padding on headings inside modules. Margins will suffice */
}

.topped > h1:first-child, .topped > h2:first-child, .topped > h3:first-child, .topped > h4:first-child, .topped > h5:first-child, .topped > h6:first-child {
    padding:8px 17px 8px 17px; /* target only the first heading of any size */
    margin: 0 !important;
}

.topped .module-content {
    padding:10px 17px 0 17px;
}

.module-content {
	
}
.topped {
    padding:0px 0px 20px 0px;
}


.flat-right {
    -moz-border-radius: 3px 0px 0px 3px;
    -webkit-border-radius: 3px 0px 0px 3px;
    border-radius: 3px 0px 0px 3px;
}

.standard-height {min-height: 265px;}


.quotation-block {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	overflow: hidden;
	position: relative;
	min-height: 184px;
	padding: 0;
}
.quotation-block a { /* TB */
	color: white;
}
.quotation-block span {
	display: block;
	font-size: 16px;
	color: #e3d5e2;
}
.quotation-block p:first-child { 
	position: absolute;
	z-index: 200;
	bottom: 0;
	padding: 8px;
	background: rgba(140,97,153,0.85);
	color: white;
	margin:0;
	font-family: Corbel-Italic, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif; /* Tom */
	font-style:normal; /* Tom */
	font-size: 18px;
	-webkit-font-smoothing:antialiased;
	-webkit-border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
	width: auto;
	display: block;
}
.quotation-block p a 
{
    font-size:14px;
    display:block;

}
.quotation-block img {
	top:0;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
}



/* -----------------------------------*/
/* -->>> CUSTOM CONTAINER STYLES <<<--*/
/* -----------------------------------*/

/* Default no-top white container for main page content */
.default { background: white; }
.default img {padding: 0 20px 0 20px;}
.DR-cta-panel { padding-bottom: 0;} 
.DR-cta-panel .title-bar {
	-webkit-font-smoothing: antialiased; /* TB */
	font-smooth:always;
}

/* Primary purple box */
.purple-primary {
    background:#6f397f;
    color: #fff;
}
.purple-primary ul.block-list li {
    background: #a784ac;
}
.purple-primary p, .purple-primary h1, .purple-primary h2, .purple-primary h3, .purple-primary h4, .purple-primary h5, .purple-primary h6, .purple-primary a, .purple-sixtyfive h1, .purple-sixtyfive h2, .purple-sixtyfive h3, .purple-sixtyfive h4, .purple-sixtyfive h5, .purple-sixtyfive h6 {  /* TB */
    color:#fff; 
}

/* 80% purple box with primary top - used for DR CTAs*/
.nobottom {
	padding-bottom: 0; /* we need a specific style for DR boxes so we can add the bottom box */
}
.purple-eighty .title-bar {
    background: #6f397f;
    color:#fff;
}
.purple-eighty .sub-heading {
    color:#c5acc9;
    font-weight: lighter;
    font-style: normal;
    font-family: Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
}
.purple-eighty {
    background:#8c6199;
    color: #fff;
}
.purple-eighty ul.block-list li {
    background: #a784ac;
}
.purple-eighty p, .purple-eighty h1, .purple-eighty h2, .purple-eighty h3, .purple-eighty h4, .purple-eighty h5, .purple-eighty h6, .purple-eighty a /* TB */ { 
    color:#fff;
}

.purple-eighty-bottom {
	background: #8c6199;
	padding: 10px 17px;
	margin-top: 16px;
	-moz-border-radius: 0px 0px 3px 3px;
    -webkit-border-radius: 0px 0px 3px 3px;
    border-radius: 0px 0px 3px 3px;	
    clear: both;
}

.purple-eighty-bottom h1,
.purple-eighty-bottom h2,
.purple-eighty-bottom h3,
.purple-eighty-bottom h4,
.purple-eighty-bottom h5,
.purple-eighty-bottom h6 { /* TB */
	color: white;
}

.purple-eighty-bottom p {
	color: white;
	margin-bottom: 0;
}
.purple-eighty-bottom .time-small {
	background: url("/portals/0/skins/stepchange/images/timer.png") left center no-repeat;
}

/* 20% purple box - used for bottom of some DR CTAs*/
.purple-twenty-bottom {
	background: #e3d5e2;
	padding: 10px 17px;
	margin-top: 16px;
	-moz-border-radius: 0px 0px 3px 3px;
    -webkit-border-radius: 0px 0px 3px 3px;
    border-radius: 0px 0px 3px 3px;	
}
.purple-twenty-bottom p {
	color: #707173;
}

.purple-twenty-bottom a { /* TB */
	color: #6C3475 !important;
}
.purple-twenty-bottom h1,
.purple-twenty-bottom h2,
.purple-twenty-bottom h3,
.purple-twenty-bottom h4,
.purple-twenty-bottom h5,
.purple-twenty-bottom h6 {
	font-size: 18px;
	color: #6c3475;
	margin: 0; /* no margin for bottom of DR panel */
}	

.purple-sixtyfive ul.block-list li { /* TB */
	background: #6F397F;
}
.purple-sixtyfive {
	background: #a17eac;
	color: white; /* TB */
}
.purple-sixtyfive a { /* TB */
	color: white; 
}

/* Blue Grey module with 20 percent purple top*/
.bluegrey-twenty .title-bar {
    background: #e3d5e2;
    color: #996f9f;
    border-bottom: solid 1px white;
}
.bluegrey-twenty {
    background: #f4f7f8;
}

/* Other Blue Grey values*/
.bluegrey-thirty {
    background: #eff2f4;
}
.bluegrey-fifty {
    background: #e4eaec;
}
.bluegrey-ten {
	background: #fafbfb;
}
.bluegrey-ten .title-bar {
	background: #eff2f4;
}
.bordered {
    border:solid 1px #d5dde1;
}

/* Blue Grey module with no top and yellow underline - has min height & class for right image*/
.second-hero-right {
	border-right: none !important;
}
.second-hero-right p:first-child img { /* TB */
   float:right; 
    margin-top: -20px;
    width: 303px;
	height: auto;
	margin-left:16px;
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius:  0 3px 3px 0;
	border-radius: 0 3px 3px 0;
	margin-top: -16px; 
	margin-right: -16px;
	margin-bottom: -16px; 
}
.second-hero-left h1,
.second-hero-left h2,
.second-hero-left h3,
.second-hero-left h4,
.second-hero-left h5,
.second-hero-left h6,
.second-hero-right h1,
.second-hero-right h2,
.second-hero-right h3,
.second-hero-right h4,
.second-hero-right h5,
.second-hero-right h6,
.second-hero-bottom h1,
.second-hero-bottom h2,
.second-hero-bottom h3,
.second-hero-bottom h4,
.second-hero-bottom h5,
.second-hero-bottom h6 { /* TB */
	margin-bottom: 10px !important;
	margin-top: 0; /*TB */
}
.second-hero-left p:last-child,
.second-hero-right p:last-child,
.second-hero-bottom p:last-child {	
	margin-bottom: 0;
}
.second-hero-bottom h1,
.second-hero-bottom h2,
.second-hero-bottom h3,
.second-hero-bottom h4,
.second-hero-bottom h5,
.second-hero-bottom h6 { 
	margin-left: 0; /* TB */
}
.second-hero-bottom ul,ol { 
	padding-left: 0; /* TB */
}
.second-hero-right p:first-child,
.second-hero-left p:first-child 
{
    margin-bottom:0;
    line-height: 0;
}
.second-hero-right p,
.second-hero-left p,
.second-hero-bottom p { /* TB */
	margin-bottom:8px; 
}
.second-hero-right,
.second-hero-left,
.second-hero-bottom { /* TB */
	margin-bottom: 24px;
	position:relative;
	padding:16px; /* TB  */
}
/*.second-hero-right p:first-child img { 
	margin-top: -20px;
	float: right;
	margin-left: 15px;
	-webkit-border-radius: 0px 0 3px 3px;
	-moz-border-radius: 0px 0 3px 3px;
	border-radius: 0px 0 3px 3px;
	width: 303px;
	height: auto;
}*/
.second-hero-left p:first-child img { 
	margin-top: -16px; 
	margin-left: -16px; 
	margin-bottom: -16px; 
	float: left;
	margin-right: 15px;
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
	width: 303px;
	height: auto;
}
.second-hero-bottom p:last-child img ,
.second-hero-bottom img:last-child { 
	-webkit-border-radius: 0 0 3px 3px;
	-moz-border-radius:  0 0 3px 3px;
	border-radius:  0 0 3px 3px;
	height: auto;
	margin-left: -16px;
	margin-right: -16px;
	margin-bottom: -16px;
	max-width: none;
}
.grid-right p:first-child img { 
	width: 328px;
	height: auto;
}
.second-hero-left .second-hero-overlay {
	background: url("/portals/0/containers/stepchange/images/mini-hero-circle.png") no-repeat right center;
	height: 100%;
	width: 211px;
	display: block;
	position: absolute;
	left: 92px;
	top: 0;
}

.second-hero-bottom .second-hero-overlay { /* TB */
	background: url("/portals/0/containers/stepchange/images/mini-hero-circle-bottom.png") no-repeat center center;
	height: 80px; /*was 111*/
	width: 100%;
	display: block;
	position: absolute;
	left: 0;
	bottom:166px; /*was 135*/
}
.second-hero-right .second-hero-overlay { /* TB */
	background: url("/portals/0/containers/stepchange/images/mini-hero-circle-right.png") no-repeat left center;
	height: 100%;
	width: 211px;
	display: block;
	position: absolute;
	right: 92px;
	top:0;
}
.purple-primary .second-hero-overlay { /* TB */
	background: url("/portals/0/containers/stepchange/images/mini-hero-circle-purple.png") no-repeat -40px center; 
}

.module .telephone-panel,
.module .mail-panel,
.module .callback-panel,
.module .chat-panel,
.second-hero-bottom .callback-panel,
.second-hero-bottom .chat-panel,
.second-hero-bottom .telephone-panel,
.second-hero-bottom .mail-panel { /* TB */
	float: none;
	margin-left: 0px;
	
}
.orange-primary .mail-panel,
.orange-primary .telephone-panel { /* TB */
	margin-left: 0;
	color: white;
}
.module .telephone-panel,
.module .mail-panel,
.module .callback-panel,
.module .chat-panel {  /* TB */
	margin-left: 0;
}
.second-hero-bottom .telephone-panel { /* TB */

}
.grid-right .second-hero-overlay  { /* TB */
	background: url("/portals/0/containers/stepchange/images/grid-right.png") no-repeat top;
	width: 179px;
	height: 100%;
	right: 149px;
    position:absolute;
}
.second-hero-right .module-content { /* TB */

}
.second-hero-bottom .module-content p,
.second-hero-bottom .module-content ul { /* TB */
	margin:0 0 11px 0;
}
.second-hero-bottom .module-content p:last-child { /* TB */
	margin:0 !important;
}
.second-hero-left .module-content { /* TB */
	padding-right: 0px;
}

.second-hero-left .purple-primary .cta-mini a {color: #A784AC;}

/* 5% orange module with no top*/

.orange-five h1,
.orange-five h2,
.orange-five h3,
.orange-five h4,
.orange-five h5,
.orange-five h6 {
	color: #6f397f;
}
.orange-five {
	background: #fff9f4;
}
.orange-five ul.block-list li { /* TB */
    background: white;
}
.orange-primary ul.block-list li { /* TB */
    background: #fec64e;
}
.dr-left 
{
    padding-bottom:68px;
    -moz-border-radius: 0px 0px 0px 3px;
    -webkit-border-radius: 0px 0px 0px 3px;
    border-radius: 0px 0px 0px 3px;
    height: 274px;
}
.dr-left #watch-video {
   line-height:48px;
   padding:0px 16px;
   left:0;
}

.purple-banner-top, .orange-banner-top {
	height:145px;
	position:relative;
	overflow: hidden;
}
.purple-banner-top h1,
.purple-banner-top h2,
.purple-banner-top h3,
.purple-banner-top h4,
.purple-banner-top h5,
.purple-banner-top h6 {
	position: absolute;
	top: 0px;
	left: 24px;
	z-index: 201;
}
.orange-banner-top h1,
.orange-banner-top h2,
.orange-banner-top h3,
.orange-banner-top h4,
.orange-banner-top h5,
.orange-banner-top h6 {
	position: absolute;
	top: 0px;
	left: 24px;
	z-index: 201;
}
.purple-wave {
	top:0;
	background:url("/Portals/0/Containers/stepchange/images/purple-header-overlay.png");
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	z-index:200;
}

.orange-banner-top h1,
.orange-banner-top h2,
.orange-banner-top h3,
.orange-banner-top h4,
.orange-banner-top h5,
.orange-banner-top h6 {
	color: white;
}
.orange-wave {
	top:0;
	background:url("/Portals/0/Containers/stepchange/images/orange-header-overlay.png");
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	z-index:200;	
}
.orange-primary h1,
.orange-primary h2,
.orange-primary h3,
.orange-primary h4,
.orange-primary h5,
.orange-primary h6 {
	color: white;
	-webkit-text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
	-moz-text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
	text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
	-webkit-font-smoothing: subpixel-antialiased;
}
.orange-primary {
	background: url("/portals/0/containers/stepchange/images/orange-circle.png") no-repeat top #fa8518;
	color: white;
	-webkit-text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
	-moz-text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
	text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
}
.orange-primary a {
	color: white;
	text-decoration:underline;
}
.orange-primary .cta-medium,
.orange-primary .cta-large { /* TB */
	text-decoration:none;
}
.orange-primary input[type="text"] { /* TB */
	border-color: #bd8610;
}
.help-half-panel {
	width: 43%;
	float: left;
	margin:8px 0 2px 0;
	padding: 16px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	min-width: 237px;
	min-height:70px;
}
.help-half-panel p {
	margin-bottom: 12px;
}
.help-half-panel:first-child {
	margin-right: 18px;
}

.hero-image {
	position: relative;
	max-height: 420px;
	overflow: hidden;
}
.hero-image a {
	-webkit-border-radius: 0 0 3px 0;
	-moz-border-radius: 0 0 3px 0;
	border-radius: 0 0 3px 0;
}
.hero-image p { /* TB */
	margin-bottom: 0;
	line-height: 0;
}
.hero-image blockquote { /* TB */
	position: absolute;
	bottom: 50px;
	left: 0;
	padding: 10px 16px 10px 60px;
	background: rgba(140,97,153,0.8);
	color: white;
	-webkit-font-smoothing:antialiased;
	margin: 0;
}
.hero-image blockquote .caption {
	display: block;
	color: white;
}
.hero-image img {
	width: 468px;
	height: auto;
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.hero-image-smaller img { /* Tom */
	width: 386px;
	height: auto;
}
.hero-circle-inner {
	position: absolute;
	background:url("/portals/0/containers/stepchange/images/hero-circle-inner.png") no-repeat left center;
	left:0;
	height: 100%;
	display: block;
	width:335px;
	top: 0;
}
.hero-circle-outer {
	position: absolute;
	background:url("/portals/0/containers/stepchange/images/hero-circle-outer.png") no-repeat left center;
	left:0;
	height: 100%;
	display: block;
	width:141px;
	top: 0;
	z-index: 200;
}
.hero-circle-inner-small { /* Tom */
	position: absolute;
	background:url("/portals/0/containers/stepchange/images/hero-circle-inner_small.png") no-repeat left center;
	left:0;
	height: 100%;
	display: block;
	width:335px;
	top: 0;
}
.hero-circle-outer-small { /* Tom */
	position: absolute;
	background:url("/portals/0/containers/stepchange/images/hero-circle-outer_small.png") no-repeat left center;
	left:0;
	height: 100%;
	display: block;
	width:141px;
	top: 0;
	z-index: 200;
}
.hero-image #employee-video span {
	display: inline-block;
	width: 71%;
	text-indent: 1px;
}
.debtview { /* TB */
	background: url("/portals/0/skins/stepchange/images/gb-bg.png") no-repeat top right #fcb316;
	min-height: 160px;
	position: relative;
}
.debtview p {  /* TB */
	max-width: 190px;
}
.debtview .newsletter-form { /* TB */
	position: absolute;
	bottom:16px;
	width: 270px;
}
.debt-pod img:first-child,
.debt-pod p:first-child img {
    position:relative;
    z-index:100;
    margin:0;
    width:304px;
    margin-left:-16px;
    margin-top:-10px;
    display:block;
    max-width:303px;
}
.debt-pod p 
{
    display:block;
    clear:both;
}
.debt-pod .module-content {
	position:relative;
}
.pod-tall { /* Tom */
	height: 261px;
}
.pod-med, .tv-pod { /* Tom */
	height: 174px;
}
.pod-small { /* Tom */
	height: 87px;	
}
.pod-small .module-content, .tv-pod .module-content, .pod-med .module-content, .pod-tall .module-content { /* Tom */
	padding:10px;
}
.pod-small:hover, .pod-med:hover, .pod-tall:hover { /* Tom */
	border:solid 1px #6c3475;
}
.pod-small img, .pod-med img, .pod-tall img, .tv-pod { /* Tom */
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	width: 100% !important;
	height: auto !important;
	z-index: 1;
}
.pod-tall .pod-overlay ,.pod-med .pod-overlay ,.pod-small .pod-overlay ,
.pod-tall .pod-overlay:hover,.pod-med .pod-overlay:hover,.pod-small .pod-overlay:hover,
.pod-small a, .pod-med a, .pod-tall a { /* Tom */
	text-decoration: none;
	color: white;
}
.pod-small, .pod-med, .pod-tall, .tv-pod { /* Tom */
	background: #F4F7F8;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	min-height: 20px;
	margin-bottom: 16px;
	border:solid 1px #d7dadb;
	font-family:Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
	color: #6F397F;
	font-size: 1.4em;
	overflow: hidden;
	position: relative;
}
.pod-tall .Normal,
.pod-med .Normal,
.pod-small .Normal,
.tv-pod .Normal ,
.pod-tall .Normal p,
.pod-med .Normal p,
.pod-small .Normal p,
.tv-pod .Normal p,
.pod-tall .Normal a,
.pod-med .Normal a,
.pod-small .Normal a,
.tv-pod .Normal a
{
   font-size: 20px !important;
  font-family:Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif !important;
}
.testimonial-col  { /* Tom */
	width:200px;
	float:left;
	margin-right: 16px;
}
.review-pod a { /* Tom */
	color: #6F397F;
}
.review-pod img { /* Tom */
	width: auto !important;
	height: auto !important;
}
.tv-pod a { /* Tom */
	color: white;
	text-decoration: none;
}
.tv-pod .tv-pod-overlay:hover { /* Tom */
	background:url("/portals/0/skins/stepchange/images/watch-icon.png") no-repeat center center #c1c9cc; /* Old browsers */
	background:url("/portals/0/skins/stepchange/images/watch-icon.png") no-repeat center center, -moz-linear-gradient(top,  rgba(228,234,236,0.2) 1%, rgba(202,213,218,0.2) 99%); /* FF3.6+ */
	background:url("/portals/0/skins/stepchange/images/watch-icon.png") no-repeat center center, -webkit-gradient(linear, left top, left bottom, color-stop(1%,rgba(228,234,236,0.2)), color-stop(99%,rgba(202,213,218,0.7))); /* Chrome,Safari4+ */
	background:url("/portals/0/skins/stepchange/images/watch-icon.png") no-repeat center center, -webkit-linear-gradient(top,  rgba(228,234,236,0.2) 1%,#rgba(202,213,218,0.2) 99%); /* Chrome10+,Safari5.1+ */
	background:url("/portals/0/skins/stepchange/images/watch-icon.png") no-repeat center center, -o-linear-gradient(top,  rgba(228,234,236,0.2) 1%,rgba(202,213,218,0.2) 99%); /* Opera 11.10+ */
	background:url("/portals/0/skins/stepchange/images/watch-icon.png") no-repeat center center, -ms-linear-gradient(top,  rgba(228,234,236,0.2) 1%,#rgba(202,213,218,0.2) 99%); /* IE10+ */
	background:url("/portals/0/skins/stepchange/images/watch-icon.png") no-repeat center center, linear-gradient(to bottom,  rgba(228,234,236,0.2) 1%,#rgba(202,213,218,0.2) 99%); /* W3C */
}
.tv-pod .tv-pod-overlay { /* Tom */
	background:url("/portals/0/skins/stepchange/images/watch-icon.png") no-repeat center center #c1c9cc; /* Old browsers */
	background:url("/portals/0/skins/stepchange/images/watch-icon.png") no-repeat center center, -moz-linear-gradient(top,  rgba(228,234,236,0.7) 1%, rgba(202,213,218,0.7) 99%); /* FF3.6+ */
	background:url("/portals/0/skins/stepchange/images/watch-icon.png") no-repeat center center, -webkit-gradient(linear, left top, left bottom, color-stop(1%,rgba(228,234,236,0.7)), color-stop(99%,rgba(202,213,218,0.7))); /* Chrome,Safari4+ */
	background:url("/portals/0/skins/stepchange/images/watch-icon.png") no-repeat center center, -webkit-linear-gradient(top,  rgba(228,234,236,0.7) 1%,#rgba(202,213,218,0.7) 99%); /* Chrome10+,Safari5.1+ */
	background:url("/portals/0/skins/stepchange/images/watch-icon.png") no-repeat center center, -o-linear-gradient(top,  rgba(228,234,236,0.7) 1%,rgba(202,213,218,0.7) 99%); /* Opera 11.10+ */
	background:url("/portals/0/skins/stepchange/images/watch-icon.png") no-repeat center center, -ms-linear-gradient(top,  rgba(228,234,236,0.7) 1%,#rgba(202,213,218,0.7) 99%); /* IE10+ */
	background:url("/portals/0/skins/stepchange/images/watch-icon.png") no-repeat center center, linear-gradient(to bottom,  rgba(228,234,236,0.7) 1%,#rgba(202,213,218,0.7) 99%); /* W3C */
	
	position: absolute;
	top:0;
	width: 180px !important;
	height: 100%;
	color: white;
	-moz-text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	-webkit-text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	z-index: 100;
	left: 0;
}
.pod-overlay { /* Tom */
	position: absolute;
	top:0;
	width: 200px !important;
	height: 100%;
	background: #a17eac; /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(161,126,172,0.9) 1%, rgba(111,57,127,0.9) 97%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,rgba(161,126,172,0.9)), color-stop(97%,rgba(111,57,127,0.9))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(161,126,172,0.9) 1%,rgba(111,57,127,0.9) 97%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(161,126,172,0.9) 1%,rgba(111,57,127,0.9) 97%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(161,126,172,0.9) 1%,rgba(111,57,127,0.9) 97%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(161,126,172,0.9) 1%,rgba(111,57,127,0.9) 97%); /* W3C */
	color: white;
	-moz-text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	-webkit-text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	display: none;
	z-index: 100;
	left: 0;
}
.tweet-pod:hover { /* Tom */
	border:solid 1px #1a98c7;
}
.tweet-pod { /* Tom */
	border:solid 1px #1fb6ef;
	background:url("/portals/0/skins/stepchange/images/testimonial-twitter-icon.png") no-repeat bottom right #82d1ef; /* Old browsers */
	background:url("/portals/0/skins/stepchange/images/testimonial-twitter-icon.png") no-repeat bottom right, -moz-linear-gradient(top,  #82d1ef 51%, #00aff0 99%); /* FF3.6+ */
	background:url("/portals/0/skins/stepchange/images/testimonial-twitter-icon.png") no-repeat bottom right, -webkit-gradient(linear, left top, left bottom, color-stop(51%,#82d1ef), color-stop(99%,#00aff0)); /* Chrome,Safari4+ */
	background:url("/portals/0/skins/stepchange/images/testimonial-twitter-icon.png") no-repeat bottom right, -webkit-linear-gradient(top,  #82d1ef 51%,#00aff0 99%); /* Chrome10+,Safari5.1+ */
	background:url("/portals/0/skins/stepchange/images/testimonial-twitter-icon.png") no-repeat bottom right, -o-linear-gradient(top,  #82d1ef 51%,#00aff0 99%); /* Opera 11.10+ */
	background:url("/portals/0/skins/stepchange/images/testimonial-twitter-icon.png") no-repeat bottom right, -ms-linear-gradient(top,  #82d1ef 51%,#00aff0 99%); /* IE10+ */
	background:url("/portals/0/skins/stepchange/images/testimonial-twitter-icon.png") no-repeat bottom right, linear-gradient(to bottom,  #82d1ef 51%,#00aff0 99%); /* W3C */
	color: #fff;
	-moz-text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	-webkit-text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}
.last-col {margin-right: 0;} /* Tom */
.fact-pod {  /* Tom */
    width:auto;
    margin:0 0 24px 0;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
    -webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
}
.word-cloud-pod a { /* Tom */
	cursor: pointer;
	
}
.fact-1 { /* Tom */
	margin-top:5px;
}
.fact-1:before { /* Tom */
	content: "";
	display: block;
	height: 20px;
	width: 20px;
	background: url("/portals/0/skins/stepchange/images/speech-bubble-arrow.jpg") no-repeat;
	position: absolute;	
	top:-20px;
	right:80px;
}
.word-cloud-pod { /* Tom */
	background: url("/portals/0/skins/stepchange/images/word-cloud-pod.jpg") no-repeat white !important;
	color: white;
	-moz-text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	-webkit-text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	min-height: 212px;
}
.word-cloud-pod h5,.word-cloud-pod a { /* Tom */
	color: white;
}
.lightbox-pod { /* Tom */
	cursor: pointer;
}
.open-lightbox-video {
	cursor:pointer;
}
.next-lightbox {float: right; cursor: pointer;} /* Tom */
.prev-lightbox {float: left; cursor: pointer;} /* Tom */
.word-cloud-lightbox img,
.wordcloud-lightbox img
{
    height:auto !important;
}
.lightbox-content 
{
    text-align:center;
}
.wordcloud-slide 
{
    display:none;
}
#wordcloud-slide-1
{
    display:block;
}
.prev-lightbox, .next-lightbox 
{
    font-size:12px;
}
/* - End of /Portals/0/Containers/stepchange/container.css - */
/* - Start of /Portals/0/portal.css - */
/* ================================
    CSS STYLES FOR DotNetNuke
   ================================
*/   


/* 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, .PagingTable
{
    width: 990px;
    background-color: #FFFFFF;
    border-right: #cdcdcd 0px solid;
    border-top: #cdcdcd 0px solid;
    border-left: #cdcdcd 0px solid;
    border-bottom: #cdcdcd 0px solid; 
    margin: 0 auto;
    margin-bottom:20px
}

.PagingTable
{
    width: 100%;
    background-color: #FFFFFF;
    border-right: #ccc 1px solid;
    border-top: #ccc 1px solid;
    border-left: #ccc 1px solid;
    border-bottom: #ccc 1px solid;
}

/* 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
{
    font-family: Arial, Helvetica;
    font-size: 0.8em;
    font-weight: normal;
}

.Normal a
{
    font-family: Arial, Helvetica;
    font-weight: normal;
}

/* text style used for textboxes in the admin and edit pages, for Nav compatibility */
.NormalTextBox
{
padding:2px 4px 2px 4px;
}

.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{
}


/* - End of /Portals/0/portal.css - */
/* - Start of /portals/0/header/header.css - */
.content-container {
  overflow: visible;
  margin: 0 auto;
  width: 996px;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box; }

.flex {
  display: flex;
  display: -ms-flexbox; }
  @media screen\0 {
    .flex {
      display: block;
      min-height: 24px;
      width: 100%; } }

.flex--end {
  justify-content: flex-end; }
  @media screen\0 {
    .flex--end {
      text-align: right; } }
.flex--start {
  justify-content: flex-start; }
.flex--between {
  justify-content: space-between; }

#access, #access_search, #access_webnumber, #skip a {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  font-size: 16px; }

#skip a:focus { position:static; width:auto; height:auto; padding:10px; background:none; color:#FFF; line-height:70px; font-weight:bold; letter-spacing:1px; }

.c-header {
  background: #FFF; }
  .c-header__links-wrapper, .c-header__links-wrapper a {
    display: flex;
    display: -ms-flexbox;
    align-items: center; }
  .c-header__links-wrapper {
    height: 24px;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 11px;
    color: #AAA;
    margin-left: 10px;
    background: #F5F5F5;
    border: solid 1px #EEE;
    text-decoration: none;
    line-height: 12px; }
    @media screen\0 {
      .c-header__links-wrapper {
        padding: 5px 10px;
        margin: 0;
        display: inline-block;
        vertical-align: top; }
        .c-header__links-wrapper:last-child {
          float: right;
          margin-left: 10px; } }
    .c-header__links-wrapper a,
    .c-header__links-wrapper a:link,
    .c-header__links-wrapper a:visited,
    .c-header__links-wrapper a:active {
      font-size: 11px;
      color: #333;
      text-decoration: none !important;
      position: relative; }
      @media screen\0 {
        .c-header__links-wrapper a,
        .c-header__links-wrapper a:link,
        .c-header__links-wrapper a:visited,
        .c-header__links-wrapper a:active {
          display: inline-block;
          vertical-align: top; } }
    .c-header__links-wrapper a:hover,
    .c-header__links-wrapper a span:hover {
      text-decoration: underline; }
    .c-header__links-wrapper a.selected {
      font-weight: bold; }
  .c-header .flag {
    background: url("/portals/0/images/flags.png") no-repeat 1px 1px;
    width: 29px;
    height: 16px;
    box-sizing: border-box;
    border: 1px solid #F5F5F5;
    display: inline-block;
    vertical-align: middle; }
    @media screen\0 {
      .c-header .flag {
        margin-top: -2px; } }
    .c-header .flag.selected {
      border: 1px solid #6B3374; }
    .c-header .flag.ie {
      background-position: -28px 1px; }
    .c-header .flag + span {
      margin-left: 5px; }
  .c-header__searchform {
    zoom: 1;
    border: none;
    margin: 0;
    padding: 0;
    width: 226px;
    position: relative;
    margin-top: 20px; }
    @media screen\0 {
      .c-header__searchform {
        float: right; } }
    .c-header__searchform label#access_search {
      position: absolute;
      left: -10000px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
      font-size: 16px; }
    .c-header__searchform .searchInputContainer {
      /* do not group these rules */ }
      .c-header__searchform .searchInputContainer input,
      .c-header__searchform .searchInputContainer .searchfield {
        width: 185px;
        height: 36px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        text-indent: 20px;
        color: #333;
        font-size: 12px;
        line-height: 12px;
        background: #FFF;
        outline: none;
        float: none;
        border: solid 1px #AAA;
        border-radius: 3px 0 0 3px;
        -webkit-border-radius: 3px 0 0 3px;
        -moz-border-radius: 3px 0 0 3px;
        -ms-border-radius: 3px 0 0 3px;
        -o-border-radius: 3px 0 0 3px;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none; }
      .c-header__searchform .searchInputContainer *::-webkit-input-placeholder {
        color: #333; }
      .c-header__searchform .searchInputContainer *:-moz-placeholder {
        /* FF 4-18 */
        color: #333; }
      .c-header__searchform .searchInputContainer *::-moz-placeholder {
        /* FF 19+ */
        color: #333; }
      .c-header__searchform .searchInputContainer *:-ms-input-placeholder {
        /* IE 10+ */
        color: #333; }
      .c-header__searchform .searchInputContainer a.dnnSearchBoxClearText {
        margin: 0;
        top: 10px; }
    .c-header__searchform .searchbutton {
      position: absolute;
      top: 0;
      right: 0;
      display: inline-block;
      background: url("/portals/0/images/sprites.png") no-repeat;
      background-position: -360px -90px;
      background-color: #6B3374;
      color: #FFF;
      float: none;
      width: 42px;
      height: 36px;
      border: 0;
      padding: 0;
      overflow: hidden;
      text-indent: -999px;
      border-radius: 0 3px 3px 0;
      -webkit-border-radius: 0 3px 3px 0;
      -moz-border-radius: 0 3px 3px 0;
      -ms-border-radius: 0 3px 3px 0;
      -o-border-radius: 0 3px 3px 0; }

/* -----------------------------------*/
/* ----------->>> 3. NAV <<<----------*/
/* -----------------------------------*/
.c-site-nav {
  position: relative;
  z-index: 220;
  background: #EEE;
  clear: both;
  margin-bottom: 20px;
  width: 100%;
  min-width: 996px; }
  .c-site-nav__menu {
    overflow: hidden;
    padding: 0;
    display: flex;
    display: -ms-flexbox;
    margin: 0; }
    .c-site-nav__menu > li {
      margin: 0;
      padding: 0;
      list-style: none;
      flex: 1; }
      @media screen\0 {
        .c-site-nav__menu > li {
          display: inline-block;
          width: 16.2%; } }
      .c-site-nav__menu > li:hover {
        background: #8c6199 none; }
        .c-site-nav__menu > li:hover > a,
        .c-site-nav__menu > li:hover > a:not(.btn),
        .c-site-nav__menu > li:hover > a:visited:not(.btn) {
          color: #FFF; }
        .c-site-nav__menu > li:hover .megamenu {
          display: flex;
          display: -ms-flexbox; }
          @media screen\0 {
            .c-site-nav__menu > li:hover .megamenu {
              display: block; } }
      .c-site-nav__menu > li.active > a,
      .c-site-nav__menu > li.active > a:not(.btn),
      .c-site-nav__menu > li.active > a:visited:not(.btn) {
        background-color: #6B3374;
        color: #FFF; }
      .c-site-nav__menu > li a {
        text-decoration: none; }
      .c-site-nav__menu > li > a,
      .c-site-nav__menu > li > a:not(.btn),
      .c-site-nav__menu > li > a:visited:not(.btn) {
        text-align: center;
        display: block;
        color: #333;
        font-size: 13px;
        line-height: 1.2rem;
        cursor: pointer;
        padding: 16px 0;
        text-decoration: none; }

/* -----------------------------------*/
/* ----------->>> Nav megamenu <<<----------*/
/* -----------------------------------*/
.megamenu {
  background: #FFF;
  position: absolute;
  left: 18px;
  right: 18px;
  box-shadow: 0px 4px 5px 1px rgba(0, 0, 0, 0.31);
  border: 0;
  height: auto;
  min-height: 280px;
  z-index: 221;
  padding: 0;
  display: none;
  width: 960px;
  margin: 0 auto; }
  .megamenu .mega-panel {
    flex: 1;
    margin: 0;
    padding: 20px; }
    @media screen\0 {
      .megamenu .mega-panel {
        display: inline-block;
        width: 33%;
        box-sizing: border-box;
        vertical-align: top; } }
    .megamenu .mega-panel.panel--grey {
      background: #F5F5F5; }
    .megamenu .mega-panel ul {
      margin: 0;
      padding: 0; }
    .megamenu .mega-panel img {
      border-radius: 2px;
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      -ms-border-radius: 2px;
      -o-border-radius: 2px; }
  .megamenu ul, .megamenu li {
    list-style-type: none !important;
    padding: 0;
    margin: 0; }
    .megamenu ul li, .megamenu li li {
      margin: 0;
      margin-bottom: 5px;
      padding: 0; }
      .megamenu ul li:hover a, .megamenu li li:hover a {
        text-decoration: underline; }
  .megamenu h1, .megamenu h2, .megamenu h3, .megamenu h4, .megamenu h5, .megamenu h6 {
    font-size: 18px;
    color: #6B3374;
    font-weight: 400;
    margin: 0;
    margin-bottom: 10px;
    font-family: Corbel, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
    line-height: 22px; }
    .megamenu h1 .desc, .megamenu h2 .desc, .megamenu h3 .desc, .megamenu h4 .desc, .megamenu h5 .desc, .megamenu h6 .desc {
      font-size: 13px;
      line-height: 18px;
      font-style: italic;
      font-family: arial;
      color: #333;
      margin-top: 5px;
      display: block; }
  .megamenu p {
    margin: 0;
    margin-bottom: 8px;
    color: #333; }
  .megamenu p, .megamenu a {
    font-size: 13px; }
  .megamenu a {
    margin: 0;
    display: block;
    clear: both;
    padding-bottom: 5px;
    color: #6B3374;
    background-color: transparent;
    border: 0;
    line-height: 22px; }
    .megamenu a.cta-mini:hover,
    .megamenu a .cta-mini-left:hover {
      text-decoration: underline !important; }
    .megamenu a.cta-mini-right:after, .megamenu a.cta-mini-left:after, .megamenu a.cta-mini:after, .megamenu a.eng:after, .megamenu a.scot:after, .megamenu a.ni:after, .megamenu a.wales:after {
      content: " \00BB"; }
  .megamenu hr {
    background-color: #EEE;
    height: 1px;
    border: none;
    margin: 12px 0px; }

/*# sourceMappingURL=header.css.map */

/* - End of /portals/0/header/header.css - */
/* - Start of /portals/0/footer/footer.css - */
.content-container {
  overflow: visible;
  margin: 0 auto;
  width: 996px;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box; }

/* CSS Document */
.c-footer {
  border-top: 6px solid #FFB600;
  padding-top: 15px;
  font-size: 12px;
  color: #333;
  overflow: auto;
  margin-top: 20px;
  width: 100%;
  min-width: 996px; }
  .c-footer * {
    box-sizing: border-box; }
  .c-footer .c-left-block-container {
    width: 75%;
    display: inline-block; }
  .c-footer .c-right-block-container {
    width: 24.5%;
    float: right; }
  .c-footer .c-link-block {
    width: 24.5%;
    display: inline-block;
    padding: 16px 0 0 16px;
    margin: 5px 0 12px 0;
    box-sizing: border-box; }
    .c-footer .c-link-block__link {
      text-decoration: none !important; }
      .c-footer .c-link-block__link:hover {
        text-decoration: underline !important; }
      .c-footer .c-link-block__link:visited {
        color: #333; }
    .c-footer .c-link-block__title {
      font-weight: normal;
      color: #6B3374;
      font-size: 16px;
      margin: 0 0 6px;
      font-family: Arial; }
    .c-footer .c-link-block__desc {
      color: #333;
      font-size: 12px;
      margin: 0; }
  .c-footer .c-footer-menu-bar-wrapper {
    margin: 25px 0; }
  .c-footer .c-footer-menu-bar {
    padding: 12px 16px;
    background: #EEE;
    overflow: auto; }
    .c-footer .c-footer-menu-bar__link {
      text-decoration: none !important;
      color: #333 !important;
      font-size: 12px;
      padding-right: 12px;
      display: inline-block;
      margin-top: 8px; }
      .c-footer .c-footer-menu-bar__link:visited {
        color: #333; }
      .c-footer .c-footer-menu-bar__link:hover {
        text-decoration: underline !important; }
      .c-footer .c-footer-menu-bar__link:before {
        content: "|";
        margin-right: 10px;
        display: inline-block;
        color: #AAA;
        text-decoration: underline; }
      .c-footer .c-footer-menu-bar__link:before, .c-footer .c-footer-menu-bar__link:hover:before {
        text-decoration: none !important; }
    .c-footer .c-footer-menu-bar__link--margin-left {
      margin-left: 10px; }
  .c-footer .c-flag {
    background: url("/portals/0/images/flags.png") no-repeat 1px;
    width: 29px;
    height: 16px;
    display: inline-block;
    border: solid 1px transparent;
    text-decoration: none;
    float: left;
    margin-top: 6px;
    box-sizing: border-box; }
    .c-footer .c-flag--ie {
      background-position: -28px 1px; }
    .c-footer .c-flag--selected {
      border-color: #333; }
  .c-footer .c-footer-feefo {
    text-align: center;
    margin-top: 32px; }
  .c-footer .c-footer-feefo-rating {
    font-size: 12px; }
  .c-footer .c-social__link {
    display: inline-block;
    height: 0;
    overflow: hidden;
    padding: 25px 5px 0;
    box-sizing: border-box;
    width: 28px;
    background: url("/portals/0/images/sprites.png") no-repeat;
    margin-left: 5px; }
    .c-footer .c-social__link--twitter {
      background-position: -25px -213px; }
    .c-footer .c-social__link--facebook {
      background-position: -94px -213px; }
    .c-footer .c-social__link--youtube {
      background-position: -130px -213px;
      width: 35px; }
    .c-footer .c-social__link--linkedin {
      background-position: -175px -213px;
      width: 30px; }

.c-colophon {
  margin: 0 0 50px;
  padding: 0 16px;
  color: #333; }
  .c-colophon__title {
    font-size: 22px;
    color: #333;
    font-family: Corbel, Arial;
    font-weight: normal;
    margin-bottom: 12px; }
  .c-colophon__quote {
    font-style: italic; }
  .c-colophon__disclaimer, .c-colophon__disclaimer a {
    font-size: 11px;
    margin-bottom: 10px; }

.t-float-right {
  float: right; }

/*# sourceMappingURL=footer.css.map */

/* - End of /portals/0/footer/footer.css - */
