@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: -0.03em;
    margin-top: 8px;
    margin-bottom: 10px;
}

h2 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -0.03em;
    margin-top: 8px;
    margin-bottom: 10px;
}

h3 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -1px;
    margin-top: 8px;
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
    line-height: 36px;
    letter-spacing: -1px;
}

h5 {
    font-size: 16px;
    line-height: 18px;
}

h6 {
    font-size: 14px;
    line-height: 18px;
}

/* 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 moodules*/
.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;
}

/*-------------------------------------*/
/* 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;
}

/* 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;
}

/* 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;
    padding: 3px 0 3px 0;
    margin-bottom: 5px;
}

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;
    padding: 3px 0 3px 0;
    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 {
        padding: 8px;
        border-bottom: 1px solid #c9c9c9;
        color: #333;
        cursor: pointer;
        vertical-align: middle;
        list-style: none;
        margin: 0;
    }

        .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 url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x;
    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 url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat;
    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 {
    overflow: hidden;
    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 td {
        padding: 4px;
    }

.dnnGridHeader td {
    padding: 6px 0 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;
    border: solid transparent;
    opacity: 0;
    filter: alpha(opacity=0);
    direction: ltr;
    cursor: pointer;
    height: 30px;
	font-size: 200px;
}

span.dnnInputFileWrapper { /* Notes(by Richard): here must set !important */
    position: relative !important;
    overflow: hidden !important;
    margin: 0 4px 0 0;
    width: auto !important;
    display: block !important;
    float: left !important;
}

    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: 450px;
}

    .dnnFileUploadScope .dnnLeft {
        margin: 0;
        padding: 15px 10px 15px 10px;
    }

        .dnnFileUploadScope .dnnLeft .dnnFormItem {
            margin-bottom: 10px;
        }

    .dnnFileUploadScope .dnnFormItem span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFileUploadScope .dnnFormItem .RadComboBox_Default {
        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: 5px;
    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 */
/*-------------------------------------*/

/* dark-knight skin fix in 7.0 */
div.SearchContainer {
    position: relative;
    white-space: nowrap;
}

div.SearchBorder {
    float: left;
    position: relative;
    width: 200px;
    height: 20px;
    margin-top: 2px;
    background-color: White;
    border: 1px solid #E0E0E0;
    white-space: nowrap;
}

input.SearchTextBox {
    float: left;
    height: 18px;
    width: 169px;
    z-index: 10;
    border: 0 none;
}

div.SearchContainer a {
    display: inline-block;
    position: relative;
    padding: 0 5px;
}

div.SearchIcon {
    float: left;
    height: 20px;
    width: 31px;
    z-index: 11;
    background: none no-repeat scroll 2px 2px transparent;
    cursor: pointer;
    text-align: right;
}

    div.SearchIcon img {
        margin-top: 3px;
    }

#SearchChoices {
    clear: both;
    display: none;
    position: absolute;
    z-index: 2000;
    left: 0;
    top: 21px;
    width: 160px;
    margin: 0;
    padding: 0;
    background-color: #EEEEEE;
    border: 1px solid #777777;
    cursor: pointer;
    text-align: left;
}

    #SearchChoices li {
        display: block;
        height: 20px;
        margin: 2px;
        padding: 2px 2px 2px 25px;
        background: none no-repeat scroll 5px center #EEEEEE;
        border: 1px solid #EEEEEE;
        cursor: pointer;
        list-style: none outside none;
        text-align: left;
    }

        #SearchChoices li.searchHilite {
            background-color: #DDDDFF;
            border: 1px solid #AAAAFF;
        }

        #SearchChoices li.searchDefault {
            background-color: #EEEEEE;
            border: 1px solid #EEEEEE;
        }
/*
    #dnn_dnnSEARCH_txtSearch,
    #dnn_dnnSearch_txtSearch,
    #dnn_dnnSEARCH_txtSearchNew,
    #dnn_dnnSearch_txtSearchNew {
        margin: 0;
        padding: inherit;
        font-size: inherit;
        border: inherit;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        border: 0 none;
    }
    */
/* For Upgrade from DNN6 DarkKnight --------*/
#DNN6 {
    z-index: 0 !important;
}

    #DNN6 > #Header .SearchContainer .SearchTextBox {
        width: 130px !important;
        padding: 3px 0 0 0;
        border: none;
        box-shadow: none;
    }

/* 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 */
}

.sc-element { position:relative; }
.sc-element .sc-menu { position:absolute; right:5px; top:5px; display:none; }
.sc-menu { list-style-type:none; margin:0; padding:0px;display: inline;z-index: 99999; }
.sc-menu li { list-style-type:none; padding:0; margin:0; display:inline; }
.sc-menu a { display:inline-block; margin-right:4px; }
.Mod2SexyContentC .dnnFormMessage select { margin-bottom:0; }

.sc-contenttype-selector, .sc-template-selector { width: 100%;position: relative; max-width: 300px!important; }
.sc-contenttype-selector { margin-bottom: 3px!important; }

@charset "UTF-8";
/* Gravity Container Set styles */
/* NoTitle */
.DNNContainer_noTitle {
}

/* Title_h2 */
.DNNContainer_Title_h2 h2 .TitleH2 {
	display: block;
	margin-bottom: 25px;
}

/* Title_h3 */
.DNNContainer_Title_h3 h3 .TitleH3 {
	display: block;
	padding-bottom: 10px;
	margin-bottom: 25px;
	border-bottom: solid 1px #c0c0c0;
}

/* Title_h4 */
.DNNContainer_Title_h4 h4 .TitleH4 {
	display: block;
	margin-bottom: 25px;
} 

/* 
 * Deprecated DNN CSS class names will remain available for some time
 * before being  permanently removed. Removal will occur according to
 * the  following process:
 *
 * 1. Removal will only occur with a major (x.y) release, never
 *    with a maintenance (x.y.z) release.
 * 2. Removal will not occur less than six months after the release
 *    when it was deprecated.
 * 3. Removal will not occur until after deprecation has been noted 
 *    in at least two major releases.
 *
 *                                              |        |Planned |
 *  Name                                        |Release |Removal |
 *----------------------------------------------+--------+--------+
 * Mod{NAME}C                                     5.6.2    6.2
 *   {NAME} = sanitized version of the DesktopModule Name 
 *   Used on <div> tag surrounding Module Content, inside container
 *----------------------------------------------+--------+--------+
 */  



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

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

.ControlPanel {
}

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

.LeftPane  { 
}

.ContentPane  { 
}

.RightPane  { 
}

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

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

A.SelectedTab:visited  {
}

A.SelectedTab:hover    {
}

A.SelectedTab:active   {
}

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

A.OtherTabs:visited  {
}

A.OtherTabs:hover    {
}

A.OtherTabs:active   {
}

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

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

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

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

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

.NormalRed
{
}

.NormalBold
{
}

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

A.CommandButton:visited  {
}

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

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

/* GENERIC */
H1  {
}

H2  {
}

H3  {
}

H4  {
}

H5, DT  {
}

H6  {
}

TFOOT, THEAD    {
}

TH  {
}

A:link  {
}

A:visited   {
}

A:hover {
}

A:active    {
}

SMALL   {
}

BIG {
}

BLOCKQUOTE, PRE {
}


UL LI   {
}

UL LI LI    {
}

UL LI LI LI {
}

OL LI   {
}

OL OL LI    {
}

OL OL OL LI {
}
OL UL LI   {
}

HR {
}

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

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

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

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/* Main Menu */

