﻿
@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 */


/* ------------

	# Removal and cleanup of legacy module.css for module version 8
	
	Split up in numbered blocks with comments about what has changed and why.
	#nr -> means something was moved to the _legacy-module.css file unless the comment states otherwise.
	This was done so legacy Themes can import that file in their Theme.css in case of rendering issues


------------ */


/* #1 New wrapper class */
.dnn-community-forums input[type=checkbox],
.dnn-community-forums input[type=radio] {
	cursor: pointer;
}

/* /1 */

/* #1a new for v8, command buttons */
.dcf-link-text {
	margin-left: 0.25em;
}

/* /1a */


/* TEMP until all image icons are taken out for responsive optimizations!*/
.fa-grey {
	color: #555555;
}

.fa-red {
	color: #ce424b;
}

.fa-blue {
	color: #7da8cc;
}

.af-user-status {
	margin-left: 2px;
}

/* 2 -> */

/* 3 -> */

/* 4 -> */




/* https://github.com/DNNCommunity/Dnn.CommunityForums/issues/40#issue-753603917 */
.afeditor img {
	max-width: 100%;
	height: auto !important;
}



/* 5 Wrap in wrapper class, to be removed later */

.dnn-community-forums ._hide,
td.af-lastpost img,
.afsearchgo {
	display: none !important;
}

/* /5 */

/* 6 - >*/

/* 7 Add wrapper class that works */
.dnn-community-forums * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.dnn-community-forums table {
	max-width: 100%;
	background-color: transparent;
	border-collapse: collapse;
	border-spacing: 0;
}

.afcontainer .ComposeMessage {
	cursor: pointer;
}

/* /7 */

/* 8 -> */

/* 9 -> */


/* 10 removed rule font-size */
.afgrid {
	width: 100%;
}

/* /10 */


/* 11 -> */


/* 12 -> */


/* 13 -> */


/* 14  -> */


/* 15 Modernize */

.afclear::after {
	content: " ";
	display: table;
	clear: both;
}

/* /15 */


/* 16 Do not use element styling, move float classes to legacy as they are also used for text alignment*/
.af-catlist {
	margin: 0;
	padding: 0;
	margin-left: 25px;
}

.af-catlist li {
	list-style-type: none;
}

.af-list-flat {
	padding: 0px;
	margin: 0px;
}

.af-list-flat li {
	display: inline;
}

/* /16 */



/* 17 No change, refactor later: remove element styling af-rater used for ul and span */

/* Ratings */
.dnn-community-forums ul.af-rater {
	padding: 0px;
	margin: 0px;
	background-image: url("/DesktopModules/ActiveForums/images/sp-stars.png");
	width: 80px;
}

span.af-rater {
	display: inline-block;
	height: 8px;
	padding: 0px;
	margin: 0px;
	background-image: url("/DesktopModules/ActiveForums/images/sp-ministars.png");
	width: 40px;
}

ul.af-rater li {
	display: inline-block;
	list-style-type: none;
	width: 14px;
	height: 16px;
	cursor: pointer;
	margin-left: 1px;
	margin-right: 1px;
}

ul.rate1 {
	background-position: 0px -16px;
}

ul.rate2 {
	background-position: 0px -32px;
}

ul.rate3 {
	background-position: 0px -48px;
}

ul.rate4 {
	background-position: 0px -64px;
}

ul.rate5 {
	background-position: 0px -80px;
}

span.rate1 {
	background-position: 0px -8px;
}

span.rate2 {
	background-position: 0px -16px;
}

span.rate3 {
	background-position: 0px -24px;
}

span.rate4 {
	background-position: 0px -32px;
}

span.rate5 {
	background-position: 0px -40px;
}


ul.fa-rater {
	height: 20px;
	padding: 0px;
	margin: 0px;
	width: 90px;
	font-size: large;
}

span.fa-rater {
	display: inline-block;
	height: 10px;
	padding: 0px;
	margin: 0px;
	width: 80px;
	font-size: smaller;
}

ul.fa-rater li {
	float: left;
	list-style-type: none;
	cursor: pointer;
}

.fa-star1:after,
.fa-star2:after,
.fa-star3:after,
.fa-star4:after,
.fa-star5:after {
	content: "\f006";
}

.fa-rate1 .fa-star1:after,
.fa-rate2 .fa-star1:after,
.fa-rate3 .fa-star1:after,
.fa-rate4 .fa-star1:after,
.fa-rate5 .fa-star1:after,
.fa-rate2 .fa-star2:after,
.fa-rate3 .fa-star2:after,
.fa-rate4 .fa-star2:after,
.fa-rate5 .fa-star2:after,
.fa-rate3 .fa-star3:after,
.fa-rate4 .fa-star3:after,
.fa-rate5 .fa-star3:after,
.fa-rate4 .fa-star4:after,
.fa-rate5 .fa-star4:after,
.fa-rate5 .fa-star5:after {
	content: "\f005" !important;
}

.fa-status0:after {
	content: "\f05a";
}

.fa-status1:after {
	content: "\f059";
}

.fa-status3:after {
	content: "\f058";
}

/* /17 */



/* 18 No change, but grouped lines. Remove font-family + refactor later ? */
/* Modals  */
.amModal {
	background-color: #fff;
	border: solid 8px #ccc;
	padding: 0px;
	border-collapse: collapse;
	z-index: 1002;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

.amModalHeader {

	font-size: 11px;
	font-weight: bold;
	background-color: #666;
	color: #fff;
	height: 22px;
	width: 100%;
}

.amModalHeaderText {
	padding-left: 10px;
	padding-top: 5px;

	font-size: 11px;
	font-weight: bold;
	background-color: #666;
	color: #fff;
	text-align: left;
	float: left
}

.amModalCloseImg {
	text-align: right;
	padding-right: 2px;
	cursor: pointer;
	float: right;
	padding-top: 3px;
}

.amModal .amtbwrapper {
	margin-top: 20px;
}

.amModal .amimagebutton,
.amModal .amimagebutton_over {
	margin-right: 4px;
}

/* /18 */



/* 19 -> */


/* 20 Needs Fontawesome */
.afrequired {
	display: block;
	width: 16px;
	height: 16px;
	background-image: url("/DesktopModules/ActiveForums/images/sp-icons16.png");
	background-repeat: no-repeat;
	background-position: -464px 0px;
}

/* /20 */



/* 21 No change > refacored later ? */

.afprop-table td {
	vertical-align: top;
}

.afprop-input,
.afprop-select,
.afprop-chklist {
	width: 175px;
}

td.afprop-label {
	white-space: nowrap;
}

.afprop-required {
	font-weight: bold;
}

.afprop-list ul li {
	list-style-type: none;
}

.afprop-chklist ul {
	margin: 0;
	padding: 0;
}

.afprop-chklist ul li {
	list-style-type: none;
	float: left;
}

.afprop-chklist ul li span {
	white-space: nowrap;
}

.afpg-current span,
.afpg-page span {

	font-size: 14px;
	display: inline-block;
	border: 1px solid #333;
	width: 20px;
	text-align: center;
	color: #000;
	font-weight: bold;
	background-color: #cdcdcd;
	padding-top: 2px;
	padding-bottom: 2px
}

.afpg-current span {
	background-color: #fff;
}

/* /21*/

/* 22 No change for now > FontAwsome ? */
.affolder {
	background: transparent url("/DesktopModules/ActiveForums/images/sp-folders.png") no-repeat 0 0px;
	height: 27px;
	width: 32px;
}

.affolderclosed {
	background: transparent url("/DesktopModules/ActiveForums/images/sp-folders.png") no-repeat 0 -27px;
	height: 27px;
	width: 32px;
}

.affoldernew {
	background: transparent url("/DesktopModules/ActiveForums/images/sp-folders.png") no-repeat 0 -54px;
	height: 27px;
	width: 32px;
}

.affolderblock {
	background: transparent url("/DesktopModules/ActiveForums/images/sp-folders.png") no-repeat 0 -81px;
	height: 27px;
	width: 32px;
}

/* /22 */


/* 23 -> */


/* 24 -> */


/* 25 ->*/


/* 26 -> */


/* 27 Remove font sizes + styling -> -- now completely removed */


/* 28 ->  */


/* 29 > should be converted to FA Icons? */
/* Actions */
td.af-actions {
	text-align: right;
	vertical-align: top;
}

td.af-actions ul {
	float: right;
	margin-top: 0px;
	margin-bottom: 0px;
}

.af-actions ul {
	margin-top: 0px;
	margin-bottom: 0px;
}

.af-actions ul li {
	list-style-type: none;
	float: left;
	cursor: pointer;
	margin-right: 2px;
	border: 1px solid transparent;
	padding: 1px;
	padding-right: 2px;
}

a.af-actions,
span.af-actions {
	display: inline-block;
	margin-right: 2px;
	border: 1px solid transparent;
	padding: 1px;
	padding-right: 2px;
}

.af-actions ul li:hover,
a.af-actions:hover {
	border-color: #cdcdcd;
}

.af-actions ul li em,
a.af-actions em,
span.af-actions em {
	float: left;
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("/DesktopModules/ActiveForums/images/sp-icons16.png");
	background-repeat: no-repeat;
	margin-right: 2px;
	margin-left: 2px;
}

.af-actions ul li em {
	float: left;
	display: block;
}

.af-actions ul li.af-delete em,
a.af-delete em {
	background-position: -192px 0px;
}

.af-actions ul li.af-edit em,
a.af-edit em {
	background-position: -208px 0px;
}

.af-actions ul li.af-quote em,
a.af-quote em {
	background-position: -304px 0px;
}

.af-actions ul li.af-reply em,
a.af-reply em {
	background-position: -336px 0px;
}

.af-actions ul li.af-alert em,
a.af-alert em {
	background-position: -464px 0px;
}

.af-actions ul li.af-answered em,
span.af-answered em {
	background-position: -176px 0px;
}

.af-actions ul li.af-markanswer em,
a.af-markanswer em {
	background-position: -64px -16px;
}

.af-actions ul li.af-answered {
	cursor: default;
}

.af-icon16 {
	float: left;
	display: block;
	height: 15px;
	width: 15px;
	cursor: pointer;
	background-image: url("/DesktopModules/ActiveForums/images/sp-icons16.png");
	background-repeat: no-repeat;
	border: 1px solid transparent
}

.af-icon16:hover {
	border-color: #cdcdcd;
	background-color: #f5f5f5;
}

.af-icon16-gear {
	background-position: -81px -17px
}

/* /29 */



/* 30 -> */

/* 31 notifications created from code*/
.amnotify {
	width: 500px;
	border: 2px solid #cdcdcd;
	height: 48px;
	float: left;
	display: none;
	position: absolute;
	margin-left: auto;
	margin-right: auto;
}

.amnotify div {
	position: absolute;
	margin-left: 12px;
}

.amnotify i {
	display: block;
	height: 32px;
	width: 32px;
	position: relative;
	top: 8px;
	float: left;
}

.amnotify span {
	font-weight: bold;
	margin-left: 18px;
	position: relative;
	top: 12px;
	font-size: 16px;
}

.amsuccess {
	border-color: #669966;
	background-color: #ccffcc;
}

.amsuccess i {
	background-image: url("/DesktopModules/ActiveForums/images/check32.png");
}

.amerror {
	border-color: #cc0000;
	background-color: #ffcccc;
}

.amerror i {
	background-image: url("/DesktopModules/ActiveForums/images/error32.png");
}

.amwarn {
	border-color: #ffcc00;
	background-color: #ffffcc;
}

.amwarn i {
	background-image: url("/DesktopModules/ActiveForums/images/warn32.png");
}

/* / 31 */


/* 32 -> */


/* 33 Used in Quickedit */
#aftopicedit .dnnForm,
#aftopicmove .dnnForm {
	min-width: inherit;
}

/* /33 */


/* 34 -> */


/* 35 > Could use some cleanup and use of FA icons */
/* Attachments */

/* Editor */
.af-attach-upload .progress_bar_wrapper {
	overflow: hidden;
}

.af-attach-upload .progress-bar div {
	background-image: url("/DesktopModules/ActiveForums/Images/progress.gif");
	position: relative;
	padding: 0 !important;
}

.af-attach-upload .fileupload-picker>span {
	position: relative;
	display: inline-block;
}

.af-attach-upload .fileupload-progress {
	padding: 10px;
	margin-bottom: 10px;
}

.af-attach-upload .fileupload-progress-percent {
	float: right;
}

.af-attach-upload .fileupload-progress-bar {
	height: 20px !important;
}

.af-attach-editor-list table {
	padding: 0;
	margin: 0;
	border-collapse: collapse;
	width: 100%;
}

.af-attach-editor-list table thead tr {
	background-color: #333;
	color: #fff;
}

.af-attach-editor-list table tbody tr td {
	background-color: #fff;
	border-bottom: solid 1px #ddd;
	vertical-align: middle;
}

.af-attach-editor-list table tr td:nth-child(1) {
	text-align: left;
}

.af-attach-editor-list table tr td:nth-child(2) {
	width: 100px;
	text-align: right;
}

.af-attach-editor-list table tr td:nth-child(3) {
	width: 75px;
}

.af-attach-editor-list table tr td {
	text-align: center;
	padding: 4px;
	margin: 0px;
}

/* Post List */
.af-attach-post-list {}

.af-attach-post-list>span {
	font-size: .9em;
	opacity: 0.4;
}

.af-attach-post-list ul {
	padding: 0px;
	margin: 0px;
}

.af-attach-post-list ul li {
	list-style-type: none;
	margin: 5px 10px 5px 0px;
	padding: 0px;
	display: inline-block;
}

.af-attach-post-list ul li a {
	padding: 5px 10px 5px 0px;
	display: inline-block;
	border: solid 1px #ddd;
	background-color: #eee;
	border-radius: 4px;
	-moz-border-radius: 4px;
	text-decoration: none !important
}

/* /35 */

/* 36 Switch to FA Icons */

/* File Icons - Also used in attachments*/
.af-fileicon {
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url("/DesktopModules/ActiveForums/images/af-fileicon.png") no-repeat top left;
	background-position: -800px 0;
	vertical-align: text-bottom;
	margin: 0px 10px;
}

.af-fileicon-7z {
	background-position: 0 0;
}

.af-fileicon-ai {
	background-position: -32px 0;
}

.af-fileicon-aiff {
	background-position: -64px 0;
}

.af-fileicon-asc {
	background-position: -96px 0;
}

.af-fileicon-audio {
	background-position: -128px 0;
}

.af-fileicon-bin {
	background-position: -160px 0;
}

.af-fileicon-bmp,
.af-fileicon-image,
.af-fileicon-tif,
.af-fileicon-tiff {
	background-position: -192px 0;
}

.af-fileicon-bz2 {
	background-position: -224px 0;
}

.af-fileicon-c {
	background-position: -256px 0;
}

.af-fileicon-cfc {
	background-position: -288px 0;
}

.af-fileicon-cfm {
	background-position: -320px 0;
}

.af-fileicon-chm {
	background-position: -352px 0;
}

.af-fileicon-class {
	background-position: -384px 0;
}

.af-fileicon-conf {
	background-position: -416px 0;
}

.af-fileicon-cpp {
	background-position: -448px 0;
}

.af-fileicon-cs {
	background-position: -480px 0;
}

.af-fileicon-css {
	background-position: -512px 0;
}

.af-fileicon-csv {
	background-position: -544px 0;
}

.af-fileicon-deb {
	background-position: -576px 0;
}

.af-fileicon-divx {
	background-position: -608px 0;
}

.af-fileicon-doc,
.af-fileicon-docm,
.af-fileicon-docx {
	background-position: -640px 0;
}

.af-fileicon-dot {
	background-position: -672px 0;
}

.af-fileicon-eml {
	background-position: -704px 0;
}

.af-fileicon-enc {
	background-position: -736px 0;
}

.af-fileicon-exe {
	background-position: -768px 0;
}

.af-fileicon-file {
	background-position: -800px 0;
}

.af-fileicon-gif {
	background-position: -832px 0;
}

.af-fileicon-gz {
	background-position: -864px 0;
}

.af-fileicon-hlp {
	background-position: -896px 0;
}

.af-fileicon-htm {
	background-position: -928px 0;
}

.af-fileicon-html {
	background-position: -960px 0;
}

.af-fileicon-iso {
	background-position: -992px 0;
}

.af-fileicon-jar {
	background-position: -1024px 0;
}

.af-fileicon-java {
	background-position: -1056px 0;
}

.af-fileicon-jpeg {
	background-position: -1088px 0;
}

.af-fileicon-jpg {
	background-position: -1120px 0;
}

.af-fileicon-js {
	background-position: -1152px 0;
}

.af-fileicon-lua {
	background-position: -1184px 0;
}

.af-fileicon-m {
	background-position: -1216px 0;
}

.af-fileicon-mm {
	background-position: -1248px 0;
}

.af-fileicon-mov {
	background-position: -1280px 0;
}

.af-fileicon-mp3 {
	background-position: -1312px 0;
}

.af-fileicon-mp4,
.af-fileicon-mpeg,
.af-fileicon-mpg {
	background-position: -1344px 0;
}

.af-fileicon-odc {
	background-position: -1376px 0;
}

.af-fileicon-odf {
	background-position: -1408px 0;
}

.af-fileicon-odg {
	background-position: -1440px 0;
}

.af-fileicon-odi {
	background-position: -1472px 0;
}

.af-fileicon-odp {
	background-position: -1504px 0;
}

.af-fileicon-ods {
	background-position: -1536px 0;
}

.af-fileicon-odt {
	background-position: -1568px 0;
}

.af-fileicon-ogg {
	background-position: -1600px 0;
}

.af-fileicon-pdf {
	background-position: -1632px 0;
}

.af-fileicon-pgp {
	background-position: -1664px 0;
}

.af-fileicon-php {
	background-position: -1696px 0;
}

.af-fileicon-pl {
	background-position: -1728px 0;
}

.af-fileicon-png {
	background-position: -1760px 0;
}

.af-fileicon-ppt,
.af-fileicon-pptm,
.af-fileicon-pptx {
	background-position: -1792px 0;
}

.af-fileicon-ps {
	background-position: -1824px 0;
}

.af-fileicon-py {
	background-position: -1856px 0;
}

.af-fileicon-ram {
	background-position: -1888px 0;
}

.af-fileicon-rar {
	background-position: -1920px 0;
}

.af-fileicon-rb {
	background-position: -1952px 0;
}

.af-fileicon-rm {
	background-position: 0 -32px;
}

.af-fileicon-rpm {
	background-position: -32px -32px;
}

.af-fileicon-rtf {
	background-position: -64px -32px;
}

.af-fileicon-sig {
	background-position: -96px -32px;
}

.af-fileicon-sql {
	background-position: -128px -32px;
}

.af-fileicon-swf {
	background-position: -160px -32px;
}

.af-fileicon-sxc {
	background-position: -192px -32px;
}

.af-fileicon-sxd {
	background-position: -224px -32px;
}

.af-fileicon-sxi {
	background-position: -256px -32px;
}

.af-fileicon-sxw {
	background-position: -288px -32px;
}

.af-fileicon-tar {
	background-position: -320px -32px;
}

.af-fileicon-tex {
	background-position: -352px -32px;
}

.af-fileicon-tgz {
	background-position: -384px -32px;
}

.af-fileicon-txt {
	background-position: -416px -32px;
}

.af-fileicon-vcf {
	background-position: -448px -32px;
}

.af-fileicon-video {
	background-position: -480px -32px;
}

.af-fileicon-vsd {
	background-position: -512px -32px;
}

.af-fileicon-wav {
	background-position: -544px -32px;
}

.af-fileicon-wma {
	background-position: -576px -32px;
}

.af-fileicon-wmv {
	background-position: -608px -32px;
}

.af-fileicon-xls,
.af-fileicon-xlsm,
.af-fileicon-xlsx {
	background-position: -640px -32px;
}

.af-fileicon-xml {
	background-position: -672px -32px;
}

.af-fileicon-xpi {
	background-position: -704px -32px;
}

.af-fileicon-xvid {
	background-position: -736px -32px;
}

.af-fileicon-zip {
	background-position: -768px -32px;
}

/* /36 */


/* 37 -> */


/* 38 Security Grid -> used in module settings when mode is Social Group */

.afSecGrid {
	margin-left: 150px;
}

.afSecGrid {
	border: solid 0px #aaa;
}

.afSecGrid table td {
	padding: 2px;
}

.afSecGrid .rowhd {
	text-align: right;
}

.afgridhd {
	font-weight: bold;
	text-align: center !important;
	background-color: #666;
	color: #fff !important;
}

.afSecGrid #hd1 .sec1 {
	background-color: #FFFF99;
	color: #666 !important;
	border: solid 1px #aaa;
	padding: 0px
}

.afSecGrid #hd2 .afgridhdsub {
	background-color: #f5f5f5;
	color: #666 !important;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 0px;
}

.afSecGrid #hd2 .colstart {
	border-left: solid 1px #aaa;
}

.afSecGrid #hd2 .colend {
	border-right: solid 1px #aaa;
}

.gridsep {
	border-right: solid 1px #aaa
}

.afSecGrid #row1 td {
	border-left: solid 1px #aaa;
	border-top: solid 1px #aaa;
}

.afSecGrid #row2 td {
	border-left: solid 1px #aaa;
	border-top: solid 1px #aaa;
}

.afSecGrid #row3 td {
	border-left: solid 1px #aaa;
	border-top: solid 1px #aaa;
}

.afSecGrid #row4 td {
	border-left: solid 1px #aaa;
	border-top: solid 1px #aaa;
	border-bottom: solid 1px #aaa;
}

.afSecGrid #row1 .colend {
	border-right: solid 1px #aaa;
}

.afSecGrid #row2 .colend {
	border-right: solid 1px #aaa;
}

.afSecGrid #row3 .colend {
	border-right: solid 1px #aaa;
}

.afSecGrid #row4 .colend {
	border-right: solid 1px #aaa;
}

.afSecGrid .gridcheck {
	text-align: center !important;
}

.afSecGrid .gridcheck input {
	padding: 0;
	margin: 0;
	margin: 4px;
}

.afSecGrid .rowhd {
	font-weight: bold;
	padding-right: 4px;
	background-color: #f5f5f5;
}


/* Fix for security width */
.afsecgrid {
	padding: 0 1em;
}
.afsecgrid .dcf-sec-grid{
	width: 100%;
	table-layout: fixed;
}
.afsecgrid .dcf-sec-grid-roles{
	vertical-align: top;
	width: 200px;
}

.afsecgrid .dcf-sec-grid-roles .afsecobjecthd{
	
	padding: 0.6em 0.35em
}

.afsecgrid .dcf-sec-grid-roles td,
.afsecgrid .dcf-sec-grid-rights td{
	border-bottom: solid 1px #ddd;
	padding: 0.5em 0.1em;
}

.afsecgrid .dcf-sec-grid-rights{
	width: calc(100% - 200px);
}
.afsecgrid .dcf-sec-grid-rights table{
	table-layout: fixed;
}

.afsecgrid .dcf-sec-grid-rights .afsecactionhd{
	width: 8em;
}


/* /38 */


/* 39 Avatar form in Forum Settings*/
.dnnForm .dnnFormItem .afavatarform input {
	width: 55px;
	min-width: inherit;
	float: none;
	padding: 1px
}

.afavatarform li {
	display: inline;
	margin-right: 8px;
	list-style-type: none;
}

/* /39 */

/* 40 -> */



/* 41 Styling of Forum view, part fo the classes from ascx > cleanup? */

@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
    .af-lastpost,
    .af-colstats,
    .afgrouprow-m,
    .afgrouprow-l { display: none; }

    .af-colstats_responsive { display: inline; }

    .af_lastpost_responsive { display: block; }

    .afpostinfo_responsive {
        position: static;
        width: 100%;
        margin-right: 0px;
        clear: both;
    }

    .afpostcontent_responsive {
        position: static;
        padding-left: 0px;
        width: 100%;
        clear: both;
    }

    .afpostinfo_responsive .afavatarprofile {
        float: left;
        width: 125px; /*position:absolute;*/
        min-height: 100px;
        padding-right: 5px;
    }

    .afpostinfo_responsive .aftopprofile {
        float: left; /*padding-left: 130px;*/
        margin-left: 10px;
        padding-right: 5px;
        width: 125px;
        min-height: 100px; /*position:absolute;*/
    }

    .afpostinfo_responsive .afbottomprofile {
        float: left; /*padding-left: 250px;*/
        margin-left: 10px;
        width: 125px;
        min-height: 100px;
        padding-right: 5px; /*position:absolute;*/
    }

    /*.afpostinfo_responsive .afavatarprofile *, */
    .afpostinfo_responsive .aftopprofile *,
    .afpostinfo_responsive .afbottomprofile * { /*display:block;*/ }

    ul.af-right { float: left; }
}

@media only screen and (max-width: 490px),
only screen and (max-device-width: 490px) {
	.afpostinfo_responsive .afbottomprofile {
		clear: both;
		margin-left: 0px;
	}

}

/* /41 */

/* 42 moderator is editor wrapper */
div.dcf-mod-edit-wrap {
	background-color: salmon;
	color: inherit;
	padding: 10px;
	text-align: center;
	font-weight: bold;
}

/* /42 */

/* 43 collapsible */
.dcf-collapsible {
    text-align: center;
    padding: 0.2em;
    width: 1.8em;
    cursor: pointer;
    float: right;
    font-size: 1.1em !important;
    background: #eee;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

/* not sure these are needed but put them here to use if desired */
.dcf-collapsible-opened {}

/* not sure these are needed but put them here to use if desired */
.dcf-collapsible-closed {}

/* /43 */


/* Post preview Div, shown by adding element Styling using JS */
.dcf-preview {
	display: none;
	border: solid 1px #eee;
}

.dcf-preview .dcf-preview-bar {
	background: #eee;
	text-align: right;
	padding: 0.2em;
}

.dcf-preview .dcf-preview-bar a {
	cursor: pointer;
}


/* subscription pager */

.dcf-pager * {
	font-size: 14px;
	display: inline-block;
	text-align: center;
	color: #000;
	padding: 3px;
}

.dcf-pager span {
	border: 1px solid #333;
	font-weight: bold;
	background-color: #cdcdcd;
}

/* toolbar drop down */

.dcf-toolbar-drop-down-menu {
	position: relative;
	display: inline-block;
}

.dcf-toolbar-drop-down-menu-button {
	border: none;
	cursor: pointer;
	background: #fff;
}

/* Dropdown Content (Hidden by Default) */
.dcf-toolbar-drop-down-menu-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	width: 13em;
	min-width: 100%;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

/* Links inside the dropdown */
.dcf-toolbar-drop-down-menu-content a {
	padding: 2px 2px;
	text-decoration: none;
	display: block;
}

.dcf-toolbar-drop-down-menu-content a:hover {
	background-color: #f1f1f1
}

.dcf-toolbar-drop-down-menu:hover .dcf-toolbar-drop-down-menu-button {
	background-color: #f1f1f1;
}

.dcf-toolbar-drop-down-menu:hover .dcf-toolbar-drop-down-menu-content {
	display: block;
}



/* placeholders for topic splitter */

.dcf-split-buttons-wrap {}

#dcf-split-buttons {}

.dcf-split-buttons {}

.dcf-split-button-header {}

.dcf-split-button-save {}

.dcf-split-button-cancel {}

.dcf-split-checkbox-wrap {
	float: right;
}

.dcf-split-checkbox {}

.dcf-split-checkbox-label {
	margin-left: 3px;
}

/* need z-index on search popup */
.dnn-community-forums * .dcf-search-popup {
	z-index: 9 !important;
}

/* subtle UI tweaks for titles */
.dnn-community-forums * .aftitle {
	font-size: 1.1em;
	font-weight: bolder;
}

/* subtle UI tweaks for section headers */
.dnn-community-forums * .afsectionhd {
	background-color: #f9f9f9;
	font-size: 1.1em;
	font-weight: bolder;
}

/* wider subject and summary input */
.dnn-community-forums * .dcf-topic-edit-subject {
	width: 95% !important;
}

.dnn-community-forums * .dcf-topic-edit-summary {
	width: 95% !important;
}

/* poll graphics removed from module.css and moved to _legacy/theme.css need to be put back */

.afpollbar {
	background-color: #ff0000;
}

.afpollresults {
	border: solid 1px #333;
}

/* pin & lock from topic view */
.dnn-community-forums * .dcf-topic-lock-lock {
}
.dnn-community-forums * .dcf-topic-lock-unlock {
}
.dnn-community-forums * .dcf-topic-pin-pin {
	transform: rotate(45deg);
}
.dnn-community-forums * .dcf-topic-pin-unpin {
	transform: rotate(0deg);
}
.dnn-community-forums * .dcf-topic-reply-locked {
	display:none;
}
.dnn-community-forums * .dcf-topic-reply-unlocked {
	display:inline-flex;
}



/* TB NEW Moderate Buttons #969 */
.dnn-community-forums .afmodrow .dnnActions > * {
    margin-left: 0.5em;
}

/* TB: will need to be redone when the template is further cleaned up #999 */
.dnn-community-forums .dcf-confirm-action .dcf-confirm-title{
	display:block;
	font-size: 1.5em;
	margin: 0.8em 0 0.5em;
}

.dnn-community-forums .dcf-confirm-action .dcf-confirm-message{
	display:block;
	margin-bottom: 1em;
}
	

.dnn-community-forums .dcf-confirm-action .dcf-confirm-buttons td{
	padding: 0.5em 0;
}

/* added for likes views and like tooltips */
.dnn-community-forums .dcf-likes-wrap .dcf-likes-header { }
.dnn-community-forums .dcf-likes-wrap .dcf-likes-header .af_pager,
.dnn-community-forums .dcf-likes-wrap .dcf-likes-footer .af_pager { padding: 0px 5px; position: relative; top: 0px; right: 0px; }
.dnn-community-forums .dcf-likes-wrap .dcf-likes-header .af_pagernumber,
.dnn-community-forums .dcf-likes-wrap .dcf-likes-footer .af_pagernumber {  }
.dnn-community-forums .dcf-likes-wrap .dcf-likes-header .af_pagernumber a,
.dnn-community-forums .dcf-likes-wrap .dcf-likes-footer .af_pagernumber a { margin-left: 3px; margin-right: 3px; }


.dnn-community-forums .dcf-likes-wrap .dcf-likes-footer { position: relative; margin: 10px 0px; }

.dnn-community-forums .dcf-likes-wrap .dcf-likes-noresults { text-align: center; color: rgba(0, 0, 0, 0.44); padding: 50px 0px; font-size: 20px; letter-spacing: -0.02em; }

.dnn-community-forums .dcf-likes-wrap .dcf-likes-results a { font-weight: bold; position: relative; }

.dnn-community-forums .dcf-likes-wrap .dcf-like-header { position: relative; margin: 10px 0px; }
.dnn-community-forums .dcf-likes-wrap .dcf-like { }
.dnn-community-forums .dcf-likes-wrap .dcf-likes-title { }
.dnn-community-forums .dcf-likes-wrap .dcf-postinfo { }
.dnn-community-forums .dcf-likes-wrap .dcf-like-content { }
.dnn-community-forums .dcf-likes-wrap .dcf-profile-link { }



/* Search results : needs cleaning for V9, see #1116 */
 .dcf-search-results-wrap .afgrid {
     width: 100%;
     display: table;
}
 .dcf-search-results-wrap .aftopicrow {
     width: 100%;
     display: table-row;
     border-bottom: solid 1px #eee;
     padding: 0.5em;
}
 .dcf-search-results-wrap .aftopicrow .afsubject {
     width: 60%;
     display: table-cell;
}
 .dcf-search-results-wrap .af-colstats {
     display: table-cell;
     width: 10%;
}
 .dcf-search-results-wrap .af-lastpost {
     display: table-cell;
     width: 20%;
     white-space: nowrap;
     font-weight: 400;
}
 .dcf-search-results-wrap .af-lastpost div {
     text-align: left;
     overflow: hidden;
     white-space: normal !important;
}
 .dcf-search-results-wrap .af-lastpost div a:link, .dcf-search-results-wrap .af-lastpost div a:visited {
     text-decoration: none;
     font-weight: 700;
     color: #333;
}
 .dcf-search-results-wrap .aftopictitle, .dcf-search-results-wrap .aftopictitle a {
    /*display: block;
    */
     font-weight: 700;
     line-height: 1.25;
}
 .dcf-search-results-wrap.af-content .afsubject {
     vertical-align: top;
     padding-right: 10px;
}
 .dcf-search-results-wrap .af-content div.afsubject > a {
     color: #333;
     font-weight: 700;
}
 .dcf-search-results-wrap .af-content div.afsubject .aftopicstarted a {
     color: #333;
     font-weight: 700;
     display: inline-block;
     margin-top: 4px;
     margin-bottom: 4px;
}
 .dcf-search-results-wrap .aftopicstarted {
     display: block;
}
 .dcf-search-results-wrap .aftopicsubtitle {
     font-weight: 400;
     display: block;
     word-break: break-word;
     overflow: hidden;
}
 

.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;
        }


/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/ActiveForums/Resources/font-awesome-4.7.0/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/ActiveForums/Resources/font-awesome-4.7.0/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/ActiveForums/Resources/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/ActiveForums/Resources/font-awesome-4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/ActiveForums/Resources/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/ActiveForums/Resources/font-awesome-4.7.0/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}


