﻿
@charset "utf-8";
/* CSS Document */

/* ---------------------------------------------------------
	
	* Filename:				default.css
	* Description: 			sets typography, basic grids, 
							and standard formstyles
	* Version:				1.0.0 (2012-06-16)
	* Author:				Ryan Martinez
	
	== INDEX ===============================================
	
	$__generic classes		classes used globally, should be at bottom to prevent semantic inheritance
	
------------------------------------------------------------*/


/*-------------------------------------*/
/* RESET */
/*-------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
    */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

html, button, input, select, textarea {
    font-family: sans-serif;
    color: #222;
}

/*
     * Remove text-shadow in selection highlight: h5bp.com/i
     * These selection declarations have to be separate
     * Also: hot pink! (or customize the background color to match your design)
     */

::-moz-selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

::selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

body {
    color: #444;
    font-size: 12px;
    line-height: 18px;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

/*-------------------------------------*/
/* HEADER STYLES */
/*-------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    display: block;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        font-weight: inherit;
    }

h1 {
    font-size: 38px;
    line-height: 54px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h2 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h3 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
    line-height: 36px;
    letter-spacing: normal;
}

h5 {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: normal;
}

h6 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: normal;
}

/* Module titles */
.Head {
    display: inline-block;
    margin-bottom: 6px;
}

/* Some old forge modules use .Head, .SubHead, .SubSubHead in table td, We keep this to be compatible */
td.Head, td.SubHead, td.SubSubHead {
    display: table-cell;
    margin-bottom: 0;
}

input[type="image"] + span.Head, input[type="image"] + span.SubHead {
    display: inline;
}

/*-------------------------------------*/
/* PARAGRAPH STYLES */
/*-------------------------------------*/
p {
    margin: 0 0 18px 0;
}
    /* margin bottom is equal to line-height */
    p img {
        margin: 0;
    }

em, i {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

small {
    font-size: 80%;
}

/* Set text size in modules*/
.Normal,
.NormalDisabled,
.NormalDeleted {
    color: #444;
    font-size: 12px;
    font-weight: normal;
    line-height: 18px;
    word-wrap: break-word;
}

/* disabled text styles */
.NormalDisabled,
.NormalDeleted {
    color: #999;
}



/* text style used for help text rendered by modules */
.Help {
    padding: 2px;
    border: #000 1px solid;
    background-color: #ff9;
    font-weight: normal;
    font-size: 11px;
    color: #000;
}
/* text style used for rendered text which requires emphasis */
.NormalBold {
    font-weight: bold;
    color: #222;
}

/* text style used for error messages */
.NormalRed {
    font-weight: bold;
    color: red;
}

/* text style used for rendered text which should appear deleted */
.NormalDeleted {
    text-decoration: line-through;
}

/*	Blockquotes  */
blockquote, blockquote p {
    font-size: 17px;
    line-height: 24px;
    color: #777;
    font-style: italic;
}

blockquote {
    margin: 0 0 20px;
    padding: 9px 20px 0 19px;
    border-left: 1px solid #ddd;
}

    blockquote cite {
        display: block;
        font-size: 12px;
        color: #555;
    }

        blockquote cite:before {
            content: "\2014 \0020";
        }

        blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {
            color: #555;
        }

hr {
    clear: both;
    margin: 17px 0 17px;
    height: 0;
    border: solid #ddd;
    border-width: 1px 0 0;
}

/*-------------------------------------*/
/* ANCHOR STYLES */
/*-------------------------------------*/
a, a:visited {
    color: rgb(2,139,255); /*blue*/
    text-decoration: underline;
    outline: 0;
}

    a:hover, a:focus, a:active {
        color: #222;
        outline: 0;
    }

p a, p a:visited {
    line-height: inherit;
}

/*-------------------------------------*/
/* IMAGE STYLES */
/*-------------------------------------*/
img.dnn-scale-img {
    max-width: 100%;
    height: auto;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

#dnn_dnnLOGO_imgLogo {
     border: 0;
}

/*-------------------------------------*/
/* lIST STYLES */
/*-------------------------------------*/
ul, ol {
    margin-bottom: 18px;
    margin-left: 18px;
}

ul {
    list-style: square outside;
}

ol {
    list-style: decimal;
}

    /* Nested Styles */
    ul ul, ul ol,
    ol ol, ol ul {
        margin-left: 18px;
        margin-bottom: 0;
    }

    ol ol {
        list-style: lower-roman;
    }

li p {
    line-height: 18px;
}

/*-------------------------------------*/
/* MESSAGE STYLES */
/*-------------------------------------*/
.dnnFormMessage {
    display: block;
    padding: 17px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(2,139,255,0.2); /* blue */
    background: rgba(2,139,255,0.15); /* blue */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    max-width: 100%;
}

    .dnnFormMessage.dnnFormError,
    .dnnFormMessage.dnnFormValidationSummary {
        background-color: rgba(255,0,0,0.15); /* red */
        border-color: rgba(255,0,0,0.2); /* red */
    }

    .dnnFormMessage.dnnFormWarning {
        background-color: rgba(255,255,0,0.15); /* yellow */
        border-color: #CDB21F; /* yellow */
    }

    .dnnFormMessage.dnnFormSuccess {
        background-color: rgba(0,255,0,0.15); /* green */
        border-color: rgba(0,255,0,0.5); /* green */
    }

/*-------------------------------------*/
/* TABLE STYLES */
/*-------------------------------------*/
.dnnTableHeader {
    display: block;
    padding: 15px;
    background: none repeat scroll 0 0 #E3E3E5;
}
.dnnTableHeader a,
.dnnTableHeader input, 
.dnnTableHeader select{
    margin: 0;
}
.dnnTableDisplay {
    margin-bottom: 18px;
    border: 1px solid #d1d1d1;
    border-left: 0;
    border-bottom: 0;
}

    .dnnTableDisplay td, .dnnTableDisplay th {
        padding: 5px 9px;
        border-bottom: 1px solid #d1d1d1;
    }

    .dnnTableDisplay th {
        padding: 0;
        border-left: 1px solid #d1d1d1;
        -webkit-box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
        box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
    }

        .dnnTableDisplay th > span,
        .dnnTableDisplay th > a {
            display: block;
            padding: 5px 9px;
        }

    .dnnTableDisplay td:first-child {
        border-left: 1px solid #cfcfcf;
    }

    .dnnTableDisplay label {
        display: inline;
        padding-left: 5px;
    }

    .dnnTableDisplay caption {
        display: none;
    }

    /* thead styles */
    .dnnTableDisplay th {
        background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
        background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
        text-align: left;
        text-shadow: 1px 1px 0px rgba(255,255,255,0.8);
        color: #333;
    }

        .dnnTableDisplay th a, .dnnTableDisplay th label {
            font-weight: normal;
            color: #333;
            text-decoration: none;
        }

        .dnnTableDisplay th a {
            padding: 8px 9px;
        }

            .dnnTableDisplay th a:hover {
                background: #fefefe; /* Old browsers */
                background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
                background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
                color: #333;
            }

            .dnnTableDisplay th a:active {
                border-color: #999;
                background: #c6c6c6; /* Old browsers */
                background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
                background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
                -webkit-box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
                box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
            }
    /* tbody styles */
    .dnnTableDisplay tr:nth-child(2n) td {
        background: rgba(0,0,0,0.04);
    }

    .dnnTableDisplay tr:hover td {
        background: rgba(2,139,255,0.15); /* blue */
    }

    /* tfooter styles */
    .dnnTableDisplay tfoot tr:hover td {
        background: none;
    }

/* table filter styles */
.dnnTableFilter {
    margin-bottom: 18px;
    background: rgba(0,0,0,0.04);
}

    .dnnTableFilter .dnnTableDisplay {
        margin-bottom: 0;
    }

.dnnFilterSet {
    padding: 18px;
}

    .dnnFilterSet label {
        display: inline-block;
    }

    .dnnFilterSet input,
    .dnnFilterSet select {
        display: inline-block;
        margin: 0 5px;
    }

/* table filter vertical styles */
.verticalFilter .dnnFilterSet {
    float: left;
    width: 20%;
    padding: 2% 18px;
}

.verticalFilter .dnnTableDisplay {
    float: right;
    width: 75%;
}

.verticalFilter input[type=search], .verticalFilter select, .verticalFilter input[type=text] {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box; /* Firefox */
    -webkit-box-sizing: border-box; /* Safari */
}

/*-------------------------------------*/
/* PAGINATION & RESULT STYLES */
/*-------------------------------------*/
.dnnResults {
    float: left;
    margin-bottom: 0;
}

.dnnPagination {
    float: right;
    margin: 0;
    padding: 0;
}

    .dnnPagination li {
        float: left;
        list-style: none;
    }

        .dnnPagination li a, .dnnPagination li span {
            display: inline-block;
            padding: 0 5px;
            text-decoration: none;
            color: #333;
        }

            .dnnPagination li a:hover {
                text-decoration: underline;
                color: #222;
            }

        .dnnPagination li span {
            color: #222;
            text-decoration: underline;
        }

/*-------------------------------------*/
/* FORM STYLES */
/*-------------------------------------*/

.dnnFormItem input[type="text"],
.dnnFormItem select,
.dnnFormItem textarea,
.dnnFormItem input[type="email"],
.dnnFormItem input[type="search"],
.dnnFormItem input[type="password"] {
    margin-bottom: 18px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 12px;
}

    .dnnFormItem input.aspNetDisabled,
    .dnnFormItem textarea.aspNetDisabled {
        background: #ebebeb;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #a7a7a7;
        border-width: 1px;
    }

.aspNetDisabled, a.aspNetDisabled,
.dnnDisabled, a.dnnDisabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: none;
}

/* Active and Focus States */
.dnnFormItem input[type="text"]:active, .dnnFormItem input[type="text"]:focus,
.dnnFormItem input[type="password"]:focus, .dnnFormItem input[type="password"]:active,
.dnnFormItem input[type="email"]:active, .dnnFormItem input[type="email"]:focus,
.dnnFormItem select:active, .dnnFormItem select:focus,
.dnnFormItem textarea:active, .dnnFormItem textarea:focus,
.dnnFormItem input[type="search"]:active, .dnnFormItem input[type="search"]:focus {
    background: #fff;
    border: 1px solid rgba(2,139,255,0.5); /* blue */
    -webkit-box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    color: #333;
}
/* Required Fields */
.required label:after,
legend.required:after {
    display: inline-block;
    margin-top: -2px;
    margin-left: 9px;
    padding: 1px 9px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: rgba(0,0,0,0.03);
    content: 'Required';
    font-weight: normal;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: italic;
    color: #777;
}

/* Error Styles */
.error label, legend.error {
    color: rgba(255,0,0,0.9); /* opaque red*/
}

.error input[type="text"],
.error select, .error textarea,
.error input[type="email"],
.error input[type="search"] {
    border: 1px solid rgba(255,0,0,0.6); /* opaque red*/
    color: rgba(255,0,0,0.7); /* opaque red*/
}

/*
	 * 1. Display hand cursor for clickable form elements
	 * 2. Allow styling of clickable form elements in iOS
	 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
	 */

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    display: inline-block;
    padding: 9px 9px;
    margin-bottom: 9px;
    cursor: pointer;
    min-width: 75px;
    *overflow: visible;
    border: 1px solid #c2c2c2;
    background: #eaeaea;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction {
    padding: 6px 6px;
}

/* Primary Action */