.MainMenu_MenuContainer {
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/* Login Styles */
.LoginPanel{
}

.LoginTabGroup{
}

.LoginTab {
}

.LoginTabSelected{
}

.LoginTabHover{
}

.LoginContainerGroup{
}

.LoginContainer{
}

/**
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */

 
/** Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;} 

/* FlexSlider Necessary Styles
*********************************/ 
.flexslider {margin: 0; padding: 0;}
.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {/*width: 100%;*/ display: block;}
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;} 
html[xmlns] .slides {display: block;} 
* html .slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}


/* FlexSlider Default Theme
*********************************/
/*.flexslider {margin: 0 0 60px; background: #fff; border: 4px solid #fff; position: relative; -webkit-border-radius: 4px; -moz-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; box-shadow: 0 1px 4px rgba(0,0,0,.2); -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2); -moz-box-shadow: 0 1px 4px rgba(0,0,0,.2); -o-box-shadow: 0 1px 4px rgba(0,0,0,.2); zoom: 1;}*/
.flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
.loading .flex-viewport {max-height: 300px;}
.flexslider .slides {zoom: 1;}

.carousel li {margin-right: 5px}


/* Direction Nav */
.flex-direction-nav {*height: 0;}
.flex-direction-nav a {width: 30px; height: 30px; margin: -20px 0 0; display: block; background: url(../img/bg_direction_nav.png) no-repeat 0 0; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; opacity: 0; -webkit-transition: all .3s ease;}
.flex-direction-nav .flex-next {background-position: 100% 0; right: -36px; }
.flex-direction-nav .flex-prev {left: -36px;}
.flexslider:hover .flex-next {opacity: 0.8; right: 5px;}
.flexslider:hover .flex-prev {opacity: 0.8; left: 5px;}
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {opacity: 1;}
.flex-direction-nav .flex-disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;}

/* Control Nav */
.flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;}
.flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}
.flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; /*-webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; box-shadow: inset 0 0 3px rgba(0,0,0,0.3);*/}
.flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }
.flex-control-paging li a.flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; }

.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {opacity: 1; left: 0;}
  .flex-direction-nav .flex-next {opacity: 1; right: 0;}
}

/* Section Color Values:
ABC-CLIO (#484c51 Maroon / #484c51 Blue / #629F18 Green / #434343 Gray)
LU (#708457 Green / #484c51 Blue / #D5D9D2 Green-Gray / #F5FBED Light Green) */
/***** Variables*****/
/**Maroon*/
/**Blue*/
/**Green*/
/**Gray*/
/**Green*/
/**Blue*/
/**Green-Gray*/
/**Light Green*/
/***** Mixins*****/
/***** Resets *****/
html {
    overflow-y: scroll;
}

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,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
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;
  letter-spacing: 0;
  outline: none;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

strong, b {
    font-weight: bold;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a,
a:hover {
  text-decoration: none;
  font-family: inherit;
}
a:hover {
    color: #484c51;
}
body,
html {
  width: 100%;
  height: 100%;
}
.no-scroll{
overflow:hidden; 
}

/**Clearfix*/
.group:before,
.group:after {
  content: '';
  display: table;
}
.group:after {
  clear: both;
}
.group {
  zoom: 1;
}
/* For IE 6/7 (trigger hasLayout) */
#top-nav:before,
#site-nav:before,
#site-nav2:before,
#top-nav:after,
#site-nav:after,
#site-nav2:after {
  content: '';
  display: table;
}
#top-nav:after,
#site-nav:after,
#site-nav2:after {
  clear: both;
}
#site-logo,
#top-nav,
#site-nav,
#site-nav2 {
  zoom: 1;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
}
/* For IE 6/7 (trigger hasLayout) */
/**Font Re-reset*/
h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: bold;
}
em,
i {
  font-style: italic;
}
nav ol,
nav ul {
  list-style: none none;
}
/***** Fonts & Colors *****/
html {
  font-size: 62.5%;
  /*-webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;*/

}
body {
  font-family: 'Roboto', Helvetica, Tahoma, Arial, sans-serif;
  color: #333;
  font-weight: 300;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
body,
p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
}
p,
ul,
ol {
  margin: 1em 0;
  margin: 1rem 0;
}
h1 {
  font-size: 26px;
  font-size: 2.6rem;
}
h2 {
  font-size: 21px;
  font-size: 2.1rem;
}
h3 {
  font-size: 18px;
  font-size: 1.8rem;
}
h4 {
  font-size: 16px;
  font-size: 1.6rem;
}
h5,
h6 {
  font-size: 15px;
  font-size: 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  margin: 1em 0;
  margin: 1rem 0;
  font-weight: normal;
  font-weight: 300 !important;
}
small {
  font-size: 12px;
  font-size: 1.2rem;
}
a,
a:active,
a:visited {
  color: inherit;
}
a:hover {
    color: #484c51;
}
/***** Basic Positioning & Layout *****/
#page-wrap {
  width: 80%;
  max-width: 1200px;
  min-width: 799px;
  /* Safety for IE 6-8 */

  margin: 0 auto;
  zoom: 1;
  position: relative;
}
#page-wrap:before,
#page-wrap:after {
  content: '';
  display: table;
}
#page-wrap:after {
  clear: both;
}
#masthead,
#site-nav,
#site-nav2,
#banner,
#page-content,
#page-footer {
  float: left;
  clear: both;
}
#masthead,
#banner,
#page-content,
#page-footer,
.content-row {
  width: 100%;
}
#banner {
  /*margin: 25px 0 40px;*/
  margin: 0 0 40px;
  position: relative;
}
.content-row {
  float: left;
  clear: both;
  margin: 20px 0;
}
.corporate #page-content h1,
.greenwood #page-content h1,
.praeger #page-content h1,
.abc-clio-solutions #page-content h1,
.libraries-unlimited #page-content h1 {
  width: 100%;
  border-bottom: 1px solid #484c51;
  padding: 5px 0;
  color: #484c51;
}
#page-footer {
  position: relative;
  clear: both;
  margin-top: 60px;
  background-color: #ededed;
  border-bottom: 10px solid #484c51;
}
#bottomFilterButton a, #bottomFilterButton a:hover, #topFilterH1 a, #topFilterH1 a:hover {
    color: white;
}

.libraries-unlimited #page-footer {
  border-bottom: 10px solid #708457;
}
/***** Global Elements *****/
/** Top Navigation */
#top-nav {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 20px;
  background-color: #484c51;
}
#top-nav ul {
  margin: 0;
  padding: 0;
}
#top-nav li {
  float: left;
  padding: 3px 12px;
  position: relative;
}
#top-nav a {
  color: #fff;
  padding-bottom: 2px;
}
#top-nav a:hover {
  border-bottom: 1px solid #ffffff;
}
a.button {
  padding: 5px 8px;
  background: #ddd;
  color: #fff;
}
/** Primary Site Navigation */
ul.menu {
  position: relative;
  margin: 0;
  padding: 0;
}
ul.menu li {
  position: relative;
  margin: 0;
  float: left;
}
ul.submenu {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  z-index: 999;
}
ul.menu li:hover > ul {
  display: block;
}
ul.submenu ul {
  left: 0;
  top: 0;
}
ul.submenu li {
  display: block;
  clear: both;
}
#site-nav,
#site-nav2 {
  float: right;
  margin: 62px 0 0;
  clear: none;
}
#site-nav a,
#site-nav2 a {
  display: block;
  /*padding: 3px;*/
  color: #434343;
}
#site-nav a:hover,
#site-nav2 a:hover {
  color: #484c51;
}
#site-nav ul.menu,
#site-nav2 ul.menu {
  float: left;
  white-space: nowrap;
}
#site-nav ul.menu li,
#site-nav2 ul.menu li {
  /*padding: 4px;*/
    padding: 7px;
}
#site-nav ul.submenu,
#site-nav2 ul.submenu {
  /*white-space: nowrap;*/
  top: 2em;
  white-space: normal;
}
#site-nav ul.submenu ul,
#site-nav2 ul.submenu ul {
  top: 0;
  left: 99%;
}
#site-nav ul.submenu li,
#site-nav2 ul.submenu li {
  background: #ededed;
  width: 150px;
  text-align: left;
}
select.mobile-nav {
  display: none;
}
/** Call to action link */
.cta-link {
  float: left;
  display: block;
  width: 25px;
  height: 25px;
  background: rgba(169, 166, 166, 0.5);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  clear: both;
  margin: 10px 0;
}
/********** Begin Search Tab ************/
#search-tab .firstColSelect {
    /*width: 93%;*/
    width: 100%;
}
#search-handle, #search-tab{
	position:fixed;
	top:100px;
	margin:0;
}
#search-handleOLD{
	line-height:1;
	font-size:18px;
    top:155px;
    left: -64px;
	/*top:128px;
	left:-39px;*/
	cursor:pointer;
	z-index:999;
	 -moz-transform:rotate(270deg);
	-webkit-transform:rotate(270deg);
	-ms-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	transform:rotate(270deg);
}
#search-handle {
  top: 308px;
  left: 0;
  z-index: 1001;
  /*-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;*/
  -moz-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  transform-origin: top left;
}