/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #6c757d;--gray-dark: #343a40;--primary: #007bff;--secondary: #6c757d;--success: #28a745;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--breakpoint-xxl: 1600px;--breakpoint-xxxl: 2200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0 !important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):hover,a:not([href]):not([tabindex]):focus{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{padding:0;border-style:none}input[type="radio"],input[type="checkbox"]{box-sizing:border-box;padding:0}input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px;-webkit-appearance:none}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none !important}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:2.5rem}h2,.h2{font-size:2rem}h3,.h3{font-size:1.75rem}h4,.h4{font-size:1.5rem}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:0;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:0}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.container{max-width:540px}}@media (min-width: 768px){.container{max-width:720px}}@media (min-width: 992px){.container{max-width:960px}}@media (min-width: 1200px){.container{max-width:1140px}}@media (min-width: 1600px){.container{max-width:1560px}}@media (min-width: 2200px){.container{max-width:2160px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto,.col-xxl-1,.col-xxl-2,.col-xxl-3,.col-xxl-4,.col-xxl-5,.col-xxl-6,.col-xxl-7,.col-xxl-8,.col-xxl-9,.col-xxl-10,.col-xxl-11,.col-xxl-12,.col-xxl,.col-xxl-auto,.col-xxxl-1,.col-xxxl-2,.col-xxxl-3,.col-xxxl-4,.col-xxxl-5,.col-xxxl-6,.col-xxxl-7,.col-xxxl-8,.col-xxxl-9,.col-xxxl-10,.col-xxxl-11,.col-xxxl-12,.col-xxxl,.col-xxxl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}@media (min-width: 576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-sm-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-sm-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-sm-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-sm-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}}@media (min-width: 768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-md-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-md-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-md-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}}@media (min-width: 992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-lg-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-lg-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-lg-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-lg-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}}@media (min-width: 1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}}@media (min-width: 1600px){.col-xxl{flex-basis:0;flex-grow:1;max-width:100%}.col-xxl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xxl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xxl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xxl-3{flex:0 0 25%;max-width:25%}.col-xxl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xxl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xxl-6{flex:0 0 50%;max-width:50%}.col-xxl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xxl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xxl-9{flex:0 0 75%;max-width:75%}.col-xxl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xxl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xxl-12{flex:0 0 100%;max-width:100%}.order-xxl-first{order:-1}.order-xxl-last{order:13}.order-xxl-0{order:0}.order-xxl-1{order:1}.order-xxl-2{order:2}.order-xxl-3{order:3}.order-xxl-4{order:4}.order-xxl-5{order:5}.order-xxl-6{order:6}.order-xxl-7{order:7}.order-xxl-8{order:8}.order-xxl-9{order:9}.order-xxl-10{order:10}.order-xxl-11{order:11}.order-xxl-12{order:12}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.3333333333%}.offset-xxl-2{margin-left:16.6666666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.3333333333%}.offset-xxl-5{margin-left:41.6666666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.3333333333%}.offset-xxl-8{margin-left:66.6666666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.3333333333%}.offset-xxl-11{margin-left:91.6666666667%}}@media (min-width: 2200px){.col-xxxl{flex-basis:0;flex-grow:1;max-width:100%}.col-xxxl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xxxl-1{flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xxxl-2{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xxxl-3{flex:0 0 25%;max-width:25%}.col-xxxl-4{flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xxxl-5{flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xxxl-6{flex:0 0 50%;max-width:50%}.col-xxxl-7{flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xxxl-8{flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xxxl-9{flex:0 0 75%;max-width:75%}.col-xxxl-10{flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xxxl-11{flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xxxl-12{flex:0 0 100%;max-width:100%}.order-xxxl-first{order:-1}.order-xxxl-last{order:13}.order-xxxl-0{order:0}.order-xxxl-1{order:1}.order-xxxl-2{order:2}.order-xxxl-3{order:3}.order-xxxl-4{order:4}.order-xxxl-5{order:5}.order-xxxl-6{order:6}.order-xxxl-7{order:7}.order-xxxl-8{order:8}.order-xxxl-9{order:9}.order-xxxl-10{order:10}.order-xxxl-11{order:11}.order-xxxl-12{order:12}.offset-xxxl-0{margin-left:0}.offset-xxxl-1{margin-left:8.3333333333%}.offset-xxxl-2{margin-left:16.6666666667%}.offset-xxxl-3{margin-left:25%}.offset-xxxl-4{margin-left:33.3333333333%}.offset-xxxl-5{margin-left:41.6666666667%}.offset-xxxl-6{margin-left:50%}.offset-xxxl-7{margin-left:58.3333333333%}.offset-xxxl-8{margin-left:66.6666666667%}.offset-xxxl-9{margin-left:75%}.offset-xxxl-10{margin-left:83.3333333333%}.offset-xxxl-11{margin-left:91.6666666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table th,.table td{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm th,.table-sm td{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered th,.table-bordered td{border:1px solid #dee2e6}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,0.075)}.table-primary,.table-primary>th,.table-primary>td{background-color:#b8daff}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#d6d8db}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>th,.table-success>td{background-color:#c3e6cb}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>th,.table-info>td{background-color:#bee5eb}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>th,.table-warning>td{background-color:#ffeeba}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>th,.table-danger>td{background-color:#f5c6cb}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>th,.table-light>td{background-color:#fdfdfe}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>th,.table-dark>td{background-color:#c6c8ca}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark th,.table-dark td,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}@media (max-width: 1599.98px){.table-responsive-xxl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xxl>.table-bordered{border:0}}@media (max-width: 2199.98px){.table-responsive-xxxl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xxxl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:0;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:0}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*="col-"]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled ~ .form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,0.9);border-radius:0}.was-validated .form-control:valid,.form-control.is-valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,0.25)}.was-validated .form-control:valid ~ .valid-feedback,.was-validated .form-control:valid ~ .valid-tooltip,.form-control.is-valid ~ .valid-feedback,.form-control.is-valid ~ .valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#28a745;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,0.25)}.was-validated .custom-select:valid ~ .valid-feedback,.was-validated .custom-select:valid ~ .valid-tooltip,.custom-select.is-valid ~ .valid-feedback,.custom-select.is-valid ~ .valid-tooltip{display:block}.was-validated .form-control-file:valid ~ .valid-feedback,.was-validated .form-control-file:valid ~ .valid-tooltip,.form-control-file.is-valid ~ .valid-feedback,.form-control-file.is-valid ~ .valid-tooltip{display:block}.was-validated .form-check-input:valid ~ .form-check-label,.form-check-input.is-valid ~ .form-check-label{color:#28a745}.was-validated .form-check-input:valid ~ .valid-feedback,.was-validated .form-check-input:valid ~ .valid-tooltip,.form-check-input.is-valid ~ .valid-feedback,.form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid ~ .custom-control-label,.custom-control-input.is-valid ~ .custom-control-label{color:#28a745}.was-validated .custom-control-input:valid ~ .custom-control-label::before,.custom-control-input.is-valid ~ .custom-control-label::before{border-color:#28a745}.was-validated .custom-control-input:valid ~ .valid-feedback,.was-validated .custom-control-input:valid ~ .valid-tooltip,.custom-control-input.is-valid ~ .valid-feedback,.custom-control-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,.custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,.custom-control-input.is-valid:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,0.25)}.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#28a745}.was-validated .custom-file-input:valid ~ .custom-file-label,.custom-file-input.is-valid ~ .custom-file-label{border-color:#28a745}.was-validated .custom-file-input:valid ~ .valid-feedback,.was-validated .custom-file-input:valid ~ .valid-tooltip,.custom-file-input.is-valid ~ .valid-feedback,.custom-file-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-file-input:valid:focus ~ .custom-file-label,.custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,0.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,0.9);border-radius:0}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .form-control:invalid ~ .invalid-feedback,.was-validated .form-control:invalid ~ .invalid-tooltip,.form-control.is-invalid ~ .invalid-feedback,.form-control.is-invalid ~ .invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#dc3545;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .custom-select:invalid ~ .invalid-feedback,.was-validated .custom-select:invalid ~ .invalid-tooltip,.custom-select.is-invalid ~ .invalid-feedback,.custom-select.is-invalid ~ .invalid-tooltip{display:block}.was-validated .form-control-file:invalid ~ .invalid-feedback,.was-validated .form-control-file:invalid ~ .invalid-tooltip,.form-control-file.is-invalid ~ .invalid-feedback,.form-control-file.is-invalid ~ .invalid-tooltip{display:block}.was-validated .form-check-input:invalid ~ .form-check-label,.form-check-input.is-invalid ~ .form-check-label{color:#dc3545}.was-validated .form-check-input:invalid ~ .invalid-feedback,.was-validated .form-check-input:invalid ~ .invalid-tooltip,.form-check-input.is-invalid ~ .invalid-feedback,.form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid ~ .custom-control-label,.custom-control-input.is-invalid ~ .custom-control-label{color:#dc3545}.was-validated .custom-control-input:invalid ~ .custom-control-label::before,.custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-control-input:invalid ~ .invalid-feedback,.was-validated .custom-control-input:invalid ~ .invalid-tooltip,.custom-control-input.is-invalid ~ .invalid-feedback,.custom-control-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,.custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,.custom-control-input.is-invalid:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-file-input:invalid ~ .custom-file-label,.custom-file-input.is-invalid ~ .custom-file-label{border-color:#dc3545}.was-validated .custom-file-input:invalid ~ .invalid-feedback,.was-validated .custom-file-input:invalid ~ .invalid-tooltip,.custom-file-input.is-invalid ~ .invalid-feedback,.custom-file-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,.custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}@media (min-width: 576px){.form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:0;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn:focus,.btn.focus{outline:0;box-shadow:none}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary:focus,.btn-primary.focus{box-shadow:0 0 0 .2rem rgba(38,143,255,0.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,0.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary:focus,.btn-secondary.focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success:focus,.btn-success.focus{box-shadow:0 0 0 .2rem rgba(72,180,97,0.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,0.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info:focus,.btn-info.focus{box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning:focus,.btn-warning.focus{box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger:focus,.btn-danger.focus{box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light:focus,.btn-light.focus{box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark:focus,.btn-dark.focus{box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:focus,.btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:focus,.btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:focus,.btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:focus,.btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:focus,.btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:focus,.btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:focus,.btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:focus,.btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link:focus,.btn-link.focus{text-decoration:underline;box-shadow:none}.btn-link:disabled,.btn-link.disabled{color:#6c757d;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:0}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.collapsing{transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:0}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}@media (min-width: 1600px){.dropdown-menu-xxl-left{right:auto;left:0}.dropdown-menu-xxl-right{right:0;left:auto}}@media (min-width: 2200px){.dropdown-menu-xxxl-left{right:auto;left:0}.dropdown-menu-xxxl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^="top"],.dropdown-menu[x-placement^="right"],.dropdown-menu[x-placement^="bottom"],.dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover{z-index:1}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type="radio"],.btn-group-toggle>.btn input[type="checkbox"],.btn-group-toggle>.btn-group>.btn input[type="radio"],.btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-1px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:last-child),.input-group>.custom-select:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-prepend,.input-group-append{display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-append .btn:focus{z-index:3}.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:0}.input-group-text input[type="radio"],.input-group-text input[type="checkbox"]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.5em + .5rem + 2px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:0}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus ~ .custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled ~ .custom-control-label{color:#6c757d}.custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50% / 50% 50%}.custom-checkbox .custom-control-label::before{border-radius:0}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;background-color:#fff;border:1px solid #ced4da;border-radius:0;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus ~ .custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.custom-file-input:disabled ~ .custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:0}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 0 0 0}.custom-range{width:100%;height:calc(1rem + .4rem);padding:0;background-color:transparent;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,0.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,0.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,0.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:0;border-top-right-radius:0}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:0}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:0}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width: 575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 576px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 768px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 992px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 1200px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media (max-width: 1599.98px){.navbar-expand-xxl>.container,.navbar-expand-xxl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 1600px){.navbar-expand-xxl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl>.container,.navbar-expand-xxl>.container-fluid{flex-wrap:nowrap}.navbar-expand-xxl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}@media (max-width: 2199.98px){.navbar-expand-xxxl>.container,.navbar-expand-xxxl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width: 2200px){.navbar-expand-xxxl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xxxl .navbar-nav{flex-direction:row}.navbar-expand-xxxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxxl>.container,.navbar-expand-xxxl>.container-fluid{flex-wrap:nowrap}.navbar-expand-xxxl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xxxl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0,0,0,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,0.5)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,0.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,0.5);border-color:rgba(255,255,255,0.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,0.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:0}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:0;border-bottom-left-radius:0}.card-body{flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.card-header:first-child{border-radius:calc(0 - 1px) calc(0 - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.card-footer:last-child{border-radius:0 0 calc(0 - 1px) calc(0 - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-0.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(0 - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(0 - 1px);border-top-right-radius:calc(0 - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(0 - 1px);border-bottom-left-radius:calc(0 - 1px)}.card-deck{display:flex;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width: 576px){.card-deck{flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:flex;flex:1 0 0%;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:flex;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width: 576px){.card-group{flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width: 576px){.card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.accordion>.card .card-header{margin-bottom:-1px}.breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:0}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none;border-radius:0}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.page-item:last-child .page-link{border-top-right-radius:0;border-bottom-right-radius:0}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:0;border-bottom-left-radius:0}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:0;border-bottom-right-radius:0}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:0;border-bottom-left-radius:0}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:0;border-bottom-right-radius:0}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.badge{transition:none}}a.badge:hover,a.badge:focus{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:hover,a.badge-primary:focus{color:#fff;background-color:#0062cc}a.badge-primary:focus,a.badge-primary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:hover,a.badge-secondary:focus{color:#fff;background-color:#545b62}a.badge-secondary:focus,a.badge-secondary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:hover,a.badge-success:focus{color:#fff;background-color:#1e7e34}a.badge-success:focus,a.badge-success.focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:hover,a.badge-info:focus{color:#fff;background-color:#117a8b}a.badge-info:focus,a.badge-info.focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:hover,a.badge-warning:focus{color:#212529;background-color:#d39e00}a.badge-warning:focus,a.badge-warning.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:hover,a.badge-danger:focus{color:#fff;background-color:#bd2130}a.badge-danger:focus,a.badge-danger.focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:hover,a.badge-light:focus{color:#212529;background-color:#dae0e5}a.badge-light:focus,a.badge-light.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:hover,a.badge-dark:focus{color:#fff;background-color:#1d2124}a.badge-dark:focus,a.badge-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:0}@media (min-width: 576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:0}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:0}.progress-bar{display:flex;flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion: reduce){.progress-bar-animated{animation:none}}.media{display:flex;align-items:flex-start}.media-body{flex:1}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-horizontal{flex-direction:row}.list-group-horizontal .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal .list-group-item:first-child{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{margin-right:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}@media (min-width: 576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-sm .list-group-item:first-child{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{margin-right:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}}@media (min-width: 768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-md .list-group-item:first-child{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{margin-right:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}}@media (min-width: 992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-lg .list-group-item:first-child{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{margin-right:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}}@media (min-width: 1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-xl .list-group-item:first-child{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{margin-right:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}}@media (min-width: 1600px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-xxl .list-group-item:first-child{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-xxl .list-group-item:last-child{margin-right:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}}@media (min-width: 2200px){.list-group-horizontal-xxxl{flex-direction:row}.list-group-horizontal-xxxl .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-xxxl .list-group-item:first-child{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:0}.list-group-horizontal-xxxl .list-group-item:last-child{margin-right:0;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush .list-group-item:last-child{margin-bottom:-1px}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:transparent;border:0;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform 0.3s ease-out;transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:0;border-top-right-radius:0}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;align-items:center;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:0;border-bottom-left-radius:0}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:0}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 0}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:0 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom,.bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:0 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(0 - 1px);border-top-right-radius:calc(0 - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left{transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:0s .6s opacity}@media (prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50% / 100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.bg-primary{background-color:#007bff !important}a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus{background-color:#0062cc !important}.bg-secondary{background-color:#6c757d !important}a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus{background-color:#545b62 !important}.bg-success{background-color:#28a745 !important}a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus{background-color:#1e7e34 !important}.bg-info{background-color:#17a2b8 !important}a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus{background-color:#117a8b !important}.bg-warning{background-color:#ffc107 !important}a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus{background-color:#d39e00 !important}.bg-danger{background-color:#dc3545 !important}a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus{background-color:#bd2130 !important}.bg-light{background-color:#f8f9fa !important}a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus{background-color:#dae0e5 !important}.bg-dark{background-color:#343a40 !important}a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus{background-color:#1d2124 !important}.bg-white{background-color:#fff !important}.bg-transparent{background-color:transparent !important}.border{border:1px solid #dee2e6 !important}.border-top{border-top:1px solid #dee2e6 !important}.border-right{border-right:1px solid #dee2e6 !important}.border-bottom{border-bottom:1px solid #dee2e6 !important}.border-left{border-left:1px solid #dee2e6 !important}.border-0{border:0 !important}.border-top-0{border-top:0 !important}.border-right-0{border-right:0 !important}.border-bottom-0{border-bottom:0 !important}.border-left-0{border-left:0 !important}.border-primary{border-color:#007bff !important}.border-secondary{border-color:#6c757d !important}.border-success{border-color:#28a745 !important}.border-info{border-color:#17a2b8 !important}.border-warning{border-color:#ffc107 !important}.border-danger{border-color:#dc3545 !important}.border-light{border-color:#f8f9fa !important}.border-dark{border-color:#343a40 !important}.border-white{border-color:#fff !important}.rounded-sm{border-radius:0 !important}.rounded{border-radius:0 !important}.rounded-top{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-right{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-bottom{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-left{border-top-left-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-lg{border-radius:0 !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-0{border-radius:0 !important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}@media (min-width: 576px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:flex !important}.d-sm-inline-flex{display:inline-flex !important}}@media (min-width: 768px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:flex !important}.d-md-inline-flex{display:inline-flex !important}}@media (min-width: 992px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:flex !important}.d-lg-inline-flex{display:inline-flex !important}}@media (min-width: 1200px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:flex !important}.d-xl-inline-flex{display:inline-flex !important}}@media (min-width: 1600px){.d-xxl-none{display:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}}@media (min-width: 2200px){.d-xxxl-none{display:none !important}.d-xxxl-inline{display:inline !important}.d-xxxl-inline-block{display:inline-block !important}.d-xxxl-block{display:block !important}.d-xxxl-table{display:table !important}.d-xxxl-table-row{display:table-row !important}.d-xxxl-table-cell{display:table-cell !important}.d-xxxl-flex{display:flex !important}.d-xxxl-inline-flex{display:inline-flex !important}}@media print{.d-print-none{display:none !important}.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:flex !important}.d-print-inline-flex{display:inline-flex !important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.8571428571%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-fill{flex:1 1 auto !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}@media (min-width: 576px){.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}}@media (min-width: 768px){.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}}@media (min-width: 992px){.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}}@media (min-width: 1200px){.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}}@media (min-width: 1600px){.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}}@media (min-width: 2200px){.flex-xxxl-row{flex-direction:row !important}.flex-xxxl-column{flex-direction:column !important}.flex-xxxl-row-reverse{flex-direction:row-reverse !important}.flex-xxxl-column-reverse{flex-direction:column-reverse !important}.flex-xxxl-wrap{flex-wrap:wrap !important}.flex-xxxl-nowrap{flex-wrap:nowrap !important}.flex-xxxl-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-xxxl-fill{flex:1 1 auto !important}.flex-xxxl-grow-0{flex-grow:0 !important}.flex-xxxl-grow-1{flex-grow:1 !important}.flex-xxxl-shrink-0{flex-shrink:0 !important}.flex-xxxl-shrink-1{flex-shrink:1 !important}.justify-content-xxxl-start{justify-content:flex-start !important}.justify-content-xxxl-end{justify-content:flex-end !important}.justify-content-xxxl-center{justify-content:center !important}.justify-content-xxxl-between{justify-content:space-between !important}.justify-content-xxxl-around{justify-content:space-around !important}.align-items-xxxl-start{align-items:flex-start !important}.align-items-xxxl-end{align-items:flex-end !important}.align-items-xxxl-center{align-items:center !important}.align-items-xxxl-baseline{align-items:baseline !important}.align-items-xxxl-stretch{align-items:stretch !important}.align-content-xxxl-start{align-content:flex-start !important}.align-content-xxxl-end{align-content:flex-end !important}.align-content-xxxl-center{align-content:center !important}.align-content-xxxl-between{align-content:space-between !important}.align-content-xxxl-around{align-content:space-around !important}.align-content-xxxl-stretch{align-content:stretch !important}.align-self-xxxl-auto{align-self:auto !important}.align-self-xxxl-start{align-self:flex-start !important}.align-self-xxxl-end{align-self:flex-end !important}.align-self-xxxl-center{align-self:center !important}.align-self-xxxl-baseline{align-self:baseline !important}.align-self-xxxl-stretch{align-self:stretch !important}}.float-left{float:left !important}.float-right{float:right !important}.float-none{float:none !important}@media (min-width: 576px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}@media (min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}@media (min-width: 992px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media (min-width: 1200px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-none{float:none !important}}@media (min-width: 1600px){.float-xxl-left{float:left !important}.float-xxl-right{float:right !important}.float-xxl-none{float:none !important}}@media (min-width: 2200px){.float-xxxl-left{float:left !important}.float-xxxl-right{float:right !important}.float-xxxl-none{float:none !important}}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:sticky !important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.shadow{box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important}.shadow-none{box-shadow:none !important}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mw-100{max-width:100% !important}.mh-100{max-height:100% !important}.min-vw-100{min-width:100vw !important}.min-vh-100{min-height:100vh !important}.vw-100{width:100vw !important}.vh-100{height:100vh !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.m-0{margin:0 !important}.mt-0,.my-0{margin-top:0 !important}.mr-0,.mx-0{margin-right:0 !important}.mb-0,.my-0{margin-bottom:0 !important}.ml-0,.mx-0{margin-left:0 !important}.m-1{margin:.25rem !important}.mt-1,.my-1{margin-top:.25rem !important}.mr-1,.mx-1{margin-right:.25rem !important}.mb-1,.my-1{margin-bottom:.25rem !important}.ml-1,.mx-1{margin-left:.25rem !important}.m-2{margin:.5rem !important}.mt-2,.my-2{margin-top:.5rem !important}.mr-2,.mx-2{margin-right:.5rem !important}.mb-2,.my-2{margin-bottom:.5rem !important}.ml-2,.mx-2{margin-left:.5rem !important}.m-3{margin:1rem !important}.mt-3,.my-3{margin-top:1rem !important}.mr-3,.mx-3{margin-right:1rem !important}.mb-3,.my-3{margin-bottom:1rem !important}.ml-3,.mx-3{margin-left:1rem !important}.m-4{margin:1.5rem !important}.mt-4,.my-4{margin-top:1.5rem !important}.mr-4,.mx-4{margin-right:1.5rem !important}.mb-4,.my-4{margin-bottom:1.5rem !important}.ml-4,.mx-4{margin-left:1.5rem !important}.m-5{margin:3rem !important}.mt-5,.my-5{margin-top:3rem !important}.mr-5,.mx-5{margin-right:3rem !important}.mb-5,.my-5{margin-bottom:3rem !important}.ml-5,.mx-5{margin-left:3rem !important}.p-0{padding:0 !important}.pt-0,.py-0{padding-top:0 !important}.pr-0,.px-0{padding-right:0 !important}.pb-0,.py-0{padding-bottom:0 !important}.pl-0,.px-0{padding-left:0 !important}.p-1{padding:.25rem !important}.pt-1,.py-1{padding-top:.25rem !important}.pr-1,.px-1{padding-right:.25rem !important}.pb-1,.py-1{padding-bottom:.25rem !important}.pl-1,.px-1{padding-left:.25rem !important}.p-2{padding:.5rem !important}.pt-2,.py-2{padding-top:.5rem !important}.pr-2,.px-2{padding-right:.5rem !important}.pb-2,.py-2{padding-bottom:.5rem !important}.pl-2,.px-2{padding-left:.5rem !important}.p-3{padding:1rem !important}.pt-3,.py-3{padding-top:1rem !important}.pr-3,.px-3{padding-right:1rem !important}.pb-3,.py-3{padding-bottom:1rem !important}.pl-3,.px-3{padding-left:1rem !important}.p-4{padding:1.5rem !important}.pt-4,.py-4{padding-top:1.5rem !important}.pr-4,.px-4{padding-right:1.5rem !important}.pb-4,.py-4{padding-bottom:1.5rem !important}.pl-4,.px-4{padding-left:1.5rem !important}.p-5{padding:3rem !important}.pt-5,.py-5{padding-top:3rem !important}.pr-5,.px-5{padding-right:3rem !important}.pb-5,.py-5{padding-bottom:3rem !important}.pl-5,.px-5{padding-left:3rem !important}.m-n1{margin:-.25rem !important}.mt-n1,.my-n1{margin-top:-.25rem !important}.mr-n1,.mx-n1{margin-right:-.25rem !important}.mb-n1,.my-n1{margin-bottom:-.25rem !important}.ml-n1,.mx-n1{margin-left:-.25rem !important}.m-n2{margin:-.5rem !important}.mt-n2,.my-n2{margin-top:-.5rem !important}.mr-n2,.mx-n2{margin-right:-.5rem !important}.mb-n2,.my-n2{margin-bottom:-.5rem !important}.ml-n2,.mx-n2{margin-left:-.5rem !important}.m-n3{margin:-1rem !important}.mt-n3,.my-n3{margin-top:-1rem !important}.mr-n3,.mx-n3{margin-right:-1rem !important}.mb-n3,.my-n3{margin-bottom:-1rem !important}.ml-n3,.mx-n3{margin-left:-1rem !important}.m-n4{margin:-1.5rem !important}.mt-n4,.my-n4{margin-top:-1.5rem !important}.mr-n4,.mx-n4{margin-right:-1.5rem !important}.mb-n4,.my-n4{margin-bottom:-1.5rem !important}.ml-n4,.mx-n4{margin-left:-1.5rem !important}.m-n5{margin:-3rem !important}.mt-n5,.my-n5{margin-top:-3rem !important}.mr-n5,.mx-n5{margin-right:-3rem !important}.mb-n5,.my-n5{margin-bottom:-3rem !important}.ml-n5,.mx-n5{margin-left:-3rem !important}.m-auto{margin:auto !important}.mt-auto,.my-auto{margin-top:auto !important}.mr-auto,.mx-auto{margin-right:auto !important}.mb-auto,.my-auto{margin-bottom:auto !important}.ml-auto,.mx-auto{margin-left:auto !important}@media (min-width: 576px){.m-sm-0{margin:0 !important}.mt-sm-0,.my-sm-0{margin-top:0 !important}.mr-sm-0,.mx-sm-0{margin-right:0 !important}.mb-sm-0,.my-sm-0{margin-bottom:0 !important}.ml-sm-0,.mx-sm-0{margin-left:0 !important}.m-sm-1{margin:.25rem !important}.mt-sm-1,.my-sm-1{margin-top:.25rem !important}.mr-sm-1,.mx-sm-1{margin-right:.25rem !important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem !important}.ml-sm-1,.mx-sm-1{margin-left:.25rem !important}.m-sm-2{margin:.5rem !important}.mt-sm-2,.my-sm-2{margin-top:.5rem !important}.mr-sm-2,.mx-sm-2{margin-right:.5rem !important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem !important}.ml-sm-2,.mx-sm-2{margin-left:.5rem !important}.m-sm-3{margin:1rem !important}.mt-sm-3,.my-sm-3{margin-top:1rem !important}.mr-sm-3,.mx-sm-3{margin-right:1rem !important}.mb-sm-3,.my-sm-3{margin-bottom:1rem !important}.ml-sm-3,.mx-sm-3{margin-left:1rem !important}.m-sm-4{margin:1.5rem !important}.mt-sm-4,.my-sm-4{margin-top:1.5rem !important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem !important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem !important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem !important}.m-sm-5{margin:3rem !important}.mt-sm-5,.my-sm-5{margin-top:3rem !important}.mr-sm-5,.mx-sm-5{margin-right:3rem !important}.mb-sm-5,.my-sm-5{margin-bottom:3rem !important}.ml-sm-5,.mx-sm-5{margin-left:3rem !important}.p-sm-0{padding:0 !important}.pt-sm-0,.py-sm-0{padding-top:0 !important}.pr-sm-0,.px-sm-0{padding-right:0 !important}.pb-sm-0,.py-sm-0{padding-bottom:0 !important}.pl-sm-0,.px-sm-0{padding-left:0 !important}.p-sm-1{padding:.25rem !important}.pt-sm-1,.py-sm-1{padding-top:.25rem !important}.pr-sm-1,.px-sm-1{padding-right:.25rem !important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem !important}.pl-sm-1,.px-sm-1{padding-left:.25rem !important}.p-sm-2{padding:.5rem !important}.pt-sm-2,.py-sm-2{padding-top:.5rem !important}.pr-sm-2,.px-sm-2{padding-right:.5rem !important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem !important}.pl-sm-2,.px-sm-2{padding-left:.5rem !important}.p-sm-3{padding:1rem !important}.pt-sm-3,.py-sm-3{padding-top:1rem !important}.pr-sm-3,.px-sm-3{padding-right:1rem !important}.pb-sm-3,.py-sm-3{padding-bottom:1rem !important}.pl-sm-3,.px-sm-3{padding-left:1rem !important}.p-sm-4{padding:1.5rem !important}.pt-sm-4,.py-sm-4{padding-top:1.5rem !important}.pr-sm-4,.px-sm-4{padding-right:1.5rem !important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem !important}.pl-sm-4,.px-sm-4{padding-left:1.5rem !important}.p-sm-5{padding:3rem !important}.pt-sm-5,.py-sm-5{padding-top:3rem !important}.pr-sm-5,.px-sm-5{padding-right:3rem !important}.pb-sm-5,.py-sm-5{padding-bottom:3rem !important}.pl-sm-5,.px-sm-5{padding-left:3rem !important}.m-sm-n1{margin:-.25rem !important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem !important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem !important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem !important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem !important}.m-sm-n2{margin:-.5rem !important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem !important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem !important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem !important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem !important}.m-sm-n3{margin:-1rem !important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem !important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem !important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem !important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem !important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem !important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem !important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem !important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem !important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem !important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem !important}.m-sm-auto{margin:auto !important}.mt-sm-auto,.my-sm-auto{margin-top:auto !important}.mr-sm-auto,.mx-sm-auto{margin-right:auto !important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto !important}.ml-sm-auto,.mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0,.my-md-0{margin-top:0 !important}.mr-md-0,.mx-md-0{margin-right:0 !important}.mb-md-0,.my-md-0{margin-bottom:0 !important}.ml-md-0,.mx-md-0{margin-left:0 !important}.m-md-1{margin:.25rem !important}.mt-md-1,.my-md-1{margin-top:.25rem !important}.mr-md-1,.mx-md-1{margin-right:.25rem !important}.mb-md-1,.my-md-1{margin-bottom:.25rem !important}.ml-md-1,.mx-md-1{margin-left:.25rem !important}.m-md-2{margin:.5rem !important}.mt-md-2,.my-md-2{margin-top:.5rem !important}.mr-md-2,.mx-md-2{margin-right:.5rem !important}.mb-md-2,.my-md-2{margin-bottom:.5rem !important}.ml-md-2,.mx-md-2{margin-left:.5rem !important}.m-md-3{margin:1rem !important}.mt-md-3,.my-md-3{margin-top:1rem !important}.mr-md-3,.mx-md-3{margin-right:1rem !important}.mb-md-3,.my-md-3{margin-bottom:1rem !important}.ml-md-3,.mx-md-3{margin-left:1rem !important}.m-md-4{margin:1.5rem !important}.mt-md-4,.my-md-4{margin-top:1.5rem !important}.mr-md-4,.mx-md-4{margin-right:1.5rem !important}.mb-md-4,.my-md-4{margin-bottom:1.5rem !important}.ml-md-4,.mx-md-4{margin-left:1.5rem !important}.m-md-5{margin:3rem !important}.mt-md-5,.my-md-5{margin-top:3rem !important}.mr-md-5,.mx-md-5{margin-right:3rem !important}.mb-md-5,.my-md-5{margin-bottom:3rem !important}.ml-md-5,.mx-md-5{margin-left:3rem !important}.p-md-0{padding:0 !important}.pt-md-0,.py-md-0{padding-top:0 !important}.pr-md-0,.px-md-0{padding-right:0 !important}.pb-md-0,.py-md-0{padding-bottom:0 !important}.pl-md-0,.px-md-0{padding-left:0 !important}.p-md-1{padding:.25rem !important}.pt-md-1,.py-md-1{padding-top:.25rem !important}.pr-md-1,.px-md-1{padding-right:.25rem !important}.pb-md-1,.py-md-1{padding-bottom:.25rem !important}.pl-md-1,.px-md-1{padding-left:.25rem !important}.p-md-2{padding:.5rem !important}.pt-md-2,.py-md-2{padding-top:.5rem !important}.pr-md-2,.px-md-2{padding-right:.5rem !important}.pb-md-2,.py-md-2{padding-bottom:.5rem !important}.pl-md-2,.px-md-2{padding-left:.5rem !important}.p-md-3{padding:1rem !important}.pt-md-3,.py-md-3{padding-top:1rem !important}.pr-md-3,.px-md-3{padding-right:1rem !important}.pb-md-3,.py-md-3{padding-bottom:1rem !important}.pl-md-3,.px-md-3{padding-left:1rem !important}.p-md-4{padding:1.5rem !important}.pt-md-4,.py-md-4{padding-top:1.5rem !important}.pr-md-4,.px-md-4{padding-right:1.5rem !important}.pb-md-4,.py-md-4{padding-bottom:1.5rem !important}.pl-md-4,.px-md-4{padding-left:1.5rem !important}.p-md-5{padding:3rem !important}.pt-md-5,.py-md-5{padding-top:3rem !important}.pr-md-5,.px-md-5{padding-right:3rem !important}.pb-md-5,.py-md-5{padding-bottom:3rem !important}.pl-md-5,.px-md-5{padding-left:3rem !important}.m-md-n1{margin:-.25rem !important}.mt-md-n1,.my-md-n1{margin-top:-.25rem !important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem !important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem !important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem !important}.m-md-n2{margin:-.5rem !important}.mt-md-n2,.my-md-n2{margin-top:-.5rem !important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem !important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem !important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem !important}.m-md-n3{margin:-1rem !important}.mt-md-n3,.my-md-n3{margin-top:-1rem !important}.mr-md-n3,.mx-md-n3{margin-right:-1rem !important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem !important}.ml-md-n3,.mx-md-n3{margin-left:-1rem !important}.m-md-n4{margin:-1.5rem !important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem !important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem !important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem !important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mt-md-n5,.my-md-n5{margin-top:-3rem !important}.mr-md-n5,.mx-md-n5{margin-right:-3rem !important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem !important}.ml-md-n5,.mx-md-n5{margin-left:-3rem !important}.m-md-auto{margin:auto !important}.mt-md-auto,.my-md-auto{margin-top:auto !important}.mr-md-auto,.mx-md-auto{margin-right:auto !important}.mb-md-auto,.my-md-auto{margin-bottom:auto !important}.ml-md-auto,.mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.m-lg-0{margin:0 !important}.mt-lg-0,.my-lg-0{margin-top:0 !important}.mr-lg-0,.mx-lg-0{margin-right:0 !important}.mb-lg-0,.my-lg-0{margin-bottom:0 !important}.ml-lg-0,.mx-lg-0{margin-left:0 !important}.m-lg-1{margin:.25rem !important}.mt-lg-1,.my-lg-1{margin-top:.25rem !important}.mr-lg-1,.mx-lg-1{margin-right:.25rem !important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem !important}.ml-lg-1,.mx-lg-1{margin-left:.25rem !important}.m-lg-2{margin:.5rem !important}.mt-lg-2,.my-lg-2{margin-top:.5rem !important}.mr-lg-2,.mx-lg-2{margin-right:.5rem !important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem !important}.ml-lg-2,.mx-lg-2{margin-left:.5rem !important}.m-lg-3{margin:1rem !important}.mt-lg-3,.my-lg-3{margin-top:1rem !important}.mr-lg-3,.mx-lg-3{margin-right:1rem !important}.mb-lg-3,.my-lg-3{margin-bottom:1rem !important}.ml-lg-3,.mx-lg-3{margin-left:1rem !important}.m-lg-4{margin:1.5rem !important}.mt-lg-4,.my-lg-4{margin-top:1.5rem !important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem !important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem !important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem !important}.m-lg-5{margin:3rem !important}.mt-lg-5,.my-lg-5{margin-top:3rem !important}.mr-lg-5,.mx-lg-5{margin-right:3rem !important}.mb-lg-5,.my-lg-5{margin-bottom:3rem !important}.ml-lg-5,.mx-lg-5{margin-left:3rem !important}.p-lg-0{padding:0 !important}.pt-lg-0,.py-lg-0{padding-top:0 !important}.pr-lg-0,.px-lg-0{padding-right:0 !important}.pb-lg-0,.py-lg-0{padding-bottom:0 !important}.pl-lg-0,.px-lg-0{padding-left:0 !important}.p-lg-1{padding:.25rem !important}.pt-lg-1,.py-lg-1{padding-top:.25rem !important}.pr-lg-1,.px-lg-1{padding-right:.25rem !important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem !important}.pl-lg-1,.px-lg-1{padding-left:.25rem !important}.p-lg-2{padding:.5rem !important}.pt-lg-2,.py-lg-2{padding-top:.5rem !important}.pr-lg-2,.px-lg-2{padding-right:.5rem !important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem !important}.pl-lg-2,.px-lg-2{padding-left:.5rem !important}.p-lg-3{padding:1rem !important}.pt-lg-3,.py-lg-3{padding-top:1rem !important}.pr-lg-3,.px-lg-3{padding-right:1rem !important}.pb-lg-3,.py-lg-3{padding-bottom:1rem !important}.pl-lg-3,.px-lg-3{padding-left:1rem !important}.p-lg-4{padding:1.5rem !important}.pt-lg-4,.py-lg-4{padding-top:1.5rem !important}.pr-lg-4,.px-lg-4{padding-right:1.5rem !important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem !important}.pl-lg-4,.px-lg-4{padding-left:1.5rem !important}.p-lg-5{padding:3rem !important}.pt-lg-5,.py-lg-5{padding-top:3rem !important}.pr-lg-5,.px-lg-5{padding-right:3rem !important}.pb-lg-5,.py-lg-5{padding-bottom:3rem !important}.pl-lg-5,.px-lg-5{padding-left:3rem !important}.m-lg-n1{margin:-.25rem !important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem !important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem !important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem !important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem !important}.m-lg-n2{margin:-.5rem !important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem !important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem !important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem !important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem !important}.m-lg-n3{margin:-1rem !important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem !important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem !important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem !important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem !important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem !important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem !important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem !important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem !important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem !important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem !important}.m-lg-auto{margin:auto !important}.mt-lg-auto,.my-lg-auto{margin-top:auto !important}.mr-lg-auto,.mx-lg-auto{margin-right:auto !important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto !important}.ml-lg-auto,.mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.m-xl-0{margin:0 !important}.mt-xl-0,.my-xl-0{margin-top:0 !important}.mr-xl-0,.mx-xl-0{margin-right:0 !important}.mb-xl-0,.my-xl-0{margin-bottom:0 !important}.ml-xl-0,.mx-xl-0{margin-left:0 !important}.m-xl-1{margin:.25rem !important}.mt-xl-1,.my-xl-1{margin-top:.25rem !important}.mr-xl-1,.mx-xl-1{margin-right:.25rem !important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem !important}.ml-xl-1,.mx-xl-1{margin-left:.25rem !important}.m-xl-2{margin:.5rem !important}.mt-xl-2,.my-xl-2{margin-top:.5rem !important}.mr-xl-2,.mx-xl-2{margin-right:.5rem !important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem !important}.ml-xl-2,.mx-xl-2{margin-left:.5rem !important}.m-xl-3{margin:1rem !important}.mt-xl-3,.my-xl-3{margin-top:1rem !important}.mr-xl-3,.mx-xl-3{margin-right:1rem !important}.mb-xl-3,.my-xl-3{margin-bottom:1rem !important}.ml-xl-3,.mx-xl-3{margin-left:1rem !important}.m-xl-4{margin:1.5rem !important}.mt-xl-4,.my-xl-4{margin-top:1.5rem !important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem !important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem !important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem !important}.m-xl-5{margin:3rem !important}.mt-xl-5,.my-xl-5{margin-top:3rem !important}.mr-xl-5,.mx-xl-5{margin-right:3rem !important}.mb-xl-5,.my-xl-5{margin-bottom:3rem !important}.ml-xl-5,.mx-xl-5{margin-left:3rem !important}.p-xl-0{padding:0 !important}.pt-xl-0,.py-xl-0{padding-top:0 !important}.pr-xl-0,.px-xl-0{padding-right:0 !important}.pb-xl-0,.py-xl-0{padding-bottom:0 !important}.pl-xl-0,.px-xl-0{padding-left:0 !important}.p-xl-1{padding:.25rem !important}.pt-xl-1,.py-xl-1{padding-top:.25rem !important}.pr-xl-1,.px-xl-1{padding-right:.25rem !important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem !important}.pl-xl-1,.px-xl-1{padding-left:.25rem !important}.p-xl-2{padding:.5rem !important}.pt-xl-2,.py-xl-2{padding-top:.5rem !important}.pr-xl-2,.px-xl-2{padding-right:.5rem !important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem !important}.pl-xl-2,.px-xl-2{padding-left:.5rem !important}.p-xl-3{padding:1rem !important}.pt-xl-3,.py-xl-3{padding-top:1rem !important}.pr-xl-3,.px-xl-3{padding-right:1rem !important}.pb-xl-3,.py-xl-3{padding-bottom:1rem !important}.pl-xl-3,.px-xl-3{padding-left:1rem !important}.p-xl-4{padding:1.5rem !important}.pt-xl-4,.py-xl-4{padding-top:1.5rem !important}.pr-xl-4,.px-xl-4{padding-right:1.5rem !important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem !important}.pl-xl-4,.px-xl-4{padding-left:1.5rem !important}.p-xl-5{padding:3rem !important}.pt-xl-5,.py-xl-5{padding-top:3rem !important}.pr-xl-5,.px-xl-5{padding-right:3rem !important}.pb-xl-5,.py-xl-5{padding-bottom:3rem !important}.pl-xl-5,.px-xl-5{padding-left:3rem !important}.m-xl-n1{margin:-.25rem !important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem !important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem !important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem !important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem !important}.m-xl-n2{margin:-.5rem !important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem !important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem !important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem !important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem !important}.m-xl-n3{margin:-1rem !important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem !important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem !important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem !important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem !important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem !important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem !important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem !important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem !important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem !important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem !important}.m-xl-auto{margin:auto !important}.mt-xl-auto,.my-xl-auto{margin-top:auto !important}.mr-xl-auto,.mx-xl-auto{margin-right:auto !important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto !important}.ml-xl-auto,.mx-xl-auto{margin-left:auto !important}}@media (min-width: 1600px){.m-xxl-0{margin:0 !important}.mt-xxl-0,.my-xxl-0{margin-top:0 !important}.mr-xxl-0,.mx-xxl-0{margin-right:0 !important}.mb-xxl-0,.my-xxl-0{margin-bottom:0 !important}.ml-xxl-0,.mx-xxl-0{margin-left:0 !important}.m-xxl-1{margin:.25rem !important}.mt-xxl-1,.my-xxl-1{margin-top:.25rem !important}.mr-xxl-1,.mx-xxl-1{margin-right:.25rem !important}.mb-xxl-1,.my-xxl-1{margin-bottom:.25rem !important}.ml-xxl-1,.mx-xxl-1{margin-left:.25rem !important}.m-xxl-2{margin:.5rem !important}.mt-xxl-2,.my-xxl-2{margin-top:.5rem !important}.mr-xxl-2,.mx-xxl-2{margin-right:.5rem !important}.mb-xxl-2,.my-xxl-2{margin-bottom:.5rem !important}.ml-xxl-2,.mx-xxl-2{margin-left:.5rem !important}.m-xxl-3{margin:1rem !important}.mt-xxl-3,.my-xxl-3{margin-top:1rem !important}.mr-xxl-3,.mx-xxl-3{margin-right:1rem !important}.mb-xxl-3,.my-xxl-3{margin-bottom:1rem !important}.ml-xxl-3,.mx-xxl-3{margin-left:1rem !important}.m-xxl-4{margin:1.5rem !important}.mt-xxl-4,.my-xxl-4{margin-top:1.5rem !important}.mr-xxl-4,.mx-xxl-4{margin-right:1.5rem !important}.mb-xxl-4,.my-xxl-4{margin-bottom:1.5rem !important}.ml-xxl-4,.mx-xxl-4{margin-left:1.5rem !important}.m-xxl-5{margin:3rem !important}.mt-xxl-5,.my-xxl-5{margin-top:3rem !important}.mr-xxl-5,.mx-xxl-5{margin-right:3rem !important}.mb-xxl-5,.my-xxl-5{margin-bottom:3rem !important}.ml-xxl-5,.mx-xxl-5{margin-left:3rem !important}.p-xxl-0{padding:0 !important}.pt-xxl-0,.py-xxl-0{padding-top:0 !important}.pr-xxl-0,.px-xxl-0{padding-right:0 !important}.pb-xxl-0,.py-xxl-0{padding-bottom:0 !important}.pl-xxl-0,.px-xxl-0{padding-left:0 !important}.p-xxl-1{padding:.25rem !important}.pt-xxl-1,.py-xxl-1{padding-top:.25rem !important}.pr-xxl-1,.px-xxl-1{padding-right:.25rem !important}.pb-xxl-1,.py-xxl-1{padding-bottom:.25rem !important}.pl-xxl-1,.px-xxl-1{padding-left:.25rem !important}.p-xxl-2{padding:.5rem !important}.pt-xxl-2,.py-xxl-2{padding-top:.5rem !important}.pr-xxl-2,.px-xxl-2{padding-right:.5rem !important}.pb-xxl-2,.py-xxl-2{padding-bottom:.5rem !important}.pl-xxl-2,.px-xxl-2{padding-left:.5rem !important}.p-xxl-3{padding:1rem !important}.pt-xxl-3,.py-xxl-3{padding-top:1rem !important}.pr-xxl-3,.px-xxl-3{padding-right:1rem !important}.pb-xxl-3,.py-xxl-3{padding-bottom:1rem !important}.pl-xxl-3,.px-xxl-3{padding-left:1rem !important}.p-xxl-4{padding:1.5rem !important}.pt-xxl-4,.py-xxl-4{padding-top:1.5rem !important}.pr-xxl-4,.px-xxl-4{padding-right:1.5rem !important}.pb-xxl-4,.py-xxl-4{padding-bottom:1.5rem !important}.pl-xxl-4,.px-xxl-4{padding-left:1.5rem !important}.p-xxl-5{padding:3rem !important}.pt-xxl-5,.py-xxl-5{padding-top:3rem !important}.pr-xxl-5,.px-xxl-5{padding-right:3rem !important}.pb-xxl-5,.py-xxl-5{padding-bottom:3rem !important}.pl-xxl-5,.px-xxl-5{padding-left:3rem !important}.m-xxl-n1{margin:-.25rem !important}.mt-xxl-n1,.my-xxl-n1{margin-top:-.25rem !important}.mr-xxl-n1,.mx-xxl-n1{margin-right:-.25rem !important}.mb-xxl-n1,.my-xxl-n1{margin-bottom:-.25rem !important}.ml-xxl-n1,.mx-xxl-n1{margin-left:-.25rem !important}.m-xxl-n2{margin:-.5rem !important}.mt-xxl-n2,.my-xxl-n2{margin-top:-.5rem !important}.mr-xxl-n2,.mx-xxl-n2{margin-right:-.5rem !important}.mb-xxl-n2,.my-xxl-n2{margin-bottom:-.5rem !important}.ml-xxl-n2,.mx-xxl-n2{margin-left:-.5rem !important}.m-xxl-n3{margin:-1rem !important}.mt-xxl-n3,.my-xxl-n3{margin-top:-1rem !important}.mr-xxl-n3,.mx-xxl-n3{margin-right:-1rem !important}.mb-xxl-n3,.my-xxl-n3{margin-bottom:-1rem !important}.ml-xxl-n3,.mx-xxl-n3{margin-left:-1rem !important}.m-xxl-n4{margin:-1.5rem !important}.mt-xxl-n4,.my-xxl-n4{margin-top:-1.5rem !important}.mr-xxl-n4,.mx-xxl-n4{margin-right:-1.5rem !important}.mb-xxl-n4,.my-xxl-n4{margin-bottom:-1.5rem !important}.ml-xxl-n4,.mx-xxl-n4{margin-left:-1.5rem !important}.m-xxl-n5{margin:-3rem !important}.mt-xxl-n5,.my-xxl-n5{margin-top:-3rem !important}.mr-xxl-n5,.mx-xxl-n5{margin-right:-3rem !important}.mb-xxl-n5,.my-xxl-n5{margin-bottom:-3rem !important}.ml-xxl-n5,.mx-xxl-n5{margin-left:-3rem !important}.m-xxl-auto{margin:auto !important}.mt-xxl-auto,.my-xxl-auto{margin-top:auto !important}.mr-xxl-auto,.mx-xxl-auto{margin-right:auto !important}.mb-xxl-auto,.my-xxl-auto{margin-bottom:auto !important}.ml-xxl-auto,.mx-xxl-auto{margin-left:auto !important}}@media (min-width: 2200px){.m-xxxl-0{margin:0 !important}.mt-xxxl-0,.my-xxxl-0{margin-top:0 !important}.mr-xxxl-0,.mx-xxxl-0{margin-right:0 !important}.mb-xxxl-0,.my-xxxl-0{margin-bottom:0 !important}.ml-xxxl-0,.mx-xxxl-0{margin-left:0 !important}.m-xxxl-1{margin:.25rem !important}.mt-xxxl-1,.my-xxxl-1{margin-top:.25rem !important}.mr-xxxl-1,.mx-xxxl-1{margin-right:.25rem !important}.mb-xxxl-1,.my-xxxl-1{margin-bottom:.25rem !important}.ml-xxxl-1,.mx-xxxl-1{margin-left:.25rem !important}.m-xxxl-2{margin:.5rem !important}.mt-xxxl-2,.my-xxxl-2{margin-top:.5rem !important}.mr-xxxl-2,.mx-xxxl-2{margin-right:.5rem !important}.mb-xxxl-2,.my-xxxl-2{margin-bottom:.5rem !important}.ml-xxxl-2,.mx-xxxl-2{margin-left:.5rem !important}.m-xxxl-3{margin:1rem !important}.mt-xxxl-3,.my-xxxl-3{margin-top:1rem !important}.mr-xxxl-3,.mx-xxxl-3{margin-right:1rem !important}.mb-xxxl-3,.my-xxxl-3{margin-bottom:1rem !important}.ml-xxxl-3,.mx-xxxl-3{margin-left:1rem !important}.m-xxxl-4{margin:1.5rem !important}.mt-xxxl-4,.my-xxxl-4{margin-top:1.5rem !important}.mr-xxxl-4,.mx-xxxl-4{margin-right:1.5rem !important}.mb-xxxl-4,.my-xxxl-4{margin-bottom:1.5rem !important}.ml-xxxl-4,.mx-xxxl-4{margin-left:1.5rem !important}.m-xxxl-5{margin:3rem !important}.mt-xxxl-5,.my-xxxl-5{margin-top:3rem !important}.mr-xxxl-5,.mx-xxxl-5{margin-right:3rem !important}.mb-xxxl-5,.my-xxxl-5{margin-bottom:3rem !important}.ml-xxxl-5,.mx-xxxl-5{margin-left:3rem !important}.p-xxxl-0{padding:0 !important}.pt-xxxl-0,.py-xxxl-0{padding-top:0 !important}.pr-xxxl-0,.px-xxxl-0{padding-right:0 !important}.pb-xxxl-0,.py-xxxl-0{padding-bottom:0 !important}.pl-xxxl-0,.px-xxxl-0{padding-left:0 !important}.p-xxxl-1{padding:.25rem !important}.pt-xxxl-1,.py-xxxl-1{padding-top:.25rem !important}.pr-xxxl-1,.px-xxxl-1{padding-right:.25rem !important}.pb-xxxl-1,.py-xxxl-1{padding-bottom:.25rem !important}.pl-xxxl-1,.px-xxxl-1{padding-left:.25rem !important}.p-xxxl-2{padding:.5rem !important}.pt-xxxl-2,.py-xxxl-2{padding-top:.5rem !important}.pr-xxxl-2,.px-xxxl-2{padding-right:.5rem !important}.pb-xxxl-2,.py-xxxl-2{padding-bottom:.5rem !important}.pl-xxxl-2,.px-xxxl-2{padding-left:.5rem !important}.p-xxxl-3{padding:1rem !important}.pt-xxxl-3,.py-xxxl-3{padding-top:1rem !important}.pr-xxxl-3,.px-xxxl-3{padding-right:1rem !important}.pb-xxxl-3,.py-xxxl-3{padding-bottom:1rem !important}.pl-xxxl-3,.px-xxxl-3{padding-left:1rem !important}.p-xxxl-4{padding:1.5rem !important}.pt-xxxl-4,.py-xxxl-4{padding-top:1.5rem !important}.pr-xxxl-4,.px-xxxl-4{padding-right:1.5rem !important}.pb-xxxl-4,.py-xxxl-4{padding-bottom:1.5rem !important}.pl-xxxl-4,.px-xxxl-4{padding-left:1.5rem !important}.p-xxxl-5{padding:3rem !important}.pt-xxxl-5,.py-xxxl-5{padding-top:3rem !important}.pr-xxxl-5,.px-xxxl-5{padding-right:3rem !important}.pb-xxxl-5,.py-xxxl-5{padding-bottom:3rem !important}.pl-xxxl-5,.px-xxxl-5{padding-left:3rem !important}.m-xxxl-n1{margin:-.25rem !important}.mt-xxxl-n1,.my-xxxl-n1{margin-top:-.25rem !important}.mr-xxxl-n1,.mx-xxxl-n1{margin-right:-.25rem !important}.mb-xxxl-n1,.my-xxxl-n1{margin-bottom:-.25rem !important}.ml-xxxl-n1,.mx-xxxl-n1{margin-left:-.25rem !important}.m-xxxl-n2{margin:-.5rem !important}.mt-xxxl-n2,.my-xxxl-n2{margin-top:-.5rem !important}.mr-xxxl-n2,.mx-xxxl-n2{margin-right:-.5rem !important}.mb-xxxl-n2,.my-xxxl-n2{margin-bottom:-.5rem !important}.ml-xxxl-n2,.mx-xxxl-n2{margin-left:-.5rem !important}.m-xxxl-n3{margin:-1rem !important}.mt-xxxl-n3,.my-xxxl-n3{margin-top:-1rem !important}.mr-xxxl-n3,.mx-xxxl-n3{margin-right:-1rem !important}.mb-xxxl-n3,.my-xxxl-n3{margin-bottom:-1rem !important}.ml-xxxl-n3,.mx-xxxl-n3{margin-left:-1rem !important}.m-xxxl-n4{margin:-1.5rem !important}.mt-xxxl-n4,.my-xxxl-n4{margin-top:-1.5rem !important}.mr-xxxl-n4,.mx-xxxl-n4{margin-right:-1.5rem !important}.mb-xxxl-n4,.my-xxxl-n4{margin-bottom:-1.5rem !important}.ml-xxxl-n4,.mx-xxxl-n4{margin-left:-1.5rem !important}.m-xxxl-n5{margin:-3rem !important}.mt-xxxl-n5,.my-xxxl-n5{margin-top:-3rem !important}.mr-xxxl-n5,.mx-xxxl-n5{margin-right:-3rem !important}.mb-xxxl-n5,.my-xxxl-n5{margin-bottom:-3rem !important}.ml-xxxl-n5,.mx-xxxl-n5{margin-left:-3rem !important}.m-xxxl-auto{margin:auto !important}.mt-xxxl-auto,.my-xxxl-auto{margin-top:auto !important}.mr-xxxl-auto,.mx-xxxl-auto{margin-right:auto !important}.mb-xxxl-auto,.my-xxxl-auto{margin-bottom:auto !important}.ml-xxxl-auto,.mx-xxxl-auto{margin-left:auto !important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important}.text-justify{text-align:justify !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}@media (min-width: 576px){.text-sm-left{text-align:left !important}.text-sm-right{text-align:right !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.text-md-left{text-align:left !important}.text-md-right{text-align:right !important}.text-md-center{text-align:center !important}}@media (min-width: 992px){.text-lg-left{text-align:left !important}.text-lg-right{text-align:right !important}.text-lg-center{text-align:center !important}}@media (min-width: 1200px){.text-xl-left{text-align:left !important}.text-xl-right{text-align:right !important}.text-xl-center{text-align:center !important}}@media (min-width: 1600px){.text-xxl-left{text-align:left !important}.text-xxl-right{text-align:right !important}.text-xxl-center{text-align:center !important}}@media (min-width: 2200px){.text-xxxl-left{text-align:left !important}.text-xxxl-right{text-align:right !important}.text-xxxl-center{text-align:center !important}}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.font-weight-light{font-weight:300 !important}.font-weight-lighter{font-weight:lighter !important}.font-weight-normal{font-weight:400 !important}.font-weight-bold{font-weight:700 !important}.font-weight-bolder{font-weight:bolder !important}.font-italic{font-style:italic !important}.text-white{color:#fff !important}.text-primary{color:#007bff !important}a.text-primary:hover,a.text-primary:focus{color:#0056b3 !important}.text-secondary{color:#6c757d !important}a.text-secondary:hover,a.text-secondary:focus{color:#494f54 !important}.text-success{color:#28a745 !important}a.text-success:hover,a.text-success:focus{color:#19692c !important}.text-info{color:#17a2b8 !important}a.text-info:hover,a.text-info:focus{color:#0f6674 !important}.text-warning{color:#ffc107 !important}a.text-warning:hover,a.text-warning:focus{color:#ba8b00 !important}.text-danger{color:#dc3545 !important}a.text-danger:hover,a.text-danger:focus{color:#a71d2a !important}.text-light{color:#f8f9fa !important}a.text-light:hover,a.text-light:focus{color:#cbd3da !important}.text-dark{color:#343a40 !important}a.text-dark:hover,a.text-dark:focus{color:#121416 !important}.text-body{color:#212529 !important}.text-muted{color:#6c757d !important}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-white-50{color:rgba(255,255,255,0.5) !important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none !important}.text-break{word-break:break-word !important;overflow-wrap:break-word !important}.text-reset{color:inherit !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}@media print{*,*::before,*::after{text-shadow:none !important;box-shadow:none !important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap !important}pre,blockquote{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6 !important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}
/*# sourceMappingURL=bootstrap.min.css.map */