.dnnPrimaryAction, .dnnFormItem input[type="submit"], a.dnnPrimaryAction {
    border-color: #0D569E; /*dark blue*/
    background: #3792ED;
    background: -moz-linear-gradient(top, #358eea 0%, #2170cd 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#358eea), color-stop(100%,#2170cd)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #358eea 0%,#2170cd 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #358eea 0%,#2170cd 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    color: #efefef;
    text-shadow: 0px -1px 0px #185B93;
}

    .dnnPrimaryAction:hover, .dnnFormItem input[type="submit"]:hover, a.dnnPrimaryAction:hover {
        border-color: #0D569E;
        background: #6cb6f3; /* Old browsers */
        background: -moz-linear-gradient(top, #6cb6f3 0%, #4387d2 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6cb6f3), color-stop(100%,#4387d2)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* W3C */
        color: #fff;
    }

    .dnnPrimaryAction:active, .dnnFormItem input[type="submit"]:active, a.dnnPrimaryAction:active {
        border-color: #0D569E;
        background: #1f66be; /* Old browsers */
        background: -moz-linear-gradient(top, #1f66be 0%, #3085e0 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1f66be), color-stop(100%,#3085e0)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #1f66be 0%,#3085e0 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #1f66be 0%,#3085e0 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        color: #fff;
    }

    .dnnPrimaryAction[disabled], .dnnPrimaryAction[disabled]:hover, .dnnPrimaryAction[disabled]:active {
        background: #ccc !important;
        border: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        color: #aaa !important;
        text-shadow: none;
    }

/* Secondary Action */
.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnSecondaryAction,
a.dnnSecondaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    background: #f5f5f5; /* Old browsers */
    background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
    background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    text-shadow: 0px 1px 0px #ffffff;
    color: #333;
}

    .dnnFormItem button:hover, .dnnFormItem input[type="button"]:hover,
    .dnnFormItem input[type="reset"]:hover,
    .dnnSecondaryAction:hover,
    a.dnnSecondaryAction:hover,
    ul.dnnAdminTabNav li a:hover,
    .dnnLogin .LoginTabGroup span:hover {
        background: #fefefe; /* Old browsers */
        background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
        background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
        color: #555;
    }

    .dnnFormItem button:active,
    .dnnFormItem input[type="button"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnSecondaryAction:active,
    a.dnnSecondaryAction:active,
    ul.dnnAdminTabNav li a:active {
        border-color: #999;
        background: #c6c6c6; /* Old browsers */
        background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
        background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
    }

/* Fix some old forge modules use .dnnPrimaryAction and .dnnSecondaryAction in wrong way */
span.dnnPrimaryAction > input[type="image"],
span.dnnSecondaryAction > input[type="image"] {
    display: none;
}

span.dnnPrimaryAction > a.dnnPrimaryAction,
span.dnnSecondaryAction > a.dnnSecondaryAction {
    display: inline;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Tertiary Action */
.dnnTertiaryAction, a.dnnTertiaryAction {
    padding: 10px 10px;
    border: none;
    background: #eaeaea;
    color: #333;
}

    .dnnTertiaryAction:hover, a.dnnTertiaryAction:hover {
        background: #f2f2f2;
    }

    .dnnTertiaryAction:active, a.dnnTertiaryAction:active {
        background: #d8d8d8;
    }

/* Action Button behind input */
.dnnFormItem input[type="text"] + a.dnnPrimaryAction,
.dnnFormItem input[type="text"] + a.dnnSecondaryAction,
.dnnFormItem input[type="text"] + a.dnnTerriaryAction { 
    margin-left: 5px;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    margin: 5px;
}

/* text style for buttons and link buttons used in the portal admin pages */

/* button style for standard HTML buttons */
.StandardButton {
    border: 1px solid blue;
}


/* Re-set default cursor for disabled elements */
.dnnFormItem button[disabled],
.dnnFormItem input[disabled] {
    cursor: default;
    opacity: 0.5;
}


/* Consistent box sizing and appearance */
.dnnFormItem input[type="checkbox"],
.dnnFormItem input[type="radio"] {
    *width: 13px;
    *height: 13px; /*why are we using hacks here*/
    padding: 0;
    box-sizing: border-box;
}

.dnnFormItem input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

    .dnnFormItem input[type="search"]::-webkit-search-decoration,
    .dnnFormItem input[type="search"]::-webkit-search-cancel-button {
        -webkit-appearance: none;
    }


/* Remove inner padding and border in FF3/4: h5bp.com/l */
.dnnFormItem button::-moz-focus-inner, .dnnFormItem input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
	 * 1. Remove default vertical scrollbar in IE6/7/8/9
	 * 2. Allow only vertical resizing
	 */

.dnnFormItem textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

    /* Colors for form validity */
    .dnnFormItem input:valid, .dnnFormItem textarea:valid {
    }

    .dnnFormItem input:invalid, .dnnFormItem textarea:invalid {
        background-color: #f0dddd;
    }

/*-------------------------------------*/
/* TAXONOMY */
/*-------------------------------------*/

/* Horizontal taxonomy styles */
.horizontal ul.categories,
.horizontal ul.tags {
    list-style: none;
}

.horizontal ul.categories {
}

.horizontal ul.tags {
}

    .horizontal ul.categories li, .horizontal ul.tags li {
    }

        .horizontal ul.tags li.add-tags {
        }

            .horizontal ul.tags li.add-tags img {
            }

/* Vertical taxonomy styles */
.vertical ul.categories,
.vertical ul.tags {
    list-style: none;
}

    .vertical ul.categories li,
    .vertical ul.tags li {
    }

    .vertical ul.categories li {
    }

    .vertical ul.tags li {
    }

        .vertical ul.tags li.add-tags {
        }

            .vertical ul.tags li.add-tags img {
            }

/*-------------------------------------*/
/* TABS : JQUERY UI TABS 1.8.14 */
/*-------------------------------------*/
/* Tabs */
ul.dnnAdminTabNav {
    display: inline-block;
    margin-top: 5px;
    margin-left: 0;
    width: 100%;
    min-height: 37px;
    border-bottom: 1px solid #c2c2c2;
}

    ul.dnnAdminTabNav li {
        float: left;
        margin-right: 4px;
        list-style: none;
    }

        ul.dnnAdminTabNav li a {
            /* most styles are inherited from typography.css */
            margin-bottom: 0;
            border-bottom: 0;
            box-shadow: none;
            webkit-box-shadow: none;
            -webkit-border-radius: 3px 3px 0px 0px;
            border-radius: 3px 3px 0px 0px;
        }

        ul.dnnAdminTabNav li.ui-tabs-active a {
            margin-top: -3px;
            padding: 12px 9px 10px 9px;
            background: #fff;
        }

/* Panels */
.ui-tabs .ui-tabs-panel {
    position: relative;
    display: block;
}

.ui-tabs .ui-tabs-hide {
    display: none;
}

/*-------------------------------------*/
/* LOGIN TAB GROUP */
/*-------------------------------------*/
.dnnLogin .LoginTabGroup {
    display: inline-block;
    width: 100%;
    height: 37px;
    margin-left: 0;
    margin-top: 5px;
    border-bottom: 1px solid #C2C2C2;
}

    .dnnLogin .LoginTabGroup span {
        margin-right: 4px;
        margin-bottom: 0;
        border-bottom: 0 none;
        border-radius: 3px 3px 0 0;
        box-shadow: none;
    }

        .dnnLogin .LoginTabGroup span.LoginTabSelected {
            margin-top: -3px;
            padding: 12px 9px 10px;
            background: none repeat scroll 0 0 #FFFFFF;
        }

/*-------------------------------------*/
/* TABS : JQUERY UI RESIZABLE 1.8.14 */
/*-------------------------------------*/
.dnnForm .ui-resizable {
    position: relative;
}

.dnnForm .ui-resizable-handle {
    position: absolute;
    display: block;
    z-index: 99999;
    font-size: 0.1px;
}

.dnnForm .ui-resizable-disabled .ui-resizable-handle,
.dnnForm .ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

.dnnForm .ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

.dnnForm .ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

.dnnForm .ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.dnnForm .ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

.dnnForm .ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

.dnnForm .ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}
/*	

/*-------------------------------------*/
/* FORM ITEMS
/*-------------------------------------*/
.dnnForm {
    width: 100%;
}

    .dnnForm fieldset {
        clear: none;
        position: relative;
        margin-bottom: 18px;
        text-align: left;
    }

        .dnnForm fieldset fieldset {
            width: 100%;
        }

    .dnnForm .dnnFormItem {
        clear: both;
        width: 100%;
        display: block;
        position: relative;
        text-align: left;
    }

/* Label */
.dnnTooltip {
    position: relative;
    display: block;
    width: 32.075%;
    margin-right: 18px;
}

.dnnHelperTip {
    position: relative;
    display: block;
}

.dnnDragdropTip {
    z-index: 10000;
    position: absolute;
    width: auto !important;
    height: auto !important;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.75) url("/images/pin-icn.png") no-repeat 7px 12px;
    font-size: 11px;
    color: #DDD;
    text-align: left;
}

span.dnnFormRequired:after,
div.dnnFormItem.dnnFormRequired > div.dnnLabel span:after {
    content: "*";
    display: inline-block;
    margin: 0 0 0 5px;
    color: Red;
    font-size: 16px;
    line-height: 1em;
    font-weight: bold;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    display: inline-block;
    width: auto;
    margin: 6px 5px 6px 5px;
}

/* Help Label */
a.dnnFormHelp,
.dnnForm .dnnFormItem a.dnnFormHelp,
.dnnTooltip label a.dnnFormHelp {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

a.dnnFormHelp {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 2px;
    width: 14px;
    height: 15px;
    background: url("/images/helpI-icn-grey.png") no-repeat left 2px;
    padding: 0 !important;
    margin: 0 !important;
}

.dnnLabel {
    display: inline-block;
    float: left;
    position: relative;
    width: 32.075%;
    padding-right: 20px;
    margin-right: 18px;
    overflow: visible;
    text-align: right;
}

.dnnFormItem > .dnnLabel {
    margin-top: 5px;
}

.dnnLabel > span {
    text-align: right;
}

.dnnForm .dnnFormItem a.dnnFormHelp span {
    position: relative;
}

.dnnForm .dnnFormItem a.dnnFormHelp img {
    display: block;
}

.dnnLabel + span {
    display: inline-block;
    margin-top: 6px;
    margin-bottom: 6px;
    white-space: pre-line;
}

/* Compatible with some old forge modules */
td > .dnnLabel {
    width: 220px;
}

/* Help tooltip */
.dnnTooltip .dnnFormHelpContent,
.dnnHelperTip .dnnFormHelpContent {
    visibility: hidden;
    z-index: 10;
    position: absolute;
    width: 200px;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0,0,0,0.75);
    font-size: 11px;
    color: #ddd;
    text-align: left;
}

.dnnFormHelpContent span {
    display: block;
	word-wrap: break-word;
}

/*.dnnTooltip .dnnFormHelpContent span:after,
.dnnHelperTip .dnnFormHelpContent span:after {
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}*/

.dnnTooltip .dnnFormHelpContent .dnnHelpText {
    word-wrap: break-word;
}

.bottomArrow:after
{
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}
.topArrow:before {
    position: absolute;
    content: "";
    left: 15px;
    top: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #000;
}

a.pinHelp {
    display: block;
    position: absolute;
    left: 7px;
    top: 12px;
    width: 15px;
    height: 15px;
    opacity: 0.5;
    background: url("/images/pin-icn.png") no-repeat 0 0;
}

    .ui-draggable a.pinHelp,
    a.pinHelp:hover {
        opacity: 1;
    }

/* Error tooltip */
.dnnFormItem span.dnnFormMessage.dnnFormError {
    display: block;
    position: absolute;
    overflow: visible;
    /*top:-95%; right: 12%;*/
    bottom: 95%;
    right: 12%;
    width: 200px;
    margin-bottom: 0;
    padding: 10px;
    border: none;
    border-radius: 3px;
    background: rgba(255,0,0,0.75);
    font-size: 12px;
    color: #fff;
    text-align: left;
}

    .dnnFormItem span.dnnFormMessage.dnnFormError:after {
        position: absolute;
        bottom: -7px;
        left: 15px;
        content: "";
        width: 0;
        height: 0;
        opacity: 0.75;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid red;
    }

/* Input Types*/
.dnnFormItem input[type="text"],
.dnnFormItem input[type="password"],
.dnnFormItem input[type="email"],
.dnnFormItem input[type="tel"],
.dnnFormItem select,
.dnnFormItem textarea {
    width: 45%;
    max-width: 445px;
}

.dnnFormItem select {
    width: 47%;
}

    .dnnFormItem select option {
        color: #333;
    }

.dnnFormItem table {
    background: none;
}

/* Input Customised Checkbox*/

.dnnCheckbox {
    display: inline-block;
    cursor: pointer;
}

    .dnnCheckbox .mark {
        display: inline-block; /*margin-top: 3px;*/
    }

    .dnnCheckbox img {
        display: inline-block;
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnCheckbox img {
        background: transparent url("/images/checkbox.png") no-repeat;
    }

    .dnnCheckbox img {
        background-position: 0px 0px;
    }

.dnnCheckbox-hover img {
    background-position: 0px 0px;
}

.dnnCheckbox-checked img {
    background-position: -51px 0px;
}

.dnnCheckbox-disabled {
    cursor: not-allowed;
}

.dnnCheckbox-disabled img {
    opacity: .5;
}

.dnnCheckbox-checked-error img {
    background-position: -150px 0px;
}

.dnnCheckbox-error img {
    background-position: -100px 0px;
}
.dnnCheckbox-focus {
	background-color: #e3e3e5;
}
.dnnBoxLabel{ display: inline-block;}
/* normal checkbox fix */
.dnnFormItem input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 8px 0 4px 0;
}

/* Input Customised Radiobutton */

.dnnRadiobutton {
    display: inline-block;
    cursor: pointer;
}

    .dnnRadiobutton .mark {
        display: inline-block;
    }

    .dnnRadiobutton img {
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnRadiobutton img {
        background: transparent url("/images/radiobutton.png") no-repeat;
    }

    .dnnRadiobutton img {
        background-position: 0px 0px;
    }

.dnnRadiobutton-hover img {
    background-position: 0px 0px;
}

.dnnRadiobutton-checked img {
    background-position: -50px 0px;
}

.dnnRadiobutton-disabled img {
    opacity: .5;
}

.dnnRadiobutton-checked-error img {
    background-position: -150px 0px;
}

.dnnRadiobutton-error img {
    background-position: -100px 0px;
}
.dnnRadiobutton-focus {
	background-color: #e3e3e5;
}
/* Input RadioButton group */
div.dnnFormRadioButtons,
div.dnnHSRadioButtons,
span.dnnFormRadioButtons,
span.dnnHSRadioButtons {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
}

table.dnnFormRadioButtons {
    background-color: #f0f0f0;
    margin-bottom: 5px;
}

.RadComboBox_Default .rcbInput {
    width: 100% !important;
}

/* general group*/
div.dnnFormGroup {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
    width: 65%;
}

/* Input Customised Spinner */
.dnnSpinner {
    display: inline-block;
    position: relative;
    width: 150px;
    padding: 6px 6px;
    *overflow: visible;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
}

.dnnFormItem .dnnSpinner {
    width: 45%;
    margin-bottom: 18px;
}

.dnnSpinnerDisplay {
    margin: 0 25px 0 8px;
    background: transparent;
    color: #999;
}

.dnnFormItem .dnnSpinnerDisplay > input[type="text"],
.dnnFormItem .dnnSpinnerDisplay > input[type="text"]:focus {
    border: none;
    margin: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

.dnnSpinnerCtrl {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    background-color: transparent;
    border-left: 1px solid #c9c9c9;
}

    .dnnSpinnerCtrl > a.dnnSpinnerTopButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerUpArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

    .dnnSpinnerCtrl > a.dnnSpinnerBotButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

/* Input Customised Tags */
div.dnnTagsInput {
    display: inline-block;
    margin: 0;
    padding: 5px 0 0 5px;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #FFF;
    -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

.dnnFormItem .dnnTagsInput {
    width: 45%;
}

div.dnnTagsInput span.tag {
    display: block;
    float: left;
    padding: 2px 6px 2px 6px;
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    color: #888;
    cursor: pointer;
    background-color: #eee;
    word-break: break-word;
}

    div.dnnTagsInput span.tag:hover {
        background-color: #e8f1fa;
        color: #444;
    }

    div.dnnTagsInput span.tag a {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin: 6px 0 0 0;
        background: transparent url("/images/dnnTagClose.png") no-repeat;
        background-position: center;
    }

div.dnnTagsInput > div > input,
div.dnnTagsInput > div > input:focus {
    border: none;
    background: transparent;
    outline: none;
    font-weight: normal;
    font-family: helvetica;
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    height: 19px;
    padding: 3px 0 3px 3px;
    margin-bottom: 5px;
}

div.dnnTagsInput > div > input::-ms-clear {
  display: none;
}

div.dnnTagsInput div {
    display: block;
    float: left;
}

    div.dnnTagsInput div.dnnTags_filter {
        float: right;
        position: relative;
        margin: 0 0 5px 5px;
    }

        div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label {
            display: inline-block;
            border-left: 1px solid #ccc;
            padding: 3px 15px 0 10px;
            margin-right: 3px;
            color: #999;
            cursor: pointer;
            background: url("/images/dnnSpinnerDownArrow.png") no-repeat;
            background-position: right center;
            height: 22px;
        }

            div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label.dnnExpanded {
                color: #666;
                background: url("/images/dnnSpinnerUpArrow.png") no-repeat;
                background-position: right center;
            }

        div.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl {
            display: none;
            position: absolute;
            list-style-type: none;
            background: #fff;
            border: 1px solid #c9c9c9;
            right: 22px;
            top: 28px;
            margin: 0;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            -webkit-box-shadow: 0px 2px 0px 0px #bbb;
            box-shadow: 0px 2px 0px 0px #bbb;
            z-index: 15;
        }

.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li {
    white-space: nowrap;
    padding: 6px 12px 6px 8px;
    border-top: 1px solid #c9c9c9;
    list-style: none;
    color: #666;
    min-width: 150px;
}

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:first-child {
        border-top: none;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:hover {
        background-color: #e8f1fa;
        color: #333;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > input {
        display: inline-block;
        vertical-align: top;
        margin-right: 10px;
        cursor: pointer;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > span.dnnCheckbox {
        margin-right: 8px;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > label {
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
    }

div.dnnTagsInput div.dnnTags_filter a.dnnSearchButton {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("/images/search/searchButton.png");
    background-repeat: no-repeat;
    background-position: center center;
    vertical-align: top;
    cursor: pointer;
    margin: 4px 5px 0 4px;
}

.dnnTagsClear {
    clear: both;
    width: 100%;
    height: 0px;
}

div.dnnTagsInput > div > input.dnnTagsInvalid {
    display: block;
    float: left;
    margin-right: 5px;
    border: none;
    outline: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #FBD8DB; /*light red*/
    cursor: pointer;
    font-size: 12px;
    color: #90111A !important; /* dark red*/
    text-decoration: none; 
}

/* DNN Auto Complete */
.dnn_acResults {
    padding: 0px;
    border: 1px solid #c9c9c9;
    background-color: #fff;
    overflow: hidden;
    z-index: 900001;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    min-width: 150px;
}

    .dnn_acResults ul {
        margin: 0px;
        padding: 0px;
        list-style-position: outside;
        list-style: none;
    }

        .dnn_acResults ul li {
            margin: 0px;
            padding: 6px 22px 6px 22px;
            border-top: 1px solid #c9c9c9;
            color: #666;
            cursor: pointer;
            display: block;
            overflow: hidden;
            color: #333;
        }

            .dnn_acResults ul li:first-child {
                border-top: none;
            }

.dnn_acLoading {
}

.dnn_acSelect {
    background-color: #e8f1fa;
    color: #333;
}

/* Form Item */
.dnnFormMessage .dnnLabel {
    float: none;
    width: 90%;
    text-align: left;
}

/* Pane header */
.dnnFormSectionHead span {
    font-size: 18px;
    color: #222;
}

/* Progressbar*/
.dnnProgressbar {
    height: 25px !important;
    padding: 18px 10px 0 10px;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #f0f2f1 0%, #fff 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f2f1), color-stop(100%,#fff)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f0f2f1 0%,#fff 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #f0f2f1 0%,#fff 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
    box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
}

.ui-progressbar {
    height: 10px !important;
    overflow: hidden;
    background-color: #ccc;
    -webkit-box-shadow: inset 0px 1px 0px 0px #bbb;
    box-shadow: inset 0px 1px 0px 0px #bbb;
    text-align: left;
}

    .ui-progressbar .ui-progressbar-value {
        margin: 0;
        height: 100%;
        background-color: #1a82f7;
        background: -moz-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(0%,#2b7fda), color-stop(100%,#3fbdff)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* W3C */
    }

/* Button Dropdown */
.dnnDropdownSettings {
    position: relative;
    height: 30px !important;
}

.dnnButtonDropdown {
    width: 50px;
    height: 30px !important;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
}

.dnnButtonIcon, .dnnButtonArrow {
    display: inline-block;
    height: 30px !important;
}

.dnnButtonIcon {
    width: 32px;
}

.dnnButtonArrow {
    width: 10px;
    background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat center;
}

.dnnButtonDropdown-clicked {
    z-index: 100;
    position: absolute;
    width: 50px;
    height: 30px !important;
    background: #fff;
    border: 1px solid #c9c9c9;
    border-bottom: 1px solid #fff;
    -webkit-border-top-left-radius: 3px;
    border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    border-top-right-radius: 3px;
}

.dnnButtonDropdown-ul {
    display: none;
    position: absolute;
    z-index: 99;
    top: 29px;
    left: 0;
    width: 200px;
    margin-left: 0;
    background: #fff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    list-style-type: none;
}

    .dnnButtonDropdown-ul > li, .dnnButtonDropdown-ul > ul > li {
        padding: 8px;
        border-bottom: 1px solid #c9c9c9;
        color: #333;
        cursor: pointer;
        vertical-align: middle;
        list-style: none;
        margin: 0;
    }
	.dnnButtonDropdown-ul > ul{ margin: 0;}
	.dnnButtonDropdown-ul > ul > li{ padding-left: 16px;}

        .dnnButtonDropdown-ul > li:last-child {
            border-bottom: none !important;
        }

        .dnnButtonDropdown-ul > li:hover {
            background-color: #e8f1fa;
            color: #000;
        }

/* Button Group */
ul.dnnButtonGroup {
    display: inline-block;
    margin: 0;
    padding: 0;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
    list-style: none;
}

    ul.dnnButtonGroup > li {
        display: block;
        float: left;
        border-left: 1px solid #c9c9c9;
        margin: 0;
    }

        ul.dnnButtonGroup > li:hover {
            background-color: #e8f1fa;
        }

        ul.dnnButtonGroup > li.dnnButtonGroup-first {
            display: none;
        }

            ul.dnnButtonGroup > li.dnnButtonGroup-first + li {
                border-left: none;
            }

        ul.dnnButtonGroup > li > a {
            display: inline-block;
            padding: 7px 7px 6px 7px;
            text-decoration: none;
            color: #333;
        }

    ul.dnnButtonGroup span {
        color: #333;
    }


/* Grouped Multi Input */
.dnnFormItem .dnnInputGroup {
    float: left;
    display: block;
    width: 32.075%;
    padding: 5px;
    margin-bottom: 18px;
    background: rgba(0,0,0,0.05); /* opaque black */
}

    .dnnFormItem .dnnInputGroup .dnnLeft {
        width: 100%;
    }

    .dnnFormItem .dnnInputGroup span {
        display: inline-block;
        width: 33%;
        text-align: right;
    }

/* Error Styles */
.dnnFormError label a span {
    color: red;
}

.dnnFormError input[type="text"],
.dnnFormError input[type="password"],
.dnnFormError input[type="email"],
.dnnFormError input[type="tel"],
.dnnFormError select,
.dnnFormError textarea {
    border: 1px solid red;
}


/* Tertiary Actions */
.dnnFormItem input[type="text"] + .dnnTertiaryAction,
.dnnFormItem input[type="password"] + .dnnTertiaryAction,
.dnnFormItem input[type="email"] + .dnnTertiaryAction,
.dnnFormItem input[type="tel"] + .dnnTertiaryAction,
.dnnFormItem select + .dnnTertiaryAction {
    display: inline-block;
    max-width: 60px;
}

/* Information Feedback Aside */
.dnnForm fieldset.dnnFormInformation {
    float: left;
    width: 32.075%;
    margin-left: 16px;
    padding: 18px 0;
    background: rgba(0,0,0,0.05);
}

.dnnFormItem textarea {
    min-height: 80px;
}

.dnnAddress input[type="checkbox"] {
    margin: 0 5px;
}

/* Required Fields */
.dnnFormRadioButtons {
    float: left;
    display: block;
    width: auto;
}

    .dnnFormRadioButtons input[type=radio] {
        float: none;
    }

    .dnnFormRadioButtons label,
    .dnnFormItem input[type=radio] + label {
        float: none;
        display: inline;
        width: auto;
        padding-right: 0;
        margin: 0 10px 0 0;
        text-align: left;
        font-weight: normal;
    }

/* Text Editor */
.dnnTextEditor {
    margin-bottom: 18px;
}

/* Action Items */
.dnnActions {
    float: none;
    clear: both;
    display: block; /* prevent ul from collapsing */
    margin: 0;
    padding-top: 18px;
    text-align: left;
}

    .dnnActions li {
        float: left;
        margin-right: 5px;
        list-style: none;
    }

.dnnLoginActions {
    display: inline-block;
}

/* Short Form */
.dnnForm.dnnShortForm .dnnFormItem label {
    float: none;
    width: 100%;
    margin-bottom: 0.25em;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem input,
.dnnForm.dnnShortForm .dnnFormItem select,
.dnnForm.dnnShortForm .dnnFormItem textarea {
    float: none;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem a.dnnFormHelp {
    background-position: left;
    padding-left: 22px;
}

/* UI Helpers */
.dnnForm .ui-helper-hidden {
    display: none;
}

.dnnForm .ui-helper-hidden-accessible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
}

/* Interaction Cues */
.dnnForm .ui-state-highlight,
.dnnForm .ui-widget-content .ui-state-highlight,
.dnnForm .ui-widget-header .ui-state-highlight {
    border: 1px solid #fed22f;
    background: #ffe45c;
    color: #363636;
}

    .dnnForm .ui-state-highlight a,
    .dnnForm .ui-widget-content .ui-state-highlight a,
    .ui-widget-header .ui-state-highlight a {
        color: #363636;
    }

.dnnForm .ui-state-error,
.dnnForm .ui-widget-content .ui-state-error,
.dnnForm .ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #b81900;
    color: #ffffff;
}

    .dnnForm .ui-state-error a,
    .dnnForm .ui-widget-content .ui-state-error a,
    .dnnForm .ui-widget-header .ui-state-error a {
        color: #ffffff;
    }

.dnnForm .ui-state-error-text,
.dnnForm .ui-widget-content .ui-state-error-text,
.dnnForm .ui-widget-header .ui-state-error-text {
    color: #ffffff;
}

.dnnForm .ui-priority-primary,
.dnnForm .ui-widget-content .ui-priority-primary,
.dnnForm .ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.dnnForm .ui-priority-secondary,
.dnnForm .ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}

.dnnForm .ui-state-disabled,
.dnnForm .ui-widget-content .ui-state-disabled,
.dnnForm .ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none;
}

.dnnForm .ui-draggable {
    cursor: move;
}

/* Corner radius */
.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-left,
.dnnForm .ui-corner-tl {
    border-radius: 4px;
}

.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-right,
.dnnForm .ui-corner-tr {
    border-radius: 4px;
}
/*-------------------------------------*/
/* MODULE TITLE - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.ModuleTitle_MenuContainer {
    border: 1px solid blue;
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/*-------------------------------------*/
/* MAIN MENU - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.MainMenu_MenuContainer {
    border: 1px solid green;
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/*-------------------------------------*/
/* POPUP */
/*-------------------------------------*/

/* Popup Menu */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
	z-index: 9999;
}

.dnnFormPopup {
    position: absolute;
    padding: 18px;
    background: #fff;
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
	z-index: 100000;
}
    /* Popup header */
    .dnnFormPopup, .dnnFormPopup > * {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    .dnnFormPopup .ui-dialog-titlebar {
        position: relative;
        padding: 0 0 18px 0;
        border-bottom: 1px solid #ddd;
        cursor: move;
        font-size: 18px;
        font-weight: bold;
    }

    .dnnFormPopup .dnnModalCtrl {
        display: block;
        position: absolute;
        top: -30px;
        right: -30px;
        width: 69px;
        height: 26px;
        border-radius: 10px;
        background-color: #fff;
        -webkit-border-radius: 10px;
        box-shadow: 0px 0px 5px #666;
    }

        .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close {
            float: right;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 4px 0 1px;
            overflow: hidden;
            -webkit-border-top-right-radius: 8px;
            -webkit-border-bottom-right-radius: 8px;
	        border: none;
	        outline: none;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            background: #585858 url("/images/closeBtn.png") no-repeat;
            background-position: 8px 4px;
            text-indent: -9999em;
	        min-width: 0 !important;
        }

            .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close:hover {
                background: #358EEA url("/images/closeBtn.png") no-repeat;
                background-position: 8px 4px;
	            cursor: pointer;
            }

        .dnnFormPopup .dnnModalCtrl a.dnnToggleMax {
            float: left;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 0 0 4px;
            overflow: hidden;
            -webkit-border-top-left-radius: 8px;
            -webkit-border-bottom-left-radius: 8px;
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
            background: #585858 url("/images/resizeBtn.png") no-repeat;
            background-position: 10px 2px;
            text-indent: -9999em;
        }

            .dnnFormPopup .dnnModalCtrl a.dnnToggleMax:hover {
                background: #358EEA url("/images/resizeBtn.png") no-repeat;
                background-position: 10px 2px;
            }

div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: block;
    position: absolute;
    top: -30px;
    right: -30px;
    height: 24px;
    width: 24px;
    margin: 0px;
    overflow: hidden;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background: #585858 url("/images/closeBtn.png") no-repeat;
    background-position: 4px 4px;
    border: 3px solid #fff;
    text-indent: -9999em;
	min-width: 0 !important;
}

/* Poup Iframe styles*/
.dnnFormPopup #iPopUp {
    width: 100%!important; /* to overwrite inline javscript styles */
    padding-top: 10px;
}

.dnnFormPopup .ui-dialog-content, #iPopUp .ui-dialog-content {
    position: relative;
    border: 0;
    padding: 0px;
    overflow: auto;
    background: #fff;
    zoom: 1;
}

.dnnFormPopup .ui-dialog-buttonpane {
    margin: .5em 0 0 0;
    padding: .3em 1em 0em 0em;
    overflow: hidden;
    border-width: 1px 0 0 0;
    background-image: none;
    text-align: left;
    border-top: 1px solid #ddd;
}

    .dnnFormPopup .ui-dialog-buttonpane button {
        margin: 0.5em 0.4em 0.5em 0em;
        padding: 0.5em 1em;
        cursor: pointer;
        border: none;
        outline: none;
    }

.dnnFormPopup .ui-resizable-se {
    float: right;
    height: 24px;
    width: 24px;
    background: url("/images/modal-resize-icn.png") no-repeat bottom;
}

.dnnFormPopup .dnnDialog {
    padding: 10px;
}

.dnnLoading {
    background: #fff url("/images/loading.gif") no-repeat center center;
    position: absolute;
    z-index: 9999;
}
.dnnPanelLoading {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -ms-opacity: 0.7;
    opacity: 0.7;
}

/*-------------------------------------*/
/* URL ACTION */
/*-------------------------------------*/
.urlControl label {
    width: auto;
    margin-top: 0;
    font-weight: normal;
}

.urlControlLinkType {
    width: auto;
}

    .urlControlLinkType span,
    .dnnFormItem .urlControlLinkType span {
        float: none;
        display: block;
        width: auto;
        text-align: left;
    }

.dnnFormItem .ucLinkTypeRadioButtons label {
    display: inline-block;
    width: 260px;
    padding-right: 0;
    margin-top: 0;
    font-weight: normal;
    text-align: left;
}

.urlControlLinkType span input {
    min-width: 3%;
}

.dnnForm.dnnModuleSettings .dnnFormItem .urlControlLinkType span label {
    text-align: left;
}

.urlControlFileRow {
    clear: both;
}

    .urlControlFileRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlFileRow select, .urlControlFileRow input[type=file] {
        clear: both;
    }

.urlControlImagesRow {
    overflow: hidden;
    clear: both;
}

    .urlControlImagesRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlImagesRow select {
        clear: both;
    }

/*-------------------------------------*/
/* WIZARD TABS STEPS
/*-------------------------------------*/

/* Jquery UI tabs base */
.dnnWizardTab.ui-tabs {
    position: relative;
    padding: 0;
}

    .dnnWizardTab.ui-tabs .ui-tabs-nav {
        display: block;
        height: 46px;
        margin: 0;
        padding: 0;
        background: transparent url("/images/InstallWizardBG.png") repeat-x;
    }

        .dnnWizardTab.ui-tabs .ui-tabs-nav li {
            float: left;
            position: relative;
            margin: 0;
            padding: 0;
            border-bottom: 0 !important;
            list-style: none;
            white-space: nowrap;
        }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active {
                margin-bottom: 0;
            }

                .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
                .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
                .ui-tabs .ui-tabs-nav li.ui-state-processing a {
                    cursor: text;
                }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li a,
            .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
                cursor: pointer;
            }

    .dnnWizardTab.ui-tabs .ui-tabs-panel {
        clear: both;
        display: block;
        padding: 3em 1em 1.4em;
        border-width: 0;
        background: none;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-hide {
        display: none !important;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-nav li a {
        display: block;
    }

.dnnWizardStep > span {
    display: block;
    float: left;
}

.dnnWizardStep {
    height: 46px;
    padding: 0 0 0 20px;
    background: transparent url("/images/InstallWizardBG.png") repeat-x;
    background-position: 0 0;
    cursor: pointer;
}

.ui-tabs .ui-tabs-nav li:first-child .dnnWizardStep {
    padding-left: 30px;
}

.dnnWizardStepNumber {
    margin: 10px 10px 0 0;
    padding: 3px 8px 3px 8px;
    background-color: #999;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    color: #fff;
    font-weight: bold;
}

.dnnWizardStepTitle {
    margin: 13px 20px 0 0;
    color: #999;
    font-weight: bold;
    text-decoration: none;
}

.dnnWizardStepArrow {
    width: 25px;
    height: 46px;
    background: transparent url("/images/InstallWizardBG.png") no-repeat;
    background-position: 0 -401px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStep {
    height: 46px;
    background-position: 0 -100px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepNumber {
    background-color: #333;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepTitle {
    color: #333;
}

.dnnFormExpandContent {
    margin: 10px 0;
}

    .dnnFormExpandContent > a {
        color: #333;
        font-size: 13px;
        font-weight: bold;
    }
/*-------------------------------------*/
/* DNN SIMPLE GRID
/*-------------------------------------*/

table.dnnPermissionsGrid,
table.dnnGrid,
table.dnnASPGrid {
    margin-bottom: 20px;
    border: 1px solid #c9c9c9;
}

    table.dnnPermissionsGrid {
        color: #777;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td {
        padding: 4px 4px 4px 4px;
        vertical-align: middle;
        line-height: 120%;
        text-align: center;    
    }

    table.dnnPermissionsGrid tr.dnnGridItem td,
    table.dnnPermissionsGrid tr.dnnGridAltItem td {
        padding: 5px 4px 5px 4px;
        border-top: 1px solid #c9c9c9;
        border-bottom: 1px solid #c9c9c9;
        width: 70px;
        text-align: center;
    }

    table.dnnPermissionsGrid tr.dnnGridItem td.permissionHeader,
    table.dnnPermissionsGrid tr.dnnGridAltItem td.permissionHeader {
        border-right: 1px solid #c9c9c9;
        text-align: left;
        padding-left: 10px;
        width: 150px;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td.permissionHeader {
        padding-left: 10px;
        text-align: left;
    }

    .dnnPermissionsGrid > .dnnFormItem label {
        margin-right: 8px;        
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem select {
        width: 25%;
        margin: 0 5px 5px 0;
        min-width: 180px;
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem input {        
        margin-bottom: 0;
        height: 17px;
        color: #777;
        width: 25%;
    }
    .dnnPermissionsGrid > .dnnFormItem ul.token-input-list-facebook {
        display: inline-block;
        vertical-align: top;
    }

    .dnnPermissionsGrid > .dnnFormItem > .leftGroup {
        margin-right: 35px;
        float:left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup {
        float: left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup  > .dnnSecondaryAction {
        position: absolute;
    }

    .dnnPermissionsGrid > .dnnFormItem {
        margin-bottom: 18px;
        overflow: auto;     
    }

.dnnGridHeader td, thead.dnnGridHeader th,  tr.dnnGridHeader th{
    padding: 6px 12px 6px 12px;
    border-bottom: 1px solid #c9c9c9;
    border-right: 1px solid #c9c9c9;
    background: #f0f2f1;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
}

.dnnGridItem td, .dnnGridAltItem td {
    padding: 6px;
    border-right: 1px solid #c9c9c9;
}

    .dnnGridItem td input, .dnnGridAltItem td input {
        margin-bottom: none;
    }

.dnnGridAltItem {
    background: #F2F2F2;
}

    .dnnGridItem:hover, .dnnGridAltItem:hover {
        background-color: #e8f1fa;
    }

/* td > input[type="image"],
    td > input[type="image"] + a,
    td a > img{
        display:block;
        float: left;
        margin-right: 3px;
    } */

/*-------------------------------------*/
/* URL Control
/*-------------------------------------*/

.urlControl {
    float: left;
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

    .urlControl select,
    .urlControl input {
        width: 180px;
        margin-bottom: 10px;
    }

    .urlControl dnnFormItem > a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        float: left;
    }

    .urlControl .urlControlLinkType {
        float: left;
        width: 100%;
    }

        .urlControl .urlControlLinkType .dnnFormLabel {
            float: left;
            width: auto;
            margin-right: 5px;
        }

        .urlControl .urlControlLinkType input[type="radio"] {
            width: auto;
            margin-right: 5px;
        }

/*-------------------------------------*/
/* File Picker
/*-------------------------------------*/
span[id$="FileControl"] {
    display: block;
    float: left;
}

.dnnFilePicker {
    display: block;
    float: left;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0 15px 0 15px;
    width: 450px;
}

    .dnnFilePicker .dnnLeft {
        margin: 0;
        padding: 0;
        margin-top: -30px;
    }

    .dnnFilePicker dnnFormItem {
        margin: 0;
        margin-top: -10px;
        padding: 0;
        position: static;
    }

    .dnnFilePicker .dnnLeft img {
        max-width: 135px;
        max-height: 100px;
    }

    .dnnFilePicker .dnnLeft .dnnFilePickerImageHolder {
        width: 135px;
        height: 100px;
        background-color: #ccc;
        margin: 20px 15px;
    }

    .dnnFilePicker .dnnFormItem span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFilePicker select,
    .dnnFilePicker input {
        width: 200px;
        margin: 0;
        margin-right: 10px;
        float: none;
    }

    .dnnFilePicker .dnnLeft a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        display: inline-block;
    }

    .dnnFilePicker .dnnLeft img {
        display: block;
        margin: 20px 15px;
    }

/* FILE UPLOAD CSS */
span.dnnInputFileWrapper > input[type="file"] { /* force file upload style here, cause some module just override */
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    direction: ltr;
    cursor: pointer;
    height: 100%;
	font-size: 200px;
}

span.dnnInputFileWrapper { /* Notes(by Richard): here must set !important */
    overflow: hidden !important;
    margin: 0px 4px 0 0;
    width: auto !important;
    display: block !important;
    float: left !important;
	position: relative;
}

    span.dnnInputFileWrapper > span.dnnSecondaryAction {
        display: inline-block;
        float: none;
        width: auto;
    }

/* DNN DRAG n DROP FILE PICKER UPLOAD */
.dnnFileUploadScope {
    display: block;
    float: left;
    background-color: #F0F0F0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0;
    width: 500px;
}

    .dnnFileUploadScope .dnnLeft {
        margin: 0;
        padding: 15px 10px 15px 10px;
    }

        .dnnFileUploadScope .dnnLeft .dnnFormItem {
            margin-bottom: 10px;
        }

    .dnnFileUploadScope .dnnFormItem span, .urlControlTab .dnnFormItem > span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFileUploadScope .dnnFormItem .dnnDropDownList span {
        margin: 0;
        width: auto;
    }

    .dnnFileUploadScope .dnnFormItem .RadComboBox_Default,  .dnnFileUploadScope .dnnFormItem .dnnDropDownList{
        width: 180px;
        margin: 0;
        float: none;
    }

    .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone {
        position: relative;
        margin: 0;
        width: 180px;
        height: 150px;
        background: #d9eeff;
        border: 1px dashed #bbb;
        box-shadow: 0px 1px 0px #fff;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        color: #4577a2;
    }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone span {
            display: block;
            position: absolute;
            left: 38px;
            top: 60px;
            color: #fff;
            font-size: 12px;
            background: rgba(0,0,0,0.5);
            padding: 5px 7px;
            border-radius: 3px;
            box-shadow: 0px 1px 0px #fff, inset 1px 1px 0px #555;
            opacity: 0.5;
            cursor: default;
            -webkit-transition: all 500ms ease-in-out;
            -moz-transition: all 500ms ease-in-out;
            -ms-transition: all 500ms ease-in-out;
            -o-transition: all 500ms ease-in-out;
            transition: all 500ms ease-in-out;
        }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone:hover span {
            opacity: 1;
        }

input.dnnFixedSizeComboBox {
    width: 200px !important;
    margin-right: 10px;
    float: left;
}

div.dnnFixedSizeComboBox {
    width: 218px !important;
    margin-right: 15px;
    float: left;
}

.dnnFixedSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

input.dnnSmallSizeComboBox {
    width: 100px !important;
    margin-right: 10px;
    float: left;
}

div.dnnSmallSizeComboBox {
    width: 118px !important;
    margin-right: 15px;
    float: left;
}

.dnnSmallSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

td.dnnGridHeaderTD-NoBorder {
    border-right: none !important;
}

tr.dnnGridItem td, tr.dnnGridAltItem td {
    border-right: none;
}

    tr.dnnGridItem td input {
        margin-bottom: 0;
    }

/*-------------------------------------*/
/* ACCORDIAN
/*-------------------------------------*/
h2.dnnFormSectionHead {
    margin-top: 8px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ddd;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -0.03em;
}

    h2.dnnFormSectionHead a {
        display: block;
        padding-left: 3px;
        background: url("/images/down-icn.png") no-repeat right 50%;
        text-decoration: none;
        color: #333;
        font-size: 18px;
        letter-spacing: normal;
        font-weight: normal;
    }

        h2.dnnFormSectionHead a:hover {
            color: #222;
            background: rgba(2,139,255,0.05) /* blue */ url("/images/down-icn.png") no-repeat right 50%;
        }

        h2.dnnFormSectionHead a.dnnSectionExpanded {
            background: url("/images/up-icn.png") no-repeat right 50%;
            color: #222;
        }

            h2.dnnFormSectionHead a.dnnSectionExpanded:hover {
                color: #222;
                background: rgba(2,139,255,0.05) /* blue */ url("/images/up-icn.png") no-repeat right 50%; /* ACTIVE BLUE */
            }

/*-------------------------------------*/
/* VERTICAL TABS */
/*-------------------------------------*/
.dnnVerticalTabs {
    margin-left: 0;
}

    .dnnVerticalTabs li {
        list-style: none;
    }

        .dnnVerticalTabs li a {
            display: block;
            padding: 15px 15px;
            border-bottom: 1px solid #ddd;
            border-right: 1px solid #ddd;
            background: rgba(0, 0, 0, 0.04);
            color: #999;
            text-decoration: none;
        }

            .dnnVerticalTabs li a:hover {
                background: rgba(0, 0, 0, 0.06);
                color: #333;
            }

        .dnnVerticalTabs li.active a {
            background: none;
            color: #333;
            border-right: 1px solid transparent;
        }

.tabBody {
    display: none;
}

/*-------------------------------------*/
/* SCROLL BAR */
/*-------------------------------------*/

.jspContainer {
    overflow: hidden;
    position: relative;
}

.jspPane {
    position: absolute;
}

.jspVerticalBar {
    position: absolute;
    top: 0;
    right: 0;
    width: 11px;
    height: 100%;
    background: #ccc;
}

.jspHorizontalBar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 11px;
    background: #ccc;
}

    .jspVerticalBar *,
    .jspHorizontalBar * {
        margin: 0;
        padding: 0;
    }

.jspCap {
    display: none;
}

.jspHorizontalBar .jspCap {
    float: left;
}

.jspTrack {
    background: transparent;
    position: relative;
}

.jspVerticalBar .jspTrack {
    width: 10px;
    margin: 0 0 0 3px;
}

.jspHorizontalBar .jspTrack {
    height: 5px;
    margin: 3px 0 3px 0;
}

.jspVerticalBar .jspCap {
    display: block;
    height: 3px;
    width: 11px;
}

.jspHorizontalBar .jspCap {
    display: block;
    width: 3px;
    height: 11px;
}

.jspDrag {
    position: relative;
    top: 0;
    left: 0;
    border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    opacity: .75;
    background: #000;
    cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
    float: left;
    height: 5px;
}

/*-------------------------------------*/
/* UPGRADE FIXES */
/*-------------------------------------*/

/* Compatible with some old forge modules---*/
div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons label {
    display: inline !important;
}

div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNAnnouncementsC .urlControl label, div.ModDNNLinksC .urlControl label {
    display: inline !important;
}

div.ModDNNFAQsC .Normal {
    width: auto !important;
}

div.ModDNNFeedbackC .dnnFormItem > label {
    display: inline-block;
    width: 33%;
    text-align: right;
}

div.ModDNNUserDefinedTableC div.RadEditor {
    height: auto !important;
}

div.ModDNNUserDefinedTableC ul.dnnActions {
    display: block;
}

div.ModDNNIFrameC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNIFrameC table.Normal td .dnnLabel {
    width: 100px;
}

div.ModDNNIFrameC table.Normal td span.dnnRadiobutton {
    margin: 5px 0 0 30px;
}

div.ModDNNLinksC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

/*-------------------------------------*/
/* GENERIC CLASSES */
/*-------------------------------------*/
.left {
    float: left;
}

.right {
    float: right;
}

.dnnLeft {
    float: left;
}

.dnnRight {
    float: right;
}

.dnnClear {
    clear: both;
}

    .dnnClear:after {
        clear: both;
        content: ".";
        display: block;
        height: 0;
        visibility: hidden;
        font-size: 0;
    }

* + html .dnnClear {
    min-height: 1%;
}

/* used to set the different module align options - from module settings */
.DNNAlignleft {
    text-align: left;
}

.DNNAlignright {
    text-align: right;
}

.DNNAligncenter {
    text-align: center;
}

/* used to collapse panes without any content in them */
body:not(.dnnEditState) .DNNEmptyPane {
    width: 0px;
}

/* style to apply if the content should be hidden */
.Hidden {
    display: none;
}
.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}
/*Edit In Place Tool Bar Classes*/
.eipbackimg {
	position:absolute;
	margin-top:-32px;
	white-space:nowrap;
	background:url("/images/eip_toolbar.png") repeat-x;
	height:32px;
	z-index: 1;
}
.eipbackimg.editMode {
	border: 1px solid #777777 !important;
	background: -moz-linear-gradient(top, #303030 0%, #191919 100%) !important; /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303030), color-stop(100%,#191919)) !important; /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #303030 0%,#191919 100%) !important; /* IE10+ */
    background: linear-gradient(to bottom, #303030 0%,#191919 100%) !important; /* W3C */
	opacity: 0.8;
}
.eipbackimg.containerTitle {
	margin-top: -8px;
}
.eipbackimg.containerTitle.editMode {
	left: auto;
	right: 0px;
	margin-top: 2px;
	background: none !important;
	border: none !important;
}
.eipbuttonbackimg{
	width: 32px;
	height: 32px; 
	cursor: pointer;
	float:left;
	background: url("/images/eip_toolbar.png") no-repeat;
	
}
.eipbackimg.editMode .eipbuttonbackimg {
	border-left: 1px solid #1f1f1f;
	border-right: 1px solid #393939;
	opacity: 0.5;
}

.eipbackimg.editMode.containerTitle .eipbuttonbackimg {
	border: none;
	opacity: 1;
}

.eipbuttonbackimg.eipbutton_cancel{ background-position: -32px 0;}
.eipbuttonbackimg.eipbutton_bold{ background-position: -64px 0;}
.eipbuttonbackimg.eipbutton_italic{ background-position: -96px 0;}
.eipbuttonbackimg.eipbutton_underline{ background-position: -128px 0;}
.eipbuttonbackimg.eipbutton_justifyleft{ background-position: -160px 0;}
.eipbuttonbackimg.eipbutton_justifycenter{ background-position: -192px 0;}
.eipbuttonbackimg.eipbutton_justifyright{ background-position: -224px 0;}
.eipbuttonbackimg.eipbutton_orderedlist{ background-position: -256px 0;}
.eipbuttonbackimg.eipbutton_unorderedlist{ background-position: -288px 0;}
.eipbuttonbackimg.eipbutton_outdent{ background-position: -320px 0;}
.eipbuttonbackimg.eipbutton_indent{ background-position: -352px 0;}
.eipbuttonbackimg.eipbutton_createlink{ background-position: -384px 0;}

.eipbackimg.containerTitle .eipbutton_cancel {
	background: url("/images/eip_title_cancel.png") no-repeat center center;
}

.eipbutton_edit {
	background: url("/images/eip_edit.png") no-repeat 100% center;
	float:left;
}

.eipbutton_save {
	background: url("/images/eip_save.png") no-repeat 100% center;
	float:left;
}
.eipbackimg.containerTitle .eipbutton_save {
	background-image: url("/images/eip_title_save.png");
}

.eipbackimg.editMode .eipborderhover {
	background-color: #333;
	opacity: 1;
}
.eipbackimg.editMode.containerTitle .eipborderhover {
	background-color: inherit;
}
div[id$=titleLabel_tb].visible ~ span{ margin-left: 32px;}

/*Critical Error Popup*/
div.errorWin p{ margin: 0 0 10px 0;}

input[type="button"].rspCollapseBarSpacer
{ min-width: 0; padding: 0 0; }


/*------------------------------------------------*/
/* DEFAULT PROFILE STYLE */
/*------------------------------------------------*/

.UserProfileControls ul li {
    list-style-type: none;
}

/*------------------------------------------------*/
/* PROFILE STYLE */
/*------------------------------------------------*/
.console.profile {
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    height: auto;
    background-color: #484848; /* Menu Background Color */
}

.console.profile .console-none div {
    cursor: pointer;
    cursor: hand;
    float: left;
    height: auto;
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    padding: 0px;
    margin: 0px;
    text-align: left;
}

.console.profile .console-none h3 {
    padding: 10px 8px 10px 40px;
    margin: 0;
    border-bottom: solid 1px #fff;
    background: url("/Resources/images/arrow-right-white.png") 18px center no-repeat;
    color: #eee;
    font-size: 13px;
    line-height: 1;
    font-weight: bold;
}

.console.profile .console-none div div {
    display: none;
}

.console.profile .console-mouseon {
    background-color: #70b1c7; /* Menu Hover Background Color */
}
/*-------------------------------------------------*/

/* Login/register/reset paswsword controls in mobile view */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView{
	margin: 0;
	padding: 0;
	width: 100%;
	height: inherit !important;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage{
	margin: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 10px 0 10px 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage.dnnFormValidationSummary{
	padding: 10px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .LoginPanel,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSendPasswordContent,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm {
    width: 100%;
	padding: 18px 0 0 0;
    margin: 0;
    float: none;	
	min-width: inherit !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm{
	width: 100%;
	margin: 0;
	float: none;
	min-width: inherit !important;
}



body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: 100% !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
	padding: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSocialRegistration{
	display: none;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnCaptcha{
	width: 100%;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnLeft img{
	display: block;
	margin: 0 0 5px 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel a.dnnFormHelp{
	display: none !important;
	width: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel div.dnnTooltip{
	display: none !important;
	width: 0 !important;
	position: static !important;
	right: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem input[type="text"],
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="password"]{
    display: block;
    box-sizing: border-box;
	-webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 100% !important;
	margin-bottom: 18px;
	min-width: 100% !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > span#dnn_ctr_Login_Login_DNN_lblLogin{
	display: none !important;
	width: 0;
	margin: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem span.dnnFormMessage.dnnFormError{
	border-radius: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	right: 0;
	width: auto;
	max-width: 100%;
	padding: 10px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnPrimaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnSecondaryAction{
	width: 45%;
	padding: 18px 0 18px 0;
	display: block;
	float: left;
	margin: 0 5px 0 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginRememberMe{
	display: block;
	float: left;
	margin: 10px 0 0 5px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginActions {
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnSecondaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnPrimaryAction{
	width: 100%;
	padding: 18px 0 18px 0;
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions{
	padding: 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions li{
	width: 45%;
}

/* password strength control in iPopup */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .password-strength-container{
	width: 100%;
	margin: 0 0 12px 0;
	padding: 8px 0 8px 0;
	display: block;
	max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container input[type="password"]{
	display: block;
	margin: 0 8px 0 8px;
	width: calc(100% - 20px);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container span.min-length-text{
	display: block;	
	margin: 5px 0 5px 8px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container div.meter{
	float: none;	
	width: 90%;
	margin: 0 0 0 8px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem input.unmatched{
	background: none !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-tooltip, 
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .confirm-password-tooltip{
	display: none !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, .mobileVie #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.mobileView .ui-widget-overlay {
    display: none;
}
.dnnFormPopup.dnnFormPopupMobileView {
    width: auto !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    box-shadow: none !important;
}
.dnnFormPopup.dnnFormPopupMobileView div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: none;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-titlebar {
    border-bottom: none;
    cursor: inherit;
    font-size: 22px;
    color: #000;
    padding: 5px 0 0 0;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: auto !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="text"] {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > textarea,
.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .redactor_box {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > select {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnTagsInput {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 18px;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel > input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 0 5px 0 12px;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem span.dnnFormMessage.dnnFormError {
    right: 0;
    width: auto;
    border-radius: 0;
    text-align: right;
    max-width: 100%;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    width: 49%;
    margin: 0;
    padding: 20px 0 20px 0;
    display: block;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction {
    float: left;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    float: right;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane {
    border-top: none;
}

    .dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane .ui-dialog-buttonset {
        float: none;
    }

.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnSecondaryAction {
    width: 24%;
    display: inline-block;
    margin-right: 1%;
    float: none;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 25px 0 15px 0;
}

html.mobileView {
    overflow: auto !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, 
.mobileView #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.dnnPlaceholder{ color: #666; }

/* DNN Slider Input Style */
div.dnnSliderInput {
	position: relative;
	display: inline-block;
	width: 47%;
    margin:15px 0 23px 0;
    max-width: 445px;
	border: 1px solid #d3d3d3;
	-ms-border-radius: 3px;
	border-radius: 3px;
	height: 10px;
}

div.dnnSliderInput .ui-slider-handle {
	position: absolute;
    z-index: 2;
    width: 14px;
    height: 14px;
    cursor: default;
	border: 1px solid #aaaaaa;
    background-color: #cccccc;
    font-weight: normal;
    color: #555555;
	outline: none;
	top: -2px;
	margin-left: -7px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
div.dnnSliderInput .dnnTooltip {
	top: -37px;
	margin-left: -22px;
}
div.dnnSliderInput .dnnTooltip .dnnFormHelpContent {
	visibility: visible;
	padding: 4px 10px;
	width: 25px;
	text-align: center;
	z-index: 1;
}
/*END DNN Slider Input Style*/

/* Overflow for dnnMenu dropdown */
#dnnMenu .dropdown-menu {
    word-wrap: break-word;
}

/* End Overflow for dnnMenu dropdown */


.searchInputContainer {
    display: inline-block;
    margin: 0 -3px 0 0;
    position: relative;
}

    .searchInputContainer > input[type="text"]::-ms-clear {
        display: none;
    }

    .searchInputContainer a.dnnSearchBoxClearText {
        display: block;
        position: absolute;
        right: 10px;
        width: 16px;
        height: 16px;
        background: none;
        cursor: pointer;
        margin: 7px 0 7px 0;
        z-index: 20;
    }

        .searchInputContainer a.dnnSearchBoxClearText.dnnShow {
            background: url("/images/search/clearText.png") center center no-repeat;
        }

ul.searchSkinObjectPreview {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    margin: 0;
    list-style: none;
    border: 1px solid #c9c9c9;
    width: 350px;
    z-index: 200;
    padding: 0;
}

ul.searchSkinObjectPreview li {
    list-style: none;
}

    ul.searchSkinObjectPreview > li {
        padding: 6px 12px 6px 22px;
        border-top: 1px solid #c9c9c9;
        color: #666;
        cursor: pointer;
        position: relative;
        margin: 0;
        text-transform: none;
        word-wrap: break-word;
    }

        ul.searchSkinObjectPreview > li:hover {
            background-color: #e8f1fa;
            color: #333;
        }

        ul.searchSkinObjectPreview > li > span {
        }

        ul.searchSkinObjectPreview > li > span img.userpic {
            width: 32px;
            height: 32px;
            display: block;
            float: left;
            margin-right: 4px;
        }

            ul.searchSkinObjectPreview > li > span > b {
                font-weight: bold;
                color: #000;
            }

        ul.searchSkinObjectPreview > li p {
            margin: 0;
            font-size: 10px;
            line-height: 1.2em;
            color: #999;
            font-style: italic;
            white-space: normal;
        }

            ul.searchSkinObjectPreview > li p b {
                color: #000;
            }

        ul.searchSkinObjectPreview > li.searchSkinObjectPreview_group {
            padding: 6px 12px 6px 12px;
            font-weight: bold;
            color: #000;
            border-bottom: 2px solid #000;
            cursor: inherit;
        }

            ul.searchSkinObjectPreview > li.searchSkinObjectPreview_group:hover {
                background-color: #fff;
                color: #000;
            }

        ul.searchSkinObjectPreview > li > a.searchSkinObjectPreview_more {
            display: inline;
            position: static;
            background: none;
            z-index: inherit;
            width: auto;
            height: auto;
            text-indent: inherit;
            float: none;
        }


/* 
 * 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 */
ul.searchSkinObjectPreview,.dnnSearchResultItem-Others {
display:none;
}
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{
}



.xmas {
    padding:20px;
    background:#C51230;
    color:#fff;
    border: dashed 5px #ff0606;
    text-align:center;
}

.xmas h2 {
    color:#fff;
}





.nav-brand {
  float: left;
  margin: 0;
}

.nav-brand a {
  display: block;
  padding: 10px 10px 10px 20px;
  color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: normal;
  line-height: 29px;
  text-decoration: none;
}

#main-menu {
  clear: both;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  #main-menu {
    float: right;
    clear: none;
  }
}


/* Mobile menu top separator */

#main-menu:before {
  content: '';
  display: block;
  height: 1px;
  font: 1px/1px sans-serif;
  overflow: hidden;
  background: #2e8cb8;
}

@media (min-width: 768px) {
  #main-menu:before {
    display: none;
  }
}


/* Mobile menu toggle button */

.main-menu-btn {
  float: right;
  margin: 10px;
  position: relative;
  display: inline-block;
  width: 29px;
  height: 29px;
  text-indent: 29px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/* hamburger icon */

.main-menu-btn-icon,
.main-menu-btn-icon:before,
.main-menu-btn-icon:after {
  position: absolute;
  top: 50%;
  left: 2px;
  height: 2px;
  width: 24px;
  background: #fff;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.main-menu-btn-icon:before {
  content: '';
  top: -7px;
  left: 0;
}

.main-menu-btn-icon:after {
  content: '';
  top: 7px;
  left: 0;
}


/* x icon */

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
  height: 0;
  background: transparent;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* hide menu state checkbox (keep it visible to screen readers) */

#main-menu-state {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}


/* hide the menu in mobile view */

#main-menu-state:not(:checked) ~ #main-menu {
  display: none;
}

#main-menu-state:checked ~ #main-menu {
  display: block;
}

@media (min-width: 768px) {
  /* hide the button in desktop view */
  .main-menu-btn {
    position: absolute;
    top: -99999px;
  }
  /* always show the menu in desktop view */
  #main-menu-state:not(:checked) ~ #main-menu {
    display: block;
  }
}



iframe#illow-banner-widget {
    display: none;
}

@media only screen and (max-width:800px){
    .search {
    display: none;
}



}

.banner img {
    max-width:100% !important;
}




.industryh2 {
	position:relative;
	margin-bottom:15px;
}
.industryh2 h2 {
	display:block;
	position:absolute;
	bottom:0;
	background-color: #C51230;
	margin:0;
	color:white;
	padding:10px;
	width:100%;
}

.industryblock {
    position:relative;
}



.industryblock img {
    width: 100%;
    height: auto;
}


#relatedPosts h3 {
    display: block !important;
    clear: both !important;
    padding-top: 2rem !important
}


html {
  overflow-y: scroll !important;
}




/*! Responsive v4.1.3 | MIT License | responsivebp.com *//*! normalize.css v3.0.3 | MIT License | git.io/normalize */hr,img,legend{border:0}hr,legend{padding:0}.alert,.alert .close,.btn-group,.input-group,[class*=col-][class*=offset],[class*=col-][class*=pull],[class*=col-][class*=push],sub,sup{position:relative}.carousel,.modal-overlay{-webkit-backface-visibility:hidden}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted;cursor:help}@supports (text-decoration:dotted underline){abbr[title],acronym[title]{text-decoration:dotted underline;border-bottom:none}}b,optgroup,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.375rem}sub{bottom:-.1875rem}svg:not(:root){overflow:hidden}figure{margin:1rem 2.5rem}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto}table{border-collapse:collapse;border-spacing:0}html{-webkit-overflow-scrolling:touch;color:#222;font-size:100%;line-height:1.4;box-sizing:border-box}*,:after,:before{box-sizing:inherit}:focus{outline:#3b99fc solid 1px}button:focus,input:focus,keygen:focus,select:focus,textarea:focus{outline-offset:-1px}[tabindex="-1"]:focus{outline:0}_::-ms-reveal,body:not([tabindex]):focus,div:not([tabindex]):focus{outline:0}h1,h2,h3,h4,h5,h6{text-rendering:optimizeLegibility;page-break-after:avoid}h1{font-size:2rem;margin:1.34rem 0}h2{font-size:1.5rem;margin:1.245rem 0}h3{font-size:1.17rem;margin:1.17rem 0}h4{font-size:1rem;margin:1.33rem 0}h5{font-size:.83rem;margin:1.386rem 0}h6{font-size:.67rem;margin:1.561rem 0}::-moz-selection{background:#b3d4fc;text-shadow:none}::selection{background:#b3d4fc;text-shadow:none}hr{display:block;height:1px;border-top:1px solid silver;margin:1rem 0}.container,.container-full,.modal-ajax.container,.modal-iframe{margin:0 auto}.container-full.fixed,.container.fixed,.fixed .container,.fixed .container-full,.fixed .modal-iframe,.fixed.modal-iframe{width:100%}.container-full{overflow-x:hidden}.container,.modal-ajax.container,.modal-iframe{max-width:1140px;width:calc(100% - 16px)}.container.fixed,.fixed .container,.fixed .modal-iframe,.fixed.modal-iframe{width:1140px}.row,[class*=block-row-]{margin:0 -8px}.no-gutter{margin:0}[class*=block-row-]{display:block;padding:0;list-style:none}[class*=block-row-]>*,[class*=col-]{display:block;float:left;min-height:1px;width:100%;border-left:8px solid transparent;border-right:8px solid transparent;background-clip:padding-box}[dir=rtl] [class*=block-row-]>*,[dir=rtl] [class*=col-]{float:right}.no-gutter>[class*=col-],[class*=block-row-].no-gutter>*{border:none;background-clip:border-box}.equal-height{display:table;table-layout:fixed;height:1px;width:calc(100% + 16px)}.equal-height.no-gutter{width:100%}.equal-height:before{display:none!important}.equal-height>[class*=col-]{float:none;vertical-align:top}.col-xxs-1{width:8.3333%}.offset-xxs-1,.push-xxs-1{left:8.3333%}[dir=rtl] .offset-xxs-1,[dir=rtl] .push-xxs-1{left:auto;right:8.3333%}.pull-xxs-1{right:8.3333%}[dir=rtl] .pull-xxs-1{right:auto;left:8.3333%}.col-xxs-2{width:16.6667%}.offset-xxs-2,.push-xxs-2{left:16.6667%}[dir=rtl] .offset-xxs-2,[dir=rtl] .push-xxs-2{left:auto;right:16.6667%}.pull-xxs-2{right:16.6667%}[dir=rtl] .pull-xxs-2{right:auto;left:16.6667%}.col-xxs-3{width:25%}.offset-xxs-3,.push-xxs-3{left:25%}[dir=rtl] .offset-xxs-3,[dir=rtl] .push-xxs-3{left:auto;right:25%}.pull-xxs-3{right:25%}[dir=rtl] .pull-xxs-3{right:auto;left:25%}.col-xxs-4{width:33.3333%}.offset-xxs-4,.push-xxs-4{left:33.3333%}[dir=rtl] .offset-xxs-4,[dir=rtl] .push-xxs-4{left:auto;right:33.3333%}.pull-xxs-4{right:33.3333%}[dir=rtl] .pull-xxs-4{right:auto;left:33.3333%}.col-xxs-5{width:41.6667%}.offset-xxs-5,.push-xxs-5{left:41.6667%}[dir=rtl] .offset-xxs-5,[dir=rtl] .push-xxs-5{left:auto;right:41.6667%}.pull-xxs-5{right:41.6667%}[dir=rtl] .pull-xxs-5{right:auto;left:41.6667%}.col-xxs-6{width:50%}.offset-xxs-6,.push-xxs-6{left:50%}[dir=rtl] .offset-xxs-6,[dir=rtl] .push-xxs-6{left:auto;right:50%}.pull-xxs-6{right:50%}[dir=rtl] .pull-xxs-6{right:auto;left:50%}.col-xxs-7{width:58.3333%}.offset-xxs-7,.push-xxs-7{left:58.3333%}[dir=rtl] .offset-xxs-7,[dir=rtl] .push-xxs-7{left:auto;right:58.3333%}.pull-xxs-7{right:58.3333%}[dir=rtl] .pull-xxs-7{right:auto;left:58.3333%}.col-xxs-8{width:66.6667%}.offset-xxs-8,.push-xxs-8{left:66.6667%}[dir=rtl] .offset-xxs-8,[dir=rtl] .push-xxs-8{left:auto;right:66.6667%}.pull-xxs-8{right:66.6667%}[dir=rtl] .pull-xxs-8{right:auto;left:66.6667%}.col-xxs-9{width:75%}.offset-xxs-9,.push-xxs-9{left:75%}[dir=rtl] .offset-xxs-9,[dir=rtl] .push-xxs-9{left:auto;right:75%}.pull-xxs-9{right:75%}[dir=rtl] .pull-xxs-9{right:auto;left:75%}.col-xxs-10{width:83.3333%}.offset-xxs-10,.push-xxs-10{left:83.3333%}[dir=rtl] .offset-xxs-10,[dir=rtl] .push-xxs-10{left:auto;right:83.3333%}.pull-xxs-10{right:83.3333%}[dir=rtl] .pull-xxs-10{right:auto;left:83.3333%}.col-xxs-11{width:91.6667%}.block-row-xxs-1>*,.col-xxs-12{width:100%}.offset-xxs-11,.push-xxs-11{left:91.6667%}[dir=rtl] .offset-xxs-11,[dir=rtl] .push-xxs-11{left:auto;right:91.6667%}.pull-xxs-11{right:91.6667%}[dir=rtl] .pull-xxs-11{right:auto;left:91.6667%}.offset-xxs-12,.push-xxs-12{left:100%}[dir=rtl] .offset-xxs-12,[dir=rtl] .push-xxs-12{left:auto;right:100%}.pull-xxs-12{right:100%}[dir=rtl] .pull-xxs-12{right:auto;left:100%}.equal-height>[class*=col-xxs]{display:table-cell;height:100%}.equal-height>.col-xxs-12{display:table-caption;height:auto}.block-row-xxs-1>:nth-of-type(n+1){clear:none}.block-row-xxs-1>:nth-of-type(1n+1){clear:both}.block-row-xxs-2>*{width:50%}.block-row-xxs-2>:nth-of-type(n+1){clear:none}.block-row-xxs-2>:nth-of-type(2n+1){clear:both}.block-row-xxs-3>*{width:33.3333%}.block-row-xxs-3>:nth-of-type(n+1){clear:none}.block-row-xxs-3>:nth-of-type(3n+1){clear:both}.block-row-xxs-4>*{width:25%}.block-row-xxs-4>:nth-of-type(n+1){clear:none}.block-row-xxs-4>:nth-of-type(4n+1){clear:both}.block-row-xxs-5>*{width:20%}.block-row-xxs-5>:nth-of-type(n+1){clear:none}.block-row-xxs-5>:nth-of-type(5n+1){clear:both}.block-row-xxs-6>*{width:16.6667%}.block-row-xxs-6>:nth-of-type(n+1){clear:none}.block-row-xxs-6>:nth-of-type(6n+1){clear:both}.block-row-xxs-7>*{width:14.2857%}.block-row-xxs-7>:nth-of-type(n+1){clear:none}.block-row-xxs-7>:nth-of-type(7n+1){clear:both}.block-row-xxs-8>*{width:12.5%}.block-row-xxs-8>:nth-of-type(n+1){clear:none}.block-row-xxs-8>:nth-of-type(8n+1){clear:both}.block-row-xxs-9>*{width:11.1111%}.block-row-xxs-9>:nth-of-type(n+1){clear:none}.block-row-xxs-9>:nth-of-type(9n+1){clear:both}.block-row-xxs-10>*{width:10%}.block-row-xxs-10>:nth-of-type(n+1){clear:none}.block-row-xxs-10>:nth-of-type(10n+1){clear:both}.block-row-xxs-11>*{width:9.0909%}.block-row-xxs-11>:nth-of-type(n+1){clear:none}.block-row-xxs-11>:nth-of-type(11n+1){clear:both}.block-row-xxs-12>*{width:8.3333%}.block-row-xxs-12>:nth-of-type(n+1){clear:none}.alert:after,.block-row-xxs-12>:nth-of-type(12n+1),.clearfix:after,.container-full:after,.container:after,.modal-ajax.container:after,.modal-iframe:after,.row:after,.tabs>ul:after,[class*=block-row-]:after{clear:both}@media print and (min-width:536px),screen and (min-width:37.5em){.col-xs-1{width:8.3333%}.offset-xs-1,.push-xs-1{left:8.3333%}[dir=rtl] .offset-xs-1,[dir=rtl] .push-xs-1{left:auto;right:8.3333%}.pull-xs-1{right:8.3333%}[dir=rtl] .pull-xs-1{right:auto;left:8.3333%}.col-xs-2{width:16.6667%}.offset-xs-2,.push-xs-2{left:16.6667%}[dir=rtl] .offset-xs-2,[dir=rtl] .push-xs-2{left:auto;right:16.6667%}.pull-xs-2{right:16.6667%}[dir=rtl] .pull-xs-2{right:auto;left:16.6667%}.col-xs-3{width:25%}.offset-xs-3,.push-xs-3{left:25%}[dir=rtl] .offset-xs-3,[dir=rtl] .push-xs-3{left:auto;right:25%}.pull-xs-3{right:25%}[dir=rtl] .pull-xs-3{right:auto;left:25%}.col-xs-4{width:33.3333%}.offset-xs-4,.push-xs-4{left:33.3333%}[dir=rtl] .offset-xs-4,[dir=rtl] .push-xs-4{left:auto;right:33.3333%}.pull-xs-4{right:33.3333%}[dir=rtl] .pull-xs-4{right:auto;left:33.3333%}.col-xs-5{width:41.6667%}.offset-xs-5,.push-xs-5{left:41.6667%}[dir=rtl] .offset-xs-5,[dir=rtl] .push-xs-5{left:auto;right:41.6667%}.pull-xs-5{right:41.6667%}[dir=rtl] .pull-xs-5{right:auto;left:41.6667%}.col-xs-6{width:50%}.offset-xs-6,.push-xs-6{left:50%}[dir=rtl] .offset-xs-6,[dir=rtl] .push-xs-6{left:auto;right:50%}.pull-xs-6{right:50%}[dir=rtl] .pull-xs-6{right:auto;left:50%}.col-xs-7{width:58.3333%}.offset-xs-7,.push-xs-7{left:58.3333%}[dir=rtl] .offset-xs-7,[dir=rtl] .push-xs-7{left:auto;right:58.3333%}.pull-xs-7{right:58.3333%}[dir=rtl] .pull-xs-7{right:auto;left:58.3333%}.col-xs-8{width:66.6667%}.offset-xs-8,.push-xs-8{left:66.6667%}[dir=rtl] .offset-xs-8,[dir=rtl] .push-xs-8{left:auto;right:66.6667%}.pull-xs-8{right:66.6667%}[dir=rtl] .pull-xs-8{right:auto;left:66.6667%}.col-xs-9{width:75%}.offset-xs-9,.push-xs-9{left:75%}[dir=rtl] .offset-xs-9,[dir=rtl] .push-xs-9{left:auto;right:75%}.pull-xs-9{right:75%}[dir=rtl] .pull-xs-9{right:auto;left:75%}.col-xs-10{width:83.3333%}.offset-xs-10,.push-xs-10{left:83.3333%}[dir=rtl] .offset-xs-10,[dir=rtl] .push-xs-10{left:auto;right:83.3333%}.pull-xs-10{right:83.3333%}[dir=rtl] .pull-xs-10{right:auto;left:83.3333%}.col-xs-11{width:91.6667%}.block-row-xs-1>*,.col-xs-12{width:100%}.offset-xs-11,.push-xs-11{left:91.6667%}[dir=rtl] .offset-xs-11,[dir=rtl] .push-xs-11{left:auto;right:91.6667%}.pull-xs-11{right:91.6667%}[dir=rtl] .pull-xs-11{right:auto;left:91.6667%}.offset-xs-12,.push-xs-12{left:100%}[dir=rtl] .offset-xs-12,[dir=rtl] .push-xs-12{left:auto;right:100%}.pull-xs-12{right:100%}[dir=rtl] .pull-xs-12{right:auto;left:100%}.equal-height>[class*=col-xs]{display:table-cell;height:100%}.equal-height>.col-xs-12{display:table-caption;height:auto}.block-row-xs-1>:nth-of-type(n+1){clear:none}.block-row-xs-1>:nth-of-type(1n+1){clear:both}.block-row-xs-2>*{width:50%}.block-row-xs-2>:nth-of-type(n+1){clear:none}.block-row-xs-2>:nth-of-type(2n+1){clear:both}.block-row-xs-3>*{width:33.3333%}.block-row-xs-3>:nth-of-type(n+1){clear:none}.block-row-xs-3>:nth-of-type(3n+1){clear:both}.block-row-xs-4>*{width:25%}.block-row-xs-4>:nth-of-type(n+1){clear:none}.block-row-xs-4>:nth-of-type(4n+1){clear:both}.block-row-xs-5>*{width:20%}.block-row-xs-5>:nth-of-type(n+1){clear:none}.block-row-xs-5>:nth-of-type(5n+1){clear:both}.block-row-xs-6>*{width:16.6667%}.block-row-xs-6>:nth-of-type(n+1){clear:none}.block-row-xs-6>:nth-of-type(6n+1){clear:both}.block-row-xs-7>*{width:14.2857%}.block-row-xs-7>:nth-of-type(n+1){clear:none}.block-row-xs-7>:nth-of-type(7n+1){clear:both}.block-row-xs-8>*{width:12.5%}.block-row-xs-8>:nth-of-type(n+1){clear:none}.block-row-xs-8>:nth-of-type(8n+1){clear:both}.block-row-xs-9>*{width:11.1111%}.block-row-xs-9>:nth-of-type(n+1){clear:none}.block-row-xs-9>:nth-of-type(9n+1){clear:both}.block-row-xs-10>*{width:10%}.block-row-xs-10>:nth-of-type(n+1){clear:none}.block-row-xs-10>:nth-of-type(10n+1){clear:both}.block-row-xs-11>*{width:9.0909%}.block-row-xs-11>:nth-of-type(n+1){clear:none}.block-row-xs-11>:nth-of-type(11n+1){clear:both}.block-row-xs-12>*{width:8.3333%}.block-row-xs-12>:nth-of-type(n+1){clear:none}.block-row-xs-12>:nth-of-type(12n+1){clear:both}}@media print and (min-width:537px),screen and (min-width:48em){.col-s-1{width:8.3333%}.offset-s-1,.push-s-1{left:8.3333%}[dir=rtl] .offset-s-1,[dir=rtl] .push-s-1{left:auto;right:8.3333%}.pull-s-1{right:8.3333%}[dir=rtl] .pull-s-1{right:auto;left:8.3333%}.col-s-2{width:16.6667%}.offset-s-2,.push-s-2{left:16.6667%}[dir=rtl] .offset-s-2,[dir=rtl] .push-s-2{left:auto;right:16.6667%}.pull-s-2{right:16.6667%}[dir=rtl] .pull-s-2{right:auto;left:16.6667%}.col-s-3{width:25%}.offset-s-3,.push-s-3{left:25%}[dir=rtl] .offset-s-3,[dir=rtl] .push-s-3{left:auto;right:25%}.pull-s-3{right:25%}[dir=rtl] .pull-s-3{right:auto;left:25%}.col-s-4{width:33.3333%}.offset-s-4,.push-s-4{left:33.3333%}[dir=rtl] .offset-s-4,[dir=rtl] .push-s-4{left:auto;right:33.3333%}.pull-s-4{right:33.3333%}[dir=rtl] .pull-s-4{right:auto;left:33.3333%}.col-s-5{width:41.6667%}.offset-s-5,.push-s-5{left:41.6667%}[dir=rtl] .offset-s-5,[dir=rtl] .push-s-5{left:auto;right:41.6667%}.pull-s-5{right:41.6667%}[dir=rtl] .pull-s-5{right:auto;left:41.6667%}.col-s-6{width:50%}.offset-s-6,.push-s-6{left:50%}[dir=rtl] .offset-s-6,[dir=rtl] .push-s-6{left:auto;right:50%}.pull-s-6{right:50%}[dir=rtl] .pull-s-6{right:auto;left:50%}.col-s-7{width:58.3333%}.offset-s-7,.push-s-7{left:58.3333%}[dir=rtl] .offset-s-7,[dir=rtl] .push-s-7{left:auto;right:58.3333%}.pull-s-7{right:58.3333%}[dir=rtl] .pull-s-7{right:auto;left:58.3333%}.col-s-8{width:66.6667%}.offset-s-8,.push-s-8{left:66.6667%}[dir=rtl] .offset-s-8,[dir=rtl] .push-s-8{left:auto;right:66.6667%}.pull-s-8{right:66.6667%}[dir=rtl] .pull-s-8{right:auto;left:66.6667%}.col-s-9{width:75%}.offset-s-9,.push-s-9{left:75%}[dir=rtl] .offset-s-9,[dir=rtl] .push-s-9{left:auto;right:75%}.pull-s-9{right:75%}[dir=rtl] .pull-s-9{right:auto;left:75%}.col-s-10{width:83.3333%}.offset-s-10,.push-s-10{left:83.3333%}[dir=rtl] .offset-s-10,[dir=rtl] .push-s-10{left:auto;right:83.3333%}.pull-s-10{right:83.3333%}[dir=rtl] .pull-s-10{right:auto;left:83.3333%}.col-s-11{width:91.6667%}.block-row-s-1>*,.col-s-12{width:100%}.offset-s-11,.push-s-11{left:91.6667%}[dir=rtl] .offset-s-11,[dir=rtl] .push-s-11{left:auto;right:91.6667%}.pull-s-11{right:91.6667%}[dir=rtl] .pull-s-11{right:auto;left:91.6667%}.offset-s-12,.push-s-12{left:100%}[dir=rtl] .offset-s-12,[dir=rtl] .push-s-12{left:auto;right:100%}.pull-s-12{right:100%}[dir=rtl] .pull-s-12{right:auto;left:100%}.equal-height>[class*=col-s]{display:table-cell;height:100%}.equal-height>.col-s-12{display:table-caption;height:auto}.block-row-s-1>:nth-of-type(n+1){clear:none}.block-row-s-1>:nth-of-type(1n+1){clear:both}.block-row-s-2>*{width:50%}.block-row-s-2>:nth-of-type(n+1){clear:none}.block-row-s-2>:nth-of-type(2n+1){clear:both}.block-row-s-3>*{width:33.3333%}.block-row-s-3>:nth-of-type(n+1){clear:none}.block-row-s-3>:nth-of-type(3n+1){clear:both}.block-row-s-4>*{width:25%}.block-row-s-4>:nth-of-type(n+1){clear:none}.block-row-s-4>:nth-of-type(4n+1){clear:both}.block-row-s-5>*{width:20%}.block-row-s-5>:nth-of-type(n+1){clear:none}.block-row-s-5>:nth-of-type(5n+1){clear:both}.block-row-s-6>*{width:16.6667%}.block-row-s-6>:nth-of-type(n+1){clear:none}.block-row-s-6>:nth-of-type(6n+1){clear:both}.block-row-s-7>*{width:14.2857%}.block-row-s-7>:nth-of-type(n+1){clear:none}.block-row-s-7>:nth-of-type(7n+1){clear:both}.block-row-s-8>*{width:12.5%}.block-row-s-8>:nth-of-type(n+1){clear:none}.block-row-s-8>:nth-of-type(8n+1){clear:both}.block-row-s-9>*{width:11.1111%}.block-row-s-9>:nth-of-type(n+1){clear:none}.block-row-s-9>:nth-of-type(9n+1){clear:both}.block-row-s-10>*{width:10%}.block-row-s-10>:nth-of-type(n+1){clear:none}.block-row-s-10>:nth-of-type(10n+1){clear:both}.block-row-s-11>*{width:9.0909%}.block-row-s-11>:nth-of-type(n+1){clear:none}.block-row-s-11>:nth-of-type(11n+1){clear:both}.block-row-s-12>*{width:8.3333%}.block-row-s-12>:nth-of-type(n+1){clear:none}.block-row-s-12>:nth-of-type(12n+1){clear:both}}@media (min-width:62em){.col-m-1{width:8.3333%}.offset-m-1,.push-m-1{left:8.3333%}[dir=rtl] .offset-m-1,[dir=rtl] .push-m-1{left:auto;right:8.3333%}.pull-m-1{right:8.3333%}[dir=rtl] .pull-m-1{right:auto;left:8.3333%}.col-m-2{width:16.6667%}.offset-m-2,.push-m-2{left:16.6667%}[dir=rtl] .offset-m-2,[dir=rtl] .push-m-2{left:auto;right:16.6667%}.pull-m-2{right:16.6667%}[dir=rtl] .pull-m-2{right:auto;left:16.6667%}.col-m-3{width:25%}.offset-m-3,.push-m-3{left:25%}[dir=rtl] .offset-m-3,[dir=rtl] .push-m-3{left:auto;right:25%}.pull-m-3{right:25%}[dir=rtl] .pull-m-3{right:auto;left:25%}.col-m-4{width:33.3333%}.offset-m-4,.push-m-4{left:33.3333%}[dir=rtl] .offset-m-4,[dir=rtl] .push-m-4{left:auto;right:33.3333%}.pull-m-4{right:33.3333%}[dir=rtl] .pull-m-4{right:auto;left:33.3333%}.col-m-5{width:41.6667%}.offset-m-5,.push-m-5{left:41.6667%}[dir=rtl] .offset-m-5,[dir=rtl] .push-m-5{left:auto;right:41.6667%}.pull-m-5{right:41.6667%}[dir=rtl] .pull-m-5{right:auto;left:41.6667%}.col-m-6{width:50%}.offset-m-6,.push-m-6{left:50%}[dir=rtl] .offset-m-6,[dir=rtl] .push-m-6{left:auto;right:50%}.pull-m-6{right:50%}[dir=rtl] .pull-m-6{right:auto;left:50%}.col-m-7{width:58.3333%}.offset-m-7,.push-m-7{left:58.3333%}[dir=rtl] .offset-m-7,[dir=rtl] .push-m-7{left:auto;right:58.3333%}.pull-m-7{right:58.3333%}[dir=rtl] .pull-m-7{right:auto;left:58.3333%}.col-m-8{width:66.6667%}.offset-m-8,.push-m-8{left:66.6667%}[dir=rtl] .offset-m-8,[dir=rtl] .push-m-8{left:auto;right:66.6667%}.pull-m-8{right:66.6667%}[dir=rtl] .pull-m-8{right:auto;left:66.6667%}.col-m-9{width:75%}.offset-m-9,.push-m-9{left:75%}[dir=rtl] .offset-m-9,[dir=rtl] .push-m-9{left:auto;right:75%}.pull-m-9{right:75%}[dir=rtl] .pull-m-9{right:auto;left:75%}.col-m-10{width:83.3333%}.offset-m-10,.push-m-10{left:83.3333%}[dir=rtl] .offset-m-10,[dir=rtl] .push-m-10{left:auto;right:83.3333%}.pull-m-10{right:83.3333%}[dir=rtl] .pull-m-10{right:auto;left:83.3333%}.col-m-11{width:91.6667%}.block-row-m-1>*,.col-m-12{width:100%}.offset-m-11,.push-m-11{left:91.6667%}[dir=rtl] .offset-m-11,[dir=rtl] .push-m-11{left:auto;right:91.6667%}.pull-m-11{right:91.6667%}[dir=rtl] .pull-m-11{right:auto;left:91.6667%}.offset-m-12,.push-m-12{left:100%}[dir=rtl] .offset-m-12,[dir=rtl] .push-m-12{left:auto;right:100%}.pull-m-12{right:100%}[dir=rtl] .pull-m-12{right:auto;left:100%}.equal-height>[class*=col-m]{display:table-cell;height:100%}.equal-height>.col-m-12{display:table-caption;height:auto}.block-row-m-1>:nth-of-type(n+1){clear:none}.block-row-m-1>:nth-of-type(1n+1){clear:both}.block-row-m-2>*{width:50%}.block-row-m-2>:nth-of-type(n+1){clear:none}.block-row-m-2>:nth-of-type(2n+1){clear:both}.block-row-m-3>*{width:33.3333%}.block-row-m-3>:nth-of-type(n+1){clear:none}.block-row-m-3>:nth-of-type(3n+1){clear:both}.block-row-m-4>*{width:25%}.block-row-m-4>:nth-of-type(n+1){clear:none}.block-row-m-4>:nth-of-type(4n+1){clear:both}.block-row-m-5>*{width:20%}.block-row-m-5>:nth-of-type(n+1){clear:none}.block-row-m-5>:nth-of-type(5n+1){clear:both}.block-row-m-6>*{width:16.6667%}.block-row-m-6>:nth-of-type(n+1){clear:none}.block-row-m-6>:nth-of-type(6n+1){clear:both}.block-row-m-7>*{width:14.2857%}.block-row-m-7>:nth-of-type(n+1){clear:none}.block-row-m-7>:nth-of-type(7n+1){clear:both}.block-row-m-8>*{width:12.5%}.block-row-m-8>:nth-of-type(n+1){clear:none}.block-row-m-8>:nth-of-type(8n+1){clear:both}.block-row-m-9>*{width:11.1111%}.block-row-m-9>:nth-of-type(n+1){clear:none}.block-row-m-9>:nth-of-type(9n+1){clear:both}.block-row-m-10>*{width:10%}.block-row-m-10>:nth-of-type(n+1){clear:none}.block-row-m-10>:nth-of-type(10n+1){clear:both}.block-row-m-11>*{width:9.0909%}.block-row-m-11>:nth-of-type(n+1){clear:none}.block-row-m-11>:nth-of-type(11n+1){clear:both}.block-row-m-12>*{width:8.3333%}.block-row-m-12>:nth-of-type(n+1){clear:none}.block-row-m-12>:nth-of-type(12n+1){clear:both}}@media (min-width:75em){.col-l-1{width:8.3333%}.offset-l-1,.push-l-1{left:8.3333%}[dir=rtl] .offset-l-1,[dir=rtl] .push-l-1{left:auto;right:8.3333%}.pull-l-1{right:8.3333%}[dir=rtl] .pull-l-1{right:auto;left:8.3333%}.col-l-2{width:16.6667%}.offset-l-2,.push-l-2{left:16.6667%}[dir=rtl] .offset-l-2,[dir=rtl] .push-l-2{left:auto;right:16.6667%}.pull-l-2{right:16.6667%}[dir=rtl] .pull-l-2{right:auto;left:16.6667%}.col-l-3{width:25%}.offset-l-3,.push-l-3{left:25%}[dir=rtl] .offset-l-3,[dir=rtl] .push-l-3{left:auto;right:25%}.pull-l-3{right:25%}[dir=rtl] .pull-l-3{right:auto;left:25%}.col-l-4{width:33.3333%}.offset-l-4,.push-l-4{left:33.3333%}[dir=rtl] .offset-l-4,[dir=rtl] .push-l-4{left:auto;right:33.3333%}.pull-l-4{right:33.3333%}[dir=rtl] .pull-l-4{right:auto;left:33.3333%}.col-l-5{width:41.6667%}.offset-l-5,.push-l-5{left:41.6667%}[dir=rtl] .offset-l-5,[dir=rtl] .push-l-5{left:auto;right:41.6667%}.pull-l-5{right:41.6667%}[dir=rtl] .pull-l-5{right:auto;left:41.6667%}.col-l-6{width:50%}.offset-l-6,.push-l-6{left:50%}[dir=rtl] .offset-l-6,[dir=rtl] .push-l-6{left:auto;right:50%}.pull-l-6{right:50%}[dir=rtl] .pull-l-6{right:auto;left:50%}.col-l-7{width:58.3333%}.offset-l-7,.push-l-7{left:58.3333%}[dir=rtl] .offset-l-7,[dir=rtl] .push-l-7{left:auto;right:58.3333%}.pull-l-7{right:58.3333%}[dir=rtl] .pull-l-7{right:auto;left:58.3333%}.col-l-8{width:66.6667%}.offset-l-8,.push-l-8{left:66.6667%}[dir=rtl] .offset-l-8,[dir=rtl] .push-l-8{left:auto;right:66.6667%}.pull-l-8{right:66.6667%}[dir=rtl] .pull-l-8{right:auto;left:66.6667%}.col-l-9{width:75%}.offset-l-9,.push-l-9{left:75%}[dir=rtl] .offset-l-9,[dir=rtl] .push-l-9{left:auto;right:75%}.pull-l-9{right:75%}[dir=rtl] .pull-l-9{right:auto;left:75%}.col-l-10{width:83.3333%}.offset-l-10,.push-l-10{left:83.3333%}[dir=rtl] .offset-l-10,[dir=rtl] .push-l-10{left:auto;right:83.3333%}.pull-l-10{right:83.3333%}[dir=rtl] .pull-l-10{right:auto;left:83.3333%}.col-l-11{width:91.6667%}.block-row-l-1>*,.col-l-12{width:100%}.offset-l-11,.push-l-11{left:91.6667%}[dir=rtl] .offset-l-11,[dir=rtl] .push-l-11{left:auto;right:91.6667%}.pull-l-11{right:91.6667%}[dir=rtl] .pull-l-11{right:auto;left:91.6667%}.offset-l-12,.push-l-12{left:100%}[dir=rtl] .offset-l-12,[dir=rtl] .push-l-12{left:auto;right:100%}.pull-l-12{right:100%}[dir=rtl] .pull-l-12{right:auto;left:100%}.equal-height>[class*=col-l]{display:table-cell;height:100%}.equal-height>.col-l-12{display:table-caption;height:auto}.block-row-l-1>:nth-of-type(n+1){clear:none}.block-row-l-1>:nth-of-type(1n+1){clear:both}.block-row-l-2>*{width:50%}.block-row-l-2>:nth-of-type(n+1){clear:none}.block-row-l-2>:nth-of-type(2n+1){clear:both}.block-row-l-3>*{width:33.3333%}.block-row-l-3>:nth-of-type(n+1){clear:none}.block-row-l-3>:nth-of-type(3n+1){clear:both}.block-row-l-4>*{width:25%}.block-row-l-4>:nth-of-type(n+1){clear:none}.block-row-l-4>:nth-of-type(4n+1){clear:both}.block-row-l-5>*{width:20%}.block-row-l-5>:nth-of-type(n+1){clear:none}.block-row-l-5>:nth-of-type(5n+1){clear:both}.block-row-l-6>*{width:16.6667%}.block-row-l-6>:nth-of-type(n+1){clear:none}.block-row-l-6>:nth-of-type(6n+1){clear:both}.block-row-l-7>*{width:14.2857%}.block-row-l-7>:nth-of-type(n+1){clear:none}.block-row-l-7>:nth-of-type(7n+1){clear:both}.block-row-l-8>*{width:12.5%}.block-row-l-8>:nth-of-type(n+1){clear:none}.block-row-l-8>:nth-of-type(8n+1){clear:both}.block-row-l-9>*{width:11.1111%}.block-row-l-9>:nth-of-type(n+1){clear:none}.block-row-l-9>:nth-of-type(9n+1){clear:both}.block-row-l-10>*{width:10%}.block-row-l-10>:nth-of-type(n+1){clear:none}.block-row-l-10>:nth-of-type(10n+1){clear:both}.block-row-l-11>*{width:9.0909%}.block-row-l-11>:nth-of-type(n+1){clear:none}.block-row-l-11>:nth-of-type(11n+1){clear:both}.block-row-l-12>*{width:8.3333%}.block-row-l-12>:nth-of-type(n+1){clear:none}.block-row-l-12>:nth-of-type(12n+1){clear:both}}.alert{margin:1rem 0;padding:0 1rem;background-color:#ffd54f;border-left:5px solid #ff6f00;color:#4f3c00}label,legend{display:block;margin-bottom:1rem}.alert .close,.alert-heading{color:inherit}.alert .close{right:-2.73rem;top:.13rem;float:right;background-color:transparent;border:none;font-size:1.17rem;font-weight:700}[dir=rtl] .alert .close{float:left;right:auto;left:-2.73rem}.alert .close:hover{text-decoration:underline}.alert-dismissable{padding-right:2.87rem}[dir=rtl] .alert-dismissable{padding-right:1rem;padding-left:2.87rem}button,input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:none;border-radius:0;color:inherit;cursor:pointer;display:inline-block;min-height:2rem;padding:0 1rem;margin-bottom:0;background:#dadada;border:1px solid silver;-ms-touch-action:manipulation;touch-action:manipulation;text-decoration:none}button:hover,input[type=button]:hover,input[type=reset]:hover,input[type=submit]:hover{background-color:#cdcdcd}button:active,input[type=button]:active,input[type=reset]:active,input[type=submit]:active{background-color:#e7e7e7;outline:0}button[disabled],input[type=button][disabled],input[type=reset][disabled],input[type=submit][disabled]{background-color:#e7e7e7;color:#5d5d5d;cursor:not-allowed;opacity:1;pointer-events:none}.input-group button,.input-group input[type=button],.input-group input[type=reset],.input-group input[type=submit]{min-width:100%}input[type=button],input[type=reset],input[type=submit]{max-width:none;width:auto}.btn-group>*{float:left}[dir=rtl] .btn-group>*{float:right}code,kbd,pre,samp{padding:.5rem;font-size:1rem;background-color:#f7f7f9;border:1px solid silver;font-family:monospace,monospace;color:#950b2f}code>kbd{background-color:#e8e8ee}code,kbd,samp{padding:.0667rem .25rem}kbd{white-space:nowrap}pre{overflow-x:auto}pre code,pre samp{padding:0;border:none}pre code{word-wrap:normal;white-space:pre}.pre-scrollable{max-height:20rem;overflow-y:scroll}fieldset{border:0;margin:0;padding:0}legend{width:100%}label[for]{cursor:pointer}label>input,label>input[type=checkbox],label>input[type=radio],label>select{display:inline-block;margin:0 1rem 0 0;vertical-align:text-top}.input-group-addon,audio,canvas,iframe,img,svg,video{vertical-align:middle}[dir=rtl] label>input,[dir=rtl] label>input[type=checkbox],[dir=rtl] label>input[type=radio],[dir=rtl] label>select{margin:0 0 0 1rem}.readonly,input,select,textarea{display:block;height:2rem;padding:.25rem;width:100%;margin-bottom:1rem;background:#fff;border:1px solid silver;border-radius:0;color:#222;font-family:inherit}[multiple],[multiple] option,img,textarea{height:auto}.readonly[disabled],fieldset[disabled] .readonly,fieldset[disabled] input,fieldset[disabled] select,fieldset[disabled] textarea,input[disabled],select[disabled],textarea[disabled]{background:#ebebeb;border-color:silver;color:silver;cursor:not-allowed;opacity:1}.readonly[hidden]{display:none}input[type=file]::-ms-value{background:#fff;border:none}input[type=file]::-ms-browse{padding-top:.1rem;background:#dadada;border:1px solid silver;color:#222}input[type=file]::-ms-browse:active{background-color:#e7e7e7}input[type=file]::-webkit-file-upload-button{-webkit-appearance:none;border-radius:0;background:#dadada;border:1px solid silver;color:#222}input[type=file]::-webkit-file-upload-button:active{background-color:#e7e7e7}input[type=color]{max-width:6.563rem}.media,img{max-width:100%}input[type=checkbox],input[type=radio]{height:1.334rem;min-width:1.334rem;margin-bottom:1.1rem;padding:0;width:auto}input[type=radio]{border-radius:100%;border:none\9}input[type=range]{border:1px solid transparent;border:1px solid silver\9;background-color:transparent;background-color:#fff\9;padding:.25rem 0;padding:.25rem\9}_::-ms-reveal,input[type=range]{border:1px solid transparent}input[type=color],input[type=text],input[type=search],input[type=datetime],input[type=datetime-local],input[type=date],input[type=week],input[type=month],input[type=time],input[type=number],input[type=password],input[type=tel],input[type=email],input[type=url],select,textarea{-webkit-appearance:none}select::-ms-expand{border:0;background-color:inherit}select option{height:100%}textarea{min-height:5.25rem;resize:both}textarea.horizontal{resize:horizontal}textarea.vertical{resize:vertical}textarea.no-resize{resize:none}.readonly,[readonly]{border-color:#ebebeb;cursor:not-allowed}::-webkit-input-placeholder{color:#767676;opacity:1}::-moz-placeholder{color:#767676;opacity:1}:-ms-input-placeholder{color:#767676;opacity:1}::placeholder{color:#767676;opacity:1}@-moz-document url-prefix(){input[type=color]{padding:0}input[type=file]{height:auto;min-height:2rem}}@media (-webkit-min-device-pixel-ratio:0){input[type=color]{padding:0}input[type=color]::-webkit-color-swatch-wrapper{padding:0}input[type=color]::-webkit-color-swatch{border:none}select{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSIxMC41Ij48cG9seWdvbiBmaWxsPSIjMjIyIiBwb2ludHM9IjExLDAgNS41LDkgMCwwIi8+PC9zdmc+);background-repeat:no-repeat;background-position:right .6rem center;padding-right:1.67rem}[dir=rtl] select{background-position:.6rem center;padding-right:0;padding-left:1.67rem}select[multiple]{background-image:none;padding-left:0;padding-right:0}}input.inline-block,select.inline-block{width:auto}.form-actions{margin:1rem 0;padding:1rem 0}.btn-group,.input-group{display:table;border-collapse:separate;width:100%;margin-bottom:1rem}.btn-group{width:auto}.btn-group>*,.input-group>*{display:table-cell;margin-bottom:0}.input-group-addon{width:1%;white-space:nowrap}.input-group-addon>*{margin-bottom:0!important}.supplement{padding:0 1rem;line-height:1.4;background:#dadada;border:1px solid silver}[dir=rtl] .supplement:last-child,html:not([dir=rtl]) .supplement:first-child{border-right:none}[dir=rtl] .supplement:first-child,html:not([dir=rtl]) .supplement:last-child{border-left:none}ol,ul{margin:1rem 0;padding-left:2.5rem}[dir=rtl] ol,[dir=rtl] ul{padding-left:0;padding-right:2.5rem}ol ol,ul ul{margin:0}ol.no-bullets,ul.no-bullets{padding-left:0}[dir=rtl] ol.no-bullets,[dir=rtl] ul.no-bullets{padding-right:0}ol.no-bullets>li,ul.no-bullets>li{list-style:none}ol.colored,ul.colored{padding-left:2.5rem}ol.colored>li,ul.colored>li{list-style-type:none;position:relative}ol.colored>li:before,ul.colored>li:before{position:absolute;top:.1rem;left:-1rem;-webkit-margin-start:-.25rem;content:"\25cf";color:#00a9ec;font-size:.8rem;text-align:right;text-decoration:none}[dir=rtl] ol.colored>li:before,[dir=rtl] ul.colored>li:before{left:auto;right:-1rem;text-align:left}ol.colored{counter-reset:foo}ol.colored>li{counter-increment:foo}ol.colored>li:before{content:counter(foo) ".";top:0;left:-3.125rem;width:2.5rem;-webkit-margin-start:0;font-size:1rem}.modal-loader:after,.modal-overlay:before{content:""}[dir=rtl] ol.colored>li:before{right:-3.125rem}dd,dt{min-height:1.4rem}@media print and (min-width:537px),screen and (min-width:48em){.dl-horizontal>dt{clear:left;float:left;width:9.375rem;white-space:nowrap;overflow:hidden;text-align:right;text-overflow:ellipsis}[dir=rtl] .dl-horizontal>dt{clear:right;float:right;text-align:left}.dl-horizontal>dd{margin-left:10.375rem}[dir=rtl] .dl-horizontal>dd{margin-left:auto;margin-right:10.375rem}}img[src*=".svg"]{width:100%\9}_::-ms-reveal,img[src*=".svg"]{width:100%}a img{border:none}.media{height:0;height:auto;margin-bottom:1rem;overflow:hidden;padding-bottom:56.25%;position:relative}.media.four-by-three{padding-bottom:75%}.media.instagram{height:auto;max-width:none;padding-bottom:120%}.media.vine{height:auto;max-width:none;padding-bottom:100%}.media.getty{height:auto;padding-bottom:79.9663%}.media embed,.media iframe,.media object,.media video{background-color:transparent;border:0;height:100%;left:0;margin:0;outline:0;padding:0;position:absolute;top:0;width:100%}.media img{bottom:-1000000%;left:-1000000%;margin:auto;position:absolute;right:-1000000%;top:-1000000%;width:100%}.table-scrollable,table{margin:1rem 0;width:100%}.media.media-scroll{overflow-y:auto;-webkit-overflow-scrolling:touch}table{max-width:100%}table td,table th{padding:.5rem;text-align:left;vertical-align:top}[dir=rtl] table td,[dir=rtl] table th{text-align:right}.table-bordered{border:1px solid silver;border-left-width:0;border-collapse:separate}.table-bordered td,.table-bordered th{border-top:1px solid silver;border-left:1px solid silver}.table-bordered tbody:first-child tr:first-child td,.table-bordered thead:first-child tr:first-child th{border-top-width:0}.table-bordered tbody:first-child tr:first-child th[scope=row]{border-top:none}.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#ebebeb}.table-scrollable{overflow-y:hidden;overflow-x:auto}.table-scrollable table{margin:0}.navigation,[data-navigation]{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);position:fixed;z-index:2147483647;width:1px;height:100%;top:0;bottom:0;right:0;visibility:hidden;background-color:#222;color:#fff;-webkit-transition:.3s linear width;transition:.3s linear width}.navigation.open,[data-navigation].open{width:260px}.navigation.visible,[data-navigation].visible{visibility:visible}.navigation>button:first-child,[data-navigation]>button:first-child{visibility:visible;background-color:#222;color:#fff;width:55px;height:48px;padding:0;position:absolute;left:1px;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);border:none}.navigation.pull,[data-navigation].pull,[dir=rtl] .navigation,[dir=rtl] [data-navigation]{float:none;right:auto;left:0}.navigation.pull>button:first-child,[data-navigation].pull>button:first-child,[dir=rtl] .navigation>button:first-child,[dir=rtl] [data-navigation]>button:first-child{left:auto;right:1px;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}[dir=rtl] .navigation.pull,[dir=rtl] [data-navigation].pull{left:auto;right:0}[dir=rtl] .navigation.pull>button:first-child,[dir=rtl] [data-navigation].pull>button:first-child{right:auto;left:1px;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.navigation>ul,[data-navigation]>ul{list-style:none;margin:0;padding:.5rem 0;width:260px;height:100%;overflow-y:auto}.navigation a,[data-navigation] a{color:inherit;display:block;padding:.5rem 1rem}.autosize,[data-autosize]{overflow:hidden;-webkit-transition:height .2s linear;transition:height .2s linear}.carousel{margin-bottom:1rem;overflow:hidden;position:relative;-webkit-perspective:1000}.carousel.no-transition>figure{-webkit-transition-duration:0s!important;transition-duration:0s!important}.carousel>figure{margin:0;display:none;position:relative;-webkit-transition:.7s ease-in-out left;transition:.7s ease-in-out left;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}[dir=rtl] .carousel>figure{-webkit-transition:.7s ease-in-out right;transition:.7s ease-in-out right}.carousel>figure>img{display:block;width:100%}.carousel>figure>figcaption{position:absolute;bottom:0;width:100%;max-height:50%;overflow-y:auto;padding:1px 3rem;background-color:rgba(34,34,34,.4);color:#fff}.carousel>ol{left:0;list-style:none;margin:0;padding:0;position:absolute;right:0;text-align:center;top:1rem;z-index:3}.carousel>ol li{background-color:transparent;border:1px solid #222;cursor:pointer;display:inline-block;height:1rem;margin:1px;text-indent:-9999px;width:1rem}.accordion-head,.carousel .carousel-active,.carousel .next,.carousel .prev,.carousel .swipe,.carousel>button,.collapse,.expand{display:block}.carousel>ol li:hover{background-color:silver}.carousel>ol .active,.carousel>ol .active:hover{background-color:#fff}.carousel .carousel-active,.carousel .next.left,.carousel .prev.right{left:0}[dir=rtl] .carousel .carousel-active,[dir=rtl] .carousel .next.left,[dir=rtl] .carousel .prev.right{left:auto;right:0}.carousel .carousel-active{position:relative!important;z-index:1}.carousel .next,.carousel .prev,.carousel .swipe{position:absolute;z-index:0;top:0;width:100%;height:100%}.carousel .carousel-active.right,.carousel .next{left:100%}[dir=rtl] .carousel .carousel-active.right,[dir=rtl] .carousel .next{left:auto;right:100%}[dir=rtl] .carousel .carousel-active.right.swiping,[dir=rtl] .carousel .next.swiping{right:-100%}.carousel .carousel-active.left,.carousel .prev{left:-100%}[dir=rtl] .carousel .carousel-active.left,[dir=rtl] .carousel .prev{left:auto;right:-100%}[dir=rtl] .carousel .carousel-active.left.swiping,[dir=rtl] .carousel .prev.swiping{right:100%}.carousel>button{position:absolute;left:1px;top:40%;z-index:3;width:3rem;height:3rem;margin-top:-1rem;background-color:transparent;border:none;font-size:2rem;font-weight:700;color:#fff;text-align:center;text-decoration:none}.carousel>button:hover,button.modal-close:hover,button.modal-direction:hover{text-decoration:underline}.carousel>button.forward,[dir=rtl] .carousel>button{left:auto;right:1px}[dir=rtl] .carousel>button.forward{right:auto;left:1px}.carousel-fade>figure{position:absolute;top:0;right:0!important;bottom:0;left:0!important;width:100%;height:100%;opacity:0}.carousel-fade>figure,[dir=rtl] .carousel-fade>figure{-webkit-transition:opacity .7s ease-in-out;transition:opacity .7s ease-in-out}.carousel-fade>figure.next,.carousel-fade>figure.prev,.carousel-fade>figure.swipe{z-index:1;opacity:1}.carousel-fade .carousel-active.swipe{z-index:2}.carousel-fade .carousel-active{opacity:1}.carousel-fade .carousel-active.left,.carousel-fade .carousel-active.right{z-index:2;opacity:0}.carousel-fade .carousel-control,.carousel-fade .carousel-control:visited{z-index:3}.accordion{border:1px solid silver;margin-bottom:.125rem}.accordion-head a{display:block;padding:.5rem}.accordion-body{padding:0 .5rem;border-top:solid 1px silver}.accordion-body.collapse{border-top-color:transparent}.collapse,.trans{-webkit-transition:height .3s ease,width .3s ease,border .3s ease;transition:height .3s ease,width .3s ease,border .3s ease}.collapse,.expand{height:auto;margin-top:0;overflow:hidden;position:relative;width:auto}.modal,.modal-close{display:inline-block}.collapse{height:0}.collapse.width{height:auto;width:0}.modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:2147483647;width:100%;height:100%;overflow:hidden;-ms-touch-action:none;touch-action:none;background-color:rgba(0,0,0,.7);-webkit-overflow-scrolling:touch;text-align:center}.modal-overlay:before{display:inline-block;height:100%;width:1px;margin-right:-1px;vertical-align:middle}[dir=rtl] .modal-overlay:before{margin-right:0;margin-left:-1px}.modal-loader:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:3;width:12px;height:4px;margin:auto;background-image:url(data:image/gif;base64,R0lGODlhDAAEAPABAP///wAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJMgABACwAAAAADAAEAAACCoQRqXm42h48MhUAIfkECTIAAQAsBAAAAAQABAAAAgSEjwkFACH5BAUyAAEALAgAAAAEAAQAAAIEhI8JBQA7);image-rendering:optimizeSpeed}.modal-close,.modal-direction{position:fixed;z-index:2;color:#fff;font-weight:700}.modal{max-height:95%;max-width:95%;vertical-align:middle;margin:0 auto;overflow:auto}.modal-content,.modal-image>img{max-height:100%}.modal-iframe,.modal-image{overflow:hidden}.modal-iframe .media,.modal-iframe iframe{max-height:100%;max-width:100%}.modal-iframe .media{background-color:#fff;margin-bottom:0}.modal-iframe.iframe-full{height:95%}.iframe-full .media{height:100%;padding:0}.modal-content{overflow:auto;padding:1rem;background-color:#fff;text-align:left}[dir=rtl] .modal-content{text-align:right}.modal-footer,.modal-header{position:fixed;top:0;right:0;left:0;color:#fff}.modal-header{padding:0 4.555rem}.modal-footer{top:auto;bottom:0}.modal-close{top:1px;right:1px;padding:1.245rem;font-size:1.5rem}[dir=rtl] .modal-close{right:auto;left:1px}.modal-direction{top:49%;left:0;display:block;width:3rem;padding:1rem;font-size:2rem;text-align:center}[dir=rtl] .modal-direction{right:0}.modal-direction.next{left:auto;right:0}[dir=rtl] .modal-direction.next{right:auto;left:0}button.modal-close,button.modal-direction{background-color:transparent;border:none}@media print and (max-width:536px),screen and (max-width:47.99em){[data-table-list]{opacity:0}.table-list{display:block}.table-list tfoot,.table-list th[scope=row],.table-list thead{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.table-list tbody,.table-list td,.table-list tr{position:static;display:block;overflow:visible;visibility:visible}.table-list tr:after,.table-list tr:before{content:"";display:table}.table-list td:before,.table-list th[scope=row]:before{content:attr(data-thead)}.table-list td:after,.table-list td:before,.table-list th[scope=row]:after,.table-list th[scope=row]:before{display:block;padding:.5rem 0;font-weight:700}.table-list tr:after{clear:both}.table-list td,.table-list th[scope=row]{float:left;width:100%}[dir=rtl] .table-list td,[dir=rtl] .table-list th[scope=row]{float:right}.table-list td:after,.table-list th[scope=row]:after{content:attr(data-tfoot)}.table-list.table-bordered:not(.no-thead){border-top-style:none}}.tabs{position:relative}.tabs>ul{list-style:none;border-bottom:1px solid silver;margin-top:0;padding:0}.tabs>ul>li{float:left;margin-bottom:-1px}.push,[dir=rtl] .tabs>ul>li{float:right}.tabs>ul>li a{display:block;line-height:2;margin-right:.2rem;padding:0 1rem;border:1px solid transparent;text-decoration:none;cursor:pointer}[dir=rtl] .tabs>ul>li a{margin-right:0;margin-left:.2rem}.tabs>ul>li a:hover{background-color:#ebebeb;border-color:silver}.tabs>ul>li>[aria-selected=true],.tabs>ul>li>[aria-selected=true]:hover{background-color:#fff;border:1px solid silver;border-bottom-color:transparent;color:#454545;cursor:default}.ir,.visuallyhidden{border:0;overflow:hidden}.tabs>*{display:none}.tabs [tabIndex="0"],.tabs>ul{display:block}.alert:after,.alert:before,.clearfix:after,.clearfix:before,.container-full:after,.container-full:before,.container:after,.container:before,.modal-ajax.container:after,.modal-ajax.container:before,.modal-iframe:after,.modal-iframe:before,.row:after,.row:before,.tabs>ul:after,.tabs>ul:before,[class*=block-row-]:after,[class*=block-row-]:before{content:"";display:table}.pull,[dir=rtl] .push{float:left}.push-xxs,[dir=rtl] .pull{float:right}.pull-xxs,[dir=rtl] .push-xxs{float:left}[dir=rtl] .pull-xxs{float:right}@media (max-width:37.49em){.push-xxs-only{float:right}.pull-xxs-only,[dir=rtl] .push-xxs-only{float:left}[dir=rtl] .pull-xxs-only{float:right}}@media print and (min-width:536px),screen and (min-width:37.5em){.push-xs{float:right}.pull-xs,[dir=rtl] .push-xs{float:left}[dir=rtl] .pull-xs{float:right}}@media print and (min-width:536px) and (max-width:536px),screen and (min-width:37.5em) and (max-width:47.99em){.push-xs-only{float:right}.pull-xs-only,[dir=rtl] .push-xs-only{float:left}[dir=rtl] .pull-xs-only{float:right}}@media print and (min-width:537px),screen and (min-width:48em){.push-s{float:right}.pull-s,[dir=rtl] .push-s{float:left}[dir=rtl] .pull-s{float:right}}@media print and (min-width:537px) and (max-width:61.99em),screen and (min-width:48em) and (max-width:61.99em){.push-s-only{float:right}.pull-s-only,[dir=rtl] .push-s-only{float:left}[dir=rtl] .pull-s-only{float:right}}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.block-xxs{display:block}.inline-block-xxs{display:inline-block}.inline-xxs{display:inline}@media (max-width:37.49em){.block-xxs-only{display:block}.inline-block-xxs-only{display:inline-block}.inline-xxs-only{display:inline}}@media print and (min-width:536px),screen and (min-width:37.5em){.block-xs{display:block}.inline-block-xs{display:inline-block}.inline-xs{display:inline}}@media print and (min-width:536px) and (max-width:536px),screen and (min-width:37.5em) and (max-width:47.99em){.block-xs-only{display:block}.inline-block-xs-only{display:inline-block}.inline-xs-only{display:inline}}@media print and (min-width:537px),screen and (min-width:48em){.block-s{display:block}.inline-block-s{display:inline-block}.inline-s{display:inline}}@media print and (min-width:537px) and (max-width:61.99em),screen and (min-width:48em) and (max-width:61.99em){.block-s-only{display:block}.inline-block-s-only{display:inline-block}.inline-s-only{display:inline}}.text-pull{text-align:left}.text-push,[dir=rtl] .text-pull{text-align:right}[dir=rtl] .text-push{text-align:left}.text-center{text-align:center}.text-xxs-pull{text-align:left}.text-xxs-push,[dir=rtl] .text-xxs-pull{text-align:right}[dir=rtl] .text-xxs-push{text-align:left}.text-xxs-center{text-align:center}@media (max-width:37.49em){.text-xxs-pull-only{text-align:left}.text-xxs-push-only,[dir=rtl] .text-xxs-pull-only{text-align:right}[dir=rtl] .text-xxs-push-only{text-align:left}.text-xxs-center-only{text-align:center}.grid-state-indicator{width:0}}@media print and (min-width:536px),screen and (min-width:37.5em){.text-xs-pull{text-align:left}.text-xs-push,[dir=rtl] .text-xs-pull{text-align:right}[dir=rtl] .text-xs-push{text-align:left}.text-xs-center{text-align:center}}@media print and (min-width:536px) and (max-width:536px),screen and (min-width:37.5em) and (max-width:47.99em){.text-xs-pull-only{text-align:left}.text-xs-push-only,[dir=rtl] .text-xs-pull-only{text-align:right}[dir=rtl] .text-xs-push-only{text-align:left}.text-xs-center-only{text-align:center}}@media print and (min-width:537px),screen and (min-width:48em){.text-s-pull{text-align:left}.text-s-push,[dir=rtl] .text-s-pull{text-align:right}[dir=rtl] .text-s-push{text-align:left}.text-s-center{text-align:center}}@media print and (min-width:537px) and (max-width:61.99em),screen and (min-width:48em) and (max-width:61.99em){.text-s-pull-only{text-align:left}.text-s-push-only,[dir=rtl] .text-s-pull-only{text-align:right}[dir=rtl] .text-s-push-only{text-align:left}.text-s-center-only{text-align:center}}@media (min-width:62em){.push-m{float:right}.pull-m,[dir=rtl] .push-m{float:left}[dir=rtl] .pull-m{float:right}.block-m{display:block}.inline-block-m{display:inline-block}.inline-m{display:inline}.text-m-pull{text-align:left}.text-m-push,[dir=rtl] .text-m-pull{text-align:right}[dir=rtl] .text-m-push{text-align:left}.text-m-center{text-align:center}}.grid-state-indicator{position:absolute;top:-9999px;height:1px;width:0}@media print and (max-width:536px),screen and (min-width:37.5em) and (max-width:47.99em){.grid-state-indicator{width:1px}}@media print and (min-width:537px) and (max-width:61.99em),screen and (min-width:48em) and (max-width:61.99em){.grid-state-indicator{width:2px}}@media (min-width:62em) and (max-width:74.99em){.push-m-only{float:right}.pull-m-only,[dir=rtl] .push-m-only{float:left}[dir=rtl] .pull-m-only{float:right}.block-m-only{display:block}.inline-block-m-only{display:inline-block}.inline-m-only{display:inline}.text-m-pull-only{text-align:left}.text-m-push-only,[dir=rtl] .text-m-pull-only{text-align:right}[dir=rtl] .text-m-push-only{text-align:left}.text-m-center-only{text-align:center}.grid-state-indicator{width:3px}}@media (min-width:75em){.push-l{float:right}.pull-l,[dir=rtl] .push-l{float:left}[dir=rtl] .pull-l{float:right}.block-l{display:block}.inline-block-l{display:inline-block}.inline-l{display:inline}.text-l-pull{text-align:left}.text-l-push,[dir=rtl] .text-l-pull{text-align:right}[dir=rtl] .text-l-push{text-align:left}.text-l-center{text-align:center}.grid-state-indicator{width:4px}}.scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}[data-lock],[data-lock] body{height:100%;overflow:hidden;-ms-touch-action:none;touch-action:none}.ir{background-color:transparent}.ir:before{content:"";display:block;height:150%;width:0}.hidden,.visible-l,.visible-m,.visible-s,.visible-xs,.visible-xxs{display:none!important}.visuallyhidden{clip:rect(0 0 0 0);height:1px;margin:-1px;padding:0;position:absolute;width:1px}.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.invisible{visibility:hidden}.fade-in,.fade-out{-webkit-transition:opacity .3s;transition:opacity .3s}.fade-out{opacity:0!important}.fade-in{opacity:1!important}@media (max-width:37.49em){.hidden-xxs{display:none!important}.visible-xxs{display:block!important}.visible-xxs.inline{display:inline!important}.visible-xxs.inline-block{display:inline-block!important}table.visible-xxs{display:table}thead.visible-xxs{display:table-header-group!important}tfoot.visible-xxs{display:table-footer-group!important}tr.visible-xxs{display:table-row!important}td.visible-xxs,th.visible-xxs{display:table-cell!important}col.visible-xxs{display:table-column!important}caption.visible-xxs{display:table-caption!important}}@media print and (max-width:536px),screen and (min-width:37.5em) and (max-width:47.99em){.hidden-xs{display:none!important}.visible-xs{display:block!important}.visible-xs.inline{display:inline!important}.visible-xs.inline-block{display:inline-block!important}table.visible-xs{display:table}thead.visible-xs{display:table-header-group!important}tfoot.visible-xs{display:table-footer-group!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}col.visible-xs{display:table-column!important}caption.visible-xs{display:table-caption!important}}@media print and (min-width:537px) and (max-width:61.99em),screen and (min-width:48em) and (max-width:61.99em){.hidden-s{display:none!important}.visible-s{display:block!important}.visible-s.inline{display:inline!important}.visible-s.inline-block{display:inline-block!important}table.visible-s{display:table}thead.visible-s{display:table-header-group!important}tfoot.visible-s{display:table-footer-group!important}tr.visible-s{display:table-row!important}td.visible-s,th.visible-s{display:table-cell!important}col.visible-s{display:table-column!important}caption.visible-s{display:table-caption!important}}@media (min-width:62em) and (max-width:74.99em){.hidden-m{display:none!important}.visible-m{display:block!important}.visible-m.inline{display:inline!important}.visible-m.inline-block{display:inline-block!important}table.visible-m{display:table}thead.visible-m{display:table-header-group!important}tfoot.visible-m{display:table-footer-group!important}tr.visible-m{display:table-row!important}td.visible-m,th.visible-m{display:table-cell!important}col.visible-m{display:table-column!important}caption.visible-m{display:table-caption!important}}@media (min-width:75em){.hidden-l{display:none!important}.visible-l{display:block!important}.visible-l.inline{display:inline!important}.visible-l.inline-block{display:inline-block!important}table.visible-l{display:table}thead.visible-l{display:table-header-group!important}tfoot.visible-l{display:table-footer-group!important}tr.visible-l{display:table-row!important}td.visible-l,th.visible-l{display:table-cell!important}col.visible-l{display:table-column!important}caption.visible-l{display:table-caption!important}}@media print{blockquote,img,pre,tr{page-break-inside:avoid}*,:after,:before,:first-letter,:first-line{box-shadow:none!important;text-shadow:none!important;background:0 0!important;color:#000!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid silver}thead{display:table-header-group}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.container,.modal-ajax.container,.modal-iframe{max-width:100%;width:100%}.container.fixed,.fixed .container,.fixed .modal-iframe,.fixed.modal-iframe{width:100%}}

@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'si';
    src: url("/Portals/_default/Skins/Monitran//css/socicon.eot");
    src: url("/Portals/_default/Skins/Monitran//css/socicon.eot?#iefix") format('embedded-opentype'),
         url("/Portals/_default/Skins/Monitran//css/socicon.woff") format('woff'),
         url("/Portals/_default/Skins/Monitran//css/socicon.ttf") format('truetype'),
         url("/Portals/_default/Skins/Monitran//css/socicon.svg#icomoonregular") format('svg');
    font-weight: normal;
    font-style: normal;
 
}
   /* Medium Devices, Desktops */
    @media (min-width : 992px) {
		
	.fixed {
	position:fixed;
	top:0px;
width:100%;}

    }


.widget {
    margin: 25px;
    padding: 0;
}
 
@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family:si;
        src: url("/Portals/_default/Skins/Monitran//css/PATH_TO/socicon.svg") format(svg);
    }
}

.soc {
    overflow:hidden;
    margin:0; padding:0;
    list-style:none;
}

.soc li {
    display:inline-block;
    *display:inline;
    zoom:1;
}

.soc li a {
    font-family:si!important;
    font-style:normal;
    font-weight:400;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    -o-box-sizing:border-box;
    box-sizing:border-box;

    -o-transition:.1s;
    -ms-transition:.1s;
    -moz-transition:.1s;
    -webkit-transition:.1s;
    transition:.1s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);

    overflow:hidden;
    text-decoration:none;
    text-align:center;
    display:block;
    position: relative;
    z-index: 1;
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 20px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    margin-right: 10px;
    color: #ffffff;
    background-color: none;
	-webkit-transition: -webkit-transform .8s ease-in-out;
          transition:         transform .8s ease-in-out;
}
.soc a:hover {
    z-index: 2;
    -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.soc-icon-last{
    margin:0 !important;
}

.soc-facebook {
    background-color: #3e5b98;
}
.soc-facebook:before {
    content:'b';
}
.soc-twitter {
    background-color: #4da7de;
}
.soc-twitter:before {
    content:'a';
}
.soc-linkedin {
    background-color: #3371b7;
}
.soc-linkedin:before {
    content:'j';
}


a,a:link,a:visited{
	color:#C51230;}

body {
	overflow-x:hidden;
	font-family: 'PT Sans', sans-serif;}
	
	label, legend {
    display:inline;
    margin-bottom: 1rem;
}
.sidebar {
	border-left: dashed 2px rgba(196,196,196,1.00);
	padding-left:15px;
}
.pinned {
	padding-bottom:50px;}
.mains {
	padding-right:15px;}
.maincontent p,.maincontent li {
	font-size:18px;
	font-family: 'PT Sans', sans-serif;
	line-height:1.5;}
.maincontent .Normal span {
	color:#c41230;}
.maincontent li {
	list-style-image:url("/Portals/_default/Skins/Monitran//css/bullet.png");}
	h1 {
	font-family: 'PT Sans', sans-serif;
	color:#C51230;}
	
h2,h3,h4,h5,h6 {
	font-family: 'PT Sans', sans-serif;
	}
	
.Leader h2 {
	font-size:36px;}
.blockred {
	background-color:#e31d38;
	padding:5px;
	margin-top:5px;}
.blockred p,.blockred a {
	color:white;
	font-size:15px;
	margin:0;}
	
	h2.tagline {
		font-weight:300;
		color:rgba(94,94,94,1.00);}
	h2.tagline span {
		color:#C51230;}
	.redbar {
		background-color:#C51230;
		z-index:999999 !important;}
	
/* NavBar */

.navbar {
	padding:20px;
	border-bottom: solid 4px #c41230;}
.navmen {
	padding-top:20px;
	margin-right:-20px;
	border-right:0px !important;}
	
/* Slider Text */

.hero-header {
    background: rgba(255, 255, 255, 0.9) none repeat scroll 0 0;
    left: 30%;
    outline: 4px double #fff;
    outline-offset: 8px;
    padding: 55px;
    position: absolute;
    top: 30%;
    transform: translateX(-50%) translateY(-50%);
}
.hero-header2 {
    background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0;
    left: 50%;
    outline: 4px double #fff;
    outline-offset: 8px;
    padding: 55px;
    position: absolute;
    top: 30%;
    transform: translateX(-50%) translateY(-50%);
}
.banner {
	position:relative;
}
.hero-header3 {
    /* background: rgba(255, 255, 255, 0.4) none repeat scroll 0 0; */
    left: 70%;
    padding: 15px;
    position: absolute;
    top: 30%;
    transform: translateX(-50%) translateY(-50%);
    /* -webkit-box-shadow: 0px 3px 10px 0px rgba(158,156,158,1); */
    -moz-box-shadow: 0px 3px 10px 0px rgba(158,156,158,1);
    /* box-shadow: 0px 3px 10px 0px rgba(158,156,158,1); */1) */
    BORDER-RADIUS: 8;
    outline: 3px double #ffffff;
    outline-offset: 8px;
	border-radius:8px;
}
.hero-header4 {
    background: rgba(255, 255, 255, 0.7) none repeat scroll 0 0;
    left: 50%;
	width:90%;
    outline: 2px double #fff;
    outline-offset: 4px;
    padding: 25px;
    position: absolute;
    top: 80%;
    transform: translateX(-50%) translateY(-50%);
}
.hero-header5 {
    /* background: rgba(255, 255, 255, 0.4) none repeat scroll 0 0; */
    left: 70%;
    padding: 15px;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* -webkit-box-shadow: 0px 3px 10px 0px rgba(158,156,158,1); */
    -moz-box-shadow: 0px 3px 10px 0px rgba(158,156,158,1);
    /* box-shadow: 0px 3px 10px 0px rgba(158,156,158,1); */1) */
    BORDER-RADIUS: 8;
    outline: 3px double #ffffff;
    outline-offset: 8px;
	border-radius:8px;
}
.text-center {
    text-align: center;
}
.hero-header-title {
    color: #ffffff;
    font-size: 2.3em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.hero-header-subtitle {
    color: #ffffff;
    font-size: 1.75em;
    letter-spacing: 0.15em;
    margin-top: 15px;
    text-transform: uppercase;
}
	
/* Slidez */

.slidez {
	position:relative;}	
	
	
/* Industries List */
.Industries {
	margin-top:-60px;
}
.Industries h2 {
	text-align:center;
	text-transform:uppercase;
	color:white;}
.Industries ul {
	display:block;
	background-color:#EBEBEB;
	margin-top:-18px;}
.Industries li {
	display:inline;
	padding:34px;
	line-height:80px;
	border-right: solid 1px #CDCDCD;}
.Industries li a {
	color:#686868;
	font-size:30px;
	text-decoration:none;}
	
.maincontent {
	background-color:white;}
	
.noborder{
	border-left:0px !important;
	border-right:0px !important;}

/* Red Block */
.RedBlock {
	background-color:#c41230;
	padding:30px;
	text-align:right;
	color:white;}
.cta p{
	text-align:center;
	color:white;
	text-transform:uppercase;
	font-size:36px !important;
	margin:0;}
	
/* Grey Block */
.GreyBlock {
	background-color:#bebfc3;
	padding:30px;
	text-align:left;
	color:white;}
.RedBlock h2,.GreyBlock h2 {
	font-size:24px;
	text-transform:uppercase;
	color:white;
	display:inline-block;
	border-bottom: solid 2px #ffffff;}
.RedBlock p,.RedBlock li,.GreyBlock p,.GreyBlock li {
	font-size:18px;
	font-family: 'PT Sans', sans-serif;
	line-height:1.5;
	color:#EBEBEB;}
a.learn {
	color:white;
	text-transform:uppercase;
	border: solid 1px white;
	border-radius:30px;
	text-decoration:none;
	padding:8px;}
	
/*Product Box */

.Product {
	border: solid 1px #D8D8D8;
	padding:8px;
	margin: 0 auto;
	text-align:center;
	background-color:rgba(229,227,227,1.00);}
.Product h2 {
	color:#c42031;
	text-transform:uppercase;
	font-size:18px;
	text-align:center;}
.Product p {
	font-size:15px;
	text-align:left;}
a.plink {
	display:inline-block;
	color:white;
	background-color:#c42031;
	padding:10px;
	text-decoration:none;
	margin: 0 auto;
	font-size:14px;
	text-transform:uppercase;
	margin-left:5px;}
	
	
/* background setup */
.background {
    background-repeat:no-repeat;
    /* custom background-position */
    background-position:50% 50%;
	
    /* ie8- graceful degradation */
    background-position:50% 50%\9 !important;
}
/* background setup */
.inner .background {
    background-repeat:no-repeat;
    /* custom background-position */
    background-position:50% 50%;
	background-size:auto !important;
	
    /* ie8- graceful degradation */
    background-position:50% 50%\9 !important;
}

/* fullscreen setup */
html, body {
    /* give this to all tags from html to .fullscreen */
    height:100%;
}
.fullscreen,
.content-a {
    width:100%;
    height:100%;
    overflow:hidden;
}
.fullscreen.overflow,
.fullscreen.overflow .content-a {
    height:auto;
    min-height:100%;
}

/* content centering styles */
.content-a {
    display:table;
}
.content-b {
	display:table-cell;
    position:relative;
	vertical-align:middle;
	text-align:center;
	padding:20px;
}


section {
	background:#9ed100;
}
.not-fullscreen {
    height:50%;
}
.foottop {
		border-top: solid 45px #C41230;}
.foot {

	background-color:#ECECEC;
	padding-top:40px;}
.foot ul {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
}
.foot li {
	list-style-type:disc;}
.foot p,.foot li{
	color:#393636;
	font-size:16px;
	line-height:1.5em;}
.foot a {
	color:#393636;
	text-decoration:none;}
.foot a:hover {
	color:#393636;}
.foot h3 {
	color:#393636;
	margin:0 !important;}
	
	
	
	
	
/*==========  Non-Mobile First Method  ==========*/

    /* Large Devices, Wide Screens */
    @media only screen and (max-width : 1200px) {

    }

    /* Medium Devices, Desktops */
    @media (max-width : 992px) {
		
		#signin_menu {
    background-color: #C51230;
    border: 1px none transparent;
    color: #fff;
    display: none;
    font-size: 11px;
    margin-right: 0;

    padding: 12px;
    position: absolute;
    text-align: left;
			right:0px
    z-index: 100;
}
		
	

    }

		
	

    /* Small Devices, Tablets */
    @media (max-width : 768px)
	and (orientation: portrait) {
		
		
		/* Slider Text */

		#signin_menu {
    background-color: #C51230;
    border: 1px none transparent;
    color: #fff;
    display: none;
    font-size: 11px;
    margin-right: 0;

    padding: 12px;
    position: absolute;
    text-align: left;
			right:0px
    z-index: 100;
}
		ul.searchSkinObjectPreview {
display:none !important;
}
		
		
		.Industries ul {
			padding:10px;
	display:block;
	background-color:#EBEBEB;
	margin-top:-18px;
	-moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
	padding-left:10px;}
.Industries li {
	display:list-item;
	padding:0px;
	line-height:normal;
	border-right:none;
	list-style:circle;
	line-height:1.5;}
.Industries li a {
	color:#686868;
	font-size:16px;
	text-decoration:none;}
	
	.Leader h2,h2 {
	font-size:20px;
	line-height:1.3em;}
	
	.Product {
		margin-bottom:10px;
    }
	
	.soc {
		margin-top:10px;}
		
		.sm-blue a, .sm-blue a:hover, .sm-blue a:focus, .sm-blue a:active {
    color: white;
    font-size: 18px !important;
    font-weight: normal;
    line-height: 21px !important;
    padding: 10px !important;
    text-decoration: none;
	border-bottom: solid 1px white;
}
.nomobile {display:none;}
	}
	
	    @media (max-width : 767px)
	and (orientation: portrait) {
		.slidez {display:none;}

ul.searchSkinObjectPreview {
display:none !important;
}

}

    /* Extra Small Devices, Phones */ 
    @media only screen and (max-width : 800px) {
		html {
			overflow: hidden !important;
		}

    }

    /* Custom, iPhone Retina */ 
    @media only screen and (max-width : 320px) {

    }
.box {
	-webkit-box-shadow: 0px 3px 10px 0px rgba(158,156,158,1);
-moz-box-shadow: 0px 3px 10px 0px rgba(158,156,158,1);
box-shadow: 0px 3px 10px 0px rgba(158,156,158,1);
padding:10px;
margin-bottom:20px;
margin-left:10px;
max-width:95%;
width:100%;
display:table;}
.box a.plink {
	float:right;}
.box h4 {
				float:left;
				margin:0;
				
			}
	    @media only screen and (max-width : 1360px) {
			.Industries li a {
    color: #686868;
    font-size: 16px !important;
    text-decoration: none;
}
			
.Industries li {
    border-right: 1px solid #cdcdcd;
    display: inline;
    line-height: 89px;
    padding: 34px;
}

    }
	
	@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)
and (orientation: landscape) {
	.hero-header-title {
    color: #ffffff;
    font-size: 1.3em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.hero-header-subtitle {
    color: #ffffff;
    font-size: 1.25em;
    letter-spacing: 0.15em;
    margin-top: 15px;
    text-transform: uppercase;
}
}

	@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)
and (orientation: portrait) {
	
	.hero-header3 {
		margin-top:20px;}
	.hero-header-title {
    color: #ffffff;
    font-size: 1.3em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.hero-header-subtitle {
    color: #ffffff;
    font-size: 1.25em;
    letter-spacing: 0.15em;
    margin-top: 15px;
    text-transform: uppercase;
}
}
.z-tabs > .z-container > .z-content.z-active {
    z-index: 1 !important;
}


.industryh2 {
	position:relative;
	margin-bottom:15px;
}
.industryh2 h2 {
	display:block;
	position:absolute;
	bottom:0;
	background-color: #C51230;
	margin:0;
	color:white;
	padding:10px;
	width:100%;
}



a.signin span {
    background-image: url("/Portals/_default/Skins/Monitran//css/searchup.png");
    display: block;
    height: 29px;
    width: 47px;
	margin-top:10px;
}
#topnav a.menu-open {
    background: #ddeef6 none repeat scroll 0 0 !important;
    color: #666 !important;
    outline: medium none;
}
a.signin.menu-open span {
    background-image: url("/Portals/_default/Skins/Monitran//css/searchup.png");
    display: block;
    height: 29px;
    width: 47px;
}
#signin_menu {
    background-color: #C51230;
    border: 1px none transparent;
    color: #fff;
    display: none;
    font-size: 11px;
    margin-right: 0;

    padding: 12px;
    position: absolute;
    text-align: left;
    z-index: 100;
}
#signin_menu input[type="text"], #signin_menu input[type="password"] {
    border: 1px solid #ace;
    border-radius: 4px;
    display: block;
    font-size: 13px;
    margin: 0 0 5px;
    padding: 5px;
    width: 203px;
}
#signin_menu p {
    margin: 0;
}
#signin_menu a {
    background-color: #cccccc;
    background-image: -moz-linear-gradient(center top , #eeeeee, #cccccc);
    color: #333333;
    display: inline-block;
    font: bold 1em/2em Arial,Helvetica;
    margin-left: -7px;
    padding: 0 1.5em;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
}
#signin_menu a:hover {
    background-color: #dddddd;
    background-image: -moz-linear-gradient(center top , #fafafa, #dddddd);
}
#signin_menu label {
    font-weight: normal;
}
#signin_menu p.remember {
    padding: 10px 0;
}
#signin_menu p.forgot, #signin_menu p.complete {
    clear: both;
    margin: 5px 0;
}
#signin_menu p a {
    color: #27b !important;
}
#signin_submit {
    background: #39d url("/Portals/_default/Skins/Monitran//css/images/bg-btn-blue.png") repeat-x scroll 0 0;
    border: 1px solid #39d;
    border-radius: 4px;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    margin: 0 5px 0 0;
    padding: 4px 10px 5px;
    text-shadow: 0 -1px 0 #39d;
}
#signin_submit::-moz-focus-inner {
    border: 0 none;
    padding: 0;
}
#signin_submit:hover, #signin_submit:focus {
    background-position: 0 -5px;
    cursor: pointer;
}
.tipsy-inner {
    font-weight: bold;
    line-height: 1.5em;
    padding: 10px 15px;
}
.tipsy {
    background-repeat: no-repeat;
    opacity: 0.8;
    padding: 5px;
}
.tipsy-inner {
    background-color: #000;
    border-radius: 4px;
    color: white;
    font: bold 11px "Lucida Grande",sans-serif;
    max-width: 200px;
    padding: 8px;
    text-align: left;
}
.tipsy-north {
    background-image: url("/Portals/_default/Skins/Monitran//css/images/tipsy-north.gif");
    background-position: center top;
}
.tipsy-south {
    background-image: url("/Portals/_default/Skins/Monitran//css/images/tipsy-south.gif");
    background-position: center bottom;
}
.tipsy-east {
    background-image: url("/Portals/_default/Skins/Monitran//css/images/tipsy-east.gif");
    background-position: right center;
}
.tipsy-west {
    background-image: url("/Portals/_default/Skins/Monitran//css/images/tipsy-west.gif");
    background-position: left center;
}


/*------------------------------------------------*/
/* SEARCH */
/*------------------------------------------------*/
#search {
    float: right;
    width: 239px;
    height: 32px;
}

    #search a.SearchButton:link,
    #search a.SearchButton:visited {
        display: inline-block;
        float: right;
        height: 32px;
        width: 32px;
        margin: 0;
        padding: 0;
        background: #333 url("/Portals/_default/Skins/Monitran//css/search.png") no-repeat center center;
        text-indent: -9999px;
    }



    #search a.SearchButton:hover {
        background: url("/Portals/_default/Skins/Monitran//css/search.png") no-repeat center center, rgb(45,45,45); /* Old browsers */
        background: url("/Portals/_default/Skins/Monitran//css/search.png") no-repeat center center, -moz-linear-gradient(top, rgba(45,45,45,1) 0%, rgba(86,86,86,1) 100%); /* FF3.6+ */
        background: url("/Portals/_default/Skins/Monitran//css/search.png") no-repeat center center, -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(45,45,45,1)), color-stop(100%,rgba(86,86,86,1))); /* Chrome,Safari4+ */
        background: url("/Portals/_default/Skins/Monitran//css/search.png") no-repeat center center, -webkit-linear-gradient(top, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* Chrome10+,Safari5.1+ */
        background: url("/Portals/_default/Skins/Monitran//css/search.png") no-repeat center center, -o-linear-gradient(top, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* Opera 11.10+ */
        background: url("/Portals/_default/Skins/Monitran//css/search.png") no-repeat center center, -ms-linear-gradient(top, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* IE10+ */
        background: url("/Portals/_default/Skins/Monitran//css/search.png") no-repeat center center, linear-gradient(to bottom, rgba(45,45,45,1) 0%,rgba(86,86,86,1) 100%); /* W3C */
    }

#dnn_dnnSearch_txtSearch {
    display: block;
    float: left;
    width: 160px;
    height: 32px;
    padding: 0 5px 0 10px;
    margin: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    border-left: 1px solid #ddd;
    color: #fff !important;
    line-height: 32px;
    font-size: 11px;
    -webkit-transition: all 100ms ease-in-out;
    -moz-transition: all 100ms ease-in-out;
    -ms-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;

}
#dnn_dnnSearch_txtSearch {color:white !important;}

    #dnn_dnnSearch_txtSearch:active, #dnn_dnnSearch_txtSearch:focus {
        background: #ccc;
        box-shadow: inset 0px 3px 8px #999;
    }



.searchInputContainer a.dnnSearchBoxClearText {
    
    display: none !important;

}
/*------------------------------------------------*/

*::-moz-placeholder {
    color: #fff;
    opacity: 1;
}


ul.searchSkinObjectPreview {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #c9c9c9;
    list-style: outside none none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100% !important;
    z-index: 200;
}




#cookie-assistant-wrapper {
    background-color: #eeeeee;
    border: 1px solid rgba(98, 98, 98, 0.19);
    bottom: 45px;
    font-family: "Open Sans",sans-serif !important;
    font-size: 25px !important;
    height: 110px !important;
    line-height: 1em !important;
    padding: 8px 10px;
    position: fixed !important;
    left:50px;
    width: 170px !important;
    z-index: 9999 !important;
}
#cookie-triangle {
display:none;
}


.btn:hover,
.btn:focus,
.btn:active{
    outline: 0 !important;
}
/* entire container, keeps perspective */
.card-container {
	  -webkit-perspective: 800px;
   -moz-perspective: 800px;
     -o-perspective: 800px;
        perspective: 800px;
        margin-bottom: 30px;
}
/* flip the pane when hovered */
.card-container:not(.manual-flip):hover .card,
.card-container.hover.manual-flip .card{
	-webkit-transform: rotateY( 180deg );
-moz-transform: rotateY( 180deg );
 -o-transform: rotateY( 180deg );
    transform: rotateY( 180deg );
}


.card-container.static:hover .card,
.card-container.static.hover .card {
	-webkit-transform: none;
-moz-transform: none;
 -o-transform: none;
    transform: none;
}
/* flip speed goes here */
.card {
	 -webkit-transition: -webkit-transform .5s;
   -moz-transition: -moz-transform .5s;
     -o-transition: -o-transform .5s;
        transition: transform .5s;
-webkit-transform-style: preserve-3d;
   -moz-transform-style: preserve-3d;
     -o-transform-style: preserve-3d;
        transform-style: preserve-3d;
	position: relative;
}

/* hide back of pane during swap */
.front, .back {
	-webkit-backface-visibility: hidden;
   -moz-backface-visibility: hidden;
     -o-backface-visibility: hidden;
        backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #FFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.14);
}

/* front pane, placed above back */
.front {
	z-index: 2;
}

/* back, initially hidden pane */
.back {
		-webkit-transform: rotateY( 180deg );
   -moz-transform: rotateY( 180deg );
     -o-transform: rotateY( 180deg );
        transform: rotateY( 180deg );
        z-index: 3;
}

.back .btn-simple{
    position: absolute;
    left: 0;
    bottom: 4px;
}
/*        Style       */


.card{
    background: none repeat scroll 0 0 #FFFFFF;
    border-radius: 4px;
    color: #444444;
}
.card a,.card a:hover  {
	color:#C51230;
	font-weight:bold;
	text-decoration:none;}

.card-container, .front, .back {
	width: 100%;
	height: 420px;
	border-radius: 4px;
}
.card .cover{
    height: 105px;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}
.card .cover img{
    width: 100%;
}
.card .user{
    border-radius: 50%;
    display: block;
    margin: -55px auto 0;
    overflow: hidden;
    width: 120px;
}
.card .user img{
    background: none repeat scroll 0 0 #FFFFFF;
    width: 100%;
}

.card .content{
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    padding: 10px 20px 20px;
}
.card .content .main {
    min-height: 160px;
}
.card .back .content .main {
    height: 215px;
}
.card .name {
    font-size: 22px;
    line-height: 28px;
    margin: 10px 0 0;
    text-align: center;
    text-transform: capitalize;
}
.card h5{
    margin: 5px 0;
    font-weight: 400;
    line-height: 20px;
}
.card .profession{
    color: #999999;
    text-align: center;
    margin-bottom: 20px;
}
.card .footer {
    border-top: 1px solid #EEEEEE;
    color: #999999;
    margin: 30px 0 0;
    padding: 10px 0 0;
    text-align: center;
}
.card .footer .social-links{
    font-size: 18px;
}
.card .footer .social-links a{
    margin: 0 7px;
}
.card .footer .btn-simple{
    margin-top: -6px;
}
.card .header {
    padding: 15px 20px;
    height: 90px;
}
.card .motto{
    border-bottom: 1px solid #EEEEEE;
    color: #999999;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 10px;
    text-align: center;
}

.card .stats-container{
	width: 100%;
	margin-top: 50px;
}
.card .stats{
	display: block;
	float: left;
	width: 33.333333%;
	text-align: center;
}

.card .stats:first-child{
	border-right: 1px solid #EEEEEE;
}
.card .stats:last-child{
	border-left: 1px solid #EEEEEE;
}
.card .stats h4{
	font-weight: 300;
	margin-bottom: 5px;
}
.card .stats p{
	color: #777777;
}
/*      Just for presentation        */

.title{
    color: #506A85;
    text-align: center;
    font-weight: 300;
    font-size: 44px;
    margin-bottom: 90px;
    line-height: 90%;
}
.title small{
    font-size: 17px;
    color: #999;
    text-transform: uppercase;
    margin: 0;
}
.space-30{
	height: 30px;
	display: block;
}
.space-50{
    height: 50px;
    display: block;
}
.space-200{
    height: 200px;
    display: block;
}
.white-board{
    background-color: #FFFFFF;
    min-height: 200px;
    padding: 60px 60px 20px;
}
.ct-heart{
    color: #F74933;
}

 pre.prettyprint{
    background-color: #ffffff;
    border: 1px solid #999;
    margin-top: 20px;
    padding: 20px;
    text-align: left;
}
.atv, .str{
    color: #05AE0E;
}
.tag, .pln, .kwd{
     color: #3472F7;
}
.atn{
  color: #2C93FF;
}
.pln{
   color: #333;
}
.com{
    color: #999;
}

.btn-simple{
    opacity: .8;
    color: #666666;
    background-color: transparent;
}

.btn-simple:hover,
.btn-simple:focus{
    background-color: transparent;
    box-shadow: none;
    opacity: 1;
}
.btn-simple i{
    font-size: 16px;
}

.navbar-brand-logo{
    padding: 0;
}
.navbar-brand-logo .logo{
    border: 1px solid #333333;
    border-radius: 50%;
    float: left;
    overflow: hidden;
    width: 60px;
}
.navbar .navbar-brand-logo .brand{
    color: #FFFFFF;
    float: left;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    margin-left: 10px;
    margin-top: 10px;
    width: 60px;
}
.navbar-default .navbar-brand-logo .brand{
    color: #555;
}


/*       Fix bug for IE      */

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .front, .back{
        -ms-backface-visibility: visible;
        backface-visibility: visible;
    }

    .back {
        visibility: hidden;
        -ms-transition: all 0.2s cubic-bezier(.92,.01,.83,.67);
    }
    .front{
        z-index: 4;
    }
    .card-container:not(.manual-flip):hover .back,
    .card-container.manual-flip.hover .back{
        z-index: 5;
        visibility: visible;
    }
}


/* Mobile first layout SmartMenus Core CSS (it's not recommended editing these rules)
   You need this once per page no matter how many menu trees or different themes you use.
-------------------------------------------------------------------------------------------*/

.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;-webkit-tap-highlight-color:rgba(0,0,0,0);}
.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right;}
.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0;}
.sm ul{display:none;}
.sm li,.sm a{position:relative;}
.sm a{display:block;}
.sm a.disabled{cursor:not-allowed;}
.sm:after{content:"\00a0";display:block;height:0;font:0px/0 serif;clear:both;visibility:hidden;overflow:hidden;}
.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}


.sm-blue {

}
.sm-blue a, .sm-blue a:hover, .sm-blue a:focus, .sm-blue a:active {
    color: white;
    font-size: 20px;
    font-weight: normal;
    line-height: 26px;
    padding: 15px;
    text-decoration: none;
}
.sm-blue a.current {
    background: #006892 linear-gradient(to bottom, #005678, #007aab) repeat scroll 0 0;
    color: white;
}
.sm-blue a.disabled {
    color: #a1d1e8;
}
.sm-blue a span.sub-arrow {
    background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0;
    font: bold 16px/34px monospace !important;
    height: 34px;
    left: auto;
    margin-top: -17px;
    overflow: hidden;
    position: absolute;
    right: 4px;
    text-align: center;
    text-shadow: none;
    top: 50%;
    width: 34px;
}
.sm-blue a.highlighted span.sub-arrow::before {
    content: "-";
    display: block;
}
.sm-blue > li:first-child > a, .sm-blue > li:first-child > *:not(ul) a {
}
.sm-blue > li:last-child > a, .sm-blue > li:last-child > *:not(ul) a, .sm-blue > li:last-child > ul, .sm-blue > li:last-child > ul > li:last-child > a, .sm-blue > li:last-child > ul > li:last-child > *:not(ul) a, .sm-blue > li:last-child > ul > li:last-child > ul, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > a, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul {
	
}
.sm-blue > li:last-child > a.highlighted, .sm-blue > li:last-child > *:not(ul) a.highlighted, .sm-blue > li:last-child > ul > li:last-child > a.highlighted, .sm-blue > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted, .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted {
    border-radius: 0;
}
.sm-blue ul {
    background: white none repeat scroll 0 0;
}
.sm-blue ul ul {
    background: rgba(102, 102, 102, 0.1) none repeat scroll 0 0;
}
.sm-blue ul a, .sm-blue ul a:hover, .sm-blue ul a:focus, .sm-blue ul a:active {
    background: transparent none repeat scroll 0 0;
    border-left: 8px solid transparent;
    color: #2b82ac;
    font-size: 16px;
    text-shadow: none;
}
.sm-blue ul a.current {
    background: #006892 linear-gradient(to bottom, #005678, #007aab) repeat scroll 0 0;
    color: white;
}
.sm-blue ul a.disabled {
    color: #b3b3b3;
}
.sm-blue ul ul a, .sm-blue ul ul a:hover, .sm-blue ul ul a:focus, .sm-blue ul ul a:active {
    border-left: 16px solid transparent;
}
.sm-blue ul ul ul a, .sm-blue ul ul ul a:hover, .sm-blue ul ul ul a:focus, .sm-blue ul ul ul a:active {
    border-left: 24px solid transparent;
}
.sm-blue ul ul ul ul a, .sm-blue ul ul ul ul a:hover, .sm-blue ul ul ul ul a:focus, .sm-blue ul ul ul ul a:active {
    border-left: 32px solid transparent;
}
.sm-blue ul ul ul ul ul a, .sm-blue ul ul ul ul ul a:hover, .sm-blue ul ul ul ul ul a:focus, .sm-blue ul ul ul ul ul a:active {
    border-left: 40px solid transparent;
}
.sm-blue ul li {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.sm-blue ul li:first-child {
    border-top: 0 none;
}


@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)  { 
.sm-blue a, .sm-blue a:hover, .sm-blue a:focus, .sm-blue a:active {
   
    color: white;
    font-size: 16px !important;
    font-weight: normal;
    line-height: 23px;
    padding: 10px;
    text-decoration: none;
    transition: background 400ms ease-in 0s;
}
p, .Normal, .NormalDisabled, .NormalDeleted, li {
    font-size: 17px !important;
    line-height: 1.6em;
}
.card .card-content {
    min-height: 255px;
}
.twtr-mid {
width:225px !important;}
#DCCTwFeed .twtr-tweet .twtr-tweet-text {
    color: #8a8989;
    font-family: "Source Sans Pro",sans-serif;
    font-size: 11px !important;
	text-wrap:normal !important;
    margin-left: 10px;
}
#dnn_Foot4 {display:none !important;} 
.page-footer .col-md-3 {
	width:33.33333%;}
}
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)
and (orientation: portrait) {
	.page-footer .col-md-3 {
	width:100%;}
	.card .card-content {
    min-height: 20px;
}


}
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)
and (orientation: landscape) {
.sm-blue a, .sm-blue a:hover, .sm-blue a:focus, .sm-blue a:active {
    color: white;
    font-size: 18px !important;
    font-weight: normal;
    line-height: 26px;

    padding: 15px;
    text-decoration: none;
}}
@media (max-width: 767px) {
.sm-blue a, .sm-blue a:hover, .sm-blue a:focus, .sm-blue a:active {
    color: white;
    font-size: 16px !important;
    font-weight: normal;
    line-height: 26px;
	border-bottom: solid 2px white;
    padding: 15px;
    text-decoration: none;
}
.slidez {display:none;}}
@media (min-width: 768px) {
.sm-blue ul {
    position: absolute;
}
.sm-blue li {
    float: left;
}
.sm-blue.sm-rtl li {
    float: right;
}
.sm-blue ul li, .sm-blue.sm-rtl ul li, .sm-blue.sm-vertical li {
    float: none;
}
.sm-blue a {
    white-space: nowrap;
}
.sm-blue ul a, .sm-blue.sm-vertical a {
    white-space: normal;
}
.sm-blue .sm-nowrap > li > a, .sm-blue .sm-nowrap > li > *:not(ul) a {
    white-space: nowrap;
}
.sm-blue {
}
.sm-blue a, .sm-blue a:hover, .sm-blue a:focus, .sm-blue a:active, .sm-blue a.highlighted {
    color: #ffffff;
    margin-right: 5px;

}
.sm-blue a:hover, .sm-blue a:focus, .sm-blue a:active, .sm-blue a.highlighted {
    background: #f4f4f4 none repeat scroll 0 0;
    color: #C51230;
}
.sm-blue a.current {
    background: #006892 linear-gradient(to bottom, #005678, #007aab) repeat scroll 0 0;
    color: white;
}
.sm-blue a.disabled {
    background: #3092c0 linear-gradient(to bottom, #3b9fce, #2b82ac) repeat scroll 0 0;
    color: #a1d1e8;
}
.sm-blue a span.sub-arrow {
    background: transparent none repeat scroll 0 0;
    border-color: #ffffff transparent transparent;
    border-radius: 0;
    border-style: solid dashed dashed;
    border-width: 5px;
    bottom: 2px;
    height: 0;
    left: 50%;
    margin-left: -5px;
    margin-top: 0;
    right: auto;
    top: auto;
    width: 0;
}
.sm-blue a.highlighted span.sub-arrow::before {
    display: none;
}
.sm-blue > li:first-child > a, .sm-blue > li:first-child > *:not(ul) a {
}
.sm-blue > li {
}
.sm-blue > li:first-child {
    border-left: 0 none;
}
.sm-blue ul {
    background: white none repeat scroll 0 0;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}
.sm-blue ul ul {
    background: white none repeat scroll 0 0;
}
.sm-blue ul ul a:hover {
    background: #ebe9e9 none repeat scroll 0 0;
    color: #034e8b;
}
.sm-blue ul a, .sm-blue ul a:hover, .sm-blue ul a:focus, .sm-blue ul a:active, .sm-blue ul a.highlighted {
    background: transparent none repeat scroll 0 0;
    border: 0 none !important;
    color: #2b82ac;
    margin-right: 0;
    padding: 9px 23px;
}
.sm-blue ul a:hover, .sm-blue ul a:focus, .sm-blue ul a:active, .sm-blue ul a.highlighted {
    background: #f8f8f8 none repeat scroll 0 0;
}
.sm-blue ul a.current {
    background: #ebebeb none repeat scroll 0 0;
    color: #04508c;
}
.sm-blue ul a.disabled {
    background: white none repeat scroll 0 0;
    color: #b3b3b3;
}
.sm-blue ul a span.sub-arrow {
    border-color: transparent transparent transparent #a1d1e8;
    border-style: dashed dashed dashed solid;
    bottom: auto;
    left: auto;
    margin-left: 0;
    margin-top: -5px;
    right: 10px;
    top: 50%;
}
.sm-blue ul li {
    border: 0 none;
}
.sm-blue span.scroll-up, .sm-blue span.scroll-down {
    background: white none repeat scroll 0 0;
    display: none;
    height: 20px;
    overflow: hidden;
    position: absolute;
    visibility: hidden;
}
.sm-blue span.scroll-up-arrow, .sm-blue span.scroll-down-arrow {
    border-color: transparent transparent #2b82ac;
    border-style: dashed dashed solid;
    border-width: 8px;
    height: 0;
    left: 50%;
    margin-left: -8px;
    overflow: hidden;
    position: absolute;
    top: -2px;
    width: 0;
}
.sm-blue span.scroll-down-arrow {
    border-color: #2b82ac transparent transparent;
    border-style: solid dashed dashed;
    top: 6px;
}
.sm-blue.sm-rtl.sm-vertical a span.sub-arrow {
    border-color: transparent #a1d1e8 transparent transparent;
    border-style: dashed solid dashed dashed;
    left: 10px;
    right: auto;
}
.sm-blue.sm-rtl > li:first-child > a, .sm-blue.sm-rtl > li:first-child > *:not(ul) a {
}
.sm-blue.sm-rtl > li:first-child {
    border-left: 1px solid #2b82ac;
}
.sm-blue.sm-rtl > li:last-child {
    border-left: 0 none;
}
.sm-blue.sm-rtl ul a span.sub-arrow {
    border-color: transparent #a1d1e8 transparent transparent;
    border-style: dashed solid dashed dashed;
    left: 10px;
    right: auto;
}
.sm-blue.sm-vertical {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.sm-blue.sm-vertical a {
    padding: 9px 23px;
}
.sm-blue.sm-vertical a span.sub-arrow {
    border-color: transparent transparent transparent #a1d1e8;
    border-style: dashed dashed dashed solid;
    bottom: auto;
    left: auto;
    margin-left: 0;
    margin-top: -5px;
    right: 10px;
    top: 50%;
}
.sm-blue.sm-vertical > li:first-child > a, .sm-blue.sm-vertical > li:first-child > *:not(ul) a {
}
.sm-blue.sm-vertical > li:last-child > a, .sm-blue.sm-vertical > li:last-child > *:not(ul) a {
}
.sm-blue.sm-vertical > li {
    border-left: 0 none !important;
}
.sm-blue.sm-vertical ul {
}
.sm-blue.sm-vertical ul a {
    padding: 9px 23px;
}
}





/* Home Page style */
.banner-container {
    background: #00a4e3 url("/Portals/0/Images/background_header.gif") no-repeat center center;
    padding: 25px 0;
    min-height: 255px;
	display: table;
}
.banner-container h2 {
    font-weight: bold;
    font-size: 33px;
    color: #fff;
    font-family: Arial;
    text-align: right;
    margin: 25px 0;
}
.banner-container span {
    font-size: 18px;
    color: #fff;
    line-height: 150%;
    text-align: right;
    font-family: Arial;
}
.intro-container {
    background: -moz-linear-gradient(top, #d3d3d3 0%, #e6e6e6 100%);
    /* FF3.6+ */
    
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d3d3d3), color-stop(100%, #e6e6e6));
    /* Chrome,Safari4+ */
    
    background: -webkit-linear-gradient(top, #d3d3d3 0%, #e6e6e6 100%);
    /* Chrome10+,Safari5.1+ */
    
    background: -o-linear-gradient(top, #d3d3d3 0%, #e6e6e6 100%);
    /* Opera 11.10+ */
    
    background: -ms-linear-gradient(top, #d3d3d3 0%, #e6e6e6 100%);
    /* IE10+ */
    
    background: linear-gradient(top, #d3d3d3 0%, #e6e6e6 100%);
    /* W3C */
    
    margin: -10px;
    margin-top: 10px;
}
.intro-container .main {
    margin-top: 68px;
}
.intro-container .main h2 {
    font-size: 30px;
    color: #47292a;
    font-weight: normal;
    font-family: Arial;
    text-align: center;
}
.intro-container .main ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.intro-container .main ul li {
    margin-top: 15px;
    padding: 0 7.5px;
}
.intro-container .main ul li a {
    background-repeat: no-repeat;
    background-position: center 38px;
}
.intro-container .main ul li > a {
    display: block;
    position: relative;
    border: 1px solid #c5c5c5;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #fafafa;
}
.intro-container .main ul li a span.overlay {
    background-color: #000;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-transition: opacity 3s ease-out;
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 3s ease-out;
    transition: opacity 0.2s ease-out;
    padding: 0 10px 20px 10px;
    color: #00a4e3;
    font-family: Arial;
    font-size: 14px;
    display: table-cell;
    vertical-align: middle;
    height: 235px;
    position: relative;
}
.intro-container .main ul li a span.overlay p {
    margin: 0;
    font-size: 12px;
}
.intro-container .main ul li a span.overlay label {
    text-transform: uppercase;
    font-family: Arial;
    font-size: 13px;
    color: #fff;
    margin-top: 10px;
    background: url("/Portals/0/Images/icon-btn-sm-circle-arrow.png") no-repeat right center;
    padding-right: 18px;
    display: block;
    float: left;
}
.intro-container .main ul li a:hover span.overlay,
.intro-container .main ul li a:focus span.overlay,
.intro-container .main ul li a:active span.overlay {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    opacity: 0.8;
    -moz-transition: opacity 3s ease-in;
    -webkit-transition: opacity 0.2s ease-in;
    -o-transition: opacity 3s ease-in;
    transition: opacity 0.2s ease-in;
}
.intro-container .main ul li a span.text {
    display: block;
    height: 65px;
    line-height: 65px;
    margin-top: -65px;
    background-color: #47292a;
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-family: Arial Bold;
    text-transform: uppercase;
    -webkit-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.intro-container .main ul li.qa a {
    background-image: url("/Portals/0/Images/icon-qa.png");
    margin-left: 0;
}
.intro-container .main ul li.blog a {
    background-image: url("/Portals/0/Images/icon-blog.png");
}
.intro-container .main ul li.leader a {
    background-image: url("/Portals/0/Images/icon-leaderboard.png");
}
.intro-container .main ul li.video a {
    background-image: url("/Portals/0/Images/icon-videos.png");
    margin-left: 0;
}
.intro-container .main ul li.shop a {
    background-image: url("/Portals/0/Images/icon-shop.png");
}
.intro-container .main ul li.help a {
    background-image: url("/Portals/0/Images/icon-online-help.png");
}
.intro-container .main ul li.forum a {
    background-image: url("/Portals/0/Images/icon-forums.png");
    margin-left: 0;
}
.intro-container .main ul li.webinar a {
    background-image: url("/Portals/0/Images/icon-webinars.png");
}
.intro-container .main ul li.wiki a {
    background-image: url("/Portals/0/Images/icon-wikis.png");
}
.intro-container .slide.pull-right {
    margin-right: 27px;
    padding-right: 0;
	margin-bottom: 25px;
}
.intro-container .slide .social-links {
    text-align: center;
}
.intro-container .slide .social-links h3 {
    font-family: Arial;
    font-size: 17px;
}
.intro-container .slide .social-links ul {
    list-style: none;
    width: 152px;
    margin: 0 auto;
}
.intro-container .slide .social-links ul li {
    width: 29px;
    height: 29px;
    background-size: 100% 100%;
    margin-top: 0;
    margin-left: 10px;
}
.intro-container .slide .social-links ul li a {
    display: block;
    height: 100%;
    border: none;
    background: transparent;
    width: 29px;
    margin-left: -7px;
}
.intro-container .slide .social-links ul li.facebook {
    background-image: url("/Portals/0/Images/icon-social-facebook.png");
    margin: 0;
}
.intro-container .slide .social-links ul li.linkedin {
    background-image: url("/Portals/0/Images/icon-social-linkedin.png");
}
.intro-container .slide .social-links ul li.twitter {
    background-image: url("/Portals/0/Images/icon-social-twitter.png");
}
.intro-container .slide .social-links ul li.youtube {
    background-image: url("/Portals/0/Images/icon-social-youtube.png");
}
.intro-container .slide .product {
    font-size: 18px;
    font-family: Arial;
    color: #47292a;
    background-color: #fff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #c5c5c5;
    text-align: center;
    margin-top: 15px;
    padding-top: 21px;
}
.intro-container .slide .product img {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.intro-container .slide .product p {
    border-top: 1px solid #47292a;
    line-height: 185%;
    padding-top: 30px;
    line-height: 185%;
    margin: 23px 10px 0 10px;
}
.intro-container .slide .product .btn-action {
    background: -moz-linear-gradient(top, #0498d4 0%, #0374a5 100%);
    /* FF3.6+ */
    
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0498d4), color-stop(100%, #0374a5));
    /* Chrome,Safari4+ */
    
    background: -webkit-linear-gradient(top, #0498d4 0%, #0374a5 100%);
    /* Chrome10+,Safari5.1+ */
    
    background: -o-linear-gradient(top, #0498d4 0%, #0374a5 100%);
    /* Opera 11.10+ */
    
    background: -ms-linear-gradient(top, #0498d4 0%, #0374a5 100%);
    /* IE10+ */
    
    background: linear-gradient(top, #0498d4 0%, #0374a5 100%);
    /* W3C */
    
    -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.6), 0 1px 0 0 rgba(255, 255, 255, 0.4) inset;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.6), 0 1px 0 0 rgba(255, 255, 255, 0.4) inset;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-size: 12px;
    color: #fff;
    display: block;
    font-family: Arial Bold;
    background-color: #0374a5;
    margin: 10px;
}
.intro-container .slide .product .btn-action span {
    display: block;
    line-height: 26px;
    text-align: center;
    padding: 20px 0;
}
.intro-container .slide .product .btn-action:hover {
    color: #008cc4;
    background: -moz-linear-gradient(top, #fafafa 0%, #f0eeee 100%);
    /* FF3.6+ */
    
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fafafa), color-stop(100%, #f0eeee));
    /* Chrome,Safari4+ */
    
    background: -webkit-linear-gradient(top, #fafafa 0%, #f0eeee 100%);
    /* Chrome10+,Safari5.1+ */
    
    background: -o-linear-gradient(top, #fafafa 0%, #f0eeee 100%);
    /* Opera 11.10+ */
    
    background: -ms-linear-gradient(top, #fafafa 0%, #f0eeee 100%);
    /* IE10+ */
    
    background: linear-gradient(top, #fafafa 0%, #f0eeee 100%);
    /* W3C */
    
    background-color: #f0eeee;
}
.intro-container .slide .product.social {
    margin-top: 12px;
}

.company-intro p {
    padding: 23px;
    font-size: 18px;
    color: #47292a;
    background-color: #fafafa;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #c5c5c5;
    line-height: 164%;
    margin: 29px -9px 0 -6px
}
.intro-container .main ul li a span.text {
    font-size: 28px;
}
.col-md-12 {
    float: left;
}
.intro-container .slide.pull-right .social-links,
.intro-container .slide.pull-right .product {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
@media (max-width: 1199px) {
    .banner-container h2 {
        font-size: 25px;
    }
    .intro-container .main ul li a span.overlay label {
        font-size: 12px
    }
    .intro-container .main ul li a span.text {
        font-size: 20px;
    }
    .intro-container .slide .product.social {
        margin-top: 19px;
    }
    .intro-container .slide .product p {
        font-size: 17px;
    }
    .intro-container .slide .product .btn-action span {
        padding: 5px;
    }
}
@media (min-width: 1200px) {
    .banner-container img {
        right: 135px;
    }
    .intro-container .main h2 {
        font-size: 38px;
    }
    .intro-container .slide .product .btn-action span {
        background: url("/Portals/0/Images/icon-btn-sm-circle-arrow-shadow.png") no-repeat right center;
        margin-right: 10px;
        padding: 20px 26px 20px 10px;
    }
}
@media (min-width: 769px) and (max-width: 979px) {
    .intro-container .main ul li a span.text {
        font-size: 18px;
    }
}
@media (min-width: 769px) and (max-width: 788px) {
    .intro-container .main ul li a span.overlay p,
    .intro-container .main ul li a span.overlay label {
        font-size: 9px;
    }
}
@media (max-width: 768px) {
    .banner-container {
        min-height: 205px;
        min-width: 0px;
    }
    .banner-container h2 {
        font-size: 20px;
        color: #fff;
        margin-top: 20px;
        font-family: Arial;
        max-width: auto;
        float: none;
        text-align: center;
    }
    .banner-container span {
        margin-right: 0;
        font-size: 14px;
        color: #fff;
        line-height: 24px;
        text-align: center;
        display: inline-block;
        font-family: Arial;
        max-width: auto;
        float: none;
    }
    .banner-container img {
        display: none;
    }
    .intro-container .slide.pull-right .social-links {
        margin-top: 45px;
    }
    .intro-container .slide.pull-right {
        width: auto;
        margin-right: 10px;
    }
    .banner-container {
        background: #00a4e3 url("/Portals/0/Images/background_header.gif") no-repeat center center;
        padding: 25px 0;
    }
    .intro-container .slide.pull-right .social-links,
    .intro-container .slide.pull-right .social {
        margin-top: 15px;
    }
    .intro-container .slide.pull-right .social img {
        margin-top: -5px;
    }
    .intro-container .slide.pull-right .social p {
        margin-bottom: 43px;
    }
    .company-intro p {
        clear: both;
        font-size: 16px;
        color: #47292a;
        background-color: #fafafa;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        border: 1px solid #c5c5c5;
        padding: 15px;
        margin: 10px -14px 25px -10px;
        line-height: 22px;
    }
}
@media(max-width: 640px) {
    .intro-container .slide.pull-right .social-links, .intro-container .slide.pull-right .product {
        width: 100%;
    }
    .company-intro p {
        margin: 10px -15px 0 -10px;
    }
}
ul li {
    list-style-type: none;
}

.Theme_Responsive_Default .form_list{
	margin:0;
	padding:0;
	font-size:0;
	letter-spacing:normal;
	list-style:none;
	margin-right:-10px;
}
.Theme_Responsive_Default li {
	display:inline-block;
	vertical-align:top;
	font-size:13px;
}
.Theme_Responsive_Default .form_row {
	padding:0px 10px 10px 0;
}
.Theme_Responsive_Default .form_label{
	font-size:14px;
	font-weight:bold;
	margin:4px 0 5px;
	color:#555;
	line-height:1;
	font-family:Arial, Helvetica, sans-serif;
}
.Theme_Responsive_Default .form_input {
	font-size:14px;
	position:relative;
	padding:0!important;
	margin:0!important;
}

.Theme_Responsive_Default .form_input:after {
	clear:both;
	content:".";
	height:0px;
	font-size:0px;
	visibility:hidden;
	display:block;
}
.Theme_Responsive_Default select,
.Theme_Responsive_Default textarea,
.Theme_Responsive_Default input[type="text"],
.Theme_Responsive_Default input[type="password"],
.Theme_Responsive_Default input[type="datetime"],
.Theme_Responsive_Default input[type="datetime-local"],
.Theme_Responsive_Default input[type="date"],
.Theme_Responsive_Default input[type="month"],
.Theme_Responsive_Default input[type="time"],
.Theme_Responsive_Default input[type="week"],
.Theme_Responsive_Default input[type="number"],
.Theme_Responsive_Default input[type="email"],
.Theme_Responsive_Default input[type="url"],
.Theme_Responsive_Default input[type="search"],
.Theme_Responsive_Default input[type="tel"],
.Theme_Responsive_Default input[type="color"],
.Theme_Responsive_Default .uneditable-input{
	box-sizing:				border-box;
	-moz-box-sizing: 		border-box;
	-webkit-box-sizing: 	border-box;
	padding:8px 12px 8px 5px;
	margin:0;
	line-height:18px;
	border:1px solid #e3e3e3;
	background-color:#FFF;
	font-size:13px;
	transition: 		all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
	-webkit-box-shadow:  none;
	-moz-box-shadow: none;
	box-shadow: none;
	font-family:Arial, Helvetica, sans-serif;
}

.Theme_Responsive_Default textarea:hover,
.Theme_Responsive_Default input[type="text"]:hover,
.Theme_Responsive_Default input[type="password"]:hover,
.Theme_Responsive_Default input[type="datetime"]:hover,
.Theme_Responsive_Default input[type="datetime-local"]:hover,
.Theme_Responsive_Default input[type="date"]:hover,
.Theme_Responsive_Default input[type="month"]:hover,
.Theme_Responsive_Default input[type="time"]:hover,
.Theme_Responsive_Default input[type="week"]:hover,
.Theme_Responsive_Default input[type="number"]:hover,
.Theme_Responsive_Default input[type="email"]:hover,
.Theme_Responsive_Default input[type="url"]:hover,
.Theme_Responsive_Default input[type="search"]:hover,
.Theme_Responsive_Default input[type="tel"]:hover,
.Theme_Responsive_Default input[type="color"]:hover,
.Theme_Responsive_Default .uneditable-input:hover,
.Theme_Responsive_Default textarea:focus,
.Theme_Responsive_Default input[type="text"]:focus,
.Theme_Responsive_Default input[type="password"]:focus,
.Theme_Responsive_Default input[type="datetime"]:focus,
.Theme_Responsive_Default input[type="datetime-local"]:focus,
.Theme_Responsive_Default input[type="date"]:focus,
.Theme_Responsive_Default input[type="month"]:focus,
.Theme_Responsive_Default input[type="time"]:focus,
.Theme_Responsive_Default input[type="week"]:focus,
.Theme_Responsive_Default input[type="number"]:focus,
.Theme_Responsive_Default input[type="email"]:focus,
.Theme_Responsive_Default input[type="url"]:focus,
.Theme_Responsive_Default input[type="search"]:focus,
.Theme_Responsive_Default input[type="tel"]:focus,
.Theme_Responsive_Default input[type="color"]:focus,
.Theme_Responsive_Default .uneditable-input{
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
	  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
	border-color:rgb(82, 168, 236);	
	border-color: rgba(82, 168, 236, 0.8);
		 outline: 0;
		 outline: thin dotted \9;
}


.Theme_Responsive_Default .PowerForms_Calendar {
	background-image:url("/DesktopModules/DNNGo_PowerForms/Effects/Effect_01_Responsive/Themes/Theme_Responsive_Default/images/calendar.png");
	background-position:center right;
	background-repeat:no-repeat;
}
 
 

.Theme_Responsive_Default .form_required{
	color:#F00;
	overflow:hidden;
	vertical-align:middle;
} 
.Theme_Responsive_Default .form_input textarea+.Powerform_required{
	top:15px;
}
.Theme_Responsive_Default .Powerform_but input{
	padding:10px 20px;
	background:none;
	border:none;
	background-color:#3cceda;
	color:#FFF;
	font-size:14px;
	cursor:pointer;
	transition: 		all ease-in 200ms;
	-webkit-transition: all ease-in 200ms; /* Safari and Chrome */
}
.Theme_Responsive_Default .Powerform_but input:hover{
	background-color:#555;
}

.Theme_Responsive_Default .form_captcha input,
.Theme_Responsive_Default .form_captcha img{
	vertical-align:middle;
	margin:0 5px 0 0;
}
.Theme_Responsive_Default .form_captcha input{
	padding:6px 10px;
}




@media only screen and (max-width: 767px) {
	.Theme_Responsive_Default li {
		width:100%!important;
	}
}

.Theme_Responsive_Default .btn {
  display: inline-block;
  *display: inline;
  padding: 4px 14px;
  margin-bottom: 0;
  *margin-left: .3em;
  font-size: 14px;
  line-height: 20px;
  *line-height: 20px;
  font-family:Arial;
  color: #333333;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  cursor: pointer;
  background-color: #f5f5f5;
  *background-color: #e6e6e6;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #bbbbbb;
  *border: 0;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-bottom-color: #a2a2a2;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  *zoom: 1;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  border-color: #c5c5c5;
  border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
}

.Theme_Responsive_Default .btn:hover,
.Theme_Responsive_Default .btn:active,
.Theme_Responsive_Default .btn.active,
.Theme_Responsive_Default .btn.disabled,
.Theme_Responsive_Default .btn[disabled] {
  color: #333333;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}

.Theme_Responsive_Default .btn:active,
.Theme_Responsive_Default .btn.active {
  background-color: #cccccc \9;
}

.Theme_Responsive_Default .btn:first-child {
  *margin-left: 0;
}
.Theme_Responsive_Default .btn:hover {
  color: #333333;
  text-decoration: none;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
  /* Buttons in IE7 don't get borders, so darken on hover */

  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
     -moz-transition: background-position 0.1s linear;
       -o-transition: background-position 0.1s linear;
          transition: background-position 0.1s linear;
}
.Theme_Responsive_Default .btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.Theme_Responsive_Default .btn.active,
.Theme_Responsive_Default .btn:active {
  background-color: #e6e6e6;
  background-color: #d9d9d9 \9;
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.Theme_Responsive_Default .btn.disabled,
.Theme_Responsive_Default .btn[disabled] {
  cursor: default;
  background-color: #e6e6e6;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}

.formError { z-index: 990; }
.formError .formErrorContent { z-index: 991; }
.formError .formErrorArrow { z-index: 996; }

.ui-dialog .formError { z-index: 5000; }
.ui-dialog .formError .formErrorContent { z-index: 5001; }
.ui-dialog .formError .formErrorArrow { z-index: 5006; }

.inputContainer {
	position: relative;
	float: left;
}

.formError {
	position: absolute;
	top: 300px;
	left: 300px;
	display: block;
	cursor: pointer;
	text-align: left;
}

.formError.inline {
	position: relative;
	top: 0;
	left: 0;
	display: inline-block;
}

.ajaxSubmit {
	padding: 20px;
	background: #55ea55;
	border: 1px solid #999;
	display: none;
}

.formError .formErrorContent {
	width: 100%;
	background: #ee0101;
	position:relative;
	color: #fff;
	min-width: 120px;
	font-size: 11px;
	border: 2px solid #ddd;
	box-shadow: 0 0 6px #000;
	-moz-box-shadow: 0 0 6px #000;
	-webkit-box-shadow: 0 0 6px #000;
	-o-box-shadow: 0 0 6px #000;
	padding: 4px 10px 4px 10px;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	-o-border-radius: 6px;
}

.formError.inline .formErrorContent {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-o-border-radius: 0;
}

.greenPopup .formErrorContent {
	background: #33be40;
}

.blackPopup .formErrorContent {
	background: #393939;
	color: #FFF;
}

.formError .formErrorArrow {
	width: 15px;
	margin: -2px 0 0 13px;
	position:relative;
}
body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
	margin: -2px 13px 0 0;
}

.formError .formErrorArrowBottom {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
	margin: 0px 0 0 12px;
	top:2px;
}

.formError .formErrorArrow div {
	border-left: 2px solid #ddd;
	border-right: 2px solid #ddd;
	box-shadow: 0 2px 3px #444;
	-moz-box-shadow: 0 2px 3px #444;
	-webkit-box-shadow: 0 2px 3px #444;
	-o-box-shadow: 0 2px 3px #444;
	font-size: 0px;
	height: 1px;
	background: #ee0101;
	margin: 0 auto;
	line-height: 0;
	font-size: 0;
	display: block;
}

.formError .formErrorArrowBottom div {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-o-box-shadow: none;
}

.greenPopup .formErrorArrow div {
	background: #33be40;
}

.blackPopup .formErrorArrow div {
	background: #393939;
	color: #FFF;
}

.formError .formErrorArrow .line10 {
	width: 15px;
	border: none;
}

.formError .formErrorArrow .line9 {
	width: 13px;
	border: none;
}

.formError .formErrorArrow .line8 {
	width: 11px;
}

.formError .formErrorArrow .line7 {
	width: 9px;
}

.formError .formErrorArrow .line6 {
	width: 7px;
}

.formError .formErrorArrow .line5 {
	width: 5px;
}

.formError .formErrorArrow .line4 {
	width: 3px;
}

.formError .formErrorArrow .line3 {
	width: 1px;
	border-left: 2px solid #ddd;
	border-right: 2px solid #ddd;
	border-bottom: 0 solid #ddd;
}

.formError .formErrorArrow .line2 {
	width: 3px;
	border: none;
	background: #ddd;
}

.formError .formErrorArrow .line1 {
	width: 1px;
	border: none;
	background: #ddd;
}

.form_input input.form-confirm {
  float: left;
  margin-right: 7px;
  margin-top: 5px;
}
.form_input input.form-confirm + label{
  overflow: hidden;
    max-width: initial;
    display: block;
}

/* Default styling for jQuery Datepicker v5.0.0. */
.datepick,
.datepick *{
	box-sizing:				border-box;
	-moz-box-sizing: 		border-box;
	-webkit-box-sizing: 	border-box;
}
.datepick {
	background-color: #fff;
	color: #000;
	font-family: Arial,Helvetica,Sans-serif;
	font-size: 90%;
}
.datepick-rtl {
	direction: rtl;
}
.datepick-popup {
	z-index: 1000;
}
.datepick-disable {
	position: absolute;
	z-index: 100;
	background-color: white;
	opacity: 0.5;
	filter: alpha(opacity=50);
}
.datepick a {
	color: #fff;
	text-decoration: none;
}
.datepick a:link,
.datepick a:active,
.datepick a:visited {
	color: #fff;
}

.datepick a.datepick-disabled {
	color: #888;
	cursor: auto;
}
.datepick button {
    margin: 0.25em;
    padding: 0.125em 0em;
    background-color: #fcc;
    border: none;
    border-radius: 0.25em;
    -moz-border-radius: 0.25em;
    -webkit-border-radius: 0.25em;
    font-weight: bold;
}
.datepick-nav, .datepick-ctrl {
	float: left;
	width: 100%;
	background-color: #333;
	color: #fff;
	font-size: 90%;
	font-weight: bold;
}
.datepick-nav{
	text-align:center;
}
.datepick-ctrl {
	background-color: #600;
}
.datepick-cmd {
	width: 30%;
}
.datepick-cmd:hover {
	background-color: #777;
}
.datepick-ctrl .datepick-cmd:hover {
	background-color: #f08080;
}
.datepick-cmd-prevJump, .datepick-cmd-nextJump {
	width: 8%;
}
a.datepick-cmd {
	height: 3em;
	line-height: 3em;
	padding:0 1em;
	letter-spacing:1px;
	text-align:center;
}
button.datepick-cmd {
	text-align: center;
}
.datepick-cmd-prev, .datepick-cmd-prevJump, .datepick-cmd-clear {
	float: left;
	padding-left: 2%;
}
.datepick-cmd-current, .datepick-cmd-today {
	display:inline-block;
	width: 35%;
	text-align: center;
}
.datepick-cmd-next, .datepick-cmd-nextJump, .datepick-cmd-close {
	float: right;
	padding-right: 2%;
	text-align: right;
}
.datepick-rtl .datepick-cmd-prev, .datepick-rtl .datepick-cmd-prevJump,
.datepick-rtl .datepick-cmd-clear {
	float: right;
	padding-left: 0%;
	padding-right: 2%;
	text-align: right;
}
.datepick-rtl .datepick-cmd-current, .datepick-rtl .datepick-cmd-today {
	float: right;
}
.datepick-rtl .datepick-cmd-next, .datepick-rtl .datepick-cmd-nextJump,
.datepick-rtl .datepick-cmd-close {
	float: left;
	padding-left: 2%;
	padding-right: 0%;
	text-align: left;
}
.datepick-month-nav {
	float: left;
	background-color: #777;
	text-align: center;
}
.datepick-month-nav div {
	float: left;
	width: 12.5%;
	margin: 1%;
	padding: 1%;
}
.datepick-month-nav span {
	color: #888;
}
.datepick-month-row {
	clear: left;
}
.datepick-month {
	float: left;
	width: 20em;
	text-align: center;
}
.datepick-month-header, .datepick-month-header select, .datepick-month-header input {
	height: 2.2em;
	line-height:2.2em;
	background-color: #444;
	color: #fff;
	font-weight: bold;
	vertical-align:top;
}
.datepick-month-header select, .datepick-month-header input {
	height: 2.2em;
	line-height:2.2em;
	margin: 0em;
	padding: 0em;
	border: none;
	font-size: 100%;
	width:49%;
}
.datepick-month-header input {
	position: absolute;
	display: none;
}
.datepick-month table {
	width: 100%;
	border-collapse: collapse;
}
.datepick-month thead {
}
.datepick-month th, .datepick-month td {
	margin: 0em;
	padding: 0em;
	font-weight: normal;
	text-align: center;
}
.datepick-month th {
	border: 1px solid #f6f6f6;
	border-bottom: 1px solid #dbdbdb;
}
.datepick-month thead th:first-child {
	border-left: 1px solid #c9c9c9;
}
.datepick-month thead th:last-child {
	border-right: 1px solid #c9c9c9;
}

.datepick-month th, .datepick-month th a {
	background-color: #f6f6f6;
	color: #333;
}
.datepick-month td {
	background-color: #e5e5e5;
	border: 1px solid #c9c9c9;
}
.datepick-month td.datepick-week {
}
.datepick-month td.datepick-week * {
	color: #fff;
	border: none;
}
.datepick-month a {
	display: block;
	width: 100%;
	font-size:11px;
	padding: 0.125em 0em;
	background-color: #e5e5e5;
	color: #333;
	text-decoration: none;
}
.datepick-month a:link,
.datepick-month a:active,
.datepick-month a:visited {
	color: #333;
}

.datepick-month span {
	display: block;
	width: 100%;
	font-size:11px;
	padding: 0.125em 0em;
}
.datepick-month td span {
	color: #888;
}
.datepick-month td .datepick-other-month {
	background-color: #f2f2f2;
}
.datepick-month td .datepick-weekend {
}
.datepick-month td .datepick-today {
	background-color: #f0c0c0;
}
.datepick-month td .datepick-highlight {
	background-color: #f08080;
}
.datepick-month td .datepick-selected {
	background-color: #777;
	color: #fff;
}
.datepick-month th.datepick-week {
	background-color: #777;
	color: #fff;
}
.datepick-status {
	clear: both;
	background-color: #ddd;
	text-align: center;
}
.datepick-clear-fix {
	clear: both;
}