#search-handleOLD h3{
    /*
	padding:8px 40px 8px 20px;	
	color:#fff;
	background:#484c51 url(img/bg-mark-white-15px.png) no-repeat 90% center;
    */
    background: url("img/bg-mark-white-15px.png") no-repeat scroll 90% center #484c51;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold !important;
    line-height: 1;
    margin: 0;
    padding: 12px 40px 12px 20px;
}
#search-handle h3 {
  line-height: 1;
  font-size: 18px;
  font-weight: bold !important;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 12px 43px 12px 10px;
  margin: 0;
  color: #fff;
  background: #484c51 url(img/bg-mark-white-15px.png) no-repeat 93% center;
}

#search-handleOLD h3:before {
    content: "+";
    float: left;
    font-size: 18px;
    height: 10px;
    line-height: 1;
    margin-left: 5px;
    margin-right: 10px;
    width: 10px;
}
#search-handle h3:before {
  content: "+";
  float: left;
  font-size: 18px;
  line-height: 1;
  margin-right: 10px;
  margin-left: 5px;
  height: 10px;
  width: 10px;
}
#search-handle h3.minus:before {
  content: "-";
  float: left;
  font-size: 18px;
  line-height: 1;
  margin-right: 10px;
  margin-left: 5px;
  height: 10px;
  width: 10px;
}
#search-tab{
	/*width:90%;
	left:-90%;*/
    width:100%;
	left:-100%;
	z-index:1000;
	background-color:#fff;
	overflow:auto;
	max-height:84%;
	border-top:1px solid #484c51;
    border-bottom:1px solid #484c51;
}
.scroll-wrap{
	clear:both;
	max-height:100%;
	/*border:1px solid #484c51;*/
	border-right:1px solid #484c51;
	border-left:none;
	overflow-wrap:inherit;
	overflow:auto;
	-webkit-overflow-scrolling: touch;
}
.pad{
	padding:20px 20px 20px 60px;
	position:relative;
}
.search-section{
	width:31%;
	padding-right:2%;
	display:block;
	float:left;
}
.form-controls{
	position:absolute;
	bottom:30px;
	right:30px;
}

#search-tab dl.accordion{
	display:block;
	width:100%;
    /*width: 93%;*/
	float:none;
	margin:0;
	padding:0;
	background:#fff;
}
#search-tab .accordion dt{
	/*color:#fff;*/
	clear:both;
	/*background:#484c51;*/
    margin:0;
    padding: 3%;
    background:#ededed;
}
#search-tab .accordion dt a{/*color:#fff;*/}
#search-tab .accordion dt, #search-tab .accordion dd{font-family:'Roboto', Helvetica, Tahoma, Arial, sans-serif;}
#search-tab .accordion dd{
	margin:0;
	padding-left:5px;
}
#search-tab .accordion dd p{
	display:block;
	margin-right:2em;
}
.accordion label{
	padding-left:8px;
	line-height:1;
}
#search-tab .accordion input[type="checkbox"]{float:left;}

/***search tab form  *****/
#quick-search{
	margin:-20px -20px -20px -60px;
	/*padding:30px 30px 30px 60px;*/
    padding:7px 30px 30px 60px;
	background-color:#e7e7e6;
     border-bottom: 2px solid #808080
}
#search-tab #quick-search h2 {
    margin:6px 0 10px 0;
    padding: 0;
}
.search-section input[type="text"]{
	display:block;
	/*width:93%;*/
    width: 100%;    /*width changed for tablet search form fields.*/
	margin:0;
	padding:3%;
	border:1px solid #ccc;
	background:none;
	background-color:#fff;
	-moz-box-shadow:inset 0 0 10px #ccc;
	-webkit-box-shadow:inset 0 0 10px #ccc;
	box-shadow:inset 0 0 10px #ccc;
}
#quick-search input{
	width:70%;
	margin:0;
	padding:10px;
	border:1px solid #ccc;
	background:none;
	background-color:#fff;
	-moz-box-shadow:inset 0 0 10px #ccc;
	-webkit-box-shadow:inset 0 0 10px #ccc;
	box-shadow:inset 0 0 10px #ccc;
}
.search-section select{
	position:relative;
	width:100%;
	margin:0;
	padding:3% 6% 3% 3%;
	border:1px solid #ccc;
	background:#fff url(img/bg-select-arrow.png) no-repeat 98% center;
	text-indent:.01px;
	text-overflow:'';
	content:'';
	color:transparent;
	-moz-text-shadow:0 0 0 #000;
	-moz-border-radius:0;
	-moz-box-shadow:inset 0 0 10px #ccc;
	-moz-appearance: none;
	-webkit-text-shadow:0 0 0 #000;
	-webkit-border-radius:0;
	-webkit-box-shadow:inset 0 0 10px #ccc;
	-webkit-appearance: none;
	text-shadow:0 0 0 #000;
	border-radius:0;
	box-shadow:inset 0 0 10px #ccc;
	appearance: none;
}
#search-tab input.submit,
#search-tab input.reset{
	width:auto;
	margin-left:20px;
	padding:5px 10px;
	font-size:18px;
	font-size:1.8rem;
	font-weight:normal;
	line-height:1;
	color:#fff;
	border:1px solid #ccc;
	background-color:#708457;
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
	box-shadow:none;
    cursor: pointer;
}
#search-tab .search-section input.submit,
#search-tab .search-section input.reset{
	margin:.75em 0 0;
	clear:both;
	float:left;
	cursor:pointer;
}
#search-tab .search-section input.reset{
	background-color:#fff;
	color:#434343;
	font-size:14px;
	font-size:1.4rem;
	border:none;
    /*background-color: #708457;
    border: 1px solid #CCCCCC;
    box-shadow: none;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1;
    margin-left: 20px;
    padding: 5px 10px;
    width: auto;*/
}
#search-tab input[type="checkbox"]{
	border:solid 1px #ccc;
	width:15px;
	height:15px;
	background-color:#ededed;
	-moz-border-radius:0;
	-moz-box-shadow:inset 0 0 5px #ccc;
	-moz-appearance:none;
	-webkit-border-radius:0;
	-webkit-box-shadow:inset 0 0 5px #ccc;
	-webkit-appearance:none;
	border-radius:0;
	box-shadow:inset 0 0 5px #ccc;
	margin-top: 4px;
}
#search-tab input[type="checkbox"]:checked{
	background:none;
	background-color:#484c51;
	-moz-box-shadow:none;
	-moz-appearance:none;
	-webkit-box-shadow:none;
	-webkit-appearance:none;
	box-shadow:none;
	appearance:none;
}
#search-tab h2{
	color:#484c51;
	margin:2em 0 0;
	/*border-bottom:1px solid #484c51;*/
	padding-bottom:10px;
    font-weight: bold !important;
}
#search-tab h3{
	color:#484c51;
	clear:both;
	font-weight:bold !important;
}
.search-section > p{
	clear:both;
}
.search-section input, .search-section select{
	margin:0;
}
.search-section label{
	text-align:right;
	margin:0;	
}
input.submit, input.reset{
	width:auto;
}
/********** End Search Tab ************/
div.tooltip{
	position:absolute;
	top:3em;
	right:0;
	font-size:13px;
	padding:7px;
	border:1px solid #ccc;
	background-color:#ededed;
	white-space:nowrap;
	-moz-opacity:.9;
	-webkit-opacity:.9;
	opacity:.9;
    z-index: 9999;
}