/* 
	CSS that is applied prior to any theme.
	This file is delivered during installation of DNN Community Forums, 
	may be overwritten during upgrades, and should not be updated by site administrators.

	It can be overridden by declaring CSS in the theme.css located in a theme-specific folder and the /custom/theme.css.
	
    Community Forums's CSS Load order: 
    1) ~/DesktopModules/ActiveForums/module.css
    2) ~/DesktopModules/ActiveForums/themes/themes{.min}.css
    3) ~/DesktopModules/ActiveForums/themes/<currenttheme>/theme{.min}.css
    4) ~/DesktopModules/ActiveForums/themes/<currenttheme>/custom/theme{.min}.css 

*/



/* ---------------------------
	From version 7  Root Module.css 
------------------------------*/

/* 2 Should be inherited from Theme */
	.dnnPrimaryAction {
		box-shadow: none !important;
		-moz-user-select: none;
		box-sizing: border-box;
		display: inline-block;
		font-weight: 500;
		outline: 0px none;
		padding: 3px 7px 4px;
		text-align: center;
		text-decoration: none;
		text-shadow: none;
		cursor: pointer;
		border: 0px none;
		background: none repeat scroll 0% 0% #68AAC7;
		color: #FFF;
		line-height: 1.5;
	}
/* /2 */



/* 3 Should be part of Theme */
	.afpostinfo_responsive {
		/*position:absolute;*/
		position: relative;
		width: 120px;
		margin-right: -120px;
		word-wrap: break-word;
		float: left;
		/*clear:both;*/
		z-index: 10;
	}

	.afpostcontent_responsive {
		width: 100% !important;
		/*margin-right: -120px;*/
		padding-left: 120px;
		position: relative;
		/*min-height:440px !important;*/
		float: left;
		z-index: 9;
	}

	.afpostcontent_responsive img {
		/* width: 100%;*/
		max-width: 100%;
		height: auto;
	}
/* /3 */



/* /4 already defined */
	/*Override 'border-box' for Text Editor*/

	.reToolbar {
		box-sizing: content-box;
	}

/* 4 */



/* 6 too generic */
*,
:active,
:focus {
	outline: 0;
	outline-style: none;
	outline-width: 0;
	-moz-outline-width: 0;
}
/* /6 */



/* 8 too generic */
	input[type="text"],
	select,
	textarea,
	input[type="email"],
	input[type="search"],
	input[type="password"] {
		color: rgba(0, 0, 0, 0.44);
		font-size: 12px;
	}


	:before,
	:after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
/* /8 */



/* 9 > Theme */
	.afcontainer {
		padding: 0px;
		text-align: left;
		color: #333;
		font-weight: 400;
		font-family: "Helvetica Neue", "HelveticaNeue", Helvetica, Arial, "Lucida Grande", sans-serif;
		font-size: 15px;
		line-height: 1.4;
		-webkit-font-smoothing: subpixel-antialiased;
	}

	* .afcontainer a,
	.afcontainer a:link,
	.afcontainer a:active,
	.afcontainer a:visited {
		text-decoration: none;
	}

	* .afcontainer a:hover {
		text-decoration: underline;
	}

/* 9 */



/* 10 removed rule font-size */ 
.afgrid {
	font-size: 12px; 
}
/* /10 */


/* 11 Already defined above */
	table.afgrid {
		padding: 0px;
		margin: 0px;
		border-collapse: collapse;
	}
/* /11 */


/* 12 > Theme  */
	* .afcontainer blockquote {
		border: solid 1px #a9a9a9;
		padding: 5px;
		display: block;
		font-size: 8pt;
		margin: 10px;
		background-color: #f5f5f5;
	}
/* /12 */




/* 13 too generic */
	mark,
	.mark {
		background: transparent !important;
	}
/* /13 */




/* 14 Part to Theme */
	.afgrid tr {
		width: 100%;
		position: relative;
	}

	td.afgrouprow.afgrouprow-f {
		width: 50%;
		text-align: left;
	}

	td.afgrouprow.afgrouprow-m {
		width: 10%;
		text-align: center
	}

	td.afgrouprow.afgrouprow-l {
		width: 20%;
		text-align: left;
	}

	.afcontrolheader {
		color: #888;
		font-weight: bold;
		font-size: 13px;
		letter-spacing: 0.05px;
		text-transform: uppercase;
	}

	.afgrouprow-f .afcontrolheader {
		margin-left: 5px;
	}

	.afgroupsection {
		font-size: 14px;
		margin-bottom: 10px;
		margin-top: 25px;
		text-transform: uppercase;
		color: #999;
		display: block;
		text-align: center;
		position: relative;
	}

	.afgroupsection img {
		-moz-opacity: 0.00;
		-khtml-opacity: 0.00;
		opacity: 0.00;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha"(opacity=0);
		filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
		filter: alpha(opacity=0);

		position: absolute;
		left: 0;
		right: 0;
		width: 100%;
		height: 20px;
		cursor: pointer;
	}

	.afgroupsection:before,
	.afgroupsectiononline:before {
		content: "";
		width: 100%;
		height: 2px;
		background-color: rgba(0, 0, 0, 0.05);
		position: absolute;
		top: 50%;
		display: block;
		left: 0;
		right: 0;
	}

	.afgroupsectiononline:before {
		top: 10px;
	}

	.afgrouponline {
		clear: both;
		text-transform: none;
		color: rgba(0, 0, 0, 0.44);
		margin-top: 10px;
	}

	.afgroupsectiontitle {
		position: relative;
		background: #FFF;
		display: inline-block;
		padding: 2px 10px;
	}

	.afquote {
		border: solid 1px #a9a9a9;
		padding: 5px;
		display: block;
		font-size: 8pt;
		margin: 10px;
		background-color: #f5f5f5;
	}

	.afsubgrid {
		width: 100%;
		border: none 0px #cdcdcd;
	}

	table.afsubgrid {
		padding: 0px;
		margin: 0px;
		border-collapse: collapse;
	}

	.afgrouprow {
		padding: 0px;
		margin: 0px;
		height: 30px;
	}

	.afheader {
		padding-left: 5px;
		padding-bottom: 3px;
	}

/* /14 */



/* 16 not in use*/

	.af-left {
		float: left;
	}

	.af-right {
		float: right;
	}
/* /16 */



/* 19 afmodform class > does not exist in solution > Remove ? */


	.afmodform {
		padding: 0;
		margin: 0;
	}

	.afmodform li {
		list-style-type: none;
		padding-bottom: 4px;
	}

	.afmodform li b {
		padding-right: 6px;
	}


/* /19 */



/* 23 > Theme */
	.afactionicon {
		padding-left: 5px;
		padding-right: 0px;
	}
/* /23 */


/* 24 Not found in the solution > remove */


	td.af-minicon {
		width: 20px;
		vertical-align: top;
	}
	
/* /24 */


/* 25 > Theme */
	td.af-forumdetail {
		vertical-align: middle;
		width: 100%;
	}

	td.af-subforumdetail {
		vertical-align: top;
		width: 100%;
	}
/* /25 */




/* 26 move to Theme */
	td.af-colstats {
		text-align: center;
		width: 10%;
		font-size: 19px;
		font-weight: 300;
		color: #333;
	}

	td.af-lastpost {
		width: 20%;
		white-space: nowrap;
		text-align: center;
		font-size: 12px;
		font-weight: 400;
		color: #888;
	}

	td.af-colstats.af-colstats-replies {
		font-weight: 700;
	}

	td.af-lastpost div {
		text-align: left;
		width: 175px;
		overflow: hidden;
		white-space: normal !important;
	}

	td.af-lastpost div a:link,
	td.af-lastpost div a:visited {
		text-decoration: none;
		font-size: 12px;
		font-weight: 700;
		color: #333;
		word-break: break-word;
	}

	td.af-title {
		width: 100%;
		padding-left: 25px;
	}

	td.af-groupname {
		padding-left: 10px;
		width: 100%;
	}

	td.af-groupcollapse {
		text-align: right;
		position: relative;
	}

	td.af-right {
		text-align: right;
	}

	td.af-posticon {
		width: 30px;
		vertical-align: top;
	}


	td.af-content td.afsubject {
		vertical-align: top;
		width: 100%;
		padding-right: 10px;
	}

	td.af-content td.afsubject>a {
		color: #333;
		font-weight: 700;
		font-size: 13px;
	}

	.aftopictitle,
	.aftopictitle a,
	.aftopicrownew .aftopictitle a,
	.aftopicrownew .aftopictitle a:link,
	.aftopicrownewalt .aftopictitle a,
	.aftopicrownewalt .aftopictitle a:link {
		font-size: 19px;
		/*display: block;*/
		font-weight: 700;
		color: #333 !important;
		letter-spacing: -0.5px;
		line-height: 1.25;
	}


	td.af-content td.afsubject .aftopicstarted a,
	.aftopicrownew .aftopicstarted a,
	.aftopicrownew .aftopicstarted a:link {
		color: #333;
		font-weight: 700;
		font-size: 14px;
		display: inline-block;
		margin-top: 4px;
		margin-bottom: 4px;
	}

	.aftopicstarted {
		display: block !important;
		color: #888;
		font-size: 14px;
	}

	.aftopicsubtitle .clearboth,
	.aftruncateellipsis {
		display: inline-block;
	}

	.aftopicsubtitle {
		font-size: 15px;
		font-weight: 400;
		display: block;
		color: #888;
		word-break: break-word;
		overflow: hidden;
	}

	.aftopictools {
		display: block;
		/*float:left;*/
		height: 21px;
	}

	.aftopictools * {
		cursor: pointer;
	}

	td.af-content td.afsubject .aftruncatemorelink {
		font-size: 15px;
		color: #285a8f;
		font-weight: 400;
		display: inline;
		margin-left: 3px;
	}

	.af-icons {
		width: 40px;
		vertical-align: top;
	}

	td.af-content {
		vertical-align: top;
	}

	.af-status {}

	.af-postcontent {
		margin-left: 10px;
}

/* /26 */



/* 27 Remove font sizes + styling -> now removed*/



/* 28 not found in solution */
	
	.af-right {
		float: right;
	}
	
/* /28 */



/* 30 Theme specific and floats instead of flexbox */


.aftoolbarpanel{border-bottom: solid 1px #dcdcdc;
background-color: transparent;
margin-bottom: 15px;
width: 100%;
margin-top: 15px;}
.aftoolbarpanel ul.af-list-flat{padding:10px 0;}
.aftoolbarpanel ul.af-list-flat li a, .aftoolbarpanel ul.af-list-flat li a:link, .aftoolbarpanel ul.af-list-flat li a:visited, .aftoolbarpanel ul.af-list-flat li a:active, .aftoolbarpanel ul.af-list-flat li a:hover {
color: #888;
padding-left: 0;
padding-right: 5px;
}

/* /30 */



/* 32 Not in use */

	.afcattree ul {
		margin: 0;
		padding: 0;
	}

	.afcattree ul li ul {
		margin-left: 12px;
		display: none;
	}

	.afcattree .category.cat-selected ul {
		display: block;
	}

	.afcattree ul li {
		list-style-type: none;
	}

	.afcattree ul li em {
		float: right;
		font-style: normal;
	}

/* /32 */



/* 34 Don't overrrule DNN Theme */
a.dnnTertiaryAction,
a.dnnTertiaryAction:link,
a.dnnTertiaryAction:visited {
	line-height: 2.5;
	padding: 0 1.2em;
}
/* /34 */




/* 37 Not in use  */
	.afgridhd {
		background-color: #555;
		color: #f5f5f5;
		padding: 2px;
	}

	.afgridhdsub {
		padding-left: 2px;
		padding-right: 2px;
	}

	.afgriditem {
		padding: 2px;
	}

	.afgridrow {
		background-color: #fff;
	}

	.afgridrowalt {
		background-color: #f3f3f3;
	}

	.afgridrow_over {
		background-color: #ffff99 !important;
	}
		
	.afgroupactions {}

	.afgroupactionsitem {
		padding: 3px;
	}
	
	.gridcheck {
	text-align: center;
	}

	.dnnForm .gridcheck input {
		margin: 0;
		float: inherit;
	}

	.dnnForm .gridcheck input[type="radio"] {
		margin: 0;
		float: inherit;
	}

/* /37 */


/* 40 Part of the Theme */
.af-colstats_responsive,
.af_lastpost_responsive {
	display: none;
	white-space: nowrap;
}
/* /40 */








/* Only needed for pre v7 legacy Themes:  */
@import url("/DesktopModules/ActiveForums/themes/_legacy-module.css");


.afnormal {
	font-size: 13px;
color: #666;
position: relative;
display: block;
margin-top: 10px;
margin-bottom: 10px;
}

.aftopicjumper {
	position: relative;
	top: 0;
	left: 0;
	margin-top: -16px;
	width: 100%;
	height: 50px;
	border-bottom: 1px solid #e9e9e9;
	background: #FFF;
	z-index: 23;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.aftopicjumper a:hover {
	color: #008fd8;
}
.aftopicjumper a:hover:before {
	background-color: #008fd8;
	color: #FFF !important;
}

.aftopicjumper a:before {
	content: '';
	position: absolute;
	top: 0;
	width: 50px;
	height: 50px;
	background: #e9e9e9;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.aftopicjumperdesc {
	color: #666;
}

.afprevtopic a,
.afnexttopic a {
	width: 50%;
	height: 50px;
	float: left;
	position: relative;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 600;
	text-decoration: none;
	line-height: 50px;
	color: #BBB;
	overflow: hidden;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
	text-decoration: none;
}
.afprevtopic a {
	border-right: 1px solid #eee;
}
.afprevtopic a:hover,
.afnexttopic a:hover {
	text-decoration: none;
	color: #008fd8 !important;
}

.afprevtopic a span,
.afnexttopic a span {
	color: #666;
}
.afprevtopic a:hover span,
.afnexttopic a:hover span {
	color: #008fd8;
}

.afprevtopic a:before,
.afnexttopic a:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	
	color: #bbb !important;
	font-size: 40px;
	line-height: 50px;
	text-align: center;
}

.afprevtopic a {
	padding-left: 70px;
}
.afprevtopic a:before {
	left: 0;
	content: "\f104";
}

.afnexttopic a {
	padding-right: 70px;
	text-align: right;
}
.afnexttopic a:before {
	left: auto;
	right: 0;
	content: "\f105";
}

.afprevtopic img, 
.afnexttopic img {
	display: none;
}

.aftitlelg {
font-size: 32px;
display: block;
padding: 10px;
color: #333;
padding-left: 0;
font-weight: 700;
line-height: 1.4;
letter-spacing: -0.5px;
padding-right: 0;
padding-top: 0;
}

.aftitlelg a:link,
.aftitlelg a:active,
.aftitlelg a:visited {
	font-size: 26px;
	color: #666;
}

.aftopicsum {
	padding-left: 0;
font-size: 14px;
font-weight: 300;
color: #bbb;
margin-top: 10px;
}
.aftopicsum a {
	color: #888 !important;
}
.aftopicreplies,.afsubscribercount {
font-size: 18px;
color: #888;
}

.afloader {
	background-color: #f5f5f5;
	opacity: 0.6;
	-ms-opacity: 0.5;
	-moz-opacity: 0.6;
	filter: alpha(opacity=60);
}

.afprmidback {
	background-image: url("/DesktopModules/ActiveForums/images/profile_mid_back.png");
}

.afprlftback {
	width: 9px;
	background-image: url("/DesktopModules/ActiveForums/images/profile_left_back.png");
}

.afprrgtback {
	width: 8px;
	background-image: url("/DesktopModules/ActiveForums/images/profile_right_back.png");
}

.afprrgtborder {
	width: 8px;
	background-image: url("/DesktopModules/ActiveForums/images/profile_right_border.png");
}

.afprlftborder {
	width: 9px;
	background-image: url("/DesktopModules/ActiveForums/images/profile_left_border.png");
}

.afprrgtbottom {
	width: 8px;
	background-image: url("/DesktopModules/ActiveForums/images/profile_right_bottom.png");
}

.afprlftbottom {
	width: 9px;
	background-image: url("/DesktopModules/ActiveForums/images/profile_left_bottom.png");
}

.afbottomborder {
	background-image: url("/DesktopModules/ActiveForums/images/profile_bottom_border.png");
}

.aftopicrow,
.aftopicrowalt,
.aftopicrownew,
.aftopicrownewalt {
	font-size: 13px;
	color: #333;
	font-weight: normal;
	
	border-bottom: 1px solid #e2e2e2;
	padding: 12px 0;
}

.aftopicrownew a, 
.aftopicrownew a:link, 
.aftopicrownew a:visited, 
.aftopicrownew a:active, 
.aftopicrownewalt a, 
.aftopicrownewalt a:link, 
.aftopicrownewalt a:visited, 
.aftopicrownewalt a:active {
	font-size: 13px;
	text-decoration: none;
	color: #333;
	font-weight: bold;
}

.afminiarrow {
	margin: 2px;
}

.afpagermini {
	display: inline;
	padding-left: 5px;
}

.afpagermini a,.afpagermini a:link,.afpagermini a:active, .afpagermini a:visited {
	text-decoration: underline;
}

.afmessage {
	text-align: center;
	color: #ff0000;
	font-weight: bold;
}

.afsearchbox {
	border: solid 1px #666;
	height: 22px !important;
	font-size: 16px !important;
}

.afsection {
	width: 100%;
	margin: 0px;
	padding: 0px;
	border-bottom: solid 0px #b3b3b3;
}

.afsectionhd {
    background-color: #cdcdcd;
    margin: 0px;
    padding-left: 5px;
    padding-right: 5px;
    background-image: url("/DesktopModules/ActiveForums/themes/_legacy/images/amwhiteback.png");
    height: 30px;
    cursor: pointer;
}

.afsectiondsp {
	padding: 5px;
	border-bottom: solid 1px #b3b3b3;
	border-left: solid 1px #b3b3b3;
	border-right: solid 1px #b3b3b3;
}

.ambuttonlg,.ambuttonlg_over {
	padding-left: 2px;
	padding-right: 6px;
	padding-top: 2px;
	color: #fff;
	height: 24px !important;
	border-top: solid 0px #000;
	border-bottom: solid 0px #000;
	border-right: solid 1px #000;
	border-left: solid 1px #000;
	background-image: url("/DesktopModules/ActiveForums/themes/_legacy/images/ambtnbk24.png");
	cursor: pointer;
	position: static;
	text-decoration: none;
	display: block;
}