/***** Main Site Logo *****/
#site-logo a {
  display: inline-block;
  margin: 60px 25px 0 0;
  float: left;
  clear: none;
  background-size: contain;
  text-indent: -9999px;
}
.corporate #site-logo a {
  background: url(/designfileview/abccliologo) no-repeat top left;
  width: 230px;
  height: 54px;
}
.libraries-unlimited #site-logo a {
  background: url(img/logo-lin_libunlimited-39px.png) no-repeat top left;
  width: 250px;
  height: 39px;
}
/***** Page Banner *****/
#banner {
  /*height: 470px;*/ /*420px;*/
  height:auto;

}
/*
.corporate #banner {
  height: 470px;
}
    */
img.banner-img {
  height: 100%;
  width: auto;
  /*position: absolute;*/
  top: 0;
  left: 0;
  z-index: 0;
}
ul.slides {
  list-style: none none;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
ul.slides li {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
div.slide-text {
  padding: 25px;
  float: right;
  background: #fff;
  position: absolute;
  right: 35px;
  top: 35px;
  z-index: 5;
  max-height: 240px;
  max-width: 35%;
  -webkit-opacity: .8;
  -moz-opacity: .8;
  opacity: .8;
}
div.slide-text > * {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
/***** Intro Box *****/
#intro {
  position: absolute;
  left: 50%;
  margin-left: -45%;
  width: 90%;
  overflow: hidden;
  z-index: 901;
}
.corporate #intro {
  top: 520px;
}
.libraries-unlimited #intro {
  top: 470px;
}
#intro h1 {
  font-family: 'Vollkorn', 'Times New Roman', Times, Georgia, serif;
  padding: 10px 30px 10px 20px;
  color: #fff;
  background-color: #484c51;
  margin: 0;
  cursor: pointer;
  position: relative;
  line-height: 1.2;
}
.indicator {
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  margin-top: -18px;
  height: 36px;
  padding: 0 10px;
  color: #fff;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}
.intro-content {
  position: relative;
  background-color: #fff;
  height: 100%;
  border: 1px solid #484c51;
  overflow: hidden;
  display: block;
  float: left;
}
.libraries-unlimited #intro h1 {
  background-color: #708457;
}
.libraries-unlimited .intro-content {
  border: 1px solid #708457;
}
.intro-text,
.cta {
  position: relative;
  padding: 2%;
  height: 100%;
  display: block;
  overflow: hidden;
}
.intro-text {
  width: 58%;
  float: left;
  min-height: 131px;
}
.cta {
  width: 30%;
  position: absolute;
  top: 0;
  right: 0;
  background: #434343 url(img/bg-careers.jpg) no-repeat top left;
  background-size: cover;
  color: #fff;
}
/***** Main Content Area *****/
/***** Secondary Content *****/
#learn-more h1 {
  margin-top: 10px;
  clear: both;
  display: block;
}
#imprints {
  width: 100%;
  margin: 0 auto;
}
.imprints-block {
  width: 48%;
  height: 220px;
  margin: 1% 1%;
  float: left;
}
/*Accordion*/
.accordion {
  width: 48%;
  float: left;
  margin: 0;
  background: #ededed;
}
.corporate .accordion {
  margin: 0;
  background: #fff;
}
.accordion dd {
  margin: 2px 0 0 30px;
  padding-right: 10px;
  font-family: 'Roboto', Helvetica, Tahoma, Arial, sans-serif;
}

.corporate .accordion dd a {
  color: #434343;
}
.corporate .accordion dd a:hover {
  color: #484c51;
}
.accordion dt {
  border-top: 2px solid #fff;
  /*padding: 5px;*/
  /*background: #d5d9d2;*/
  background: #E7E7E6;
}
.corporate .accordion dt {
  /*font-family: 'Vollkorn', 'Times New Roman', Times, Georgia, serif;*/
}
.accordion dt a {
  padding: 8px;
  margin: 0;
  color: #333;
  display: block;
  font-weight: bold;
}

/*Accordion on the search form.*/
.search-section .accordion dt a {
  padding: 0;
  margin: 0;
  color: #333;
  display: block;
  font-weight: normal;
}

.accordion a.button {
  display: inline-block;
  margin: 0 0 10px 0;
  background: #708457;
}

.corporate .accordion dt a {
  padding: 5px 10px;
  display: block;
  color: #fff;
}
.accordion li {
  list-style: none none;
  position: relative;
}
.accordion li:before {
  content: '>';
  font-weight: bold;
  font-size: 80%;
  margin-right: 10px;
  vertical-align: top;
}
.corporate .accordion dt {
  background: #6a89d5;
  background: #484c51;
}
.accordion dd ul ul {
  margin-top: 0;
  padding-top: 0;
  margin-left: 20px;
}
/** Features Box */
.features {
  width: 100%;
  float: left;
  clear: both;
  position: relative;
}
.features ul {
  list-style: none none;
  margin: 0;
  padding: 0;
  display: block;
  float: left;
}
.feature-category {
  width: 30%;
  float: left;
}
.feature-category li {
  padding: 12px 15px;
  display: block;
  cursor: pointer;
  color: #b6ca9c;
  background-color: #708457;
  border-bottom: 2px solid #fff;
}
.feature-category li.active {
  color: #fff;
}
.feature-content {
  width: 70%;
  height: 150px;
  position: relative;
  float: right;
}
.feature-set {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: #fff;
}
.feature-set li {
  display: block;
  float: left;
  vertical-align: middle;
  text-align: center;
  width: 21%;
  margin: 0 2%;
  /*position:relative;*/

}
.feature-set li img {
  max-height: 150px;
  max-width: 100%;
  width: auto;
  height: auto;
}
#blind {
  position: fixed;
  z-index: 9998;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #222;
  -moz-opacity: .8;
  -webkit-opacity: .8;
  opacity: .8;
}
.popup {
  position: fixed;
  z-index: 9999;
  top: 20%;
  left: 50%;
  width: 50%;
  margin-left: -25%;
  padding: 15px;
  text-align: left;
  background-color: #fff;
  border-top: 4px solid #484c51;
}
.popup img {
  margin: 1em 2em 2em 0;
  float: left;
}
.popup-close {
  /*position: absolute;
  top: -1.25em;
  right: -1.25em;
  font-size: 3em;
  line-height: 1;
  font-weight: bold;
  padding: .5em;
  background-color: #fff;
  border: 2px solid #708457;
  color: #484c51;
  cursor: pointer;
  z-index: 9999;*/
  background-color: #FFFFFF;
    border: 2px solid #708457;
    color: #484c51;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
    margin: 0 !important;
    padding: 0.5em;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9999;
}
.libraries-unlimited .popup {
  border-top: 4px solid #708457;
}
.popup > * {
  font-size: 14px;
  font-size: 1.4rem;
  margin: .6em 0;
}
.popup h2 {
  font-weight: bold !important;
}
/** Bottom Catalog Box*/
#catalog-box {
  width: 44%;
  margin: 20px 0 0 0;
  padding: 0 0 10px 0;
  height: 200px;
  float: right;
  overflow: hidden;
  background: #ffffff url(img/bg-catalog-box.jpg) no-repeat bottom right;
  background-size: cover;
}
.catalog-text {
  width: 50%;
  min-width: 200px;
  height: 100%;
  padding: 10px;
  margin: 0;
  background-color: #484c51;
  text-align: center;
  -webkit-opacity: .8;
  -moz-opacity: .8;
  opacity: .8;
}
.catalog-text img {
  margin: 25px auto 0;
  max-height: 45%;
}
#catalog-box h2 {
  padding: 0;
  margin: 0;
  line-height: 1.25;
  color: #fff;
  text-align: left;
  font-family: 'Vollkorn', 'Times New Roman', Times, Georgia, serif;
}
/***** Page Footer *****/
#social-nav {
  position: absolute;
  bottom: 100%;
  right: 50px;
}
#social-nav ul {
  float: right;
  margin: 0;
  padding: 0;
}
#social-nav li {
  float: left;
  display: inline;
}
#social-nav a {
  display: block;
  width: 36px;
  height: 36px;
  float: left;
  text-indent: -10000px;
}
.fb {
  background: #629f18 url(img/social-facebook-20px.png) no-repeat center center;
}
.tw {
  background: #484c51 url(img/social-twitter-20px.png) no-repeat center center;
}
.li {
  background: #484c51 url(img/social-linkedin-20px.png) no-repeat center center;
}
.bl {
  background: #F78200 url(img/social-blogger-20px.png) no-repeat center center;
}
.yt {
  background: #E72D28 url(img/social-youtube-20px.png) no-repeat center center;
}
/***** Sub Pages *****/
#page-content h1 {
  width: 100%;
  padding: 5px 0;
  color: #898989;
}
/***** search-content box *****/
#search-content {
  background: #f5fbed;
  width: 100%;
  padding-bottom: 30px;
}
#search-content-one {
  float: left;
  width: 35%;
}
#search-content-two {
  float: left;
  width: 25%;
  max-width: 175px;
}
#search-content-three {
  float: right;
  width: 40%;
}
#search-content h1 {
  display: inline-block;
  padding: 0;
  margin: 20px 0 0 20px;
  color: #708457;
}
#search-content a.button {
  margin: 20px 0 0 20px;
  display: inline-block;
  background: #708457;
}
#search-content p {
  margin: 20px 0 0 20px;
  color: #708457;
}
#search-content ul {
    color: #708457;
    margin-left: 2.5em;
    list-style: disc outside none;
}
#search-content-two img {
  float: left;
  padding: 0;
  margin: 20px 0 0 20px;
  width: 100%;
  height: auto;
}
#search-content-three #author {
  float: right;
  background: #ffffff;
  border: #708457 1px solid;
  border-top: #708457 5px solid;
  width: 80%;
  margin: 0 10%;
  margin-top: 30px;
}
#search-content-three #author h2,
#search-content-three #author a {
  margin: 10px 0 0 10px;
  color: #708457;
  display: block;
}
#search-content-three #author a {
  margin-bottom: 10px;
}
#search-content-three #author img {
  float: right;
  padding: 0;
  margin: 10px 10px 10px 0;
  width: 45%;
  height: auto;
}
#search-content-three #author-text {
  width: 45%;
  float: left;
}
.main-label {
  color: #484c51;
  font-weight: 700 !important;
}
/**Featured Box */
#featured {
  width: 44%;
  margin: 0;
  padding: 15px 0 5px 0px;
  float: right;
  overflow: hidden;
  outline: 1px #ddd solid;
  border-top: 4px #708457 solid;
  color: #708457;
}
#featured h2 {
  margin-top: 0;
}
#featured h2,
#featured h3,
#featured p,
#featured a {
  margin-left: 15px;
}
#featured a.button {
  background: #708457;
}
#featured img {
  float: right;
  margin-right: 15px;
}
#featured .featured-text {
  width: 50%;
  float: left;
}
/***** Footer *****/
.footer-wrap {
  padding: 20px;
}
.legal p, .legal span {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  display:block;
}
#footer-nav {
  margin: 0 auto 25px;
  clear: both;
  text-align: center;
}
#footer-nav ul {
  text-align: center;
}
#footer-nav ul li {
  padding: 0 4px;
  display: inline-block;
  float: none;
}

.accordion dt a:after{
	content:"+";
	float:right;
	font-size:16px;
}
.accordion dt a.minus:after{
    content: "—";
    float:right;
    font-size:17px;
}
.search-tips {
    color: #484c51 !important;
    font-weight: bold;
}


/*******PRAEGER STYLE*********/
.praeger #site-logo a {
  background: url(img/logo-praeger-39px.png) no-repeat top left;
  width: 250px;
  height: 39px;
}
.praeger #page-footer {
  border-bottom: 10px solid #484c51;
}
.praeger #intro {
  top: 470px;
}
.praeger #intro h1 {
  background-color: #484c51;
}
.praeger .intro-content {
  border: 1px solid #484c51;
}
.praeger .popup {
  border-top: 4px solid #484c51;
}
.praeger nav select {
  background: #484c51 url(img/plus.png) no-repeat 4px center;
  background: #ffffff url(img/bg-select-arrow.png) no-repeat 97% center;
  border-color: #484c51;
}
.praeger #search-content {
  background: #e9eef9;
}
.praeger #search-content h1 {
  color: #484c51;
}
.praeger #search-content a.button {
  background: #484c51;
}
.praeger #search-content p {
  color: #484c51;
}
.praeger #search-content-three #author {
  border: #484c51 1px solid;
  border-top: #484c51 5px solid;
}
.praeger #search-content-three #author h2,
#search-content-three #author a {
  color: #484c51;
}
.praeger .feature-category li {
  color: #fff;
  background-color: #484c51;
}
.praeger #featured {
  outline: 1px #ddd solid;
  border-top: 4px #484c51 solid;
  color: #484c51;
}
.praeger #featured a.button {
  background: #484c51;
}
.praeger .accordion dt {
  background: #859DBA;
}
.praeger .accordion dt a {
  color: #333333;
}
/*******END PRAEGER STYLE*********/

/*******REFERENCE STYLE********/
.greenwood #site-logo a {
  background: url(img/logo-greenwood-39px.png) no-repeat top left;
  width: 250px;
  height: 39px;
}
.greenwood #page-footer {
  border-bottom: 10px solid #7c0041;
}
.greenwood #intro {
  top: 470px;
}
.greenwood #intro h1 {
  background-color: #7c0041;
}
.greenwood .intro-content {
  border: 1px solid #7c0041;
}
.greenwood .popup {
  border-top: 4px solid #7c0041;
}
.greenwood nav select {
  background: #7c0041 url(img/plus.png) no-repeat 4px center;
  background: #ffffff url(img/bg-select-arrow.png) no-repeat 97% center;
  border-color: #7c0041;
}
.greenwood #search-content {
  background: #f5ebf0;
}
.greenwood #search-content h1 {
  color: #7c0041;
}
.greenwood #search-content a.button {
  background: #7c0041;
}
.greenwood #search-content p {
  color: #434343;
}
.greenwood #search-content-three #author {
  border: #7c0041 1px solid;
  border-top: #7c0041 5px solid;
}
.greenwood #search-content-three #author h2,
#search-content-three #author a {
  color: #434343;
}
.greenwood .feature-category li {
  color: #fff;
  background-color: #7c0041;
}
.greenwood #featured {
  outline: 1px #ddd solid;
  border-top: 4px #7c0041 solid;
  color: #434343;
}
.greenwood #featured a.button {
  background: #7c0041;
}
.greenwood .accordion dt {
  background: #F5EBF0;
}
.greenwood .accordion dt a {
  /*color: #fff;*/
    color: #333333;
}