.ambuttonlg A:link, .ambuttonlg A:visited, .ambuttonlg A:active, .ambuttonlg A:hover {
	font-size: 12px;
	font-family: Tahoma;
	color: #fff;
	text-decoration: none;
}

.ambuttonlg_over A:link, .ambuttonlg_over A:visited, .ambuttonlg_over A:active, .ambuttonlg_over A:hover {
	font-size: 11px;
	font-family: Tahoma;
	color: #fff;
	text-decoration: none;
}

.amtab {
	border: solid 1px #898c95;
	display: inline;
	background-color: #fff;
	height: 18px;
	padding-top: 1px;
	padding-left: 1px;
	padding-right: 1px;
	position: relative;
	top: 1;
	z-index: 100;
	cursor: pointer;
}

.amtabtext {
	display: inline;
	background-image: url("/DesktopModules/ActiveForums/themes/_legacy/images/amtab_back_norm.gif");
	height: 16px;
	padding-left: 5px;
	padding-right: 5px;
	font-size: 12px;
}

.amtabsel {
	border-bottom: solid 1px #fff;
	position: relative;
	top: 1;
	z-index: 150;
	border-top: solid 1px #898c95;
	border-right: solid 1px #898c95;
	border-left: solid 1px #898c95;
	display: inline;
	background-color: #fff;
	height: 21px;
	padding-top: 1px;
	padding-left: 2px;
	padding-right: 2px;
}

.amtabseltext {
	display: inline;
	height: 16px;
	padding-left: 5px;
	padding-right: 5px;
	font-size: 12px;
}

.amtabcontent {
	border-top: solid 1px #898c95;
	background-color: #fff;
	z-index: 101;
	top: 0px;
	padding: 5px;
	overflow: auto;
}

.afforumrowtop {
	color: #000;
}

.afforumrowtop a,.afforumrowtop a:link, .afforumrowtop a:active,.afforumrowtop a:visited {
	color: #000;
	text-decoration: underline;
}

.afforumrowmid {
	color: #000;
	border-top: dashed 1px #cdcdcd;
}

.afforumrowmid a,.afforumrowmid a:link, .afforumrowmid a:active,.afforumrowmid a:visited {
	color: #000;
	text-decoration: underline;
}

.afforumrowbottom {
	color: #000;
	border-top: dashed 1px #cdcdcd;
}

.afforumrowbottom a,.afforumrowbottom a:link, .afforumrowbottom a:active,.afforumrowbottom a:visited {
	color: #000;
	text-decoration: underline;
}

.afsubforumrowtop {
	color: #000;
}

.afsubforumrowtop a,.afsubforumrowtop a:link, .afsubforumrowtop a:active,.afsubforumrowtop a:visited {
	color: #000;
	text-decoration: underline;
}

.afsubforumrowmid {
	color: #000;
}

.afsubforumrowmid a,.afsubforumrowmid a:link, .afsubforumrowmid a:active,.afsubforumrowmid a:visited {
	color: #000;
	text-decoration: underline;
}

.afsubforumrowbottom {
	color: #000;
}

.afsubforumrowbottom a,.afsubforumrowbottom a:link, .afsubforumrowbottom a:active,.afsubforumrowbottom a:visited {
	color: #000;
	text-decoration: underline;
}

td.af-forumdetail a:link,td.af-forumdetail a:visited,td.af-subforumdetail a:link,td.af-subforumdetail a:visited {
	color: #666;
	text-decoration: none;
	font-weight: bold;
}

.afmodrow {
	border-bottom: solid 1px #666;
	border-left: solid 1px #666;
	border-right: solid 1px #666;
}

.afminibtn, .afminibtn_over {
	font-size: 11px;
	font-family: Tahoma;
	color: #666;
	height: 20px;
	border: solid 1px #666;
	background-image: url("/DesktopModules/ActiveForums/themes/_legacy/images/ambuttonback.gif");
	padding: 2px 2px 4px 2px !important;
	padding: 0px 2px 0px 2px;
	margin: 5px 0px 0px 5px;
	cursor: pointer;
	position: static;
	text-decoration: none;
	display: inline;
}

.afminibutton, .afminibutton a, .afminibutton a:link, .afminibutton a:active, .afminibutton a:visited {
	font-size: 10px;
	color: #000080;
	text-decoration: none;
}

.afbutton,.afbutton_over {
	cursor: pointer;
	border: #000 1px solid;
}

.afminibtn a:link,.afminibtn a:visited,.afminibtn a:active,.afminibtn a:hover,.afminibtn_over a:link,.afminibtn_over a:visited,.afminibtn_over a:active,.afminibtn_over a:hover {
	text-decoration: none;
}

.afbuttonarea {
	clear: right;
	display: block;
	margin-top: 10px;
	text-decoration: none;
}

.afbuttonarea a:link, .afbuttonarea a:visited, .afbuttonarea a:active, .afbuttonarea a:hover {
	/*text-decoration: none;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	font-weight: 500;
	outline: 0;
	padding: 3px 7px 4px 7px;
	text-align: center;
	text-decoration: none;
	text-shadow: none;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(0,0,0,0.15);
	border: 1px solid #75a6d4;
	background: #dfeffa;
	color: #2770bd;
	line-height: 1.5*/
    text-decoration: none;
	/*-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;*/
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	font-weight: 500;
	outline: 0;
	padding: 3px 7px 4px 7px;
	text-align: center;
	text-decoration: none;
	text-shadow: none;
	cursor: pointer;
	/*box-shadow: 0 1px 2px rgba(0,0,0,0.15);*/
	/*border: 1px solid #75a6d4;*/
    border: 0;
	background: #68AAC7;
	color: #ffffff;
	line-height: 1.5
}

.ambutton,.ambutton_over {
	padding-right: 2px;
	padding-top: 1px;
	padding-bottom: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 5px;
	float: left;
	clear: right;
	font-size: 11px;
	font-family: Tahoma;
	color: #666;
	height: 18px;
	border: solid 1px #666;
	background-image: url("/DesktopModules/ActiveForums/themes/_legacy/images/ambuttonback.gif");
	cursor: pointer;
	position: static;
	text-decoration: none;
	display: inline;
}

.ambutton a:link, .ambutton a:visited, .ambutton a:active, .ambutton a:hover {
	font-size: 11px;
	font-family: Tahoma;
	color: #666;
	text-decoration: none;
}

.ambutton_over A:link, .ambutton_over A:visited, .ambutton_over A:active, .ambutton_over A:hover {
	font-size: 11px;
	font-family: Tahoma;
	color: #666;
	text-decoration: none;
}

.ambutton img,.ambutton_over img {
	margin-left: 1px;
	margin-right: 1px;
	padding-top: 1px;
}

.ambutton span, .ambutton_over span {
	padding-top: 5px;
}

.amtbwrapper {
	text-decoration: none;
	text-align: center;
	width: 100%;
	height: 55px;
	margin-left: auto;
	margin-right: auto;
}

.amtbwrapper div {
	display: inline-block;
}

.amtbwrapper div {
	display: inline;
}

.amtbwrapper>div {
	display: inline-block;
}

.amimagebutton, .amimagebutton_over {
	cursor: pointer;
	border: solid 1px #cdcdcd;
	float: left;
}

.amimagebutton_over {
	cursor: pointer;
	border: solid 1px #666;
	background-color: #f5f5f5;
}

.afgrouprow {
	background-color: #FFF;
	font-weight: bold;
	font-size: 15px;
	color: #888;
}

.afgrouprow a:link, .afgrouprow a:visited, .afgrouprow a:active {
	color: #fff;
}

.afheader {
	background-color: #f0f0f0;
}

.afarrow {
	cursor: pointer;
	vertical-align: middle;
}


.afemoticons {
	width: 45px;
}

.afmenuclick {
	cursor: pointer;
	text-decoration: underline;
}

.afmenulink {
	font-size: 11px;
	font-weight: bold;
	color: #666;
	cursor: pointer;
	display: inline;
	text-decoration: none;
}

.afmenu {
	background-color: #f5f5f5;
	z-index: 5000;
	border: solid 1px #cdcdcd;
	overflow: auto;
	text-decoration: none;
}

.afcheckbox {
	margin: 5px;
	padding-left: 5px;
}

.aflegend {
	color: #daa520;
}

.affieldset {
	color: #666;
	margin: 5px;
}

.afnormalbold {
	font-weight: bold;
	color: #666;
}

.afnormalbold a, .afnormalbold a:link,.afnormalbold a:visited, .afnormalbold a:active {
	color: #666;
	font-weight: bold;
}

.afbold {
	font-size: 12px;
	font-weight: bold;
	color: #666;
}

.afsmallbold {
	font-size: 10px;
	font-weight: bold;
	color: #666;
}

.afpager {
	/*
	border: solid 1px #333;
	background-color: #fff;
	margin: 0px 0px 0px 0px;
	padding-top: 0px;*/
}

.afsearchgo {
	font-size: 12px;
	font-family: Tahoma;
	height: 20px;
	width: 22px;
	background-color: #333;
	display: inline;
}

.afminisearchbox {
	margin: 0px;
	padding: 0px;
	font-size: 12px;
	height: 18px;
	border-top: solid 1px #666;
	border-left: solid 1px #666;
	border-bottom: solid 1px #666;
	border-right: solid 1px #333;
}

.afsmall {
	font-size: 10px;
	color: #666;
}

.afsmall a,.afsmall a:link,.afsmall a:active,.afsmall a:visited {
	font-size: 10px;
	color: #000;
}

.afpreview {
	border: solid 1px #666;
	width: 90%;
	display: none;
	background-color: #FFF;
}

.afpreviewbar {
	padding: 0px 2px 0px 2px;
	background-image: url("/DesktopModules/ActiveForums/themes/_legacy/images/ambuttonback.gif");
	border-bottom: solid 1px #666;
	width: 100%;
	height: 20px;
	background-color: #333;
	color: #666;
	font-weight: bold;
	font-size: 11px;
}

.afpreviewbar img{
	
	cursor: pointer;
}		  
.afpreviewtext {
	width: 100%;
	padding: 2px;
	background-color: #fff;
}

.aftextbox {
	background-color: rgba(0, 0, 0, 0.05);
	font-family: Tahoma, Verdana, Arial;
	font-size: 11px;
	border: solid 1px rgba(0, 0, 0, 0.15);
	width: 99%;
	border-radius: 2px;
	padding: 5px 7px;
	display: block;
	display: block;
	width: 100%;
	margin: 0 auto;
	color: rgba(0,0,0,.8);
	box-shadow: none;
	margin-top: 10px;
	resize: none;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.5;
	font-family: Georgia,Times,"Times New Roman",serif;
	letter-spacing: .01rem;
	height: 100%;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.afdropdown {
	font-family: Tahoma, Verdana, Arial;
	font-size: 11px;
	border: solid 1px #666;
}

.afattachhead {
	background-color: #333;
	color: #fff;
	padding: 2px;
}

.afquickreply {
	float: right;
	position: relative;
}

.afnotauthorized {
	width: 100%;
	display: block;
	margin-top: 25px;
	margin-bottom: 25px;
	text-align: center;
	font-size: 16px;
	letter-spacing: -.25px;
	color: rgba(0, 0, 0, 0.45);
}

.amtip {
	font-family: Tahoma;
	font-size: 9px;
	width: 150px;
}

.amtipbubble {
	background-color: #fffacd;
	height: 36px;
	border: solid 1px #000;
	height: auto;
}

.amtiptext {
	padding: 2px;
	width: 150px;
	text-align: left;
}

.amMsgBox {
	border: solid 1px #666;
	background-color: #ffffcc;
	font-family: Tahoma;
	font-size: 12px;
}

.amMsgBoxHeader {
	border-bottom: solid 1px #666;
	background-color: #999;
	font-weight: bold;
	padding: 2px;
	text-align: left;
}

.amMsgBoxText {
	padding: 5px;
}

.amload, .amloading {
	font-size: 12px;
	color: #666;
}

.afforumrow a:link, .afforumrow a:visited, .afforumrow a:active, .afpostinfo1 a, .afpostinfo1 a:link, .afpostinfo1 a:visited, .afpostinfo1 a:active, .afposttopic a, .afposttopic a:link, .afposttopic a:visited, .afpostreply1 a, .afpostreply1 a:link, .afpostreply1 a:visited, .afforumrow2 a:link, .afforumrow2 a:visited, .afforumrow2 a:active {
	color: #333333;
}

.afpostinfo2 a, .afpostinfo2 a:link, .afpostinfo2 a:visited, .afpostinfo2 a:active, .afpostreply2 a, .afpostreply2 a:link, .afpostreply2 a:visited {
	color: #333;
}

.aflastpost a:link, .aflastpost a:visited, .aflastpost a:active {
	color: #333;
}

.afnormal a {
	color: #333;
}

td.afnormal {
	white-space: nowrap;
}

.afimage {
}

.afpostsig {
	border-top: solid 1px rgba(0, 0, 0, 0.05);
	margin-top: 15px;
	margin-left: 10px;
	margin-right: 10px;
}

.afemoticons {
	text-align: center;
	width: 55px;
}

.afeditor {
	border: solid 1px #cdcdcd;
	width: 95%;
	background-color: #f5f5f5;
}

.aftitle {
	font-weight: bold;
	font-size: 12px;
}

.afattachlink {
}

.aflastpost {
	border-top: #cdcdcd 1px solid;
	font-size: 11px;
	background-color: #fff;
}

.afsubrow {
	font-size: 11px;
	/* border-bottom: solid 1px #333; */
	text-decoration: none;
	padding-left: 10px;
}

.afsubrow a:link,.afsubrow a:visited,.afsubrow a:active {
	text-decoration: none;
}

.af_pager, .af_pagernumber, .af_currentpage {
	font-size: 13px;
	color: #bbb;
	padding: 2px;
	margin-bottom: 10px;
	margin-top: 10px;
	display: inline-block;
	padding: 0;
}

.af_pagernumber,
.af_pagernumber a {
	color: rgba(0,0,0,0.8);
}
.af_pagernumber {
	/* background-color: #DCDCDC; */
/* border-left: #000 1px solid; */
width: auto;
padding: 0 8px;
color: rgba(0,0,0,0.6);
}

.af_currentpage {
	color: rgba(0,0,0,0.44);
padding-left: 8px;
padding-right: 8px;
}

.afcrumb {
	clear: left;
	font-size: 13px;
	padding-top: 5px;
	font-weight: 400;
	color: #b7b7b7;
}

.afcrumb a:last-of-type {
font-weight: 700;
}

.afcrumb a, .afcrumb a:link, .afcrumb a:visited, .afcrumb a:active {
	color: rgba(0,0,0,0.8);
}

.afheader2 {
	font-weight: bold;
	font-size: 11px;
	color: #fff;
	background-color: #333;
	height: 18px;
}

.afforumrow {
	border-right: #cdcdcd 1px solid;
	border-top: #cdcdcd 1px solid;
	font-size: 12px;
	background-color: #fff;
	color: #666;
}

.aftopicviewheader {
	font-size: 11px;
	color: rgba(0,0,0,0.8);
}


.aftopicauthor {
    width:120px;
    padding-left:5px;
    text-align:left;
}

.aftopicmessage {
    padding-left:15px;
    text-align:left;
}

.aftopicstatus {
    width:24px;
    text-align:center;
}

.afpostinfo1, .afpostinfo2 {
	min-height: 100px;
	vertical-align: top;
    padding-top: 5px;
}

.afpostinfo2, .afpostreply2 {
	min-height: 100px;
	vertical-align: top;
	background-color: #f5f5f5;
}

.afposttopic, .afpostreply1, .afpostreply2 {
	min-height: 100px;
	width: 100%;
	vertical-align: top;
    padding-top: 5px;
}

.afposttopic .afpostbody, 
.afpostreply1 .afpostbody, 
.afpostreply2 .afpostbody {
	font-family: Georgia,Times,"Times New Roman",serif;
	font-size: 15px;
	line-height: 1.4;
	padding: 0 10px;
	word-wrap: normal;
	word-break: break-word;
}

.afpostbody img {
   /* width:100%;*/
   max-width:100%;
}

.afborder {
	border-left: solid 0px #cdcdcd;
	border-right: solid 0px #cdcdcd;
	border-bottom: solid 0px #cdcdcd;
}

.afsmallbutton, .afsmallbutton a, .afsmallbutton a:link, .afsmallbutton a:active, .afsmallbutton a:visited {
	font-size: 11px;
	color: #000080;
}

.afsmalltext {
	font-size: 11px;
    padding:0;
    margin:0;
    margin-top:5px;
}

.afdropdown {
	font-size: 11px;
    padding:0;
    margin:0;
}

.emot {
	background-color: transparent;
	border-style: none;
	margin: 0px;
	padding: 0px;
}

.afpollbar {
	background-color: #ff0000;
}

.afpollresults {
	border: solid 1px #333;
}

.afposteditdate {
	font-family: Tahoma, Verdana, Arial;
	font-size: 9px;
	font-style: italic;
}

.aftopic, .aftopic a:link, .aftopic a:visited, .aftopic a:active {
	font-family: Verdana, Arial, sans-serif !important;
	text-decoration: none;
}

.aftopic a:hover {
	text-decoration: none;
	border-bottom: dashed 1px #333;
}

.aftopic {
	border-bottom: solid 1px #cdcdcd;
	padding: 5px;
	color: #000;
	margin: 5px;
	margin-bottom: 10px;
}

.afcontainer h1,.aftopic h1 {
	font-size: 20px;
	padding: 0px;
	margin: 0px;
	font-weight: bold;
	color: #333;
	width: 70%;
}

.afcontainer h3,.aftopic h3 {
	font-size: 11px;
	padding: 0px;
	padding-top: 2px;
	margin: 0px;
	color: #333;
	width: 70%;
}

.aftopic h4 {
	font-size: 11px;
	padding: 0px;
	padding-top: 2px;
	margin: 0px;
	color: #333;
}

.afsummary, .aftopicbody {
	font-family: Verdana, Arial, sans-serif !important;
	padding: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
	font-size: 14px;
}

.aftopicbody p {
	font-family: Verdana, Arial, sans-serif !important;
	font-size: 14px;
}

.afcomments {
	border: solid 1px #cdcdcd;
	background-color: #fff;
	margin: 10px;
	padding: 10px;
}

.afcomments h1 {
	font-size: 16px;
	padding: 0px;
	margin: 0px;
	font-weight: bold;
	color: #333;
	padding-bottom: 5px;
}

.afreply {
	border: solid 1px #666;
	background-color: #f5f5f5;
	padding: 10px;
	margin: 0px;
	margin-bottom: 10px;
}

.afreplybody {
	color: #000;
	padding: 10px;
	background-color: #fff;
}

.aftopic .afposttags {
	width: 70%;
}



/*Calendar Picker */
.ampicker {
	background-color: #FFFFFF;
	border: 1px black solid;
	font-size: 11px;
	font-family: Tahoma,monospace;
	font-weight: normal;
	cursor: pointer;
	padding-left: 2px;
	width: 100px;
	height: 16px;
}

.ampicker input {
	font-size: 11px;
	font-family: Tahoma,monospace;
	font-weight: normal;
	width: 100px;
}

.amcalbutton {
	border: none;
	cursor: pointer;
}

.amcalendar td {
	font-size: 11px;
	text-align: center;
}

.amcaltitle {
	font-weight: bold;
	background-color: #D7D7E5;
	font-family: Tahoma,monospace;
}

.amdayhover {
	width: 25px;
	cursor: pointer;
	text-align: center;
	text-decoration: underline;
	border-width: 1px;
	border-color: #F6F6F6;
	border-style: solid;
}

.amdayheader {
	width: 25px;
	text-align: center;
	border-width: 1px;
	border-color: white;
	border-style: solid;
	font-weight: bold;
	background-color: #FFFFFF;
}

.amothermonthday {
	color: #999999;
	cursor: pointer;
}

.amcurrentmonthday {
	color: #000000;
	cursor: pointer;
}

.amselectedday {
	width: 25px;
	background-color: #FBE694;
	text-align: center;
	color: #000000;
	border-width: 1px;
	border-color: #BB5503 !important;
	border-style: solid;
	font-weight: bold;
	cursor: pointer;
}

.amcurrentday {
	width: 25px;
	background-color: #000000;
	text-align: center;
	color: #ffffff;
	border-width: 1px;
	border-color: #BB5503 !important;
	border-style: solid;
	font-weight: bold;
	cursor: pointer;
}

.amcalendar {
	font-family: Tahoma,monospace;
	border-style: solid;
	border-width: 1px;
	border-color: Black;
	border-collapse: collapse;
	background-color: #FFFFFF;
	cursor: default;
}

.amMonth {
	background-color: #F6F6F6;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-top: 0px;
}

.amNextPrev {
	cursor: pointer;
	height: 25px;
	vertical-align: middle;
	padding: 0px 5px 0px 5px;
}
/*End Calendar Picker */
.afcodeblock {
	overflow: auto;
	width: auto;
	background-color: rgba(0, 0, 0, 0.05);
	height: auto;
	padding: 5px;
	font-size: 16px;
	color: rgba(0, 0, 0, 0.6);
	margin: 0px;
}

.csharpcode {
	font-size: 10pt;
	color: black;
	font-family: Courier New , Courier, Monospace;
	background-color: #ffffff;
}

.csharpcode pre {
	border: solid 0px transparent;
	margin: 0px;
	padding: 0px;
	white-space: pre-wrap;
 /* css-3 */
	white-space: -moz-pre-wrap !important;
 /* Mozilla, since 1999 */
	white-space: -pre-wrap;
 /* Opera 4-6 */
	white-space: -o-pre-wrap;
 /* Opera 7 */
	word-wrap: break-word;
 /* Internet Explorer 5.5+ */
	width: 99%;
}

.rem {
	color: #008000;
}

.kwrd {
	color: #0000ff;
}

.str {
	color: #006080;
}

.op {
	color: #0000c0;
}

.preproc {
	color: #cc6633;
}

.asp {
	background-color: #ffff00;
}

.html {
	color: #800000;
}

.attr {
	color: #ff0000;
}

.alt {
	background-color: #f4f4f4;
	width: 100%;
	margin: 0px;
}

.lnum {
	color: #606060;
}

.aftagstxt {
	font-size: 11px;
	color: #000000;
	border: solid 1px #cdcdcd;
}

.aftsresults {
	z-index: 50000;
	position: absolute;
	border: solid 1px #999;
	font-size: 11px;
	background-color: #f5f5f5;
	width: 150px;
}

.aftsresultsitems {
	z-index: 50000;
	border-bottom: solid 0px #999;
	font-size: 11px;
}

.aftsresultsel {
	z-index: 50000;
	background-color: Yellow;
	font-size: 11px;
}

.affieldsetnote {
	padding-left: 10px;
	padding-top: 3px;
	padding-bottom: 3px;
}

/*Forum Content views*/
.fcv-table {
	width: 100%;
}

.fcv-nav {
	vertical-align: top;
	width: 225px;
}

.fcv-content {
	vertical-align: top;
	padding-left: 20px;
	padding-right: 20px;
}

.fcv-wrap {
}

.fcv-wrap ul {
	padding: 0;
	margin: 0;
}

.fcv-wrap ul li {
	list-style-type: none;
}

.fcv-header {
	font-size: 14px;
	font-weight: bold;
	padding: 6px;
	border: 1px solid #cdcdcd;
	background-color: #f5f5f5;
}

.fcv-subforums {
}

.fcv-subforums li {
	margin-left: 8px;
	padding: 4px;
}

.fcv-subforums li a,.fcv-subforums li a:hover {
	text-decoration: none !important;
}

.fcv-subforums em {
	background-image: url("/DesktopModules/ActiveForums/themes/_legacy/images/sp-icons16.png");
	float: left;
	background-repeat: no-repeat;
	display: inline-block;
	width: 16px;
	height: 16px;
}

.fcv-subforums span {
	margin-left: 6px;
}

.fcv-selected span {
	font-weight: bold;
}

.fcv-categorysection {
}

.fcv-categoryname {
	font-size: 12px;
	font-weight: bold;
	padding: 4px;
}

.fcv-topicslist {
}

.fcv-topicslist li {
	margin-left: 6px;
	padding: 2px;
}

.fcv-subject {
	font-size: 16px;
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 5px;
}

.fcv-date {
	font-size: 10px;
	font-style: italic;
	margin-bottom: 10px;
}

.fcv-catcount {
	font-weight: bold;
	float: right;
	min-width: 16px;
	text-align: center;
	font-size: 10px;
	color: #333;
	background-color: #cdcdcd;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	padding: 2px;
}

.afn-group {
	font-family: Arial,Helvetica,Tahoma;
	font-size: 9pt;
	display: block;
	background-color: #f6f5ee;
	padding: 4px;
	padding-left: 12px;
	color: #666666;
	font-weight: bolder;
	border-bottom: 1px solid #d6d2c4;
}

ul.afn-groupset, .afn-groupset ul {
	margin-left: 0px !important;
}

ul.afn-groupset li, .afn-groupset ul li {
	padding-left: 16px;
}

.afn-forum {
	font-size: 12px;
	padding-top: 4px;
	padding-bottom: 4px;
	border-bottom: 1px solid #e8e5dd;
	display: block;
	margin-left: 0px;
}

.afn-forum b,.afn-forum strong {
	margin-right: 4px;
	float: left;
	display: block;
	height: 16px;
	width: 16px;
	background-image: url("/DesktopModules/ActiveForums/images/sp-icons16.png");
	background-repeat: no-repeat;
}

.afn-subforum {
	padding-top: 4px;
	padding-bottom: 4px;
	display: block;
}

.afn-forum a,.afn-subforum a {
	color: #666666;
}

li.afn-currentforum a:link,li.afn-currentforum a:visited {
	font-weight: bold;
}

li.afn-currentforum ul li.afn-subforum a:link,li.afn-currentforum ul li.afn-subforum a:visited {
	font-weight: normal;
}

.afn-category {
}

.afn-category-selected span {
	font-weight: bold;
}

.aftb-topics-grid {
	border-collapse: collapse;
	width: 100%;
}

.aftb-topics-grid td {
	padding: 0;
}

.aftb-topics,.aftb-topics a,.aftb-topics a:link,.aftb-topics a:visited {
	font-family: Arial;
	font-size: 12px;
	font-weight: normal;
}

.aftb-topic {
	background-color: #fff;
}

.aftb-topic-alt {
	background-color: #f5f5f5;
}

.aftb-topic .aftb-subject a:link,.aftb-topic-alt .aftb-subject a:link {
	font-weight: bold;
}

.aftb-details {
	display: inline-block;
	margin-top: 4px;
	margin-bottom: 4px;
}

.aftb-subject {
	margin-top: 0px;
}

.aftb-info {
	margin-top: 6px;
}

.aftb-info,.aftb-info a,.aftb-info a:link,.aftb-info a:visited {
	font-size: 10px;
}

.aftb-info a,.aftb-info a:link,.aftb-info a:visited {
	text-decoration: underline;
}

.aftb-icon {
	width: 28px;
}

.aftb-icon div {
	margin-top: 6px;
	margin-left: 4px;
	height: 36px;
}

.aftb-user {
	width: 150px;
	height: 38px;
	text-align: right;
	vertical-align: middle;
}

.aftb-user a:link {
	font-size: 11px;
}

.aftb-avatar {
	width: 36px;
	height: 38px;
}

.aftb-avatar div {
	width: 34px;
	height: 36px;
	float: right;
	margin: 4px;
	border: 1px solid #cdcdcd;
}

.aftb-avatar div span {
	display: block;
	height: 26px;
	width: 26px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 5px;
	background-repeat: no-repeat;
}

.aftb-icon a {
	position: relative;
	display: block;
	height: 20px;
	width: 20px;
	background-image: url("/DesktopModules/ActiveForums/images/docicon.png");
}

.aftb-icon a span {
	position: absolute;
	display: block;
	height: 16px;
	width: 16px;
	background-image: url("/DesktopModules/ActiveForums/images/sp-overlay.png");
}

.aftb-icon .af-status0 {
	background-position: -14px 0px;
	left: 6px;
	top: 0px;
}

.aftb-icon .af-status1 {
	background-position: -32px 0px;
	left: 6px;
	top: 0px;
}

.aftb-icon .af-status3 {
	background-position: -48px 0px;
	left: 6px;
	top: 0px;
}

.aftb-icon .af-new {
	background-position: -64px 0px;
}

.aftb-icon .af-locked {
	background-position: -80px 0px;
	left: 4px;
	top: 12px;
}

.aftb-icon .af-pinned {
	background-position: -100px 0px;
	left: 0px;
	top: 10px;
}

div.af-pager table {
	float: right;
}

div.af-pager table td {
	padding: 2px;
}

/* jQuery UI Button fix - Added 5.0.4 */
.activeForums span.ui-icon {
	display: inline-block;
}

/* Search Popup - Added 5.0.4 */
.aftb-search {
	position: relative;
}

.aftb-search .aftb-search-link {
	color: #666666;
	cursor: pointer;
}

.aftb-search .ui-icon {
	display: inline-block;
	vertical-align: middle;
}

.aftb-search .aftb-search-popup {
	position: absolute;
	display: none;
	border: solid 1px rgba(0, 0, 0, 0.1);
	background-color: rgba(255, 255, 255, 0.97);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
	border-radius: 2px;
	padding: 10px;
	padding-top: 0;
	z-index: 9999;
	white-space: nowrap;
	font-size: 12px;
	color: rgba(0, 0, 0, 0.44);
	margin-left: -22px;
	/* text-transform: lowercase; */
}

.aftb-search .aftb-search-popup input {
	margin-right: 4px;
}
.aftb-search .aftb-search-popup input:last-child {
	margin-left: 5px;
}

.aftb-search .aftb-search-popup input[type=text] {
	border: solid 1px rgba(0, 0, 0, 0.1);
	height: 28px;
	width: 150px;
	background: rgba(0, 0, 0, 0.05);
	margin: 3px 7px 0px 0px;
	padding: 3px 6px;
	border-radius: 2px;
}

.aftb-search .aftb-search-popup a {
	float: right;
	color: rgba(0, 0, 0, 0.6) !important;
	font-size: 12px;
	margin: 0px;
	font-weight: normal;
}

.af-adv-search {
	margin-top: 5px;
}

.af-adv-search span.ui-icon {
	display: inline-block;
	vertical-align: middle;
}

.af-adv-search-box {
	border: solid 1px rgba(0, 0, 0, 0.15);
	border-top: none;
	padding: 0px;
	margin: 0px;
	background-color: #FFF;
}

.af-adv-search-box:first-child {
	border-top: solid 1px rgba(0, 0, 0, 0.2);
}

.af-adv-search-header {
	background-color: #FFF;
	padding: 4px;
	color: rgba(0, 0, 0, 0.8);
	font-weight: 700;
}

.af-adv-search-footer {
	text-align: left;
	padding-left: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	padding-right: 10px;
	padding-top: 0;
	margin-top: 15px;
	color: rgba(0, 0, 0, 0.44);
	font-weight: 700;
}

.afminisearch span {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.44);
}

#amaf-chk-subs,
#chkSubscribe {
	margin-right: 6px;
	margin-top: -3px;
}


.afminisearch input {
	margin-top: 20px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: none;
	background: rgba(0, 0, 0, 0.025);
	margin-left: 4px;
	font-size: 14px;
	height: 24px;
	padding: 2px 6px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
}

.af-search-header .ui-button,
.af-adv-search-footer .ui-button,
.aftb-search .aftb-search-popup .ui-button {
	/*text-decoration: none;
	-webkit-border-radius: 2px !important;
	-moz-border-radius: 2px !important;
	border-radius: 2px !important;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	font-weight: 500;
	outline: 0;
	padding: 3px 7px 4px 7px !important;
	text-align: center;
	text-decoration: none;
	text-shadow: none;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(0,0,0,0.15);
	
	border: 1px solid #75a6d4 !important;
	background: #dfeffa !important;
	color: #2770bd !important;*/

	/* line-height: 1.5; */
	/*margin-top: 20px;
	font-size: 14px;
	margin-bottom: 15px;*/


    -moz-user-select: none;
    box-sizing: border-box;
    display: inline-block;
    font-weight: 500 !important;
    outline: 0px none;
    padding: 3px 7px 4px !important;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    cursor: pointer;
    border: 0px none !important;
    background: #68AAC7 !important;
    color: #FFF !important;
    font-size: 1em !important;
    /*line-height: 1.5;*/
}
.aftb-search .aftb-search-popup .ui-button {
	margin-top: 18px;
}

.af-search-header .ui-button .ui-icon-wrench,
.af-adv-search-footer .ui-button .ui-icon-search,
.af-adv-search-footer .ui-button .ui-icon-refresh,
.aftb-search .aftb-search-popup .ui-button .ui-icon-search {
	display: none !important;
	visibility: hidden;
}

.af-search-header .ui-button .ui-button-text,
.af-adv-search-footer .ui-button .ui-button-text,
.aftb-search .aftb-search-popup .ui-button .ui-button-text {
	padding: 0;
	margin-top: 0;
	font-size: 12px;
	position: relative;
	padding-bottom: 2px;
	line-height: 18px;
}


.af-adv-search-header-collapse {
	cursor: pointer;
}

.af-adv-search-header .ui-icon {
	vertical-align: middle;
}

.af-adv-search-row {
/*vertical-align: middle;
border-bottom: 0 none;
padding: 5px 0px;
margin: 0px;*/
vertical-align: middle;
border-bottom: 0 none;
padding: 10px 0px;
margin: 0px 15px;
}

.af-adv-search-row label {
	display: inline-block;
width: 150px;
vertical-align: top;
margin-top: 4px;
color: rgba(0, 0, 0, 0.44);
font-size: 14px;
}

.af-adv-search-row input[type=text], 
.af-adv-search-row select {
	padding: 4px 6px;
	margin: 0px;
	border: solid 1px rgba(0, 0, 0, 0.1);
	background: #FFF;
	box-shadow: none;
	-webkit-box-shadow: none;
	height: 26px;
	border-radius: 5px;
	color: rgba(0, 0, 0, 0.44);
}
.af-adv-search-row select {
	text-transform: lowercase;
}
.af-adv-search-row input[type=text] {
	width: 200px;
}
.af-adv-search-row select[multiple=multiple] {
height: auto!important;
}

.af-adv-search-footer {
	text-align: right;
    padding:10px;
}

.af-adv-search-footer .ui-button {
	/*padding: 3px 7px 4px 7px;*/
}

.af-adv-search-footer .ui-button-text {
	padding: 5px;
}

.af-adv-search-list {
	min-width: 250px;
}

.af-adv-search-list > option {
	padding: 2px;
	outline: none;
	font-weight: bold;
}

.af-adv-search-list optgroup {
	font-style: normal;
	font-weight: bold;
	padding: 2px;
}

.af-adv-search-list optgroup option {
	padding: 2px 2px 2px 10px;
}

.af-search-input-error {
	display: none;
	float: left;
	font-weight: bold;
	color: firebrick;
	vertical-align: middle;
	height: 30px;
	line-height: 30px;
}

/* Search Results - Added 5.0.4 */
.af-search-pager {
	float: right;
}

.af-search-header {
	position: relative;
	margin: 10px 0px;
	padding-right: 250px;
}

.af-search-header .af-search-title {
	font-size: 1.5em;
	font-weight: bold;
	margin: 0px;
	display: inline-block;
	width: inherit;
	margin: 0px 10px 0px 0px;
}

.af-search-header .ui-icon {
	display: inline-block;
	vertical-align: middle;
}

.af-search-header .afpager {
	position: absolute;
	bottom: 0px;
	right: 0px;
}

.af-search-header .ui-button {
	padding: 2px 5px;
}

.af-search-header .ui-button-text {
	padding: 5px;
}

.af-search-header select {
	padding: 4px;
	margin: 0px;
	border: solid 1px #ccc;
}


.af-search-bar {/*
	padding: 0px 10px;
	background-color: #3D3D3D;
	color: #fff;
	font-weight: bold;
	height: 30px;
	line-height: 30px;*/
	color: rgba(0, 0, 0, 0.3);
	font-weight: normal;
}


.af-search-duration {
	float: right;
}

.af-search-footer {
	position: relative;
	margin: 10px 0px;
}

.af-search-footer .afpager {
	position: absolute;
	top: 0px;
	right: 0px;
}

.af-search-header .af_pager, 
.af-search-footer .af_pager {
	padding: 0px 5px;
}

.af-search-criteria {
	display: inline-block;
	margin-right: 10px;
	color: rgba(0, 0, 0, 0.3);
}

.af-search-criteria b {
	color: rgba(0, 0, 0, 0.6);
}

.af-search-noresults {
	text-align: center;
	color: rgba(0, 0, 0, 0.44);
	padding: 50px 0px;
	font-size: 20px;
	letter-spacing: -0.02em;
}