/*******END REFERENCE STYLE********/

/*******SOLUTIONS STYLE ************/

.abc-clio-solutions #site-logo a {
  background: url(img/logo-abc-clio-solutions-39px.png) no-repeat top left;
  width: 250px;
  height: 39px;
}
.abc-clio-solutions #page-footer {
  border-bottom: 10px solid #434343;
}
.abc-clio-solutions #intro {
  top: 470px;
}
.abc-clio-solutions #intro h1 {
  background-color: #434343;
}
.abc-clio-solutions .intro-content {
  border: 1px solid #434343;
}
.abc-clio-solutions .popup {
  border-top: 4px solid #434343;
}
.abc-clio-solutions nav select {
  background: #434343 url(img/plus.png) no-repeat 4px center;
  background: #ffffff url(img/bg-select-arrow.png) no-repeat 97% center;
  border-color: #434343;
}
.abc-clio-solutions #search-content {
  background: #e9e9e9;
}
.abc-clio-solutions #search-content h1 {
  color: #434343;
}
.abc-clio-solutions #search-content a.button {
  background: #434343;
}
.abc-clio-solutions #search-content p {
  color: #434343;
}
.abc-clio-solutions #search-content-three #author {
  border: #434343 1px solid;
  border-top: #434343 5px solid;
}
.abc-clio-solutions #search-content-three #author h2,
#search-content-three #author a {
  color: #434343;
}
.abc-clio-solutions .feature-category li {
  color: #fff;
  background-color: #434343;
}
.abc-clio-solutions #featured {
  outline: 1px #ddd solid;
  border-top: 4px #434343 solid;
  color: #434343;
}
.abc-clio-solutions #featured a.button {
  background: #434343;
}
/********END SOLUTIONS STYLE************/

/*Search Form Filters*/
.pubYearItem {
    float: none;
    display: block;
    margin: 8px 0 7px 0;
}
.pubYearItem input[type="checkbox"] {
    float: none !important;
}
select.gradeSelect  {
    width: 49.5%;
}

div.filterSelections p a {
    line-height: 1.3em;
}

/*END Search Form Filters*/

.awardWinnerImage {
    width: 30px !important;
    position:absolute;
    top: 50px;
    left: 5px;
}

.single-body img {
    padding-bottom: 8px;
}

/***** Media Queries *****/
@media (max-width: 800px) {
  #page-wrap {
    padding-top: 50px;
    min-width: 320px;
  }
  .imprints-block {
    width: 98%;
    height: 120px;
    margin: 1% 1%;
    float: none;
  }
  
  .imprints-block h2 {
    display: inline-block;
  }
  #site-nav,
#site-nav2 {
    float: none;
    clear: both;
    margin: 0 auto;
    position: relative;
    text-align: center;
  }
  #top-nav {
    display: none;
  }
  #site-logo a {
    display: block;
    margin: 20px auto 0;
    float: none;
  }
  #site-nav,
#site-nav2 {
    margin: 20px auto 0;
  }
  ul.menu,
  #top-nav ul {
    display: table;
    width: 100%;
  }
  ul.menu > li {
    display: table-cell;
    float: none;
    position: relative;
  }
  ul.submenu {
    position: absolute;
    left: auto;
    top: auto;
  } 
  #search-handle,
  #search-tab {
    top: 0;
    width: 80%;
    left: 10%;
  }
  #search-handle {
    -moz-transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    background: #484c51 url(img/bg-mark-white-15px.png) no-repeat 95% center;
  }
  #search-handle h3 {
    padding: 10px 10px 10px 20px;
    color: #fff;
  }
  #search-tab {
    position: fixed;
    top: -100%;
    z-index: 998;
    outline: solid 1px #808080;
    max-height: 99%;
      width: 90%;
  }
  .pad {
    padding: 50px 20px 20px 20px;
  }
  .search-section {
    width: 100%;
  }
  /*** Banner ***/
  #banner {
    height: 300px;
  }
  #intro {
    position: relative;
    top: auto !important;
    left: auto !important;
    margin-left: 0;
    width: 100%;
    padding: 2% 0;
    clear: both;
    text-align: center;
  }
  .intro-text,
  .cta {
    width: 96.4%;
    position: relative;
    clear: both;
    display: block;
    height: auto;
  }
  .accordion {
    width: 100% !important;
    float: none;
    margin: 20px 0 0 0;
  }
  #catalog-box {
    width: 100%;
    margin: 0;
    height: 200px;
    float: none;
  }
  #search-content-one {
    float: left;
    width: 50%;
  }
  #search-content-two {
    float: right;
    width: 40%;
    padding: 0 5%;
  }
  #search-content-two img {
    float: left;
    margin: 15px 0 0 0;
    padding: 0;
  }
  #search-content-three {
    float: none;
    width: 100%;
  }
  #search-content {
    padding-bottom: 30px;
  }
  #featured {
    width: 100%;
    margin: 0;
    padding: 15px 0;
    float: none;
    overflow: hidden;
    outline: 1px #ddd solid;
    border-top: 4px #708457 solid;
    color: #708457;
  }
}
@media (max-width: 650px) {
  #top-nav {
    margin-bottom: 25px;
  }
  #top-nav li {
    float: left;
    display: block;
    width: 44%;
    margin: .5em 3%;
    padding: 0;
    line-height: 1.2;
  }
  #site-logo a {
    margin: 0 auto;
    float: none;
  }
  #site-nav,
#site-nav2 {
    margin: 20px auto;
  }
  ul.menu {
    display: none;
  }
  select.mobile-nav {
    display: inline-block;
  }
  nav select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    color: #434343;
    padding: 7px 7px 7px 20px;
    text-align: left;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 7px 20px 7px 7px;
    border-width: 1px;
    border-style: solid;
    width: 270px;
    font-size: 15px;
  }
  .corporate nav select {
    background: #484c51 url(img/plus.png) no-repeat 4px center;
    background: #ffffff url(img/bg-select-arrow.png) no-repeat 97% center;
    border-color: #484c51;
  }
  .libraries-unlimited nav select {
    background: #484c51 url(img/plus.png) no-repeat 4px center;
    background: #ffffff url(img/bg-select-arrow.png) no-repeat 97% center;
    border-color: #708457;
  }
  option.mob-style {
    background-color: #fff;
    width: 90%;
    height: 100%;
    display: block;
  }
  #banner {
    display: none;
  }
  #search-content-two img {
    float: left;
    padding: 0;
    margin: 20px 0 0 0;
    width: 100%;
    max-width: 175px;
  }
  .features ul {
    display: table;
  }
  .feature-category,
  .feature-content,
  .feature-set {
    width: 100%;
  }
  .feature-category li {
    display: table-cell;
    border-bottom: none;
    border-right: 2px solid #fff;
  }
  .feature-category li:last-child {
    border: none;
  }
  .feature-content {
    margin-top: 20px;
    float: left;
  }
  .feature-set {
    display: table;
  }
  .feature-set li {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 21%;
    margin: 0 2%;
    position: relative;
  }
  .popup {
    position: fixed;
    width: 90%;
    padding: 3% 3% 30px;
    left: 2%;
    top: 2%;
    margin: 0;
  }
  .popup-close {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 10px;
  }
  .praeger .feature-set li {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 21%;
    margin: 0 2%;
    position: static;
  }
  
  .greenwood .feature-set li {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 21%;
    margin: 0 2%;
    position: static;
  }
  .popout {
    top: -330px;
  }
}
@media (max-width: 480px) {
  
  #search-handle{
    top: 0;
    /*
    width: 80%;
    left: 10%;
        */
    width: 100%;
      left: 0;
  }
}

/***** Variables*****/
/**Maroon*/
/**Blue*/
/**Green*/
/**Gray*/
/**Green*/
/**Blue*/
/**Green-Gray*/
/**Light Green*/
/***** Mixins*****/
/* LESS Document */

.corporate .productAccordion {
    margin: 0;
}

a.popup-title {
    color: #484c51;
    font-size: 1.3em;
}

a.popup-subtitle {
    color: #484c51;
}
.corporate .productAccordion dd {    
    font-family: 'Roboto',Helvetica,Tahoma,Arial,sans-serif;
}

.accordionPricing dt a:after {
    content: "+";
    float: right;
    font-size: 16px;
}

dt a.minus:after {
    content: "-";
    float: right;
    font-size: 16px;
}

div#page-content.search-single {
  border-top: 4px solid #484c51;
  margin-top: 20px;
}
.search-single #site-logo a {
  background: url(img/logo-abc-clio-54px.png) no-repeat top left;
  width: 230px;
  height: 54px;
}
div#page-content.search-single header.search-title {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
div#page-content.search-single header.search-title h1 {
    border: 0;
  font-size: 33px;
  color: #484c51;
  margin-bottom: 0;
}
div#page-content.search-single header.search-title h2 {
  font-size: 18px;
  color: #484c51;
  margin: 0;
  /*font-weight: bold !important;*/
}
div#page-content.search-single header.search-title a.print {
  color: #fff;
  background: #484c51;
  padding: 4px;
  float: right;
  display: inline-block;
}
.single-body {
  margin-top: 20px;
}
.single-body img {
  width: 10%;
  /*width:15%;*/
  float: left;
}
.single-body div.description {
  width: 30%;
  float: left;
  /*margin-left:10%;*/
  margin-left: 5%;
}
div.look-inside {
  width: 15%;
  float: left;
}
div.look-inside a {
  padding: 0 0 0 20px;
  background: url(img/look-inside.jpg) no-repeat top left;
  font-weight: bold;
}
.printButton {
  display: inline-block;
}
#t-my .single-body div.description p {
color: #3257b1;
margin: 0;
font-weight: bold;
}
.single-body div.description table {
  margin-top: 25px;
  width: 100%;
}
.single-body div.description table td {
  padding: 4px 10px 4px 4px;
}
.single-body div.description table td.right-column {
  border-bottom: 1px solid #ddd;
}
.single-body div.description table td.right-column:last-child {
  /*border-bottom:none;*/
}
a.add-to-cart {
  float: right;
  text-indent: -9999px;
  width: 21px;
  height: 21px;
  background: url(img/shopping-cart.png) no-repeat top left;
  margin-right: 10px;
}
ul.details {
  width: 25%;
  float: right;
  /*height: 100%;*/
}
ul.details li {
  padding: 5px;
  margin: 0 0 3px 0;
  background-color: #e9e8e7;
  list-style: none;
}
ul.details h3 {
  margin: .6em 0 .3em;
  font-size: 15px;
  font-weight: bold !important;
}
ul.details li p {
  margin: 0;
  font-size: 13px;
}
ul.details li p.price {
  font-weight: bold !important;
}
ul.details li.accordion-li {
  padding: 0;
  margin: 0;
}
ul.details li.accordion-li .accordion {
  width: 100%;
  background: #e9e8e7;
  margin-top: 0;
}
ul.details li.accordion-li .accordion dt {
  background: #e9e8e7;
}
/*ul.details li.accordion-li .accordion dt a{
	display:block;	
}*/
ul.details li.accordion-li .accordion dd {
  margin: 5px 8px;
}
ul.details p span.discount {
  color: #484c51;
  text-decoration: line-through;
}
div.product-status {
  margin: -5px;
  padding: 5px;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  background-color: #585a5e;
}
div#page-content.search-single dl.accordion {
  width: 100%;
}
div#page-content.search-single dl.accordion dt {
  background: #eee;
  padding: 0;
}
div#page-content.search-single dl.accordion dt a {
  display: block;
  /*color:#fff;*/
  color: #333;
  font-weight: bold;
  padding: 8px;
}
div#page-content.search-single dl.accordion dt a:before {
  content: "";
  background: url(img/arrow-accordion.png) no-repeat top left;
  float: left;
  font-size: 18px;
  line-height: 1;
  margin-right: 10px;
  margin-left: 5px;
  height: 20px;
  width: 20px;
}
div#other-titles,
div.otherTitlesContainer, 
.otherTitlesContainer {
  margin-top: 25px;
}
#other-titles h1,
.otherTitlesContainer h1 {
  font-size: 33px;
  color: #484c51;
  border-bottom: 1px solid #484c51;
  padding: 0 0 5px 0;
}
#other-titles div.img-group img,
.otherTitlesContainer div.img-group img{
  float: left;
  width: 29.3%;
  /*width: 12.6%;*/
  max-height: 242px;
  margin: 0 2%;
  padding: 0;
}
#other-titles div.img-group, 
.otherTitlesContainer div.img-group {
  float: left;
  width: 50%;
  /*width: 100%;*/
  display: block;
  padding-top: 15px;
}
.accordionPricing dt a {
  padding: 4px;
  margin: 0;
  color: #333;
  display: block;
  font-weight: bold;
}
.accordionPricing dd {
  padding: 4px;
}
b {
  font-weight: bold;
}
#item-accordion dt {
  background: #101010;
}
#item-accordion.accordion {
  background: #fff;
}
#item-accordion dd {
  margin: 0;
  padding: 10px 25px;
}
#item-accordion dd h3 {
  margin: 0;
  font-weight: bold !important;
  color: #484c51;
  font-size: 15px;
  font-size: 1.5rem;
}
#item-accordion dd img {
  float: right;
  margin: 10px 0 20px 20px;
  display: block;
}
#item-accordion dd ul li {
  margin-left: 20px;
  padding-left: 0px;
  text-indent: 0px;
  color: #484c51;
  list-style: disc;
  font-weight: bold;
}
#item-accordion dd ol li {
  margin-left: 20px;
  padding-left: 0px;
  text-indent: 0px;
  list-style: decimal;
  color: #484c51;
  font-weight: bold;
}
#item-accordion dd li span {
  color: #434343;
  font-weight: 100;
}
#item-accordion.accordion li:before {
  content: normal;
}
#item-accordion p.grabber {
  color: #484c51;
  font-weight: bold;
}
#item-accordion p.sales-hook {
  color: #484c51;
  font-size: 20px;
  font-weight: bold;
}
/*#item-accordion b.author*/
#item-accordion p.author b{
  color: #484c51;
}
#item-accordion b.book-section,
#item-accordion p.book-section b
{
  color: #484c51;
}