.af-search-results a {
	font-weight: bold;
}

/* Search Result - Posts - Added 5.0.4 */
.af-search-results .af-post {
	border: solid 1px #999;
	padding: 0px;
	margin: 4px 0px 0px;
	background-color: #f0f0f0;
}

.af-search-results .af-post-header {
	background-color: #ddd;
	padding: 4px 10px;
	color: #3d3d3d;
	font-weight: bold;
}

.af-search-results .af-post-header .af-stats {
	float: right;
	font-weight: normal;
	white-space: nowrap;
}

.af-search-results .af-post-header label {
	display: inline-block;
	width: 50px;
}

.af-search-results .af-post-header .af-stats span {
	display: inline-block;
	width: 50px;
	text-align: right;
}

.af-search-results .af-post-content {
	padding: 10px;
}

/* Search Results - Topics - Added 5.0.4 */
.af-search-results .af-topics {
	width: 100%;
	border-collapse: collapse;
	margin: 0px;
	padding: 0px;
	/* background-color: #f0f0f0; */
}

.af-search-results .af-topics tr {
	border: solid 1px #999;
	border-top: none;
}

.af-search-results .af-topics td {
	padding: 10px;
	vertical-align: top;
	text-align: left;
}

.af-search-results .af-topics .af-icon {
	vertical-align: middle;
	/* background-color: #ddd; */
	text-align: center;
	width: 32px;
}

.af-search-results .af-topics .af-icon img {
	border: none;
}

.af-search-results .af-topics .af-thread {
}

.af-search-results .af-topics .af-stats {
	text-align: right;
	/* background-color: #ddd; */
	white-space: nowrap;
	width: 70px;
}

.af-search-results .af-topics .af-lastpost {
	width: 200px;
}