#item-accordion span.review-author {
  color: #484c51;
}
#item-accordion span.award-title {
  color: #484c51;
  font-weight: bold;
}
#item-accordion p.fpo-award {
  background: url(img/fpo-award-logo.png) no-repeat top left;
  padding-left: 80px;
  padding-top: 20px;
  min-height: 40px;
}
@media (max-width: 800px) {
  .single-body img {
    width: 30%;
    margin-right: 0;
    margin-bottom: 20px;
    float: left;
  }
  .single-body div.description {
    width: 65%;
    float: right;
  }
  table.description-table {
    width: 100%;
  }
  div.look-inside {
    margin-top: 10px;
    width: 100%;
    float: none;
    clear: both;
  }
  ul.details {
    width: 100%;
    float: right;
    /* height: 100%; */
  }
  #other-titles img,
  .otherTitlesContainer img {
    width: 28%;
    margin-top: 10px;
  }
  #other-titles div.img-group, 
  .otherTitlesContainer div.img-group {
    float: none;
    clear: both;
    width: 100%;
  }
}
@media (max-width: 500px) {
  #item-accordion dd img {
    width: 40%;
  }
}


/* LESS Document */
/* LESS Document */
/***** Variables*****/
/**Maroon*/
/**Blue*/
/**Green*/
/**Gray*/
/**Green*/
/**Blue*/
/**Green-Gray*/
/**Light Green*/
/**Blue*/
/***** Mixins*****/
/**Styles**/

/*.accordion a {
    color: #484c51;
}*/
/*#page-content .blinds ul {
    padding: 1em;
}
#page-content .blinds li {
    list-style-position: outside;
}*/
.corp-content #site-logo a {
  background: url(../img/logo-abc-clio-54px.png) no-repeat top left;
  width: 230px;
  height: 54px;
}
.greenwood-content #site-logo a {
  background: url(../img/logo-greenwood-39px.png) no-repeat top left;
  width: 230px;
  height: 54px;
}
.lu-content #site-logo a {
  background: url(../img/logo-lin_libunlimited-39px.png) no-repeat top left;
  width: 250px;
  height: 54px;
}
.praeger-content #site-logo a {
  background: url(../img/logo-praeger-39px.png) no-repeat top left;
  width: 250px;
  height: 54px;
}
.content-page #page-content {
  border-top: 4px solid #484c51;
  margin-top: 20px;
}
#page-content #content-page-intro {
  background: #f4f1f1;
  margin-top: 30px;
  padding: 20px;
}
#page-content #content-page-intro h1 {
  margin-top: 0;
  padding-top: 0;
}
#page-content #content-page-intro img {
  float: right;
  margin-left: 5%;
  width: 30%;
}
#page-content #content-page-intro .intro-wrap {
  width: 60%;
  float: left;
}
#page-content div.accordion-wrap {
  /*margin-top: 25px;*/
}
.content-page #page-content dl.accordion {
  width: 100%;
  background: #fff;
}
.content-page #page-content dt.headers {
  /*width: 60%;*/
    width: 68%;
  padding: 0;
  margin: 0;
}
.content-page #page-content dt.headers a {
  padding: 10px 20px;
  color: #fff;    
  font-size: 1.5rem;
  line-height: 1.5;
}
.content-page #page-content dt.headers.corporate {
  background: #484c51;
}
#page-content dl.blinds dd li {
    font-size: 100%;
    list-style: disc;
    list-style-position: outside;
}
#page-content dl.blinds dd li:before {
    content: none;
    font-size: 100%;
    margin-right: 0
}
#page-content .blinds ul {
    padding-left: 1em;
}
.content-page #page-content dt.headers.greenwood {
  background: #484c51;
}
.content-page #page-content dt.headers.lib-unlimited {
  background: #708457;
}
.content-page #page-content dt.headers.praeger {
  background: #484c51;
}
.content-page #page-content dd {
  background: #fff;
  margin: 0;
  padding-right: 0;
}
.content-page #page-content dl.openBlinds dd {
  background: none repeat scroll 0 0 #F4F1F1;
  margin: 0;
  padding-right: 0;
}
.content-page #page-content dd div.accordion-main {
  /*width: 60%;*/
    width: 68%;
  /*float: left;*/
  background: #f4f1f1;
}
.content-page #page-content dd div.accordion-main p {
  padding: 0 20px;
}

dl.openBlinds {
  /*margin: 1em 0;*/
  padding: 1em 0;
  background-color: transparent;
}
dl.openBlinds dt {
  width: auto !important;
  margin: 0;
  padding: .5em .5em .5em 3em;
  position: relative;
  border: none;
  cursor: pointer;
  /*font-weight:bold;*/
    font-size: 1.3rem;

}

dl.blinds {
  margin: 1em 0;
  padding: 0;
  background-color: transparent;
}
dl.blinds dt {
  width: auto !important;
  margin: 0;
  padding: .5em .5em .5em 3em;
  position: relative;
  border: none;
  cursor: pointer;
  /*font-weight:bold;*/
    font-size: 1.3rem;

}
dl.blinds dt:before {
  display: block;
  position: absolute;
  left: 1em;
  top: .6em;
  width: 1.1em;
  height: 1.1em;
  color: #fff;
  /*line-height: .9em;*/
  line-height: 1em;
  text-align: center;
  content: '+';
  background: #484c51;
}
dl.blinds dt.minus:before {
  content: '–';
}
dl.blinds dd,
dl.openBlinds dd {
  padding: 0 2em 0 3em !important;
}
#page-wrap #page-content dl.blinds dt,
#page-wrap #page-content dl.blinds dd {
  background: none;
    font-size: 1.5rem;
}
#page-wrap #page-content dl.blinds p {
  padding: 0;
}
div.accordion-aside {
  float: right;
  width: 33%;
    display: none;
}
div.aside-section {
  width: 100%;
  clear: both;
  margin-bottom: 1.5em;
}
div.accordion-aside img {
  width: 100%;
  height: auto;
}
#page-content div.side-box-content {
  padding: 20px;
  color: #fff;
  background: #434446;
}
#page-content div.side-box-content h1 {
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #fff;
  color: #fff;
}
#page-content div.side-box-content ul li:before {
  content: '•';
}

.normalList {
    margin-left: 36px;
    padding-bottom: 10px;
}
.normalList dl.blinds dd li:before {
    content: none;
    font-size: 100%;
    margin-right: 0;
}
.normalList li:before {
    content: none;
    font-size: 80%;
    font-weight: bold;
    margin-right: 10px;
}
.normalList dl.blinds dd li {
    font-size: 100%;
    list-style: disc inside none;
}
.normalList li {
    list-style: disc outside none;
    position: relative;
    font-size: 1.25em;
}
.openBlinds li div {
    display: inline-block;
    width: 93%;
}
.openBlinds ul {
    margin-left: 2rem;
}



@media (max-width: 800px) {
  #page-content #content-page-intro img {
    float: none;
    margin-left: 0;
    width: 100%;
    display: none;
  }
  #page-content #content-page-intro .intro-wrap {
    width: 100%;
    float: none;
  }
  .content-page #page-content dt.headers {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .content-page #page-content dd div.accordion-main {
    width: 100%;
    float: none;
    background: #f4f1f1;
  }
  div.accordion-aside {
    float: none;
    width: 100%;
  }
  .accordion {
    width: 100% !important;
    float: none;
    margin: 0 0 0 0;
  }
  .content-page #page-content dd div.accordion-main p {
    margin: 0;
    padding: 10px 20px 0 20px;
  }
  div.aside-section {
    margin-top: 20px;
  }
  div.side-box-content {
    float: right;
    width: 40%;
    padding: 10px 5%;
  }
  div.accordion-aside img {
    width: 40%;
    float: left;
  }
}
@media (max-width: 600px) {
  div.accordion-aside {
    float: none;
    width: 100%;
  }
  #page-content div.side-box-content {
    float: none;
    width: 90%;
    padding: 5%;
  }
  div.accordion-aside img {
    width: 100%;
    float: none;
  }
}