.af-search-results .af-topics .af-forum {
	background-color: #ddd;
	width: 150px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.af-search-results .af-topics .af-mini-pager {
	display: inline-block;
	margin-left: 10px;
	white-space: nowrap;
}

.af-search-results .af-topics .af-mini-pager a {
	display: inline-block;
	border: solid 1px #999;
	text-decoration: none;
	font-weight: normal;
	font-size: 0.8em;
	height: 16px;
	min-width: 12px;
	text-align: center;
	line-height: 16px;
	padding: 0px 2px;
	margin: 0px 1px;
}

.af-search-results .af-topics .af-mini-pager span {
	padding: 0px 2px;
}

/* Profile Edit - Added 5.0.4 */
.af-button-edituser {
}

.af-button-edituser .ui-icon {
	vertical-align: text-top;
}

.af-button-edituser .ui-button-text {
	padding: 0px 5px;
}


/* empty file to add custom theme-specific CSS */


.composeMessageDialog .dnnLeft .dnnFormItem{border-bottom:solid 1px #eee;width:400px;}
.composeMessageDialog .dnnLeft .dnnFormItem img{vertical-align:middle;float:right;}
.composeMessageDialog .dnnLeft button{cursor:pointer;padding:0.5em 1em;border:none;}
.composeMessageDialog .dnnFormItem label, .composeMessageDialog .dnnFormItem .dnnFormLabel, .composeMessageDialog .dnnFormItem .dnnTooltip{width: 25%;}
ul.token-input-list-facebook{width: 46%; margin-bottom: 18px;}
div.token-input-dropdown-facebook ul li img{margin-right:10px;vertical-align:middle;}
/* MESSAGE ATTACHMENTS */
.composeMessageDialog .messageAttachments {
    width:300px;
    float:right;
}
.composeMessageDialog .messageAttachments ul li{
	overflow:auto;
	list-style:none;
	border-bottom:1px solid #ddd;
	margin-bottom:5px;
}
.composeMessageDialog .messageAttachments ul li a{
	float:left;
	font-size:12px;
	text-decoration:none;
}
.composeMessageDialog .messageAttachments a.removeAttachment{
	float:right;
	display:block;
	padding:3px;
	width:10px; height:10px;
	background:url("/Resources/Shared/Components/ComposeMessage/images/delete.png") no-repeat 3px 3px;
	opacity:0.75; 
}
.composeMessageDialog .messageAttachments a.removeAttachment:hover{
	opacity:1;
}

    /* Example tokeninput style #2: Facebook style */
ul.token-input-list-facebook {
    overflow: hidden; 
    height: auto !important; 
    height: 1%;
    width: 35%;
    cursor: text;
    min-height: 1px;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style-type: none;
    padding:3px 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:#999;
		font-size:12px;

 }

ul.token-input-list-facebook li input {
    border: 0;
    width: 100px;
    padding: 3px 8px;
    background-color: white;
    margin: 2px 0;
    -webkit-appearance: caret;
}

li.token-input-token-facebook {
    overflow: hidden; 
    height: auto !important; 
    height: 15px;
    margin: 3px;
    padding: 1px 3px;
    background-color: #eff2f7;
    color: #000;
    cursor: default;
    border: 1px solid #ccd5e4;
    font-size: 11px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    float: left;
    white-space: nowrap;
}

li.token-input-token-facebook p {
    display: inline;
    padding: 0;
    margin: 0;
}

li.token-input-token-facebook span {
    color: #a6b3cf;
    margin-left: 5px;
    font-weight: bold;
    cursor: pointer;
}

li.token-input-selected-token-facebook {background-color: #FEFDDE;border:1px #EEECE5 solid;}

li.token-input-input-token-facebook {
    float: left;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

div.token-input-dropdown-facebook {
    position: absolute;
    min-width: 234px;
    background-color: #fff;
    overflow: hidden;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    cursor: default;
    font-size: 11px;
    font-family: Verdana;
    z-index: 100020;
}

div.token-input-dropdown-facebook p {
    margin: 0;
    padding: 5px;
    font-weight: bold;
    color: #777;
}

div.token-input-dropdown-facebook ul {
    margin: 0;
    padding: 0;
}

div.token-input-dropdown-facebook ul li {
    background-color: #fff;
    padding: 3px;
    margin: 0;
    list-style-type: none;
}

div.token-input-dropdown-facebook ul li.token-input-dropdown-item-facebook {
    background:#eee;border:1px #EEECE5 solid;
}

div.token-input-dropdown-facebook ul li.token-input-dropdown-item2-facebook {
    background:#eee;border:1px #EEECE5 solid;
}

div.token-input-dropdown-facebook ul li em {
    font-weight: bold;
    font-style: normal;
}

div.token-input-dropdown-facebook ul li.token-input-selected-dropdown-item-facebook {
    background-color: #FEFDDE;
    
}

ul.token-input-list-facebook {
    padding: 0 !important;
}

.token-input-list-facebook .token-input-input-token-facebook input[type="text"] {
    border: none;
    margin: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.am-ui-shell{width:700px;margin-left:auto;margin-right:auto;position:relative;height:500px;}
.am-ui-shell-content{height:400px;padding:10px;background-color:#fff;border:1px solid #cdcdcd;border-top:1px solid transparent;border-bottom:1px solid transparent;position:relative;top:-10px;overflow:auto;}
.am-ui-footer{position:relative;bottom:0px;padding-top:2px;padding-left:8px;background-color:#f3f3f3;border:1px solid #cdcdcd;min-height:22px;top:-12px;z-index:10;}



.am-ui-grid{border-collapse:collapse;width:100%;}
.am-ui-grid td{font-size:11px;}
.am-ui-grid thead{background-color:#ccc;}
.am-ui-grid thead td{font-weight:bold;}
.am-ui-grid tbody tr{cursor:pointer;}
.am-ui-grid tbody td{max-width:110px;}
.am-ui-grid tbody td span{white-space:nowrap;overflow:hidden;tex-overflow:ellipsis; max-width:110px;display:inline-block;}
.am-ui-grid tbody tr:nth-child(odd){background-color:#FCFCE8;}
.am-ui-grid tbody tr:nth-child(even){background-color:#f3f3f3;}

.am-ui-sprite16,.am-ui-modal-buttonarea button i,.am-ui-notify i{background-image:url("/DesktopModules/ActiveForums/active/am-ui-sprite-icons16.png");background-repeat:no-repeat;width:16px;height:16px;display:block;}

.am-ui-useradd16{background-position:-240px 0px;}

span.am-ui-sprite16{display:inline-block;}

.am-ui-picker{display:inline-block; border:1px inset #F0F0F0;margin:2px;padding:2px;margin-left:0px;}
.am-ui-picker span.am-ui-sprite16{margin-left:2px;margin-right:2px;float:left; cursor:pointer;}
.am-ui-picker-value{display:inline-block;}
.am-ui-picker-value a{color:#336699;text-decoration:underline; cursor:pointer;padding:1px;}

.am-ui-modal{display:none;width:500px;height:350px;position:absolute;padding:0;margin:0;border:8px solid #cdcdcd;border-radius:8px;-moz-border-radius: 8px; -webkit-border-radius: 8px;}
.am-ui-modal-inner{background-color:#fff;border:2px solid #cdcdcd;}


.am-ui-modal-simple{background-color:#fff;border:2px solid #cdcdcd;display:none;}
.am-ui-modal-hd{height:26px; background-color:#ffffcc;border-bottom:1px solid #999;}
.am-ui-modal-hd-text{float:left;padding:3px;padding-top:8px;padding-left:10px;font-weight:bold;}
.am-ui-modal-hd-close{display:block;float:right;background-image:url("/DesktopModules/ActiveForums/active/close.gif");width:28px;height:15px;margin-top:5px;cursor:pointer;margin-right:6px; background-repeat:no-repeat;}

.am-ui-modal-std{display:none;border:8px solid #cdcdcd;border-radius:8px;-moz-border-radius: 8px; -webkit-border-radius: 8px;}
.am-ui-modal-std .am-ui-modal-inner{background-color:#fff;border:1px solid #999;}

.am-ui-modal-buttonarea{position:relative;bottom:0px;}
.am-ui-modal-buttonarea button,.am-ui-modal-buttonarea a
{
    float:right;
    display:block;
    font-size:12px;
    font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
    line-height:130%;
    text-decoration:none;
    font-weight:bold;
    margin:0 7px 0 0;
    color:#565656;
    cursor:pointer;
    padding:5px 10px 6px 7px;
    background-color:#f5f5f5;border:1px solid #dedede;border-top:1px solid #eee;border-left:1px solid #eee;
}
.am-ui-modal-buttonarea button{width:auto;overflow:visible;padding:4px 10px 3px 7px;}
.am-ui-modal-buttonarea button[type]{padding:5px 10px 5px 7px;line-height:17px;}
.am-ui-modal-buttonarea button i, .am-ui-modal-buttonarea a i,.am-ui-notify i{margin:0 3px -3px 0 !important;padding:0;border:none;width:16px;height:16px;float:left;}

.am-ui-modal-buttonarea button.am-ui-positive{color:#529214;}
button.am-ui-positive i{background-position:-176px 0px;}
.am-ui-modal-buttonarea a.am-ui-positive:hover, .am-ui-modal-buttonarea button.am-ui-positive:hover{background-color:#E6EFC2;border:1px solid #C6D880;color:#529214;}
.am-ui-modal-buttonarea a.am-ui-positive:active{background-color:#529214;border:1px solid #529214;color:#fff;}

.am-ui-modal-buttonarea button.am-ui-negative{color:#d12f19;}
button.am-ui-negative i{background-position:-80px 0px;}
.am-ui-modal-buttonarea a.am-ui-negative:hover, .am-ui-modal-buttonarea button.am-ui-negative:hover{background-color:#fbe3e4;border:1px solid #fbc2c4;color:#d12f19;}
.am-ui-modal-buttonarea a.am-ui-negative:active{background-color:#d12f19;border:1px solid #d12f19;color:#fff;}

.am-ui-modal-buttonarea button.am-ui-regular{color:#336699;}
button.am-ui-regular i{background-position:0px 0px;}
.am-ui-modal-buttonarea a.am-ui-regular:hover, .am-ui-modal-buttonarea button.am-ui-regular:hover{background-color:#dff4ff;border:1px solid #c2e1ef;color:#336699;}
.am-ui-modal-buttonarea a.am-ui-regular:active{background-color:#6299c5;border:1px solid #6299c5;color:#fff;}

.am-ui-notify{display:none;height:48px}
.am-ui-notify div{font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;line-height:130%; margin:0 7px 0 0;padding:5px 10px 6px 7px;}

.am-ui-notify-positive{background-color:#E6EFC2;border:1px solid #C6D880;color:#529214;}
.am-ui-notify-positive i{background-position:-176px 0px;}
.am-ui-notify-negative{background-color:#fbe3e4;border:1px solid #fbc2c4;color:#d12f19;}
.am-ui-notify-negative i{background-position:-48px 0px;}
.am-ui-notify-regular{background-color:#dff4ff;border:1px solid #c2e1ef;color:#336699;}
.am-ui-notify-regular i{background-position:-16px 0px;}

.am-ui-modal-simple .am-ui-notify{position:absolute;top:-28px;left:0px;z-index:20;}

.am-ui-split{}
.am-ui-split-left,.am-ui-split-right{vertical-align:top;}
.am-ui-split-left{background-color:#FCFCE8;}
.am-ui-split-left ul{margin:0px;padding:0px;margin-left:4px;}
.am-ui-split-left ul li{list-style-type:none; cursor:pointer;}



.am-ui-clear:after, .am-ui-clear:after{content:".";display:block;height:0;font-size:0;clear:both;visibility:hidden;}
.am-ui-clear{min-height:1px;}
* html .am-ui-clear{min-height:1px;}

.am-ui-roundall{border-radius:6px;-moz-border-radius: 6px; -webkit-border-radius: 6px;}
.am-ui-roundbottom{-webkit-border-bottom-right-radius: 6px;
-webkit-border-bottom-left-radius: 6px;
-moz-border-radius-bottomright: 6px;
-moz-border-radius-bottomleft: 6px;
border-bottom-right-radius: 6px;
border-bottom-left-radius: 6px;}

/*.am-ui-navbar{font-size:14px;border:1px solid #cdcdcd;background-color:#FFC;}
.am-ui-navbar i{background-repeat:no-repeat;width:32px;height:32px;display:block;margin-left:auto;margin-right:auto;}*/
.am-ui-toolbar{font-size:11px;border:1px solid #cdcdcd;background-color:#f5f5f5;position:relative;z-index:10;top:-6px;}
.am-ui-toolbar ul,.am-ui-navbar ul{margin:0px;padding:0px;padding-top:2px;padding-bottom:2px;padding-left:8px;}
.am-ui-toolbar ul li,.am-ui-navbar ul li{list-style-type:none;float:left;}
.am-ui-toolbar ul li input[type='text']{font-size:11px;}
.am-ui-toolbar ul li a,.am-ui-toolbar ul li a:visited,.am-ui-toolbar ul li a:hover{font-size:11px;}

.am-ui-navbar ul li a{display:inline-block;width:50px;height:50px;position:relative;z-index:5;}
.am-ui-navbar ul li a span{text-align:center;display:inline-block;width:50px;}

.am-ui-tabs{background-color:#fff;min-height:275px;}
.am-ui-tab-strip{margin:0px;padding:0px;padding-top:4px;padding-left:8px;background-color:#f5f5f5;border-bottom:1px solid #cdcdcd;position:relative;}
.am-ui-tab-strip li{background-color:#E1E5E5; cursor:pointer;top:1px;position:relative;display:inline-block;padding-left:4px;padding-right:4px;border:1px solid #cdcdcd;list-style-type:none;float:left;margin-right:4px;
                    -webkit-border-top-right-radius: 6px;
-webkit-border-top-left-radius: 6px;
-moz-border-radius-topright: 6px;
-moz-border-radius-topleft: 6px;
border-top-right-radius: 6px;
border-top-left-radius: 6px;
                    }

.am-ui-tab-strip li span{display:block;padding:2px;}
li.am-ui-tab-selected{border-bottom-color:#fff;background-color:#fff;}
.am-ui-tab-content{display:none;visibility:hidden;min-height:200px;position:relative;overflow:auto;}
.am-ui-tab-content ul{margin:0px;padding:0px;}
.am-ui-tab-content ul li{list-style-type:none;}
.am-ui-form{margin:0px;padding:0px;font-family:Arial;margin-top:10px;}
.am-ui-form input,.am-ui-form textarea,.am-ui-form select{border:1px inset #F0F0F0;background-color:#f5f5f5;}
.am-ui-form input:focus,.am-ui-form textarea:focus, .am-ui-form select:focus{outline:0px;background-color:#ffc; border:1px inset #F0F0F0;}
.am-ui-form textarea{resize:none; border:1px inset #F0F0F0;}
.am-ui-form input[type=text],.am-ui-form textarea{width:98%;font-size:14px;padding:4px;font-family:Arial;margin-bottom:4px;padding-right:0px;}

ul.am-ui-form li{list-style-type:none;margin-top:4px;margin-bottom:4px;}
ul.am-ui-form li label{width:110px;display:inline-block;font-size:10px;font-weight:bold; white-space:nowrap;}
ul.am-ui-form li input{font-size:11px;width:225px;font-family:Arial;}
table.am-ui-form td{vertical-align:top;font-family:Arial;text-align:left;}
table.am-ui-form td label{font-size:11px; font-weight:bold; white-space:nowrap;}
table.am-ui-form td input,table.am-ui-form td textarea{font-size:11px;width:225px;font-family:Arial;}
table.am-ui-form td input[type=checkbox]{width:auto;}
div.am-ui-form{margin:10px;}
div.am-ui-form label{display:block;font-size:14px;margin-bottom:4px;margin-top:4px;font-weight:bolder; white-space:nowrap;}
.am-ui-form input.am-ui-input-small{font-size:12px;width:26px;margin-bottom:0px}
.am-ui-form-rows{margin-top:6px;}
.am-ui-form-rows td{white-space:nowrap;padding-right:4px;}
.am-ui-form-rows td input,.am-ui-form-rows td select{margin-right:10px;}
.am-ui-form table.am-ui-form-section{width:100%;}
.am-ui-form table.am-ui-form-section td{vertical-align:top;}

ul.am-ui-form-list{margin:0px;padding:0px;margin-top:10px;}
ul.am-ui-form-list li{list-style-type:none !important;display:block;margin-bottom:4px;line-height:30px;}
ul.am-ui-form-list li label{float:left;width:120px;text-align:right;margin-right:10px;font-size:14px;line-height:26px;}
ul.am-ui-form-list li input[type="text"]{font-size:11px;border:solid 1px #cdcdcd;}
ul.am-ui-form-list li select{font-size:11px;margin-right:0px !important;}

ul.am-ui-form-list li div.am-ui-form-radiorow span{font-size:11px;}
ul.am-ui-form-list li div.am-ui-form-radiorow input[type="radio"]{font-size:14px;margin:0px;padding:0px !important;margin-left:4px;margin-right:8px;margin-top:0px !important;}
ul.am-ui-form-list li div.am-ui-form-radiorow input[type="checkbox"]{font-size:14px;margin:0px;padding:0px !important;margin-left:4px;margin-right:4px;margin-top:8px !important;}

ul.am-ui-form-propeditor{width:375px;margin-left:auto;margin-right:auto;}
ul.am-ui-form-propeditor li input[type="text"],ul.am-ui-form-propeditor li select{width:225px;}

.am-ui-content{border-top:solid 1px #666;background-color:#fff;}
.am-ui-data-list li{list-style-type:none;margin-bottom:6px;margin-right:10px;border:1px solid transparent;padding:6px;}
.am-ui-data-list li:hover{background-color:#FFC;border:1px solid #cdcdcd;cursor:pointer;}
.am-ui-row-title{display:block;font-size:12px;font-weight:bold;}
.am-ui-row-body{font-size:10px;}
.am-ui-row-property{float:right;font-size:11px; font-style:italic;}
.am-ui-tokens{}
.am-ui-tokens input[type=button]{color:#000;border:solid 1px #dea303;padding:2px;background-image:url("/DesktopModules/ActiveForums/active/btn20back.png");font-size:11px;cursor:pointer;}
.am-ui-tokens ul{margin:0px;padding:0px;}
.am-ui-tokens ul li{list-style-type:none;float:left;border-radius:4px;-moz-border-radius: 4px; -webkit-border-radius: 4px; border:1px solid #cdcdcd; background-color:#ffc;padding:2px;margin-right:2px;margin-bottom:2px;}
.am-ui-tokens ul li b{cursor:pointer;display:inline-block;width:14px;height:12px; background-image:url("/DesktopModules/ActiveForums/active/am-ui-sprite-icons16.png"); background-repeat:no-repeat; background-position:-272px -2px;margin-right:4px;position:relative;top:1px;}
.am-ui-tokens ul li span{padding-right:4px;}

a.am-ui-btnadd,a.am-ui-btnadd:link,a.am-ui-btnadd:visited{font-weight:bold;background-color:#ffffcc;color:#808080; border:1px solid #cdcdcd; padding:4px;}
a.am-ui-btnadd b{background-repeat:no-repeat; background-position:-224px 0px;background-image:url("/DesktopModules/ActiveForums/active/am-ui-sprite-icons16.png");display:inline-block;width:16px;height:16px;position:relative;top:3px;margin-right:4px;}
a.am-ui-btnadd:hover{text-decoration:none;border-color:#666;color:#000;}

.am-ui-toolbar,.am-ui-navbar{background-image:url("/DesktopModules/ActiveForums/active/toolbarmiddle.png");text-decoration:none;text-align:center;display:block;padding:0px;margin:0px;height:60px;background-color:#fff;}
.am-ui-navbar{background-image:url("/DesktopModules/ActiveForums/active/toolbarback.png");border-bottom:1px solid #cdcdcd;}
.am-ui-toolbar a b,.am-ui-navbar a b{display:block;width:32px;height:32px;background-image:url("/DesktopModules/ActiveForums/active/am-ui-sprite-icons32.png"); background-repeat:no-repeat;margin-left:8px;margin-right:8px;margin-top:4px;}
.am-ui-toolbar a,.am-ui-toolbar a:visited,.am-ui-toolbar a:link,.am-ui-navbar a,.am-ui-navbar a:visited,.am-ui-navbar a:link{display:inline-block;border:1px solid transparent;margin:2px;margin-top:4px; color:#808080;border-radius:4px;-moz-border-radius: 4px; -webkit-border-radius: 4px; font-size:10px;margin-bottom:3px;padding:2px;}
.am-ui-toolbar a:hover,.am-ui-navbar a:hover{border:1px solid #cdcdcd;text-decoration:none; background-color:#f5f5f5;}

.propname{float:left;}
.propname a,.propname a:hover{font-family:tahoma,verdana,arial,sans-serif !important;font-size:14px;font-weight:bold;}
.act{width:auto;background-color:#fffcc9;font-weight:bold;color:#808080;}

.act:HOVER{color:#000;}
.dim{border-style:solid;border-width:1px;width:auto;color:#999;background-color:#f5f5f5;}
.dim:HOVER{background-color:#cdcdcd;color:#000;}


.am-ui-fontsmall,table.am-ui-fontsmall td,table.am-ui-fontsmall td input,table.am-ui-fontsmall td select,table.am-ui-fontsmall td input[type=text]{font-size:11px;padding:2px;}
.am-ui-form input.am-ui-width100[type=text],.am-ui-width100, .am-ui-width100 input[type=text],.am-ui-width100 select, .am-ui-width100 .am-ui-picker{width:100px;}
.am-ui-form .am-ui-width175 input[type=text],input.am-ui-width175, .am-ui-width175 input[type=text],.am-ui-width175 select, .am-ui-width175 .am-ui-picker{width:175px;}
.am-ui-form .am-ui-width225 input[type=text],.am-ui-width225, .am-ui-width225 input[type=text],.am-ui-width225 select, .am-ui-width225 .am-ui-picker{width:225px;}

@font-face{font-family:'Open Sans';src:url("/Portals/_default/skins/cyberpunk/assets/Fonts/OpenSans-Regular.woff") format('woff');font-weight:400;font-style:normal}@font-face{font-family:'Open Sans';src:url("/Portals/_default/skins/cyberpunk/assets/Fonts/OpenSans-Bold.woff") format('woff');font-weight:700;font-style:normal}@font-face{font-family:SpecialFont;src:url("/Portals/_default/skins/cyberpunk/assets/Fonts/Exan-Regular.woff") format('woff');font-weight:400;font-style:normal}@font-face{font-family:Orbitron;font-style:normal;font-weight:400;font-display:swap;src:url("https://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpg.ttf") format('truetype')}@font-face{font-family:Orbitron;font-style:normal;font-weight:700;font-display:swap;src:url("https://fonts.gstatic.com/s/orbitron/v29/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_Cmxpg.ttf") format('truetype')}.BaseFont{font-family:Orbitron,sans-serif}.SpecialFont{font-family:Orbitron,sans-serif}.container .container{padding-left:0;padding-right:0}body a[type=button]{-webkit-appearance:none}.form-control{color:inherit;font-size:1em}.dropdown-menu li{padding:0 .5em}.dropdown-menu li a[data-jplist-selected=true]{color:#363636}body .show>.btn.dropdown-toggle:active,body .show>.btn.dropdown-toggle:focus,body .show>.btn.dropdown-toggle[aria-expanded=true]{background:#57ddff;color:#fff;border:none;box-shadow:none}body.modal-open,body.modal-open-noscroll{overflow-y:scroll;padding-right:0}body.vertical-scrollbar.modal-open,body.vertical-scrollbar.modal-open-noscroll{overflow-y:scroll;padding-right:0}.CP-View .row.Empty{display:none}#block-inner-marg{margin:2em 0;margin:clamp(2em,1vw,3em) 0}#block-inner-marg-t{margin-top:2em;margin-top:clamp(2em,1vw,3em)}#block-inner-marg-b{margin-bottom:2em;margin-bottom:clamp(2em,1vw,3em)}#block-inner-marg-fixed{margin:1em 0 1em}@keyframes content-fade-in{0%{opacity:0}50%{opacity:0}100%{opacity:1}}.font-scaling{font-size:calc(.8em + .3vw)}.clear-fix:after{content:"";display:table;clear:both}.dnnCPHeader li{line-height:normal}#dnnCPWrap .dnnCPHMode,#dnnCPWrap .dnnCPHNav{height:30px}#RibbonBar_adminMenus>ul>li>a,#dnn_cp_RibbonBar_adminMenus>ul>li>a{padding:10px 16px}.dnnCPHMessage{line-height:35px}#RibbonBar_adminMenus .dnnadminmega .megaborder,#dnn_cp_RibbonBar_adminMenus .dnnadminmega .megaborder{top:35px}a.dnnPrimaryAction:link,a.dnnPrimaryAction:visited{color:#fff}a.dnnSecondaryAction:link,a.dnnSecondaryAction:visited{color:#f3f3f3}.LoginPanel{width:100%;padding-right:0;float:none}.LoginPanel .dnnFormItem .dnnFormLabel,.LoginPanel .dnnFormItem .dnnLabel{width:12em;padding:0 1em 0 0;margin-right:0;float:none;display:block;text-align:left}@media only screen and (min-width:768px){.LoginPanel .dnnFormItem .dnnFormLabel,.LoginPanel .dnnFormItem .dnnLabel{float:left;text-align:right}}.LoginPanel .dnnFormItem .dnnCheckbox{margin-left:0}.LoginPanel .dnnFormItem .dnnCheckbox .mark{margin:0}body{letter-spacing:normal;line-height:normal}.CommandButton,.Head,.Normal,.NormalBold,.NormalDeleted,.NormalDisabled,.NormalRed,.SubHead,.SubSubHead,.blockquote,.blockquote p,a:link,a:visited,h1,h2,h3,h4,h5,h6,input,li,li p,table,td,th,ul{color:inherit;font-family:inherit;letter-spacing:inherit;line-height:inherit;font-size:inherit}ol,ul{margin-bottom:1em;margin-left:1em}body>form #ControlBar_ControlPanel{z-index:100001!important}body>form>.rcbSlide{z-index:100010!important}.DNNEmptyPane{display:block;width:auto;height:0}.CP-Edit .DNNEmptyPane{display:block;min-height:100px}.dnnDropEmptyPanes,.paneOutline{border:0 none}#ControlBar_ControlPanel,#ControlBar_ControlPanel *,#ControlBar_ControlPanel :after,#ControlBar_ControlPanel :before,#ControlBar_ControlPanel:after,#ControlBar_ControlPanel:before,#RibbonBar_ControlPanel,#RibbonBar_ControlPanel *,#RibbonBar_ControlPanel :after,#RibbonBar_ControlPanel :before,#RibbonBar_ControlPanel:after,#RibbonBar_ControlPanel:before,#dnnCPWrap,#dnnCPWrap *,#dnnCPWrap:after,#dnnCPWrap:before,.actionMenu,.actionMenu *,.actionMenu :after,.actionMenu :before,.actionMenu:after,.actionMenu:before,.dnnActionMenu,.dnnActionMenu *,.dnnActionMenu:after,.dnnActionMenu:before,.dnnFormItem,.dnnFormItem *,.dnnFormItem :after,.dnnFormItem :before,.dnnFormItem:after,.dnnFormItem:before,.dnnModalCtrl,.dnnModalCtrl *,.ui-dialog,.ui-dialog *,.ui-dialog:after,.ui-dialog:before,.ui-widget,.ui-widget *,.ui-widget :after,.ui-widget :before{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important;box-sizing:content-box!important}.dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close{padding:0}html .dnnModuleManager{padding:0!important}html .actionMenu{display:block!important;opacity:1!important}html .actionMenu>ul{background:#eee}html .actionMenu .dnn_mact{min-width:66px}.DNN07 form .actionMenu ul,.DNN07 form .actionMenu ul:hover{z-index:100000!important}.DNN09 div.actionMenu ul,.DNN09 div.actionMenu ul:hover{z-index:100000!important}div.actionMenu ul.showhover{z-index:1040!important}html .scrolled form .actionMenu ul{z-index:auto!important}html .actionMenu .dnn_mact>li{margin-right:0!important}html .actionMenu .dnn_mact>li:not(:last-child){line-height:0}html .actionMenu .dnn_mact>li.dnn_menu_label,html .actionMenu .dnn_mact>li.dnn_shared{float:right;font-size:.7em;opacity:.8}.mark{background:0 0}.navbar-fixed-bottom,.navbar-fixed-top{z-index:1000}.scrolled .navbar-fixed-bottom,.scrolled .navbar-fixed-top{z-index:1030}.dnnFormItem textarea{max-width:100%}.dnnInstallExtension .dnnInputFileWrapper{margin-bottom:1em}.dnnInstallExtension .dnnBoxLabel{padding-right:.5em}.CP-None .row.Empty,.CP-View .row.Empty{display:none}input,textarea{border-radius:0;box-shadow:none}.DNN07:not(.CP-None) .fixed-top,.DNN08:not(.CP-None) .fixed-top{margin-top:53px}.dnnFormItem input[type=email],.dnnFormItem input[type=password],.dnnFormItem input[type=search],.dnnFormItem input[type=text],.dnnFormItem select,.dnnFormItem textarea{background:none repeat scroll 0 0 #fff;border:1px solid #c9c9c9;border-radius:0;box-shadow:none;margin-bottom:1em;padding:5px 8px;font-size:inherit}.dnnFormItem input[type=email]:active,.dnnFormItem input[type=email]:focus,.dnnFormItem input[type=password]:active,.dnnFormItem input[type=password]:focus,.dnnFormItem input[type=search]:active,.dnnFormItem input[type=search]:focus,.dnnFormItem input[type=text]:active,.dnnFormItem input[type=text]:focus,.dnnFormItem select:active,.dnnFormItem select:focus,.dnnFormItem textarea:active,.dnnFormItem textarea:focus{background:none repeat scroll 0 0 #fff;border:1px solid hsl(192.14285714,50%,50%);box-shadow:0 0 3px 0 hsl(192.14285714,50%,50%);color:#333}.dnnFormItem input[type=submit],.dnnPrimaryAction,a.dnnPrimaryAction{background:hsl(192.14285714,50%,50%);display:inline-block;padding:8px 14px;border-radius:0;color:#fff;text-shadow:none;text-decoration:none;box-shadow:none;border:none}.dnnFormItem input[type=submit]:hover,.dnnPrimaryAction:hover,a.dnnPrimaryAction:hover{background:hsl(192.14285714,50%,70%);border-color:hsl(192.14285714,50%,50%);color:#fff}.dnnFormItem button,.dnnFormItem input[type=button],.dnnFormItem input[type=reset],.dnnLogin .LoginTabGroup span,.dnnSecondaryAction,.dnnTertiaryAction,a.dnnSecondaryAction,a.dnnTertiaryAction,ul.dnnAdminTabNav li a{background:hsl(192.14285714,25%,70%);display:inline-block;padding:8px 14px;border-radius:0;color:#f3f3f3;text-decoration:none;text-shadow:none;box-shadow:none;border:none;font-weight:400}.dnnFormItem button:hover,.dnnFormItem input[type=button]:hover,.dnnFormItem input[type=reset]:hover,.dnnLogin .LoginTabGroup span:hover,.dnnSecondaryAction:hover,.dnnTertiaryAction:hover,a.dnnSecondaryAction:hover,a.dnnTertiaryAction:hover,ul.dnnAdminTabNav li a:hover{background:hsl(192.14285714,25%,50%);color:#f3f3f3}ul.dnnAdminTabNav{height:40px}ul.dnnAdminTabNav li.ui-tabs-active a{background-color:hsl(192.14285714,50%,50%);text-shadow:none;padding:10px 14px 9px}h2.dnnFormSectionHead{margin-top:1em;margin-bottom:.5em;border-bottom:2px solid hsl(192.14285714,50%,50%);font-size:1.7em;line-height:1.5em;letter-spacing:normal}.dnnLogHeader{background:hsl(192.14285714,50%,50%);color:#fff}.dnnFormMessage{border-radius:0;border:none;max-width:100%}.dnnForm .ui-corner-all{border-radius:0}ul.dnnAdminTabNav{border-bottom:solid 2px hsl(192.14285714,50%,50%);margin-top:.5em}ul.dnnAdminTabNav li.ui-tabs-active a{margin-top:0}.LabelEditTextClass,.fffas-select{color:hsl(192.14285714,50%,21%)}.personabar-visible:not(.mobile-menu-open) .pb-offset{margin-left:80px}.ehActions a.aspNetDisabled{border-radius:0;background:#eee;color:#aaa;border:none;padding:8px 14px}div.actionMenu ul.dnn_mact>li>ul>li{border:none;color:#000}div.actionMenu ul.dnn_mact>li>ul>li:nth-child(even){background:#eee}div.actionMenu ul.dnn_mact>li ul a{font-family:inherit;color:#000;font-size:12px}.RadComboBoxDropDown_Default,.RadComboBox_Default,.RadComboBox_Default .rcbInput{font-szie:inherit;color:#000}.RadComboBox_Default{display:inline-block!important}.dnnFormItem>.RadComboBox_Default{width:47%;margin-bottom:18px;max-width:445px}.RadComboBoxDropDown_Default .rcbImage{height:16px;width:16px;display:inline-block;margin-right:8px}.dnnProfileItem>.rcbImage{height:35px;width:35px;display:inline-block;margin:-8px 8px -8px -8px}.RadComboBox_Default .rcbArrowCellLeft,.RadComboBox_Default .rcbArrowCellRight,.RadComboBox_Default .rcbInputCellLeft,.RadComboBox_Default .rcbInputCellRight{background:0 0}.RadComboBox_Default table{border-collapse:separate!important;border-spacing:0}.RadComboBox_Default td.rcbInputCellLeft,.RadComboBox_Default td.rcbInputCellRight{border:1px solid #c9c9c9;-webkit-box-shadow:none;box-shadow:none;padding:0!important;background:#fff;background-image:none;color:#999;text-decoration:none;margin:0!important}.RadComboBox_Default td.rcbInputCellLeft{border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-left-radius:0;-webkit-border-bottom-left-radius:0}.RadComboBox_Default td.rcbInputCellRight{border-left:none;border-top-right-radius:0;border-bottom-right-radius:0;-webkit-border-top-right-radius:0;-webkit-border-bottom-right-radius:0}.RadComboBox_Default .rcbFocused td.rcbArrowCellRight,.RadComboBox_Default .rcbFocused td.rcbInputCellLeft,.RadComboBox_Default .rcbFocused td.rcbInputCellRight{border-color:hsl(192.14285714,50%,50%);box-shadow:none}.RadComboBox_Default td.rcbInputCellLeft input[readonly],.RadComboBox_Default td.rcbInputCellRight input[readonly]{cursor:auto}.dnnError td.rcbInputCellLeft,.dnnError td.rcbInputCellRight{border:1px solid red!important;border-right:none!important}.dnnError td.rcbInputCellLeft{border-right:none!important}.dnnError td.rcbInputCellRight{border-left:none!important}.RadComboBox_Default td.rcbArrowCellLeft,.RadComboBox_Default td.rcbArrowCellRight{border:1px solid #c9c9c9;-webkit-box-shadow:none;box-shadow:none;width:12px!important;background:#fff;color:#333;text-decoration:none;vertical-align:middle!important}.RadComboBox_Default td.rcbArrowCellRight{border-left:none;border-top-right-radius:0;border-bottom-right-radius:0;-webkit-border-top-right-radius:0;-webkit-border-bottom-right-radius:0}.RadComboBox_Default td.rcbArrowCellLeft{border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;-webkit-border-top-left-radius:0;-webkit-border-bottom-left-radius:0}.dnnError td.rcbArrowCellLeft,.dnnError td.rcbArrowCellRight{border:1px solid red!important}.dnnError td.rcbArrowCellRight{border-left:none!important}.dnnError td.rcbArrowCellLeft{border-right:none!important}.RadComboBox_Default td.rcbArrowCellLeft a,.RadComboBox_Default td.rcbArrowCellRight a{background:transparent url("/images/dnnSpinnerDownArrow.png") no-repeat!important;background-position:bottom center!important;padding-top:8px!important;height:0!important;cursor:pointer}.RadComboBox_Default .rcbInputCell .rcbEmptyMessage{color:#333}.RadComboBox_Default .rcbInput{margin:0!important;background:#fff!important;border:none!important;box-shadow:none!important;-webkit-box-shadow:none!important;padding:9px!important}.RadComboBoxDropDown,div.RadComboBoxDropDown_Default{background:0 0;border:none!important;font-szie:inherit;position:absolute}.RadComboBoxDropDown_Default .rcbFooter{background-color:hsl(192.14285714,50%,87%);background-position:0 -110px;border-top-color:#d5d5d5}div.RadComboBoxDropDown_Default .rcbHeader{font-size:13px;font-weight:700;border-bottom:0;padding:8px 7px 0}.RadComboBoxDropDown_Default .rcbHovered,.RadComboBoxDropDown_Default .rcbItem{line-height:1.5}.RadComboBoxDropDown_Default .rcbItem em{background:#e5e5e5}.RadComboBoxDropDown_Default .rcbHovered{background:hsl(192.14285714,50%,87%);color:#000}.RadComboBoxDropDown_Default .rcbSeparator{color:#444;background:#d9dadc}.RadComboBoxDropDown_Default .rcbDisabled,.RadComboBox_Default .rcbDisabled .rcbInputCell .rcbInput{color:#999;padding:8px}.RadComboBoxDropDown_Default .rcbLoading{background:#f0f0f0}.RadComboBoxDropDown_Default .rcbMoreResults{border-top-color:#c6c7d2;background-position:0 -132px;background-color:#e6e6e6;color:#606060}.RadComboBoxDropDown_Default .rcbMoreResults a{background-position:-157px -94px;color:#606060}.RadComboBoxDropDown_Default .rcbScroll{border:1px solid #c9c9c9!important;-webkit-box-shadow:0 2px 0 0 #f2f2f2;box-shadow:0 2px 0 0 #f2f2f2;background:#fff;margin-left:2px!important;border-bottom-left-radius:0;border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0;overflow:auto;position:relative}.RadComboBoxDropDown_Default .rcbList{position:relative;list-style-type:none!important;margin:0!important;padding:0!important}.RadComboBoxDropDown_Default .rcbHovered,.RadComboBoxDropDown_Default .rcbItem{padding:8px;border-top:1px solid #c9c9c9;font-szie:inherit;color:#444;cursor:pointer;text-shadow:none;margin:0}.RadComboBoxDropDown_Default_rtl .jspScrollable .jspContainer .rcbList{margin:0 9px 0 -9px!important}.SkinListHeader,.dnnOptGroupItem{background:0 0!important;color:#000!important;font-weight:700!important;border-bottom:2px solid #000!important}.dnnOptItem{padding-left:20px!important}.RadTreeView{white-space:nowrap;cursor:default}.RadTreeView .rtBot,.RadTreeView .rtMid,.RadTreeView .rtTop,.RadTreeView .rtUL{zoom:1}.RadTreeView .rtChk,.RadTreeView .rtImg,.RadTreeView .rtIn,.RadTreeView .rtSp{vertical-align:middle}.RadTreeView .rtUL{margin:0;padding:0;-moz-user-select:-moz-none}.RadTreeView .rtLI{list-style-image:none;list-style-position:outside;list-style:none}.RadTreeView .rtUL .rtLI .rtUL{padding-left:20px}.RadTreeView .rtBot,.RadTreeView .rtMid,.RadTreeView .rtTop{padding:1px 0 1px 20px}.RadTreeView .rtMinus,.RadTreeView .rtPlus{font-size:0;padding:0;display:-moz-inline-box;display:inline-block;vertical-align:top;cursor:pointer;width:11px;height:11px;background-repeat:no-repeat}* html .RadTreeView .rtMinus,* html .RadTreeView .rtPlus{margin-right:1px}.RadTreeView .rtPlus{background-position:0 0}.RadTreeView .rtPlusHover{background-position:0 -22px}.RadTreeView .rtMinus{background-position:0 -11px}.RadTreeView .rtMinusHover{background-position:0 -33px}.RadTreeView .rtChecked,.RadTreeView .rtIndeterminate,.RadTreeView .rtUnchecked{display:-moz-inline-box;display:inline-block;width:13px;height:13px;vertical-align:middle;margin:0 3px 0 0;line-height:0;font-size:0}.RadTreeView .rtChecked{background-position:0 0}.RadTreeView .rtUnchecked{background-position:0 -13px}.RadTreeView .rtIndeterminate{background-position:0 -26px}.RadTreeView .rtSp{display:-moz-inline-box;display:inline-block;width:1px;margin-left:-1px;height:22px}.RadTreeView .rtChk{margin:0 2px;padding:0;width:12px;height:12px}.RadTreeView .rtIn{margin-left:1px;padding:4px 3px 3px;text-decoration:none}.RadTreeView a.rtIn{cursor:pointer}.RadTreeView div.rtIn{display:-moz-inline-block;display:inline-block;vertical-align:top}* html .RadTreeView_rtl .rtIn{padding:2px 3px}* html .RadTreeView div.rtIn{display:inline-block}* html .RadTreeView div.rtIn{display:inline}.RadTreeView .rtTemplate,.RadTreeView input{-moz-user-select:text}.RadTreeView .rtLoadingIcon{display:-moz-inline-box;display:inline-block;vertical-align:text-top;width:21px;height:16px;margin-top:-1px;overflow:hidden;text-indent:-9999px;font-size:0;background-repeat:no-repeat;background-position:2px 0}* html .RadTreeView .rtLoadingIcon{margin:0}.RadTreeView .rtLoadingBelow{display:block}* html .RadTreeView_rtl .rtLoadingIcon{text-indent:0}.RadTreeView .rtHover .rtIn,.RadTreeView .rtSelected .rtIn{padding:3px 2px 2px;border-width:1px;border-style:solid;background-repeat:repeat-x;background-position:0 0}* html .RadTreeView_rtl .rtHover .rtIn,* html .RadTreeView_rtl .rtSelected .rtIn{padding:1px 2px}.RadTreeView .rtEdit *{white-space:nowrap!important}.RadTreeView .rtEdit .rtIn,.RadTreeView .rtEdit .rtIn input{outline:0;cursor:text}.RadTreeView .rtLI .rtEdit .rtIn{border-width:1px;border-style:solid;padding:2px 1px 1px;height:1.4em;text-decoration:none;vertical-align:middle}* html .RadTreeView .rtLI .rtEdit .rtIn{padding:0 1px}.RadTreeView .rtEdit .rtIn input{height:1.4em;line-height:1.4em;border:0;margin:0;padding:0;background:0 0}.RadTreeView .rtLines .rtFirst .rtUL,.RadTreeView .rtLines .rtLI{background-repeat:repeat-y;background-position:0 0}.RadTreeView_rtl .rtLines .rtFirst .rtUL,.RadTreeView_rtl .rtLines .rtLI{background-repeat:repeat-y;background-position:100% 0}.RadTreeView .rtLines .rtFirst{background-repeat:no-repeat;background-position:0 1.273em}.RadTreeView_rtl .rtLines .rtFirst{background-repeat:no-repeat;background-position:100% 1.273em}.RadTreeView .rtLines .rtFirst .rtUL{background-repeat:repeat-y;background-position:0 1.273em}.RadTreeView_rtl .rtLines .rtFirst .rtUL{background-repeat:repeat-y;background-position:100% 1.273em}.RadTreeView .rtLines .rtLast,.RadTreeView .rtLines .rtLast .rtUL{background:0 0}.RadTreeView .rtLines .rtBot,.RadTreeView .rtLines .rtMid,.RadTreeView .rtLines .rtTop{background-repeat:no-repeat;background-position:0 0}.RadTreeView_rtl .rtLines .rtBot,.RadTreeView_rtl .rtLines .rtMid,.RadTreeView_rtl .rtLines .rtTop{background-repeat:no-repeat;background-position:100% 0}.rtDropAbove,.rtDropBelow{border:1px dotted #000;font-size:3px;line-height:3px;height:3px;margin-top:-1px}.rtDropAbove{border-bottom:0}.rtDropBelow{border-top:0}.RadTreeView_rtl .rtMinus,.RadTreeView_rtl .rtPlus{position:relative}* html .RadTreeView_rtl .rtMinus,* html .RadTreeView_rtl .rtPlus{position:static}* html .RadTreeView_rtl .rtIn,* html .RadTreeView_rtl .rtLI{zoom:1}* html .RadTreeView_rtl .rtIn{margin-top:-1px}.RadTreeView_rtl .rtUL .rtLI .rtUL{padding-right:15px;padding-left:0}.RadTreeView_rtl .rtBot,.RadTreeView_rtl .rtMid,.RadTreeView_rtl .rtTop{padding:1px 20px 1px 0;margin:0}.RadTreeView_rtl .rtPlus{background-position:-11px 0}.RadTreeView_rtl .rtPlusHover{background-position:-11px -22px}.RadTreeView_rtl .rtMinus{background-position:-11px -11px}.RadTreeView_rtl .rtMinusHover{background-position:-11px -33px}.RadTreeView_rtl .rtMinus,.RadTreeView_rtl .rtPlus{margin-right:7px;right:-20px}.RadTreeView_rtl .rtMinus,.RadTreeView_rtl .rtPlus,x:-moz-any-link{margin-right:-11px;right:-8px}.RadTreeView_rtl .rtMinus,.RadTreeView_rtl .rtPlus,x:-moz-any-link,x:default{margin-right:7px;right:-20px}* html .RadTreeView_rtl .rtMinus,* html .RadTreeView_rtl .rtPlus{margin-right:-13px;right:0}@media screen and (min-width:50px){:root .RadTreeView_rtl .rtMinus,:root .RadTreeView_rtl .rtPlus{right:0}}@media all and (-webkit-max-device-pixel-ratio:10000),not all and (-webkit-min-device-pixel-ratio:0){:root .RadTreeView_rtl .rtMinus,:root .RadTreeView_rtl .rtPlus{position:relative;margin-left:2px;margin-right:-13px;right:-15px}}div.RadTreeView_designtime .rtBot,div.RadTreeView_designtime .rtMid,div.RadTreeView_designtime .rtTop{position:relative}div.RadTreeView_designtime .rtMinus,div.RadTreeView_designtime .rtPlus{margin:0;position:absolute;left:3px;top:4px}.RadTreeView{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent}.rtTouchDragClue{margin-top:-50px}.RadTreeView_Default,.RadTreeView_Default .rtEdit .rtIn input,.RadTreeView_Default a.rtIn{color:#000;font:12px/18px "Segoe UI",Arial,sans-serif}.RadTreeView_Default .rtMinus,.RadTreeView_Default .rtPlus{background-image:url("/Portals/_default/skins/cyberpunk/Images/PlusMinus.png")}.RadTreeView_Default .rtChecked,.RadTreeView_Default .rtIndeterminate,.RadTreeView_Default .rtUnchecked{background-image:url("/Portals/_default/skins/cyberpunk/Images/radFormToggleSprite.png")}.RadTreeView_Default .rtHover .rtIn{color:#000;border-color:#b5b5b5 #b5b5b5 #9e9e9e;background-color:#c5c5c5;background-image:url("/Portals/_default/skins/cyberpunk/Images/ItemHoveredBg.png")}.RadTreeView_Default .rtSelected .rtIn{color:#fff;border-color:#8d8d8d #7e7e7e #6c6c6c;background-color:#828282;background-image:url("/Portals/_default/skins/cyberpunk/Images/ItemSelectedBg.png")}.RadTreeView_Default .rtSelected .rtLoadingAfter,.RadTreeView_Default .rtSelected .rtLoadingBefore,.RadTreeView_Default .rtSelected .rtLoadingBelow{color:#333}.RadTreeView_Default .rtLoadingIcon{background-image:url("/Portals/_default/skins/cyberpunk/Images/LoadingIcon.gif")}.RadTreeView_Default .rtLI .rtEdit .rtIn{border-color:#6c6c6c;background:#fff}.RadTreeView_Default .rtDisabled .rtIn,.RadTreeView_Default_disabled .rtIn{color:#ccc}.RadTreeView_Default .rtLines .rtFirst .rtUL,.RadTreeView_Default .rtLines .rtLI{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvFirstNodeSpan.png")}.RadTreeView_Default_rtl .rtLines .rtFirst .rtUL,.RadTreeView_Default_rtl .rtLines .rtLI{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvFirstNodeSpan_rtl.png")}.RadTreeView_Default .rtLines .rtFirst,.RadTreeView_Default .rtLines .rtFirst .rtUL{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvFirstNodeSpan.png")}.RadTreeView_Default_rtl .rtLines .rtFirst,.RadTreeView_Default_rtl .rtLines .rtFirst .rtUL{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvFirstNodeSpan.png")}.RadTreeView_Default .rtLines .rtLast,.RadTreeView_Default .rtLines .rtLast .rtUL{background-image:none}.RadTreeView_Default .rtLines .rtTop{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvTopLine.png")}.RadTreeView_Default_rtl .rtLines .rtTop{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvTopLine_rtl.png")}.RadTreeView_Default .rtLines .rtMid{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvMiddleLine.png")}.RadTreeView_Default_rtl .rtLines .rtMid{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvMiddleLine_rtl.png")}.RadTreeView_Default .rtLines .rtBot{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvBottomLine.png")}.RadTreeView_Default_rtl .rtLines .rtBot{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvBottomLine_rtl.png")}.RadTreeView_Default .rtLines .rtLast .rtTop{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvSingleLine.png")}.RadTreeView_Default_rtl .rtLines .rtLast .rtTop{background-image:url("/Portals/_default/skins/cyberpunk/Images/rtvSingleLine_rtl.png")}.CP-Edit .DnnModule{opacity:1}.CP-Edit .MainPanes>div>.row{border-bottom:solid 1px hsl(192.14285714,25%,50%);padding-bottom:10px;margin-bottom:30px}.CP-Layout .DnnModule{min-height:50px}.CP-Layout .DnnModule:before{content:"Module"}.CP-Edit .DnnModule,.CP-Layout .DnnModule{background:rgba(255,255,255,.5);border-right:solid 4px grey}.CP-Edit footer .DnnModule,.CP-Edit footer.DnnModule,.CP-Layout footer .DnnModule,.CP-Layout footer.DnnModule{background:rgba(255,255,255,.1)}.CP-Edit .Pane,.CP-Layout .Pane{background:rgba(200,200,200,.2);margin-bottom:1.5em;padding-bottom:1.8em;border-right:solid 4px hsl(192.14285714,25%,70%)}.CP-Edit .Pane:before,.CP-Layout .Pane:before{content:"Pane";color:hsl(192.14285714,25%,70%);text-align:right;font-size:.7rem;font-weight:700;padding:.2em .5em .5em;text-transform:uppercase;position:relative;background:0 0;display:block;left:auto;top:auto;line-height:1.2em;height:auto;opacity:1;padding-bottom:1em;content:"Pane: " attr(data-name)}.DNN07.CP-Edit .Pane:before,.DNN07.CP-Layout .Pane:before,.DNN08.CP-Edit .Pane:before,.DNN08.CP-Layout .Pane:before{content:"Pane"}.dnnDragHint{color:#b3b3b3;background:#fff}.dragZoneStriped .dnnDragHint{background:repeating-linear-gradient(-45deg,#fff,#fff 20px,#f3f3f3 20px,#f3f3f3 40px)}.dnnDragHint:before{content:"Module";display:inline-block;font-size:.7rem;font-weight:700;padding:.2em .5em .5em;text-transform:uppercase;position:relative;background:0 0;display:block;left:auto;top:auto;line-height:1.2em;height:auto;opacity:1}@media screen and (min-width:768px){.Expands{position:relative}.CP-Edit .Expands,.CP-Layout .Expands{min-height:200px}.CP-Edit .Expands:after,.CP-Layout .Expands:after{content:"#";position:absolute;bottom:-20px;left:50%;margin-left:-10px;width:0;height:0;border-left:15px solid transparent;border-right:15px solid transparent;border-top:15px solid rgba(128,128,128,.5);overflow:hidden}}@media screen and (min-width:768px){.col-sm-right{float:right}.CP-Edit .GoesAbove,.CP-Edit .GoesBelow{margin-bottom:30px}}.CP-Edit .GoesAbove:before{content:"Above Siblings on Mobile";display:block;text-align:center;font-size:.8em;padding:.3em;background:rgba(0,0,0,.1)}.CP-Edit .GoesBelow:before{content:"Below Siblings on Mobile";display:block;text-align:center;font-size:.8em;padding:.3em;background:rgba(0,0,0,.1)}.Col1{color:#57ddff}.Col1Bg{background:#57ddff}a.Col1Bg:link,a.Col1Bg:visited{color:#000!important}.Col1BgTxt{color:#000}.Col1BgTxt .h1,.Col1BgTxt .h2,.Col1BgTxt .h3,.Col1BgTxt .h4,.Col1BgTxt .h5,.Col1BgTxt .h6,.Col1BgTxt h1,.Col1BgTxt h2,.Col1BgTxt h3,.Col1BgTxt h4,.Col1BgTxt h5,.Col1BgTxt h6{color:inherit}.Col1BgTxt a:link,.Col1BgTxt a:visited{color:#57ddff}.Col1BgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1SuperLight{color:hsl(192.14285714,50%,95%)}.Col1SuperLightBg{background:hsl(192.14285714,50%,95%)}a.Col1SuperLightBg:link,a.Col1SuperLightBg:visited{color:#000!important}.Col1SuperLightBgTxt{color:#000}.Col1SuperLightBgTxt .h1,.Col1SuperLightBgTxt .h2,.Col1SuperLightBgTxt .h3,.Col1SuperLightBgTxt .h4,.Col1SuperLightBgTxt .h5,.Col1SuperLightBgTxt .h6,.Col1SuperLightBgTxt h1,.Col1SuperLightBgTxt h2,.Col1SuperLightBgTxt h3,.Col1SuperLightBgTxt h4,.Col1SuperLightBgTxt h5,.Col1SuperLightBgTxt h6{color:inherit}.Col1SuperLightBgTxt a:link,.Col1SuperLightBgTxt a:visited{color:#57ddff}.Col1SuperLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1ExtraLight{color:hsl(192.14285714,50%,87%)}.Col1ExtraLightBg{background:hsl(192.14285714,50%,87%)}a.Col1ExtraLightBg:link,a.Col1ExtraLightBg:visited{color:#000!important}.Col1ExtraLightBgTxt{color:#000}.Col1ExtraLightBgTxt .h1,.Col1ExtraLightBgTxt .h2,.Col1ExtraLightBgTxt .h3,.Col1ExtraLightBgTxt .h4,.Col1ExtraLightBgTxt .h5,.Col1ExtraLightBgTxt .h6,.Col1ExtraLightBgTxt h1,.Col1ExtraLightBgTxt h2,.Col1ExtraLightBgTxt h3,.Col1ExtraLightBgTxt h4,.Col1ExtraLightBgTxt h5,.Col1ExtraLightBgTxt h6{color:inherit}.Col1ExtraLightBgTxt a:link,.Col1ExtraLightBgTxt a:visited{color:#57ddff}.Col1ExtraLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1Light{color:hsl(192.14285714,50%,70%)}.Col1LightBg{background:hsl(192.14285714,50%,70%)}a.Col1LightBg:link,a.Col1LightBg:visited{color:#000!important}.Col1LightBgTxt{color:#000}.Col1LightBgTxt .h1,.Col1LightBgTxt .h2,.Col1LightBgTxt .h3,.Col1LightBgTxt .h4,.Col1LightBgTxt .h5,.Col1LightBgTxt .h6,.Col1LightBgTxt h1,.Col1LightBgTxt h2,.Col1LightBgTxt h3,.Col1LightBgTxt h4,.Col1LightBgTxt h5,.Col1LightBgTxt h6{color:inherit}.Col1LightBgTxt a:link,.Col1LightBgTxt a:visited{color:#57ddff}.Col1LightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1Medium{color:hsl(192.14285714,50%,50%)}.Col1MediumBg{background:hsl(192.14285714,50%,50%)}a.Col1MediumBg:link,a.Col1MediumBg:visited{color:#fff!important}.Col1MediumBgTxt{color:#fff}.Col1MediumBgTxt .h1,.Col1MediumBgTxt .h2,.Col1MediumBgTxt .h3,.Col1MediumBgTxt .h4,.Col1MediumBgTxt .h5,.Col1MediumBgTxt .h6,.Col1MediumBgTxt h1,.Col1MediumBgTxt h2,.Col1MediumBgTxt h3,.Col1MediumBgTxt h4,.Col1MediumBgTxt h5,.Col1MediumBgTxt h6{color:inherit}.Col1MediumBgTxt a:link,.Col1MediumBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1MediumBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1Dark{color:hsl(192.14285714,50%,30%)}.Col1DarkBg{background:hsl(192.14285714,50%,30%)}a.Col1DarkBg:link,a.Col1DarkBg:visited{color:#fff!important}.Col1DarkBgTxt{color:#fff}.Col1DarkBgTxt .h1,.Col1DarkBgTxt .h2,.Col1DarkBgTxt .h3,.Col1DarkBgTxt .h4,.Col1DarkBgTxt .h5,.Col1DarkBgTxt .h6,.Col1DarkBgTxt h1,.Col1DarkBgTxt h2,.Col1DarkBgTxt h3,.Col1DarkBgTxt h4,.Col1DarkBgTxt h5,.Col1DarkBgTxt h6{color:inherit}.Col1DarkBgTxt a:link,.Col1DarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1DarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1ExtraDark{color:hsl(192.14285714,50%,21%)}.Col1ExtraDarkBg{background:hsl(192.14285714,50%,21%)}a.Col1ExtraDarkBg:link,a.Col1ExtraDarkBg:visited{color:#fff!important}.Col1ExtraDarkBgTxt{color:#fff}.Col1ExtraDarkBgTxt .h1,.Col1ExtraDarkBgTxt .h2,.Col1ExtraDarkBgTxt .h3,.Col1ExtraDarkBgTxt .h4,.Col1ExtraDarkBgTxt .h5,.Col1ExtraDarkBgTxt .h6,.Col1ExtraDarkBgTxt h1,.Col1ExtraDarkBgTxt h2,.Col1ExtraDarkBgTxt h3,.Col1ExtraDarkBgTxt h4,.Col1ExtraDarkBgTxt h5,.Col1ExtraDarkBgTxt h6{color:inherit}.Col1ExtraDarkBgTxt a:link,.Col1ExtraDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1ExtraDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1SuperDark{color:hsl(192.14285714,50%,15%)}.Col1SuperDarkBg{background:hsl(192.14285714,50%,15%)}a.Col1SuperDarkBg:link,a.Col1SuperDarkBg:visited{color:#fff!important}.Col1SuperDarkBgTxt{color:#fff}.Col1SuperDarkBgTxt .h1,.Col1SuperDarkBgTxt .h2,.Col1SuperDarkBgTxt .h3,.Col1SuperDarkBgTxt .h4,.Col1SuperDarkBgTxt .h5,.Col1SuperDarkBgTxt .h6,.Col1SuperDarkBgTxt h1,.Col1SuperDarkBgTxt h2,.Col1SuperDarkBgTxt h3,.Col1SuperDarkBgTxt h4,.Col1SuperDarkBgTxt h5,.Col1SuperDarkBgTxt h6{color:inherit}.Col1SuperDarkBgTxt a:link,.Col1SuperDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1SuperDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1SatSuperLight{color:hsl(192.14285714,75%,95%)}.Col1SatSuperLightBg{background:hsl(192.14285714,75%,95%)}a.Col1SatSuperLightBg:link,a.Col1SatSuperLightBg:visited{color:#000!important}.Col1SatSuperLightBgTxt{color:#000}.Col1SatSuperLightBgTxt .h1,.Col1SatSuperLightBgTxt .h2,.Col1SatSuperLightBgTxt .h3,.Col1SatSuperLightBgTxt .h4,.Col1SatSuperLightBgTxt .h5,.Col1SatSuperLightBgTxt .h6,.Col1SatSuperLightBgTxt h1,.Col1SatSuperLightBgTxt h2,.Col1SatSuperLightBgTxt h3,.Col1SatSuperLightBgTxt h4,.Col1SatSuperLightBgTxt h5,.Col1SatSuperLightBgTxt h6{color:inherit}.Col1SatSuperLightBgTxt a:link,.Col1SatSuperLightBgTxt a:visited{color:#57ddff}.Col1SatSuperLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1SatExtraLight{color:hsl(192.14285714,75%,87%)}.Col1SatExtraLightBg{background:hsl(192.14285714,75%,87%)}a.Col1SatExtraLightBg:link,a.Col1SatExtraLightBg:visited{color:#000!important}.Col1SatExtraLightBgTxt{color:#000}.Col1SatExtraLightBgTxt .h1,.Col1SatExtraLightBgTxt .h2,.Col1SatExtraLightBgTxt .h3,.Col1SatExtraLightBgTxt .h4,.Col1SatExtraLightBgTxt .h5,.Col1SatExtraLightBgTxt .h6,.Col1SatExtraLightBgTxt h1,.Col1SatExtraLightBgTxt h2,.Col1SatExtraLightBgTxt h3,.Col1SatExtraLightBgTxt h4,.Col1SatExtraLightBgTxt h5,.Col1SatExtraLightBgTxt h6{color:inherit}.Col1SatExtraLightBgTxt a:link,.Col1SatExtraLightBgTxt a:visited{color:#57ddff}.Col1SatExtraLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1SatLight{color:hsl(192.14285714,75%,70%)}.Col1SatLightBg{background:hsl(192.14285714,75%,70%)}a.Col1SatLightBg:link,a.Col1SatLightBg:visited{color:#000!important}.Col1SatLightBgTxt{color:#000}.Col1SatLightBgTxt .h1,.Col1SatLightBgTxt .h2,.Col1SatLightBgTxt .h3,.Col1SatLightBgTxt .h4,.Col1SatLightBgTxt .h5,.Col1SatLightBgTxt .h6,.Col1SatLightBgTxt h1,.Col1SatLightBgTxt h2,.Col1SatLightBgTxt h3,.Col1SatLightBgTxt h4,.Col1SatLightBgTxt h5,.Col1SatLightBgTxt h6{color:inherit}.Col1SatLightBgTxt a:link,.Col1SatLightBgTxt a:visited{color:#57ddff}.Col1SatLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1SatMedium{color:hsl(192.14285714,75%,50%)}.Col1SatMediumBg{background:hsl(192.14285714,75%,50%)}a.Col1SatMediumBg:link,a.Col1SatMediumBg:visited{color:#fff!important}.Col1SatMediumBgTxt{color:#fff}.Col1SatMediumBgTxt .h1,.Col1SatMediumBgTxt .h2,.Col1SatMediumBgTxt .h3,.Col1SatMediumBgTxt .h4,.Col1SatMediumBgTxt .h5,.Col1SatMediumBgTxt .h6,.Col1SatMediumBgTxt h1,.Col1SatMediumBgTxt h2,.Col1SatMediumBgTxt h3,.Col1SatMediumBgTxt h4,.Col1SatMediumBgTxt h5,.Col1SatMediumBgTxt h6{color:inherit}.Col1SatMediumBgTxt a:link,.Col1SatMediumBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1SatMediumBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1SatDark{color:hsl(192.14285714,75%,30%)}.Col1SatDarkBg{background:hsl(192.14285714,75%,30%)}a.Col1SatDarkBg:link,a.Col1SatDarkBg:visited{color:#fff!important}.Col1SatDarkBgTxt{color:#fff}.Col1SatDarkBgTxt .h1,.Col1SatDarkBgTxt .h2,.Col1SatDarkBgTxt .h3,.Col1SatDarkBgTxt .h4,.Col1SatDarkBgTxt .h5,.Col1SatDarkBgTxt .h6,.Col1SatDarkBgTxt h1,.Col1SatDarkBgTxt h2,.Col1SatDarkBgTxt h3,.Col1SatDarkBgTxt h4,.Col1SatDarkBgTxt h5,.Col1SatDarkBgTxt h6{color:inherit}.Col1SatDarkBgTxt a:link,.Col1SatDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1SatDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1SatExtraDark{color:hsl(192.14285714,75%,21%)}.Col1SatExtraDarkBg{background:hsl(192.14285714,75%,21%)}a.Col1SatExtraDarkBg:link,a.Col1SatExtraDarkBg:visited{color:#fff!important}.Col1SatExtraDarkBgTxt{color:#fff}.Col1SatExtraDarkBgTxt .h1,.Col1SatExtraDarkBgTxt .h2,.Col1SatExtraDarkBgTxt .h3,.Col1SatExtraDarkBgTxt .h4,.Col1SatExtraDarkBgTxt .h5,.Col1SatExtraDarkBgTxt .h6,.Col1SatExtraDarkBgTxt h1,.Col1SatExtraDarkBgTxt h2,.Col1SatExtraDarkBgTxt h3,.Col1SatExtraDarkBgTxt h4,.Col1SatExtraDarkBgTxt h5,.Col1SatExtraDarkBgTxt h6{color:inherit}.Col1SatExtraDarkBgTxt a:link,.Col1SatExtraDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1SatExtraDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1SatSuperDark{color:hsl(192.14285714,75%,15%)}.Col1SatSuperDarkBg{background:hsl(192.14285714,75%,15%)}a.Col1SatSuperDarkBg:link,a.Col1SatSuperDarkBg:visited{color:#fff!important}.Col1SatSuperDarkBgTxt{color:#fff}.Col1SatSuperDarkBgTxt .h1,.Col1SatSuperDarkBgTxt .h2,.Col1SatSuperDarkBgTxt .h3,.Col1SatSuperDarkBgTxt .h4,.Col1SatSuperDarkBgTxt .h5,.Col1SatSuperDarkBgTxt .h6,.Col1SatSuperDarkBgTxt h1,.Col1SatSuperDarkBgTxt h2,.Col1SatSuperDarkBgTxt h3,.Col1SatSuperDarkBgTxt h4,.Col1SatSuperDarkBgTxt h5,.Col1SatSuperDarkBgTxt h6{color:inherit}.Col1SatSuperDarkBgTxt a:link,.Col1SatSuperDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1SatSuperDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1DesatSuperLight{color:hsl(192.14285714,25%,95%)}.Col1DesatSuperLightBg{background:hsl(192.14285714,25%,95%)}a.Col1DesatSuperLightBg:link,a.Col1DesatSuperLightBg:visited{color:#000!important}.Col1DesatSuperLightBgTxt{color:#000}.Col1DesatSuperLightBgTxt .h1,.Col1DesatSuperLightBgTxt .h2,.Col1DesatSuperLightBgTxt .h3,.Col1DesatSuperLightBgTxt .h4,.Col1DesatSuperLightBgTxt .h5,.Col1DesatSuperLightBgTxt .h6,.Col1DesatSuperLightBgTxt h1,.Col1DesatSuperLightBgTxt h2,.Col1DesatSuperLightBgTxt h3,.Col1DesatSuperLightBgTxt h4,.Col1DesatSuperLightBgTxt h5,.Col1DesatSuperLightBgTxt h6{color:inherit}.Col1DesatSuperLightBgTxt a:link,.Col1DesatSuperLightBgTxt a:visited{color:#57ddff}.Col1DesatSuperLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1DesatExtraLight{color:hsl(192.14285714,25%,87%)}.Col1DesatExtraLightBg{background:hsl(192.14285714,25%,87%)}a.Col1DesatExtraLightBg:link,a.Col1DesatExtraLightBg:visited{color:#000!important}.Col1DesatExtraLightBgTxt{color:#000}.Col1DesatExtraLightBgTxt .h1,.Col1DesatExtraLightBgTxt .h2,.Col1DesatExtraLightBgTxt .h3,.Col1DesatExtraLightBgTxt .h4,.Col1DesatExtraLightBgTxt .h5,.Col1DesatExtraLightBgTxt .h6,.Col1DesatExtraLightBgTxt h1,.Col1DesatExtraLightBgTxt h2,.Col1DesatExtraLightBgTxt h3,.Col1DesatExtraLightBgTxt h4,.Col1DesatExtraLightBgTxt h5,.Col1DesatExtraLightBgTxt h6{color:inherit}.Col1DesatExtraLightBgTxt a:link,.Col1DesatExtraLightBgTxt a:visited{color:#57ddff}.Col1DesatExtraLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1DesatLight{color:hsl(192.14285714,25%,70%)}.Col1DesatLightBg{background:hsl(192.14285714,25%,70%)}a.Col1DesatLightBg:link,a.Col1DesatLightBg:visited{color:#000!important}.Col1DesatLightBgTxt{color:#000}.Col1DesatLightBgTxt .h1,.Col1DesatLightBgTxt .h2,.Col1DesatLightBgTxt .h3,.Col1DesatLightBgTxt .h4,.Col1DesatLightBgTxt .h5,.Col1DesatLightBgTxt .h6,.Col1DesatLightBgTxt h1,.Col1DesatLightBgTxt h2,.Col1DesatLightBgTxt h3,.Col1DesatLightBgTxt h4,.Col1DesatLightBgTxt h5,.Col1DesatLightBgTxt h6{color:inherit}.Col1DesatLightBgTxt a:link,.Col1DesatLightBgTxt a:visited{color:#57ddff}.Col1DesatLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col1DesatMedium{color:hsl(192.14285714,25%,50%)}.Col1DesatMediumBg{background:hsl(192.14285714,25%,50%)}a.Col1DesatMediumBg:link,a.Col1DesatMediumBg:visited{color:#fff!important}.Col1DesatMediumBgTxt{color:#fff}.Col1DesatMediumBgTxt .h1,.Col1DesatMediumBgTxt .h2,.Col1DesatMediumBgTxt .h3,.Col1DesatMediumBgTxt .h4,.Col1DesatMediumBgTxt .h5,.Col1DesatMediumBgTxt .h6,.Col1DesatMediumBgTxt h1,.Col1DesatMediumBgTxt h2,.Col1DesatMediumBgTxt h3,.Col1DesatMediumBgTxt h4,.Col1DesatMediumBgTxt h5,.Col1DesatMediumBgTxt h6{color:inherit}.Col1DesatMediumBgTxt a:link,.Col1DesatMediumBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1DesatMediumBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1DesatDark{color:hsl(192.14285714,25%,30%)}.Col1DesatDarkBg{background:hsl(192.14285714,25%,30%)}a.Col1DesatDarkBg:link,a.Col1DesatDarkBg:visited{color:#fff!important}.Col1DesatDarkBgTxt{color:#fff}.Col1DesatDarkBgTxt .h1,.Col1DesatDarkBgTxt .h2,.Col1DesatDarkBgTxt .h3,.Col1DesatDarkBgTxt .h4,.Col1DesatDarkBgTxt .h5,.Col1DesatDarkBgTxt .h6,.Col1DesatDarkBgTxt h1,.Col1DesatDarkBgTxt h2,.Col1DesatDarkBgTxt h3,.Col1DesatDarkBgTxt h4,.Col1DesatDarkBgTxt h5,.Col1DesatDarkBgTxt h6{color:inherit}.Col1DesatDarkBgTxt a:link,.Col1DesatDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1DesatDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1DesatExtraDark{color:hsl(192.14285714,25%,21%)}.Col1DesatExtraDarkBg{background:hsl(192.14285714,25%,21%)}a.Col1DesatExtraDarkBg:link,a.Col1DesatExtraDarkBg:visited{color:#fff!important}.Col1DesatExtraDarkBgTxt{color:#fff}.Col1DesatExtraDarkBgTxt .h1,.Col1DesatExtraDarkBgTxt .h2,.Col1DesatExtraDarkBgTxt .h3,.Col1DesatExtraDarkBgTxt .h4,.Col1DesatExtraDarkBgTxt .h5,.Col1DesatExtraDarkBgTxt .h6,.Col1DesatExtraDarkBgTxt h1,.Col1DesatExtraDarkBgTxt h2,.Col1DesatExtraDarkBgTxt h3,.Col1DesatExtraDarkBgTxt h4,.Col1DesatExtraDarkBgTxt h5,.Col1DesatExtraDarkBgTxt h6{color:inherit}.Col1DesatExtraDarkBgTxt a:link,.Col1DesatExtraDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1DesatExtraDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1DesatSuperDark{color:hsl(192.14285714,25%,15%)}.Col1DesatSuperDarkBg{background:hsl(192.14285714,25%,15%)}a.Col1DesatSuperDarkBg:link,a.Col1DesatSuperDarkBg:visited{color:#fff!important}.Col1DesatSuperDarkBgTxt{color:#fff}.Col1DesatSuperDarkBgTxt .h1,.Col1DesatSuperDarkBgTxt .h2,.Col1DesatSuperDarkBgTxt .h3,.Col1DesatSuperDarkBgTxt .h4,.Col1DesatSuperDarkBgTxt .h5,.Col1DesatSuperDarkBgTxt .h6,.Col1DesatSuperDarkBgTxt h1,.Col1DesatSuperDarkBgTxt h2,.Col1DesatSuperDarkBgTxt h3,.Col1DesatSuperDarkBgTxt h4,.Col1DesatSuperDarkBgTxt h5,.Col1DesatSuperDarkBgTxt h6{color:inherit}.Col1DesatSuperDarkBgTxt a:link,.Col1DesatSuperDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col1DesatSuperDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col1Bg-10{background-color:rgba(87,221,255,.1)}.Col1Bg-20{background-color:rgba(87,221,255,.2)}.Col1Bg-30{background-color:rgba(87,221,255,.3)}.Col1Bg-40{background-color:rgba(87,221,255,.4)}.Col1Bg-50{background-color:rgba(87,221,255,.5)}.Col1Bg-60{background-color:rgba(87,221,255,.6)}.Col1Bg-70{background-color:rgba(87,221,255,.7)}.Col1Bg-80{background-color:rgba(87,221,255,.8)}.Col1Bg-90{background-color:rgba(87,221,255,.9)}.Col2{color:#fcf91e}.Col2Bg{background:#fcf91e}a.Col2Bg:link,a.Col2Bg:visited{color:#000!important}.Col2BgTxt{color:#000}.Col2BgTxt .h1,.Col2BgTxt .h2,.Col2BgTxt .h3,.Col2BgTxt .h4,.Col2BgTxt .h5,.Col2BgTxt .h6,.Col2BgTxt h1,.Col2BgTxt h2,.Col2BgTxt h3,.Col2BgTxt h4,.Col2BgTxt h5,.Col2BgTxt h6{color:inherit}.Col2BgTxt a:link,.Col2BgTxt a:visited{color:#57ddff}.Col2BgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2SuperLight{color:hsl(59.18918919,50%,95%)}.Col2SuperLightBg{background:hsl(59.18918919,50%,95%)}a.Col2SuperLightBg:link,a.Col2SuperLightBg:visited{color:#000!important}.Col2SuperLightBgTxt{color:#000}.Col2SuperLightBgTxt .h1,.Col2SuperLightBgTxt .h2,.Col2SuperLightBgTxt .h3,.Col2SuperLightBgTxt .h4,.Col2SuperLightBgTxt .h5,.Col2SuperLightBgTxt .h6,.Col2SuperLightBgTxt h1,.Col2SuperLightBgTxt h2,.Col2SuperLightBgTxt h3,.Col2SuperLightBgTxt h4,.Col2SuperLightBgTxt h5,.Col2SuperLightBgTxt h6{color:inherit}.Col2SuperLightBgTxt a:link,.Col2SuperLightBgTxt a:visited{color:#57ddff}.Col2SuperLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2ExtraLight{color:hsl(59.18918919,50%,87%)}.Col2ExtraLightBg{background:hsl(59.18918919,50%,87%)}a.Col2ExtraLightBg:link,a.Col2ExtraLightBg:visited{color:#000!important}.Col2ExtraLightBgTxt{color:#000}.Col2ExtraLightBgTxt .h1,.Col2ExtraLightBgTxt .h2,.Col2ExtraLightBgTxt .h3,.Col2ExtraLightBgTxt .h4,.Col2ExtraLightBgTxt .h5,.Col2ExtraLightBgTxt .h6,.Col2ExtraLightBgTxt h1,.Col2ExtraLightBgTxt h2,.Col2ExtraLightBgTxt h3,.Col2ExtraLightBgTxt h4,.Col2ExtraLightBgTxt h5,.Col2ExtraLightBgTxt h6{color:inherit}.Col2ExtraLightBgTxt a:link,.Col2ExtraLightBgTxt a:visited{color:#57ddff}.Col2ExtraLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2Light{color:hsl(59.18918919,50%,70%)}.Col2LightBg{background:hsl(59.18918919,50%,70%)}a.Col2LightBg:link,a.Col2LightBg:visited{color:#000!important}.Col2LightBgTxt{color:#000}.Col2LightBgTxt .h1,.Col2LightBgTxt .h2,.Col2LightBgTxt .h3,.Col2LightBgTxt .h4,.Col2LightBgTxt .h5,.Col2LightBgTxt .h6,.Col2LightBgTxt h1,.Col2LightBgTxt h2,.Col2LightBgTxt h3,.Col2LightBgTxt h4,.Col2LightBgTxt h5,.Col2LightBgTxt h6{color:inherit}.Col2LightBgTxt a:link,.Col2LightBgTxt a:visited{color:#57ddff}.Col2LightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2Medium{color:hsl(59.18918919,50%,50%)}.Col2MediumBg{background:hsl(59.18918919,50%,50%)}a.Col2MediumBg:link,a.Col2MediumBg:visited{color:#fff!important}.Col2MediumBgTxt{color:#fff}.Col2MediumBgTxt .h1,.Col2MediumBgTxt .h2,.Col2MediumBgTxt .h3,.Col2MediumBgTxt .h4,.Col2MediumBgTxt .h5,.Col2MediumBgTxt .h6,.Col2MediumBgTxt h1,.Col2MediumBgTxt h2,.Col2MediumBgTxt h3,.Col2MediumBgTxt h4,.Col2MediumBgTxt h5,.Col2MediumBgTxt h6{color:inherit}.Col2MediumBgTxt a:link,.Col2MediumBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2MediumBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2Dark{color:hsl(59.18918919,50%,30%)}.Col2DarkBg{background:hsl(59.18918919,50%,30%)}a.Col2DarkBg:link,a.Col2DarkBg:visited{color:#fff!important}.Col2DarkBgTxt{color:#fff}.Col2DarkBgTxt .h1,.Col2DarkBgTxt .h2,.Col2DarkBgTxt .h3,.Col2DarkBgTxt .h4,.Col2DarkBgTxt .h5,.Col2DarkBgTxt .h6,.Col2DarkBgTxt h1,.Col2DarkBgTxt h2,.Col2DarkBgTxt h3,.Col2DarkBgTxt h4,.Col2DarkBgTxt h5,.Col2DarkBgTxt h6{color:inherit}.Col2DarkBgTxt a:link,.Col2DarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2DarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2ExtraDark{color:hsl(59.18918919,50%,21%)}.Col2ExtraDarkBg{background:hsl(59.18918919,50%,21%)}a.Col2ExtraDarkBg:link,a.Col2ExtraDarkBg:visited{color:#fff!important}.Col2ExtraDarkBgTxt{color:#fff}.Col2ExtraDarkBgTxt .h1,.Col2ExtraDarkBgTxt .h2,.Col2ExtraDarkBgTxt .h3,.Col2ExtraDarkBgTxt .h4,.Col2ExtraDarkBgTxt .h5,.Col2ExtraDarkBgTxt .h6,.Col2ExtraDarkBgTxt h1,.Col2ExtraDarkBgTxt h2,.Col2ExtraDarkBgTxt h3,.Col2ExtraDarkBgTxt h4,.Col2ExtraDarkBgTxt h5,.Col2ExtraDarkBgTxt h6{color:inherit}.Col2ExtraDarkBgTxt a:link,.Col2ExtraDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2ExtraDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2SuperDark{color:hsl(59.18918919,50%,15%)}.Col2SuperDarkBg{background:hsl(59.18918919,50%,15%)}a.Col2SuperDarkBg:link,a.Col2SuperDarkBg:visited{color:#fff!important}.Col2SuperDarkBgTxt{color:#fff}.Col2SuperDarkBgTxt .h1,.Col2SuperDarkBgTxt .h2,.Col2SuperDarkBgTxt .h3,.Col2SuperDarkBgTxt .h4,.Col2SuperDarkBgTxt .h5,.Col2SuperDarkBgTxt .h6,.Col2SuperDarkBgTxt h1,.Col2SuperDarkBgTxt h2,.Col2SuperDarkBgTxt h3,.Col2SuperDarkBgTxt h4,.Col2SuperDarkBgTxt h5,.Col2SuperDarkBgTxt h6{color:inherit}.Col2SuperDarkBgTxt a:link,.Col2SuperDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2SuperDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2SatSuperLight{color:hsl(59.18918919,75%,95%)}.Col2SatSuperLightBg{background:hsl(59.18918919,75%,95%)}a.Col2SatSuperLightBg:link,a.Col2SatSuperLightBg:visited{color:#000!important}.Col2SatSuperLightBgTxt{color:#000}.Col2SatSuperLightBgTxt .h1,.Col2SatSuperLightBgTxt .h2,.Col2SatSuperLightBgTxt .h3,.Col2SatSuperLightBgTxt .h4,.Col2SatSuperLightBgTxt .h5,.Col2SatSuperLightBgTxt .h6,.Col2SatSuperLightBgTxt h1,.Col2SatSuperLightBgTxt h2,.Col2SatSuperLightBgTxt h3,.Col2SatSuperLightBgTxt h4,.Col2SatSuperLightBgTxt h5,.Col2SatSuperLightBgTxt h6{color:inherit}.Col2SatSuperLightBgTxt a:link,.Col2SatSuperLightBgTxt a:visited{color:#57ddff}.Col2SatSuperLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2SatExtraLight{color:hsl(59.18918919,75%,87%)}.Col2SatExtraLightBg{background:hsl(59.18918919,75%,87%)}a.Col2SatExtraLightBg:link,a.Col2SatExtraLightBg:visited{color:#000!important}.Col2SatExtraLightBgTxt{color:#000}.Col2SatExtraLightBgTxt .h1,.Col2SatExtraLightBgTxt .h2,.Col2SatExtraLightBgTxt .h3,.Col2SatExtraLightBgTxt .h4,.Col2SatExtraLightBgTxt .h5,.Col2SatExtraLightBgTxt .h6,.Col2SatExtraLightBgTxt h1,.Col2SatExtraLightBgTxt h2,.Col2SatExtraLightBgTxt h3,.Col2SatExtraLightBgTxt h4,.Col2SatExtraLightBgTxt h5,.Col2SatExtraLightBgTxt h6{color:inherit}.Col2SatExtraLightBgTxt a:link,.Col2SatExtraLightBgTxt a:visited{color:#57ddff}.Col2SatExtraLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2SatLight{color:hsl(59.18918919,75%,70%)}.Col2SatLightBg{background:hsl(59.18918919,75%,70%)}a.Col2SatLightBg:link,a.Col2SatLightBg:visited{color:#000!important}.Col2SatLightBgTxt{color:#000}.Col2SatLightBgTxt .h1,.Col2SatLightBgTxt .h2,.Col2SatLightBgTxt .h3,.Col2SatLightBgTxt .h4,.Col2SatLightBgTxt .h5,.Col2SatLightBgTxt .h6,.Col2SatLightBgTxt h1,.Col2SatLightBgTxt h2,.Col2SatLightBgTxt h3,.Col2SatLightBgTxt h4,.Col2SatLightBgTxt h5,.Col2SatLightBgTxt h6{color:inherit}.Col2SatLightBgTxt a:link,.Col2SatLightBgTxt a:visited{color:#57ddff}.Col2SatLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2SatMedium{color:hsl(59.18918919,75%,50%)}.Col2SatMediumBg{background:hsl(59.18918919,75%,50%)}a.Col2SatMediumBg:link,a.Col2SatMediumBg:visited{color:#fff!important}.Col2SatMediumBgTxt{color:#fff}.Col2SatMediumBgTxt .h1,.Col2SatMediumBgTxt .h2,.Col2SatMediumBgTxt .h3,.Col2SatMediumBgTxt .h4,.Col2SatMediumBgTxt .h5,.Col2SatMediumBgTxt .h6,.Col2SatMediumBgTxt h1,.Col2SatMediumBgTxt h2,.Col2SatMediumBgTxt h3,.Col2SatMediumBgTxt h4,.Col2SatMediumBgTxt h5,.Col2SatMediumBgTxt h6{color:inherit}.Col2SatMediumBgTxt a:link,.Col2SatMediumBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2SatMediumBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2SatDark{color:hsl(59.18918919,75%,30%)}.Col2SatDarkBg{background:hsl(59.18918919,75%,30%)}a.Col2SatDarkBg:link,a.Col2SatDarkBg:visited{color:#fff!important}.Col2SatDarkBgTxt{color:#fff}.Col2SatDarkBgTxt .h1,.Col2SatDarkBgTxt .h2,.Col2SatDarkBgTxt .h3,.Col2SatDarkBgTxt .h4,.Col2SatDarkBgTxt .h5,.Col2SatDarkBgTxt .h6,.Col2SatDarkBgTxt h1,.Col2SatDarkBgTxt h2,.Col2SatDarkBgTxt h3,.Col2SatDarkBgTxt h4,.Col2SatDarkBgTxt h5,.Col2SatDarkBgTxt h6{color:inherit}.Col2SatDarkBgTxt a:link,.Col2SatDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2SatDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2SatExtraDark{color:hsl(59.18918919,75%,21%)}.Col2SatExtraDarkBg{background:hsl(59.18918919,75%,21%)}a.Col2SatExtraDarkBg:link,a.Col2SatExtraDarkBg:visited{color:#fff!important}.Col2SatExtraDarkBgTxt{color:#fff}.Col2SatExtraDarkBgTxt .h1,.Col2SatExtraDarkBgTxt .h2,.Col2SatExtraDarkBgTxt .h3,.Col2SatExtraDarkBgTxt .h4,.Col2SatExtraDarkBgTxt .h5,.Col2SatExtraDarkBgTxt .h6,.Col2SatExtraDarkBgTxt h1,.Col2SatExtraDarkBgTxt h2,.Col2SatExtraDarkBgTxt h3,.Col2SatExtraDarkBgTxt h4,.Col2SatExtraDarkBgTxt h5,.Col2SatExtraDarkBgTxt h6{color:inherit}.Col2SatExtraDarkBgTxt a:link,.Col2SatExtraDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2SatExtraDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2SatSuperDark{color:hsl(59.18918919,75%,15%)}.Col2SatSuperDarkBg{background:hsl(59.18918919,75%,15%)}a.Col2SatSuperDarkBg:link,a.Col2SatSuperDarkBg:visited{color:#fff!important}.Col2SatSuperDarkBgTxt{color:#fff}.Col2SatSuperDarkBgTxt .h1,.Col2SatSuperDarkBgTxt .h2,.Col2SatSuperDarkBgTxt .h3,.Col2SatSuperDarkBgTxt .h4,.Col2SatSuperDarkBgTxt .h5,.Col2SatSuperDarkBgTxt .h6,.Col2SatSuperDarkBgTxt h1,.Col2SatSuperDarkBgTxt h2,.Col2SatSuperDarkBgTxt h3,.Col2SatSuperDarkBgTxt h4,.Col2SatSuperDarkBgTxt h5,.Col2SatSuperDarkBgTxt h6{color:inherit}.Col2SatSuperDarkBgTxt a:link,.Col2SatSuperDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2SatSuperDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2DesatSuperLight{color:hsl(59.18918919,25%,95%)}.Col2DesatSuperLightBg{background:hsl(59.18918919,25%,95%)}a.Col2DesatSuperLightBg:link,a.Col2DesatSuperLightBg:visited{color:#000!important}.Col2DesatSuperLightBgTxt{color:#000}.Col2DesatSuperLightBgTxt .h1,.Col2DesatSuperLightBgTxt .h2,.Col2DesatSuperLightBgTxt .h3,.Col2DesatSuperLightBgTxt .h4,.Col2DesatSuperLightBgTxt .h5,.Col2DesatSuperLightBgTxt .h6,.Col2DesatSuperLightBgTxt h1,.Col2DesatSuperLightBgTxt h2,.Col2DesatSuperLightBgTxt h3,.Col2DesatSuperLightBgTxt h4,.Col2DesatSuperLightBgTxt h5,.Col2DesatSuperLightBgTxt h6{color:inherit}.Col2DesatSuperLightBgTxt a:link,.Col2DesatSuperLightBgTxt a:visited{color:#57ddff}.Col2DesatSuperLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2DesatExtraLight{color:hsl(59.18918919,25%,87%)}.Col2DesatExtraLightBg{background:hsl(59.18918919,25%,87%)}a.Col2DesatExtraLightBg:link,a.Col2DesatExtraLightBg:visited{color:#000!important}.Col2DesatExtraLightBgTxt{color:#000}.Col2DesatExtraLightBgTxt .h1,.Col2DesatExtraLightBgTxt .h2,.Col2DesatExtraLightBgTxt .h3,.Col2DesatExtraLightBgTxt .h4,.Col2DesatExtraLightBgTxt .h5,.Col2DesatExtraLightBgTxt .h6,.Col2DesatExtraLightBgTxt h1,.Col2DesatExtraLightBgTxt h2,.Col2DesatExtraLightBgTxt h3,.Col2DesatExtraLightBgTxt h4,.Col2DesatExtraLightBgTxt h5,.Col2DesatExtraLightBgTxt h6{color:inherit}.Col2DesatExtraLightBgTxt a:link,.Col2DesatExtraLightBgTxt a:visited{color:#57ddff}.Col2DesatExtraLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2DesatLight{color:hsl(59.18918919,25%,70%)}.Col2DesatLightBg{background:hsl(59.18918919,25%,70%)}a.Col2DesatLightBg:link,a.Col2DesatLightBg:visited{color:#000!important}.Col2DesatLightBgTxt{color:#000}.Col2DesatLightBgTxt .h1,.Col2DesatLightBgTxt .h2,.Col2DesatLightBgTxt .h3,.Col2DesatLightBgTxt .h4,.Col2DesatLightBgTxt .h5,.Col2DesatLightBgTxt .h6,.Col2DesatLightBgTxt h1,.Col2DesatLightBgTxt h2,.Col2DesatLightBgTxt h3,.Col2DesatLightBgTxt h4,.Col2DesatLightBgTxt h5,.Col2DesatLightBgTxt h6{color:inherit}.Col2DesatLightBgTxt a:link,.Col2DesatLightBgTxt a:visited{color:#57ddff}.Col2DesatLightBgTxt a:hover{color:hsl(192.14285714,50%,30%)}.Col2DesatMedium{color:hsl(59.18918919,25%,50%)}.Col2DesatMediumBg{background:hsl(59.18918919,25%,50%)}a.Col2DesatMediumBg:link,a.Col2DesatMediumBg:visited{color:#fff!important}.Col2DesatMediumBgTxt{color:#fff}.Col2DesatMediumBgTxt .h1,.Col2DesatMediumBgTxt .h2,.Col2DesatMediumBgTxt .h3,.Col2DesatMediumBgTxt .h4,.Col2DesatMediumBgTxt .h5,.Col2DesatMediumBgTxt .h6,.Col2DesatMediumBgTxt h1,.Col2DesatMediumBgTxt h2,.Col2DesatMediumBgTxt h3,.Col2DesatMediumBgTxt h4,.Col2DesatMediumBgTxt h5,.Col2DesatMediumBgTxt h6{color:inherit}.Col2DesatMediumBgTxt a:link,.Col2DesatMediumBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2DesatMediumBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2DesatDark{color:hsl(59.18918919,25%,30%)}.Col2DesatDarkBg{background:hsl(59.18918919,25%,30%)}a.Col2DesatDarkBg:link,a.Col2DesatDarkBg:visited{color:#fff!important}.Col2DesatDarkBgTxt{color:#fff}.Col2DesatDarkBgTxt .h1,.Col2DesatDarkBgTxt .h2,.Col2DesatDarkBgTxt .h3,.Col2DesatDarkBgTxt .h4,.Col2DesatDarkBgTxt .h5,.Col2DesatDarkBgTxt .h6,.Col2DesatDarkBgTxt h1,.Col2DesatDarkBgTxt h2,.Col2DesatDarkBgTxt h3,.Col2DesatDarkBgTxt h4,.Col2DesatDarkBgTxt h5,.Col2DesatDarkBgTxt h6{color:inherit}.Col2DesatDarkBgTxt a:link,.Col2DesatDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2DesatDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2DesatExtraDark{color:hsl(59.18918919,25%,21%)}.Col2DesatExtraDarkBg{background:hsl(59.18918919,25%,21%)}a.Col2DesatExtraDarkBg:link,a.Col2DesatExtraDarkBg:visited{color:#fff!important}.Col2DesatExtraDarkBgTxt{color:#fff}.Col2DesatExtraDarkBgTxt .h1,.Col2DesatExtraDarkBgTxt .h2,.Col2DesatExtraDarkBgTxt .h3,.Col2DesatExtraDarkBgTxt .h4,.Col2DesatExtraDarkBgTxt .h5,.Col2DesatExtraDarkBgTxt .h6,.Col2DesatExtraDarkBgTxt h1,.Col2DesatExtraDarkBgTxt h2,.Col2DesatExtraDarkBgTxt h3,.Col2DesatExtraDarkBgTxt h4,.Col2DesatExtraDarkBgTxt h5,.Col2DesatExtraDarkBgTxt h6{color:inherit}.Col2DesatExtraDarkBgTxt a:link,.Col2DesatExtraDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2DesatExtraDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2DesatSuperDark{color:hsl(59.18918919,25%,15%)}.Col2DesatSuperDarkBg{background:hsl(59.18918919,25%,15%)}a.Col2DesatSuperDarkBg:link,a.Col2DesatSuperDarkBg:visited{color:#fff!important}.Col2DesatSuperDarkBgTxt{color:#fff}.Col2DesatSuperDarkBgTxt .h1,.Col2DesatSuperDarkBgTxt .h2,.Col2DesatSuperDarkBgTxt .h3,.Col2DesatSuperDarkBgTxt .h4,.Col2DesatSuperDarkBgTxt .h5,.Col2DesatSuperDarkBgTxt .h6,.Col2DesatSuperDarkBgTxt h1,.Col2DesatSuperDarkBgTxt h2,.Col2DesatSuperDarkBgTxt h3,.Col2DesatSuperDarkBgTxt h4,.Col2DesatSuperDarkBgTxt h5,.Col2DesatSuperDarkBgTxt h6{color:inherit}.Col2DesatSuperDarkBgTxt a:link,.Col2DesatSuperDarkBgTxt a:visited{color:hsl(192.14285714,75%,95%)}.Col2DesatSuperDarkBgTxt a:hover{color:hsl(192.14285714,75%,95%)}.Col2Bg-10{background-color:rgba(252,249,30,.1)}.Col2Bg-20{background-color:rgba(252,249,30,.2)}.Col2Bg-30{background-color:rgba(252,249,30,.3)}.Col2Bg-40{background-color:rgba(252,249,30,.4)}.Col2Bg-50{background-color:rgba(252,249,30,.5)}.Col2Bg-60{background-color:rgba(252,249,30,.6)}.Col2Bg-70{background-color:rgba(252,249,30,.7)}.Col2Bg-80{background-color:rgba(252,249,30,.8)}.Col2Bg-90{background-color:rgba(252,249,30,.9)}.BlackBg-10{background-color:rgba(0,0,0,.1)}.BlackBg-20{background-color:rgba(0,0,0,.2)}.BlackBg-30{background-color:rgba(0,0,0,.3)}.BlackBg-40{background-color:rgba(0,0,0,.4)}.BlackBg-50{background-color:rgba(0,0,0,.5)}.BlackBg-60{background-color:rgba(0,0,0,.6)}.BlackBg-70{background-color:rgba(0,0,0,.7)}.BlackBg-80{background-color:rgba(0,0,0,.8)}.BlackBg-90{background-color:rgba(0,0,0,.9)}.WhiteBg-10{background-color:rgba(255,255,255,.1)}.WhiteBg-20{background-color:rgba(255,255,255,.2)}.WhiteBg-30{background-color:rgba(255,255,255,.3)}.WhiteBg-40{background-color:rgba(255,255,255,.4)}.WhiteBg-50{background-color:rgba(255,255,255,.5)}.WhiteBg-60{background-color:rgba(255,255,255,.6)}.WhiteBg-70{background-color:rgba(255,255,255,.7)}.WhiteBg-80{background-color:rgba(255,255,255,.8)}.WhiteBg-90{background-color:rgba(255,255,255,.9)}.Grey{color:grey}.GreyBg{background:grey;color:#000}.GreyBg a:link,.GreyBg a:visited{color:#57ddff}.GreyBg a:hover{color:hsl(192.14285714,50%,30%)}a.GreyBg:link,a.GreyBg:visited{color:#000!important}.GreySuperLight{color:#f3f3f3}.GreySuperLightBg{background:#f3f3f3;color:#000}.GreySuperLightBg a:link,.GreySuperLightBg a:visited{color:#57ddff}.GreySuperLightBg a:hover{color:hsl(192.14285714,50%,30%)}a.GreySuperLightBg:link,a.GreySuperLightBg:visited{color:#000!important}.GreyExtraLight{color:#dedede}.GreyExtraLightBg{background:#dedede;color:#000}.GreyExtraLightBg a:link,.GreyExtraLightBg a:visited{color:#57ddff}.GreyExtraLightBg a:hover{color:hsl(192.14285714,50%,30%)}a.GreyExtraLightBg:link,a.GreyExtraLightBg:visited{color:#000!important}.GreyLight{color:#b3b3b3}.GreyLightBg{background:#b3b3b3;color:#000}.GreyLightBg a:link,.GreyLightBg a:visited{color:#57ddff}.GreyLightBg a:hover{color:hsl(192.14285714,50%,30%)}a.GreyLightBg:link,a.GreyLightBg:visited{color:#000!important}.GreyMedium{color:grey}.GreyMediumBg{background:grey;color:#000}.GreyMediumBg a:link,.GreyMediumBg a:visited{color:#57ddff}.GreyMediumBg a:hover{color:hsl(192.14285714,50%,30%)}a.GreyMediumBg:link,a.GreyMediumBg:visited{color:#000!important}.GreyDark{color:#4d4d4d}.GreyDarkBg{background:#4d4d4d;color:#fff}.GreyDarkBg a:link,.GreyDarkBg a:visited{color:hsl(192.14285714,75%,95%)}.GreyDarkBg a:hover{color:hsl(192.14285714,75%,95%)}a.GreyDarkBg:link,a.GreyDarkBg:visited{color:#fff!important}.GreyExtraDark{color:#363636}.GreyExtraDarkBg{background:#363636;color:#fff}.GreyExtraDarkBg a:link,.GreyExtraDarkBg a:visited{color:hsl(192.14285714,75%,95%)}.GreyExtraDarkBg a:hover{color:hsl(192.14285714,75%,95%)}a.GreyExtraDarkBg:link,a.GreyExtraDarkBg:visited{color:#fff!important}.GreySuperDark{color:#272727}.GreySuperDarkBg{background:#272727;color:#fff}.GreySuperDarkBg a:link,.GreySuperDarkBg a:visited{color:hsl(192.14285714,75%,95%)}.GreySuperDarkBg a:hover{color:hsl(192.14285714,75%,95%)}a.GreySuperDarkBg:link,a.GreySuperDarkBg:visited{color:#fff!important}.alpaca{margin:0 .5em;background:#fff}.alpaca h2,.alpaca h3,.alpaca h4,.alpaca h5{margin:0;font-size:1em}.alpaca>.alpaca-field>.alpaca-container>.alpaca-container-item{border-bottom:solid 1px #b3b3b3;padding-top:.5em}.alpaca .twitter-typeahead{margin-bottom:1em!important}.alpaca .alpaca-container-item{position:relative}.alpaca>.alpaca-field-object{border:none}.alpaca>.alpaca-field-object .alpaca-field-object{background-color:rgba(0,0,0,.03)}.alpaca .alpaca-field-accordion,.alpaca .alpaca-field-array,.alpaca .alpaca-field-object,.alpaca .alpaca-field-table{border-radius:0;border-color:#f3f3f3;margin-bottom:2em}.alpaca-array-actionbar{display:block!important}.alpaca-field-accordion .panel{margin-bottom:1em}.alpaca-field-accordion .panel-heading{background:#dedede}.alpaca-field-accordion .panel-title{padding-left:.5em}.alpaca-field-accordion .alpaca-container-item{margin-top:0}.alpaca-field-accordion .alpaca-container-item .alpaca-container-item{border-bottom:solid 1px #b3b3b3}.form-builder .alpaca-field-accordion .alpaca-container-item .alpaca-container-item{border:none}.alpaca-field-accordion .alpaca-field{padding-top:1em}.alpaca-horizontal .form-group.alpaca-field .help-block{margin-left:1em;padding:.5em 0}.fb-container #form{background:#fff;font-size:.9em}.fb-container #form h2,.fb-container #form h3,.fb-container #form h4,.fb-container #form h5{margin:0;font-size:1em}.fb-container #form .alpaca-vertical .alpaca-field-object{border-color:#aaa;border-radius:0;margin:2em}.fb-container #form .alpaca-vertical .alpaca-field-object .alpaca-field-object{background:#eee}.fb-container #form .alpaca-vertical .alpaca-field-object h2{font-size:1em}.fb-container #form .alpaca-vertical .alpaca-optional{border-color:#aaa;border-radius:0}.fb-container #form .alpaca-vertical>.alpaca-container-item-last .alpaca-optional{background:#eee}.fb-container #form .collapse.in{display:initial}.ModOpenContentC>div .alpaca-field .table th:last-child{font-size:0!important}.ModOpenContentC>div .alpaca-field .table .actionbar button{font-size:.8em;padding:.3em .5em}.ModOpenContentC>div .alpaca-field .table .alpaca-field-tablerow>td{font-size:.8em!important;padding:0}.ModOpenContentC>div .alpaca-field .table .alpaca-field-tablerow>td:last-child{min-width:0}.ModOpenContentC>div .alpaca-field .table .alpaca-field-tablerow>td>div{padding:.3em}.ModOpenContentC>div .alpaca-field .table .alpaca-field-tablerow>td>div .col-sm-9{max-width:100%;width:100%;padding:0!important;margin:0}.ModOpenContentC>div:not(.form-builder) .alpaca-field .table .alpaca-field-tablerow>td{min-width:120px}.ModOpenContentC>div:not(.form-builder) .alpaca-field .table .alpaca-field-tablerow>td:last-child{min-width:0;width:0;background:#fff;border:solid 1px #ddd}.ModOpenContentC>div:not(.form-builder) .alpaca-field .table .alpaca-field-tablerow .actionbar button{display:block;margin:.3em}.ModOpenContentC>div:not(.form-builder) .alpaca-field .table .alpaca-field-tablerow legend{font-size:.7em}.ModOpenContentC>div:not(.form-builder) .cke_top{padding:0}.ModOpenContentC>div:not(.form-builder) .cke_contents iframe{margin:-15px}@media screen and (min-width:576px){.col-sm-10-1{flex-basis:10%;max-width:10%}}@media screen and (min-width:576px){.col-sm-10-2{flex-basis:20%;max-width:20%}}@media screen and (min-width:576px){.col-sm-10-3{flex-basis:30%;max-width:30%}}@media screen and (min-width:576px){.col-sm-10-4{flex-basis:40%;max-width:40%}}@media screen and (min-width:576px){.col-sm-10-5{flex-basis:50%;max-width:50%}}@media screen and (min-width:576px){.col-sm-10-6{flex-basis:60%;max-width:60%}}@media screen and (min-width:576px){.col-sm-10-7{flex-basis:70%;max-width:70%}}@media screen and (min-width:576px){.col-sm-10-8{flex-basis:80%;max-width:80%}}@media screen and (min-width:576px){.col-sm-10-9{flex-basis:90%;max-width:90%}}@media screen and (min-width:576px){.col-sm-10-10{flex-basis:100%;max-width:100%}}@media screen and (min-width:768px){.col-md-10-1{flex-basis:10%;max-width:10%}}@media screen and (min-width:768px){.col-md-10-2{flex-basis:20%;max-width:20%}}@media screen and (min-width:768px){.col-md-10-3{flex-basis:30%;max-width:30%}}@media screen and (min-width:768px){.col-md-10-4{flex-basis:40%;max-width:40%}}@media screen and (min-width:768px){.col-md-10-5{flex-basis:50%;max-width:50%}}@media screen and (min-width:768px){.col-md-10-6{flex-basis:60%;max-width:60%}}@media screen and (min-width:768px){.col-md-10-7{flex-basis:70%;max-width:70%}}@media screen and (min-width:768px){.col-md-10-8{flex-basis:80%;max-width:80%}}@media screen and (min-width:768px){.col-md-10-9{flex-basis:90%;max-width:90%}}@media screen and (min-width:768px){.col-md-10-10{flex-basis:100%;max-width:100%}}@media screen and (min-width:992px){.col-lg-10-1{flex-basis:10%;max-width:10%}}@media screen and (min-width:992px){.col-lg-10-2{flex-basis:20%;max-width:20%}}@media screen and (min-width:992px){.col-lg-10-3{flex-basis:30%;max-width:30%}}@media screen and (min-width:992px){.col-lg-10-4{flex-basis:40%;max-width:40%}}@media screen and (min-width:992px){.col-lg-10-5{flex-basis:50%;max-width:50%}}@media screen and (min-width:992px){.col-lg-10-6{flex-basis:60%;max-width:60%}}@media screen and (min-width:992px){.col-lg-10-7{flex-basis:70%;max-width:70%}}@media screen and (min-width:992px){.col-lg-10-8{flex-basis:80%;max-width:80%}}@media screen and (min-width:992px){.col-lg-10-9{flex-basis:90%;max-width:90%}}@media screen and (min-width:992px){.col-lg-10-10{flex-basis:100%;max-width:100%}}@media screen and (min-width:1200px){.col-xl-10-1{flex-basis:10%;max-width:10%}}@media screen and (min-width:1200px){.col-xl-10-2{flex-basis:20%;max-width:20%}}@media screen and (min-width:1200px){.col-xl-10-3{flex-basis:30%;max-width:30%}}@media screen and (min-width:1200px){.col-xl-10-4{flex-basis:40%;max-width:40%}}@media screen and (min-width:1200px){.col-xl-10-5{flex-basis:50%;max-width:50%}}@media screen and (min-width:1200px){.col-xl-10-6{flex-basis:60%;max-width:60%}}@media screen and (min-width:1200px){.col-xl-10-7{flex-basis:70%;max-width:70%}}@media screen and (min-width:1200px){.col-xl-10-8{flex-basis:80%;max-width:80%}}@media screen and (min-width:1200px){.col-xl-10-9{flex-basis:90%;max-width:90%}}@media screen and (min-width:1200px){.col-xl-10-10{flex-basis:100%;max-width:100%}}@media screen and (min-width:1600px){.col-xxl-10-1{flex-basis:10%;max-width:10%}}@media screen and (min-width:1600px){.col-xxl-10-2{flex-basis:20%;max-width:20%}}@media screen and (min-width:1600px){.col-xxl-10-3{flex-basis:30%;max-width:30%}}@media screen and (min-width:1600px){.col-xxl-10-4{flex-basis:40%;max-width:40%}}@media screen and (min-width:1600px){.col-xxl-10-5{flex-basis:50%;max-width:50%}}@media screen and (min-width:1600px){.col-xxl-10-6{flex-basis:60%;max-width:60%}}@media screen and (min-width:1600px){.col-xxl-10-7{flex-basis:70%;max-width:70%}}@media screen and (min-width:1600px){.col-xxl-10-8{flex-basis:80%;max-width:80%}}@media screen and (min-width:1600px){.col-xxl-10-9{flex-basis:90%;max-width:90%}}@media screen and (min-width:1600px){.col-xxl-10-10{flex-basis:100%;max-width:100%}}.ff-anchor{position:relative;top:0;display:block;visibility:hidden}.btn{display:inline-block;text-transform:uppercase;padding:.5em 1em}.btn:link,.btn:visited{font-weight:700}.btn-default{background:hsl(192.14285714,25%,70%);color:#f3f3f3;border:none;color:inherit}.btn-default:link,.btn-default:visited{color:#f3f3f3}.btn-default:hover{color:#f3f3f3;background:hsl(192.14285714,25%,50%)}.btn-default.focus,.btn-default:focus{box-shadow:none}.btn-primary{background:hsl(192.14285714,50%,50%);color:#fff;border:none;color:inherit}.btn-primary:link,.btn-primary:visited{color:#fff}.btn-primary:hover{color:#fff;background:hsl(192.14285714,50%,70%)}.btn-primary.focus,.btn-primary:focus{box-shadow:none}.btn-secondary{background:hsl(192.14285714,25%,70%);color:#f3f3f3;border:none;color:inherit}.btn-secondary:link,.btn-secondary:visited{color:#f3f3f3}.btn-secondary:hover{color:#f3f3f3;background:hsl(192.14285714,25%,50%)}.btn-secondary.focus,.btn-secondary:focus{box-shadow:none}.btn.Col1Bg:hover,.btn.Col1Bg:link,.btn.Col1Bg:visited,.btn.Col2Bg:hover,.btn.Col2Bg:link,.btn.Col2Bg:visited{color:#fff}.btn.Col1Bg:hover,.btn.Col2Bg:hover{opacity:.9}.btn-limit{max-width:300px;margin:0 auto}.square{width:100%;position:relative;overflow:hidden}.square:after{content:"";position:relative;display:block;padding-bottom:100%}.square .content{position:absolute;width:100%;height:100%}.circle{border-radius:50%;overflow:hidden}.rounded{border-radius:1.6rem!important}.block-rounded{border-radius:1.6rem;padding:1.6rem}.block-rounded-s{border-radius:1.12rem;padding:1.12rem}.block-bg-image{min-height:4em;background-position:center center;background-repeat:no-repeat;background-size:cover;background-blend-mode:multiply}.block-bg-parallax{background-attachment:fixed}html{font-size:16px}body{font-family:Orbitron,sans-serif;color:#000;line-height:1.7;font-size:1rem}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin:1.5em 0 1.3em;font-weight:400;color:hsl(192.14285714,50%,15%);text-rendering:optimizeLegibility}.h1,h1{font-size:calc(1.3em + .3vw)}.h2,h2{font-size:calc(1.2em + .3vw)}.h3,h3{font-size:calc(1.15em + .3vw)}.h4,h4{font-size:calc(1.1em + .3vw)}.h5,h5{font-size:calc(1.1em + .3vw)}.h6,h6{font-size:1em}h1 a:link,h1 a:visited,h2 a:link,h2 a:visited,h3 a:link,h3 a:visited,h4 a:link,h4 a:visited,h5 a:link,h5 a:visited,h6 a:link,h6 a:visited{font-size:inherit}a,a.CommandButton:link,a.CommandButton:visited,a:active,a:link,a:visited{color:hsl(192.14285714,75%,30%);text-decoration:none;font-weight:400}a:hover{color:hsl(192.14285714,50%,30%)}.Head,.Normal,.NormalBold,.NormalDisabled,.NormalRed,.NormalTextBox,.SubHead,.SubSubHead{font-family:inherit}.Head{color:hsl(192.14285714,75%,30%);font-weight:700;font-size:1.4em}.SubHead{color:hsl(192.14285714,75%,30%);font-size:1.2em}.SubSubHead{color:hsl(192.14285714,75%,30%);font-size:1em}.NormalRed{color:hsl(192.14285714,75%,30%)}tfoot,th,thead{font-size:1em}.Normal p{margin-top:0}.Normal p img{vertical-align:top}@media only screen and (min-width:768px){.Normal p img[align=left],.Normal p img[style*="float: left"],.Normal p img[style*="float:left"]{margin:.5em 1em .5em 0}.Normal p img[align=right],.Normal p img[style*="float: right"],.Normal p img[style*="float:right"]{margin:.5em 0 .5em 1em}}#Body{background:#fff}.body-top-bar{background:#363636;padding:.5em;text-align:right;font-size:.875em}.login-user-search{display:flex;align-items:center;justify-content:flex-end;flex-wrap:wrap}.login-user-search #item-border{border-right:solid 1px grey;padding:0 .5em}.login-user-search a:link,.login-user-search a:visited{color:#fcf91e}.login-user-search i.fa{font-size:1.25em}.login-user-search .loginGroup,.login-user-search .registerGroup{display:inline-block}.login-user-search .user-login-wrap{display:flex;align-items:center}.login-user-search .login-link{display:inline-block;white-space:nowrap;padding:0 .5em}@media only screen and (min-width:768px){.login-user-search .login-link:before{font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f023";display:inline-block;font-size:1.25em;padding-right:.3em}}.login-user-search .registerGroup{display:inline-block}.login-user-search .registerGroup .buttonGroup{display:flex}.login-user-search .registerGroup .buttonGroup,.login-user-search .registerGroup .buttonGroup li{padding:0;margin:0;list-style-type:none}.login-user-search .registerGroup .buttonGroup li{display:flex;align-items:center;order:1}.login-user-search .registerGroup .buttonGroup li strong{display:none}.login-user-search .registerGroup .buttonGroup .userMessages{border-right:solid 1px grey;padding:0 .5em}.login-user-search .registerGroup .buttonGroup .userMessages>a::before{font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f086";display:inline-block;font-size:1.25em}.login-user-search .registerGroup .buttonGroup .userNotifications{border-right:solid 1px grey;padding:0 .5em}.login-user-search .registerGroup .buttonGroup .userNotifications>a::before{font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f06a";display:inline-block;font-size:1.25em}.login-user-search .registerGroup .buttonGroup .userDisplayName{order:10}@media only screen and (min-width:768px){.login-user-search .registerGroup .buttonGroup .userDisplayName{border-right:solid 1px grey;padding:0 .5em}}.login-user-search .registerGroup .buttonGroup .userDisplayName .user-link{display:none;white-space:nowrap}@media only screen and (min-width:768px){.login-user-search .registerGroup .buttonGroup .userDisplayName .user-link{display:inline-block;padding:0 .5em 0 0}}.login-user-search .registerGroup .buttonGroup .userProfileImg{padding:0 .3em 0 .5em}.login-user-search .registerGroup .buttonGroup .userProfileImg img{border-radius:50%}.login-user-search .search-wrap{position:relative;z-index:1005;padding-right:.5em}.login-user-search .search-wrap input{border:solid 1px transparent;background:#b3b3b3;color:#000;padding:.3em;width:50px;transition:width .5s}@media only screen and (min-width:768px){.login-user-search .search-wrap input{width:100px}}.login-user-search .search-wrap input:focus{border:solid 1px #57ddff;background:#fff;color:#000;outline:0;width:150px;transition:width .5s}@media only screen and (min-width:992px){.login-user-search .search-wrap input:focus{width:250px}}.login-user-search .search-wrap .searchSkinObjectPreview{text-align:left}.login-user-search .search-wrap .SearchButton{margin-right:.3em}.Header-Wrap{background:#fff}header.Skin{padding:0;margin-top:0;min-height:0;transition:all .4s ease}.scrolled header.Skin{min-height:0}header.Skin .Logo img{padding:0;transition:all .4s ease;max-height:5em}header.Skin .Logo .SiteTitles{transition:all .4s ease;padding:.3em 0 .3em;font-size:1.2em}header.Skin .Logo .SiteTitles h3,header.Skin .Logo .SiteTitles h4{margin:0;font-weight:700;color:#fcf91e;font-family:Orbitron,sans-serif,sans serif}header.Skin .Logo .SiteTitles h3{font-size:1em;line-height:1.2em;padding-bottom:.2em}header.Skin .Logo .SiteTitles h3 a{color:inherit}header.Skin .Logo .SiteTitles h4{font-size:.7em;line-height:2em;color:grey}@media only screen and (min-width:768px){header.Skin .Logo .SiteTitles{font-size:2em}header.Skin .Logo .SiteTitles h3{padding-bottom:0}header.Skin .Logo .SiteTitles h4{font-size:.5em}}@media only screen and (min-width:992px){header.Skin .Logo .SiteTitles{font-size:40px}header.Skin .Logo .SiteTitles h3{padding-bottom:0}header.Skin .Logo .SiteTitles h4{font-size:.5em}}.scrolled header.Skin{transition:all .4s ease;padding:10px 0}.scrolled header.Skin .Logo img{max-height:3em}.scrolled header.Skin .Logo .SiteTitles{transition:all .4s ease}.scrolled header.Skin .Logo .SiteTitles h4{display:none}@media screen and (min-width:1px){.scrolled header.Skin .Logo .SiteTitles{font-size:1.2em}}.scrolled header.Skin .Logo>img{width:150px}.LangWrap{float:right;padding-right:8px}.LangWrap .Language{margin:0}.LangWrap span{padding-left:5px}.LangWrap img{border:none!important;opacity:.3}.LangWrap .selected img,.LangWrap img:hover{opacity:1}.Breadcrumbs{padding:0 10px;border-bottom:dotted 1px #ccc}.Breadcrumbs>span{line-height:30px}#Breadcrumbs a:visited,.Breadcrumbs a:link{color:#444}.Breadcrumbs a:hover{color:red}.Search{float:right;padding-top:3px}a.Search{display:inline-block}.Search input{border:solid 1px #ddd}#Skin .searchInputContainer{margin:0 3px 0 0!important}.dnnSearchBoxPanel{width:100%;max-width:100%;background:0 0}.dnnSearchBoxPanel .dnnSearchBox{margin:0;border-radius:0;box-shadow:none}.dnnSearchResultPanel{width:100%;max-width:100%;background:0 0}.dnnSearchResultPanel .dnnSearchResultSortOptions{border:none}.dnnSearchResultPanel .dnnSearchResultSortOptions>li a{background:hsl(192.14285714,25%,70%)}.dnnSearchResultPanel .dnnSearchResultSortOptions>li a:hover{background:#b2b2b2}.dnnSearchResultPanel .dnnSearchResultSortOptions>li.active,.dnnSearchResultPanel .dnnSearchResultSortOptions>li.active>a{background:hsl(192.14285714,50%,50%);color:#fff}.dnnSearchResultPanel .dnnSearchResultSortOptions>li.active:hover,.dnnSearchResultPanel .dnnSearchResultSortOptions>li.active>a:hover{background:hsl(192.14285714,10%,50%);color:#fff}.dnnSearchResultPanel .dnnSearchResultSortOptions .RadComboBox td.rcbInputCellLeft{background:#eee}.dnnSearchResultPanel .dnnSearchResultSortOptions .RadComboBox td td.rcbArrowCell,.dnnSearchResultPanel .dnnSearchResultSortOptions .RadComboBox td.rcbInputCell{background:#deebf7!important;border-radius:0!important;border:none!important}.dnnSearchResultPanel .dnnSearchResultSortOptions .RadComboBox .rcbFocused *{box-shadow:none!important}.dnnSearchResultPanel .selectize-control.single{display:inline-block}.dnnSearchResultPanel .selectize-control.single .selectize-input,.dnnSearchResultPanel .selectize-control.single [data-value]{border-radius:0}.dnnSearchResultContainer .dnnSearchResultItem .dnnSearchResultItem-Link{display:none}.dnnSearchResultContainer .dnnSearchResultItem .dnnSearchResultItem-Others{display:none}.dnnSearchResultPager:after{content:" ";display:block;height:0;clear:both}#MenuDtItemBorder{border-bottom:solid 1px hsl(192.14285714,25%,87%)}.WrapMainMenu{background:#000;box-shadow:none}.FFUlMenu{position:relative}.FFUlMenu,.FFUlMenu li,.FFUlMenu ul{padding:0;margin:0;list-style:none;line-height:normal}.FFUlMenu li{position:relative}nav .itemwrap>a,nav .itemwrap>span{max-width:100%}nav .itemwrap>a span,nav .itemwrap>span span{overflow-wrap:break-word}.open-submenu{display:inline-block;border:none;position:absolute;width:2em;font-style:normal;height:3.4em;line-height:3.4em;right:0;top:0;text-align:center;cursor:pointer;transition:transform .3s}@media screen and (min-width:991px){.open-submenu{display:none!important;position:relative;height:auto;line-height:1;width:1em;margin-right:.5em}.touch .open-submenu{display:inline-block!important}}.open-submenu:after{content:"\f107";font-family:FontAwesome;font-size:1.7em}.item-open>span>.open-submenu{transform:rotate(180deg)}.open-submenu:hover{color:hsl(192.14285714,50%,50%)}.extra-menu-open .Panes{margin-top:0!important}.extra-menu-open .Header-Wrap{position:relative;margin-top:0!important;margin-left:0!important}.extra-menu-open:not(.scrolled) .Header-Wrap{padding:0}.extra-menu-open .MainMenu li ul{display:none}@media only screen and (min-width:992px) and (max-width:1199px){.FFUlMenu{font-size:.9em}}@media only screen and (min-width:1200px){.FFUlMenu{font-size:1em}}.FFUlMenu .itemwrap>a,.FFUlMenu .itemwrap>span{font-size:inherit}@media only screen and (min-width:992px){.FFUlMenu .itemwrap>a.Level0,.FFUlMenu .itemwrap>span.Level0{display:inline-block;padding:0 .85em;line-height:2em}.MainMenu .FFUlMenu .itemwrap>a.Level0,.MainMenu .FFUlMenu .itemwrap>span.Level0{font-weight:400}}@media screen and (max-width:991px){.WrapSubMenu{display:none}.WrapMainMenu{background:hsl(192.14285714,50%,15%);box-shadow:none;border-top:solid 1px hsl(192.14285714,50%,87%);border:none}.WrapMainMenu .col-xs-12{min-height:0}.MainMenu>ul{display:none}.MainMenu li{border-top:solid 1px hsl(192.14285714,25%,78%)}.MainMenu li.Level0{border-top:solid 1px hsl(192.14285714,25%,70%)}.MainMenu li.Level0:first-child{border:none}.MainMenu .itemwrap{display:block}.MainMenu .itemwrap>a,.MainMenu .itemwrap>span{display:inline-block;color:#fff}.MainMenu .itemwrap>a.Active,.MainMenu .itemwrap>a.ActiveParent,.MainMenu .itemwrap>span.Active,.MainMenu .itemwrap>span.ActiveParent{color:#fcf91e}.MainMenu .itemwrap>a:hover,.MainMenu .itemwrap>span:hover{color:#fcf91e}.MainMenu .itemwrap>a,.MainMenu .itemwrap>span{line-height:initial;padding:1em 2em 1em 0;word-break:break-all}.MainMenu .itemwrap.Level0>a,.MainMenu .itemwrap.Level0>span{text-transform:uppercase;color:#fff}.MainMenu .itemwrap.Level0>a.Active,.MainMenu .itemwrap.Level0>a.ActiveParent,.MainMenu .itemwrap.Level0>span.Active,.MainMenu .itemwrap.Level0>span.ActiveParent{color:#fcf91e}.MainMenu .itemwrap.Level0>a:hover,.MainMenu .itemwrap.Level0>span:hover{color:#fcf91e}.MainMenu li.Level0>a,.MainMenu li.Level0>span{padding-left:0}.MainMenu li.Level1>a,.MainMenu li.Level1>span{padding-left:1em}.MainMenu li.Level2>a,.MainMenu li.Level2>span{padding-left:2em}.MainMenu li.Level3>a,.MainMenu li.Level3>span{padding-left:3em}.MainMenu li.Level4>a,.MainMenu li.Level4>span{padding-left:4em}.MainMenu li.Level5>a,.MainMenu li.Level5>span{padding-left:5em}.MainMenu li.Level6>a,.MainMenu li.Level6>span{padding-left:6em}.MainMenu li.Level7>a,.MainMenu li.Level7>span{padding-left:7em}.MainMenu li.Level8>a,.MainMenu li.Level8>span{padding-left:8em}}@media screen and (min-width:992px){.WrapMenuToggle{display:none}.FFUlMenu li{float:left;list-style-type:none;position:relative}.MainMenu li .itemwrap>a,.MainMenu li .itemwrap>span{display:inline-block;padding:0 1em}.FFUlMenu a:hover{text-decoration:none}.FFUlMenu li,.FFUlMenu li ul{width:15em}.FFUlMenu img{padding-right:.3em}.FFUlMenu a.Level0,.FFUlMenu li.Level0{width:auto}.MainMenu>ul{display:block!important}.MainMenu{position:relative;z-index:1000}.MainMenu li ul{position:absolute;left:-999em;z-index:1000}.MainMenu li ul{opacity:0;-webkit-transition:opacity .3s linear;-moz-transition:opacity .3s linear;-o-transition:opacity .3s linear;-ms-transition:opacity .3s linear;transition:opacity .3s linear}.MainMenu li{position:relative}.MainMenu ul.Level1 ul{margin:0 0 0 15em}.MainMenu ul.Level1 ul.right{margin:0 15em 0 0}.MainMenu li ul ul{top:0}.drop-down.MainMenu li:focus-within>ul{left:0;opacity:1}.drop-down.MainMenu li:focus-within>ul.right{left:-15em}.drop-down.MainMenu li.item-open>ul,.drop-down.MainMenu li.touch-open>ul,.drop-down.MainMenu li:hover>ul{left:0;opacity:1}.drop-down.MainMenu li.item-open>ul.right,.drop-down.MainMenu li.touch-open>ul.right,.drop-down.MainMenu li:hover>ul.right{left:-15em}}@media screen and (min-width:992px){.WrapMainMenu{position:relative;z-index:1001}.WrapSubMenu{position:relative;z-index:1000}.MainMenu .itemwrap{display:block;padding:.7em 0}.MainMenu .itemwrap a:link,.MainMenu .itemwrap a:visited{color:hsl(192.14285714,50%,21%)}.MainMenu .itemwrap a.Active,.MainMenu .itemwrap a:focus,.MainMenu .itemwrap a:hover{color:hsl(192.14285714,75%,50%);text-decoration:none}.MainMenu .itemwrap>span{color:hsl(192.14285714,25%,30%)}.MainMenu .itemwrap.Level0{padding:0;color:hsl(192.14285714,50%,15%)}.MainMenu .itemwrap.Level0.Active,.MainMenu .itemwrap.Level0.ActiveParent,.MainMenu .itemwrap.Level0:focus,.MainMenu .itemwrap.Level0:hover{color:#000}.MainMenu .itemwrap.Level0.Active,.MainMenu .itemwrap.Level0.ActiveParent{background:#fcf91e;box-shadow:inset 0 0 5px hsl(192.14285714,50%,30%);box-shadow:none}.MainMenu .itemwrap.Level0>a{color:inherit}.MainMenu .itemwrap.Level0>span{color:#000}.MainMenu .itemwrap:not(.Level0){border-bottom:solid 1px hsl(192.14285714,25%,87%)}.MainMenu li.Level0 ul{background:#fff;box-shadow:0 0 3px hsl(192.14285714,50%,30%)}}.WrapMenuToggle{background:hsl(192.14285714,50%,21%)}.WrapMenuToggle{display:block;cursor:pointer;color:#fff;text-transform:uppercase}@media screen and (min-width:992px){.WrapMenuToggle{display:none}}.MenuToggle{padding:0;color:#fff;margin-right:0;text-align:right}.MenuToggle a{display:inline-block;padding:12px 6px;line-height:0;display:flex;align-items:center;justify-content:flex-end}.MenuToggle .text{display:inline-block;margin-right:.5em;font-size:1.125em}.MenuToggle .hamburger{display:inline-block;position:relative;width:36px;height:21px}.MenuToggle .hamburger span{display:block;background:currentColor;position:absolute;height:3px;width:100%;left:0;top:calc(50% - 3px / 2);transition:all .5s ease}.MenuToggle .hamburger span:nth-child(1){margin-top:-9px}.MenuToggle .hamburger span:nth-child(3){margin-top:9px}.extra-menu-open .MenuToggle .hamburger span{background:#fff}.extra-menu-open .MenuToggle .hamburger span:nth-child(1){transform:rotate(45deg);margin:0;height:4px}.extra-menu-open .MenuToggle .hamburger span:nth-child(2){display:none}.extra-menu-open .MenuToggle .hamburger span:nth-child(3){transform:rotate(-45deg);margin:0;height:4px}@media screen and (min-width:992px){.WrapSubMenu{background:hsl(192.14285714,50%,87%);position:relative}.WrapSubMenu *{min-height:0}.SubMenu{position:relative;clear:both;padding:0}.SubMenu .itemwrap>a,.SubMenu .itemwrap>span{color:hsl(192.14285714,25%,50%);display:inline-block}.SubMenu .itemwrap>a.Active,.SubMenu .itemwrap>a.ActiveParent,.SubMenu .itemwrap>span.Active,.SubMenu .itemwrap>span.ActiveParent{color:hsl(192.14285714,50%,21%)}}.close-menu{display:block;cursor:pointer;text-align:right}.close-menu .close-x{position:relative;display:inline-block;background:0 0;width:2em;height:2em}.close-menu .close-x:after,.close-menu .close-x:before{content:"";position:absolute;height:.2em;width:100%;margin-top:-1px;background:#57ddff;left:0;top:50%}.close-menu .close-x:before{transform:rotate(45deg)}.close-menu .close-x:after{transform:rotate(-45deg)}.mega-wrap{display:none;background:#f3f3f3;border-bottom:solid 1px hsl(192.14285714,25%,87%);position:absolute;width:100%;z-index:1005}.mega-wrap nav{padding:2em 00}.mega-wrap nav ul{padding:0;margin:0}.mega-wrap nav>ul{display:flex;flex-wrap:wrap;margin:0 -2em 0}.mega-wrap nav>ul li{list-style:none;margin:0;padding:0}.mega-wrap nav>ul li .itemwrap{display:block;padding:.3em 0}.mega-wrap nav>ul li li ul{padding:1em 0}.mega-wrap nav>ul li li li{padding-left:1.5em}.mega-wrap nav>ul>li{min-width:24%;padding:1em 2em}.mega-wrap nav>ul>li>.itemwrap{font-size:1.2em;padding-bottom:1em/3;margin-bottom:1em/3;display:block}.mega-wrap nav>ul>li>.itemwrap a{color:hsl(192.14285714,50%,30%)}.mega-wrap nav>ul img{display:none;max-width:32px!important}html{scroll-behavior:smooth}.HeaderPaneRight{float:right;clear:right;width:100%;margin-top:10px}.MainPanes:not(.unused){padding:2em 0;padding:clamp(.8em,2vw,3em) 0}.CP-Edit .BottomPaneFullWidth,.CP-Layout .BottomPaneFullWidth{margin:0}.ContentWrap a[id]:not([id^=dnn]:not[class^=ui]){position:absolute;float:right;left:0;margin-top:-2em}.ContentWrap .fixed-header{margin-top:0}.ContentFadeIn .ContentWrap{transition:margin .2s ease;animation:content-fade-in 1.5s}.BgPadding{padding:1.5em}footer.Skin{background:hsl(192.14285714,50%,15%);color:#fff;border-top:solid 4px #fcf91e}footer.Skin a:link,footer.Skin a:visited{color:#fff;display:inline-block}footer.Skin a:hover{color:hsl(192.14285714,75%,50%)}footer.Skin,footer.Skin a{line-height:2.5em}footer.Skin .WrapLogin{margin-right:1em}footer.Skin .WrapLogin a.Login{color:#fcf91e}.CP-Edit footer.Skin .WrapLogin a.Login,.CP-View footer.Skin .WrapLogin a.Login,footer.Skin .WrapLogin a.Login:hover{color:hsl(192.14285714,50%,50%)}footer.Skin .top{background:hsl(192.14285714,50%,21%)}footer.Skin .bottom{border-top:solid 1px rgba(255,255,255,.1)}@media only screen and (min-width:768px){footer.Skin .top .container{padding-top:2em;padding-bottom:2em}}html{height:100%}.footer-sticky,.footer-sticky form{height:100%}.footer-sticky .sWrap{min-height:100%;display:flex;flex-direction:column}.footer-sticky .Header-Wrap,.footer-sticky footer.Skin{flex-shrink:0}.footer-sticky .ContentWrap{flex-grow:1}.cContainer{margin-bottom:4em}.cContainer:after{content:"";display:table;clear:both}.FullWidth .cContainer{margin-bottom:0}.cContainer h1.cTitle,.cContainer h2.cTitle,.cContainer h3.cTitle,.cContainer h4.cTitle,.cContainer h5.cTitle{margin-top:0}.cBg.cContainer h1.cTitle,.cBg.cContainer h2.cTitle,.cBg.cContainer h3.cTitle,.cBg.cContainer h4.cTitle,.cBg.cContainer h5.cTitle{margin:0 0 1.3em}.cContainer header.Container{display:flex}.cBg.cContainer header.Container{margin-bottom:1.5em}.cContainer header.Container .cIcon img{padding-right:4px}.cContainer section.Container{clear:both}.cBg{padding:1.5em 1.1em 2.5em;margin-bottom:2em}.cBg p:last-child{margin:0}.flexslider{border:none!important;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;margin-bottom:0}.flexslider .img{position:relative;background-size:cover;background-position:center center;overflow:hidden}.flexslider .container{padding-top:1.5em;padding-bottom:3em;min-height:100%;display:flex}.flexslider .text-wrap{position:absolute;top:0;width:100%;height:100%}.flexslider .text-wrap p:last-child{margin-bottom:0}.flexslider li{list-style:none}.flexslider .text{display:inline-block;background:rgba(255,255,255,.92);padding:.8em 1em;max-width:100%;font-size:.7em}@media only screen and (min-width:768px){.flexslider .text{max-width:33%}}@media only screen and (min-width:992px){.flexslider .text{max-width:25%}}@media only screen and (min-width:768px){.flexslider .text{font-size:.8em}}@media only screen and (min-width:992px){.flexslider .text{font-size:.9em}}.flexslider .text .btn{margin-top:.7em;font-size:.9em}.flexslider .text .flex-title{padding:0;margin:0;font-size:1.4em}.flexslider .text .flex-description{padding-top:.5em;display:inline-block;display:none}@media screen and (min-width:768px){.flexslider .text .flex-description{display:inline-block}}.flexslider .text a .flex-description{color:#000}.flexslider .container{justify-content:flex-start;align-items:flex-start}.flexslider .container.h-left{justify-content:flex-start}.flexslider .container.h-center{justify-content:center}.flexslider .container.h-right{justify-content:flex-end}.flexslider .container.v-top{align-items:flex-start}.flexslider .container.v-middle{align-items:center}.flexslider .container.v-bottom{align-items:flex-end}.flexslider .flex-error{padding:1em 0;color:#f80}.flexslider .flex-no-image .text{display:none}.flexslider .flex-direction-nav{overflow:hidden}.flexslider .flex-direction-nav a::before{color:rgba(255,255,255,.9);text-shadow:0 0 3px rgba(0,0,0,.7)}.flexslider .flex-direction-nav .flex-previous{left:0}.flexslider .flex-direction-nav .flex-next{right:0}.flexslider .fade{opacity:0;margin-left:-10vw;transition:opacity 1s ease-in,margin-left .5s ease-in;transition-delay:.8s}.flexslider .fade2{transition-delay:.9s}.flexslider .flex-active-slide .fade{opacity:1;margin-left:0}.flexslider.heightauto .slide{overflow:hidden}.flexslider.height75{max-height:75vh;height:75vh}.flexslider.height75 .img{min-height:75vh;height:75vh}.flexslider.height75 .img img{height:75vh!important;object-fit:cover;object-position:50% 50%}.flexslider.height50{max-height:50vh;height:50vh}.flexslider.height50 .img{min-height:50vh;height:50vh}.flexslider.height50 .img img{height:50vh!important;object-fit:cover;object-position:50% 50%}.flexslider.height33{max-height:33vh;height:33vh}.flexslider.height33 .img{min-height:33vh;height:33vh}.flexslider.height33 .img img{height:33vh!important;object-fit:cover;object-position:50% 50%}.flex-direction-nav a{height:3em!important}.flex-control-nav{position:relative;padding:0;bottom:auto;z-index:3}.flex-control-nav.flex-control-paging{position:absolute;margin-top:-2em}.flex-control-nav.flex-control-paging li a{width:20px;height:20px;background:rgba(255,255,255,.8);box-shadow:none}.flex-control-nav.flex-control-paging li a.flex-active{background:rgba(87,221,255,.8)}#Body .DnnModule-OpenContent .oc-view .octemplate{font-size:.8rem;width:250px}#Body .DnnModule-OpenContent .oc-view .octemplate a{border-radius:0;background:#eee;color:#444;padding:.5em;height:4em;white-space:wrap}#Body .DnnModule-OpenContent .oc-view .octemplate a:hover{background:#ddd}#Body .DnnModule-OpenContent .oc-view .octemplate a.advanced{background:hsl(192.14285714,25%,50%)}.OpenForm .alpaca-field-checkbox{position:relative}.OpenForm .alpaca-control.checkbox{display:inline;float:left;margin-right:.5em}.OpenForm .alpaca-required input,.OpenForm .alpaca-required textarea{border-color:#57ddff}img:not(.unresponsive){max-width:100%;height:auto!important}img:not(.unresponsive)[src*='16X16']{min-width:16px}img:not(.unresponsive)[src*='32X32']{min-width:32px}img{-ms-interpolation-mode:bicubic}iframe{max-width:100%}.video-16-9{position:relative;padding-bottom:56.25%;height:0}.video-16-9 iframe{position:absolute;top:0;left:0;width:100%;height:100%}.body-top-bar{background:linear-gradient(90deg,rgba(87,221,255,0) 0,hsl(192.14285714,75%,21%) 57%),repeating-linear-gradient(-45deg,#fcf91e,#fcf91e 20px,hsl(192.14285714,50%,30%) 20px,hsl(192.14285714,50%,30%) 40px)}.Header-Wrap header.Skin{height:13vw;background-position:center center;background-size:100% auto}.Header-Wrap .body-top-bar{padding:0}.Header-Wrap header.Skin{overflow:hidden}.Header-Wrap .FFImageShow{width:100%!important;height:100%!important}.Header-Wrap .FFImageShow img{width:100%!important;height:100%!important;object-fit:cover}@media only screen and (min-width:768px){.WrapMainMenu{background:repeating-linear-gradient(-45deg,hsl(192.14285714,50%,30%),hsl(192.14285714,50%,30%),hsl(192.14285714,50%,21%) 5px,hsl(192.14285714,50%,21%) 10px)}}@media screen and (min-width:992px){.MainMenu .itemwrap.Level0{background:#57ddff;margin:0 3px}}.MainMenu .itemwrap.Level0{transform:skew(-45deg);padding-left:1em;padding-right:1em;line-height:2em}.MainMenu .itemwrap.Level0 a,.MainMenu .itemwrap.Level0 i{transform:skew(45deg)}#MenuMobBorder{border:none}.WrapMenuToggle{background:repeating-linear-gradient(-45deg,hsl(192.14285714,50%,30%),hsl(192.14285714,50%,30%),hsl(192.14285714,50%,21%) 5px,hsl(192.14285714,50%,21%) 10px)}.sWrap{background:hsl(192.14285714,25%,15%)}.Panes{background:hsl(192.14285714,50%,15%) url("/Portals/_default/skins/cyberpunk/Assets/Img/Backgrounds/Bg-01.jpg") no-repeat;background-attachment:fixed;background-size:cover}.cContainer.cWhite .cTitle{position:relative;margin-bottom:.5em;margin-left:1.5em}.cContainer.cWhite .cTitle:before{content:"";display:block;position:absolute;z-index:0;left:-.8em;top:0;right:-.8em;bottom:0;background:#fff;transform:skew(-45deg)}.cContainer.cWhite .cTitle .LabelEditTextClass,.cContainer.cWhite .cTitle span{position:relative;z-index:1}.cContainer.cWhite .cTitle .LabelEditTextClass{max-width:80%}.cContainer.cWhite .DNNModuleContent{background:rgba(255,255,255,.85);padding:1.5em;border-radius:0 2em 0 2em;border:solid 4px #fff;box-shadow:inset 0 0 -5px #000}.cContainer.cBlue .cTitle{position:relative;margin-bottom:.5em;margin-left:1.5em}.cContainer.cBlue .cTitle:before{content:"";display:block;position:absolute;z-index:0;left:-.8em;top:0;right:-.8em;bottom:0;background:#57ddff;transform:skew(-45deg)}.cContainer.cBlue .cTitle .LabelEditTextClass,.cContainer.cBlue .cTitle span{position:relative;z-index:1}.cContainer.cBlue .cTitle .LabelEditTextClass{max-width:80%}.cContainer.cBlue .DNNModuleContent{background:rgba(87,221,255,.85);padding:1.5em;border-radius:0 2em 0 2em;border:solid 4px #57ddff;box-shadow:inset 0 0 -5px #000}.cContainer.cBlueNeon .cTitle{position:relative;margin-bottom:.5em;margin-left:1.5em}.cContainer.cBlueNeon .cTitle:before{content:"";display:block;position:absolute;z-index:0;left:-.8em;top:0;right:-.8em;bottom:0;background:#57ddff;transform:skew(-45deg)}.cContainer.cBlueNeon .cTitle .LabelEditTextClass,.cContainer.cBlueNeon .cTitle span{position:relative;z-index:1}.cContainer.cBlueNeon .cTitle .LabelEditTextClass{max-width:80%}.cContainer.cBlueNeon .cContentpane{background:rgba(255,255,255,.85);padding:1.5em;border-radius:0 2em 0 2em;box-shadow:0 0 .2rem #fff,0 0 .2rem #fff,0 0 2rem #57ddff,0 0 .8rem #57ddff,0 0 1rem #57ddff,inset 0 0 .3rem #57ddff}.cContainer.cBlueBlack{color:#fff}.cContainer.cBlueBlack .cTitle{position:relative;margin-bottom:.5em;margin-left:1.5em}.cContainer.cBlueBlack .cTitle:before{content:"";display:block;position:absolute;z-index:0;left:-.8em;top:0;right:-.8em;bottom:0;background:#57ddff;transform:skew(-45deg)}.cContainer.cBlueBlack .cTitle .LabelEditTextClass,.cContainer.cBlueBlack .cTitle span{position:relative;z-index:1}.cContainer.cBlueBlack .cTitle .LabelEditTextClass{max-width:80%}.cContainer.cBlueBlack .DNNModuleContent{background:rgba(0,0,0,.9);padding:1.5em;border-radius:0 2em 0 2em;border:solid 4px #000;box-shadow:inset 0 0 -5px #000}.cContainer.cBlueBlack a:link,.cContainer.cBlueBlack a:visited{color:#57ddff}.cContainer.cYellow .cTitle{position:relative;margin-bottom:.5em;margin-left:1.5em}.cContainer.cYellow .cTitle:before{content:"";display:block;position:absolute;z-index:0;left:-.8em;top:0;right:-.8em;bottom:0;background:#fcf91e;transform:skew(-45deg)}.cContainer.cYellow .cTitle .LabelEditTextClass,.cContainer.cYellow .cTitle span{position:relative;z-index:1}.cContainer.cYellow .cTitle .LabelEditTextClass{max-width:80%}.cContainer.cYellow .DNNModuleContent{background:rgba(252,249,30,.95);padding:1.5em;border-radius:0 2em 0 2em;border:solid 4px #fcf91e;box-shadow:inset 0 0 -5px #000}.cContainer.cYellowNeon .cTitle{position:relative;margin-bottom:.5em;margin-left:1.5em}.cContainer.cYellowNeon .cTitle:before{content:"";display:block;position:absolute;z-index:0;left:-.8em;top:0;right:-.8em;bottom:0;background:#fcf91e;transform:skew(-45deg)}.cContainer.cYellowNeon .cTitle .LabelEditTextClass,.cContainer.cYellowNeon .cTitle span{position:relative;z-index:1}.cContainer.cYellowNeon .cTitle .LabelEditTextClass{max-width:80%}.cContainer.cYellowNeon .cContentpane{background:rgba(255,255,255,.85);padding:1.5em;border-radius:0 2em 0 2em;box-shadow:0 0 .2rem #fff,0 0 .2rem #fff,0 0 2rem #fcf91e,0 0 .8rem #fcf91e,0 0 1rem #fcf91e,inset 0 0 .3rem #fcf91e}.cContainer.cYellowBlack{color:#fff}.cContainer.cYellowBlack .cTitle{position:relative;margin-bottom:.5em;margin-left:1.5em}.cContainer.cYellowBlack .cTitle:before{content:"";display:block;position:absolute;z-index:0;left:-.8em;top:0;right:-.8em;bottom:0;background:#fcf91e;transform:skew(-45deg)}.cContainer.cYellowBlack .cTitle .LabelEditTextClass,.cContainer.cYellowBlack .cTitle span{position:relative;z-index:1}.cContainer.cYellowBlack .cTitle .LabelEditTextClass{max-width:80%}.cContainer.cYellowBlack .DNNModuleContent{background:rgba(0,0,0,.95);padding:1.5em;border-radius:0 2em 0 2em;border:solid 4px #000;box-shadow:inset 0 0 -5px #000}.cContainer.cYellowBlack a:link,.cContainer.cYellowBlack a:visited{color:#57ddff}
/*# sourceMappingURL=Skin.css.map */

