/* ============================================================
	INITIALIZE
============================================================ */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */

/* #region Fonts*/

/* Regular */
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato/Lato-Regular.ttf') format('truetype');
    font-weight: normal;
    font-weight: 400;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato/Lato-Bold.ttf') format('truetype');
    font-weight: bold;
    font-weight: 700;
    font-style: normal;
}

/* Italic */
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato/Lato-Italic.ttf') format('truetype');
    font-weight: normal;
    font-weight: 400;
    font-style: italic;
}

/* Bold Italic */
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato/Lato-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-weight: 700;
    font-style: italic;
}

/* #endregion Fonts */

/* #region Global Element Styling */

HTML {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

/* For clarity, specify all fonts in points, not pixels or ems. */
BODY {
    background: #EEEEEE;
    color: #222;
    cursor: auto;
    font-family: Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12pt; /* Set default size for all text - avoids variations based on User Settings. */
    font-style: normal;
    font-weight: normal;
    letter-spacing: 0.02em; /* = 0.32px */
    margin: 0 auto; /* Remove default margin. */
    max-width: 1090px;
    padding: 0 15px;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Links */
A {
    text-decoration: none;
    color: #006699;
    /* Remove the gray background color from active links in IE 10. */
    background-color: transparent;
    font-size: inherit;
    white-space: nowrap;
}

    A:hover {
        cursor: pointer;
        color: #17A2E3;
    }

    A:active, A:hover {
        /* For improved readability */
        outline: 0;
    }

/* Headings */
H1, H2, H3, H4, H5, H6 {
    font-weight: 400;
    line-height: 1em;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
H1 {
    font-family: "Lato";
    font-weight: bold !important;
    color: #2D2D2D;
    margin: 0.67em 0;
}

H2 {
    font-family: "Lato";
    font-weight: bold;
    font-size: 16pt;
    color: #2D2D2D;
    margin: 0.67em 0;
}

/* Text */

B {
    color: black;
    font-size: 10pt;
}

/* Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
B, STRONG {
    font-weight: bold;
}

NOBR {
    color: #2D2D2D;
    font-size: 10pt;
}

LABEL {
    font-family: Lato;
    font-size: 12pt;
    color: #2D2D2D;
}

P {
    font-family: "Lato";
    color: #626A6D;
    font-size: 12pt;
}

PRE {
    overflow: auto; /* Contain overflow in all browsers. */
}

/* Address odd `em`-unit font size rendering in all browsers.  */
CODE, KBD, PRE, SAMP {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Data Entry */
BUTTON, .button {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #E57110;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    height: 45px;
    width: 100%;
    line-height: 45px;
    font-size: 10pt;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0;
    /* Address `overflow` set to `hidden` in IE 8/9/10/11. */
    overflow: visible;
    padding: 0 20px 0 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 300ms ease-out;
}

INPUT {
    border: 1px solid #DDDDDD;
    /* Address Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet. */
    line-height: normal;
    outline: 0;
    padding: 0;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
}

/* Note, on pages tied to IE7 format, entries that use [type="text"], etc. will not be visible in Internet Explorer. */
INPUT[type="text"], INPUT[type="password"] {
    color: #626A6D;
    font-size: 12pt;
    padding: 0 15px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    height: 36px;
}

INPUT[type="text"]:focus {
    color: #2D2D2D;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
    INPUT[type="checkbox"],
    INPUT[type="radio"] {
        box-sizing: border-box; /* 1 */
        padding: 0; /* 2 */
    }

    /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
    INPUT[type="search"] {
        -webkit-appearance: textfield; /* 1 */
        box-sizing: content-box; /* 2 */
    }
        /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
        INPUT[type="search"]::-webkit-search-cancel-button,
        INPUT[type="search"]::-webkit-search-decoration {
            -webkit-appearance: none;
        }

    /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
    INPUT[type="number"]::-webkit-inner-spin-button,
    INPUT[type="number"]::-webkit-outer-spin-button {
        height: auto;
    }

SELECT {
    width: 100%;
    border: 1px solid #DDDDDD;
    color: #626A6D;
    font-size: 12pt;
    padding: 0 2px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    height: 24px;
    text-transform: none;
    z-index: 0;
}

TEXTAREA {
    height: auto;
    min-height: 50px;
    overflow: auto; /* Remove default vertical scrollbar in IE 8/9/10/11. */
}

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 *
 *
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
BUTTON,
INPUT,
OPTGROUP,
SELECT,
TEXTAREA {
    color: inherit; /* 1 */
    font: inherit; /* 2 */
    margin: 0; /* 3 */
}

    /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

    /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
    INPUT[type="button"],
    INPUT[type="reset"],
    INPUT[type="submit"] {
        -webkit-appearance: button; /* 2 */
        cursor: pointer; /* 3 */
        border: none;
    }

    /* Re-set default cursor for disabled elements. */
    BUTTON[disabled], INPUT[disabled] {
        cursor: default;
        background-color: #EEEEEE;
    }

    /* Remove inner padding and border in Firefox 4+. */
    BUTTON::-moz-focus-inner,
    INPUT::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

/* These next three are not used by SE7. 
FIELDSET {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

LEGEND {
	border: 0;    /* Correct `color` not being inherited in IE 8/9/10/11. *
	padding: 0;    /* Remove padding so people aren't caught out if they zero out fieldsets. *
}


 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 *
OPTGROUP {
	font-weight: bold;
}
*/

/* Other elements */

/* Address differences between Firefox and other browsers. */
HR {
    box-sizing: content-box;
    height: 0;
}

IMG {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    /* Remove border when inside `a` element in IE 8/9/10. */
    border: 0;
}

/* Remove most spacing between table cells. */
TABLE {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

TD, TH {
    padding: 0;
    font-size: 10pt;
    color: #2D2D2D;
}

UL {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* #endregion Global Element Styling */

/* #region HTML5 display definitions */
/*   ==========================================================================
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}

    /*
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
    audio:not([controls]) {
        display: none;
        height: 0;
    }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
    display: none;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
    font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
    background: #ff0;
    color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
    margin: 1em 40px;
}

/* #endregion HTML5 display definitions */

/* #region CoreLogic Colors */
/* CL Style Guide: Light blue #62B5E5 , Warm gray #8C8279, Warm Gray #6E6259, Light Gray #F1F0EB */
/* CL Design Lab: Blue #006699, Orange #F47D1C, Dark Grey #2D2D2D, Medium Grey #626A6D, Light Grey #EEEEEE, Lightest Grey #F3F5F5, Alert Red #DB421F , Alert Green #6A9B16 */

.cl-color-blue {
    color: #006699;
}

.cl-color-orange {
    color: #F47D1C;
}

.cl-color-darkgrey {
    color: #2D2D2D;
}

.cl-color-mediumgrey {
    color: #626A6D;
}

.cl-color-lightgrey {
    color: #EEEEEE;
}

.cl-color-lightestgrey {
    color: #F3F5F5;
}

.cl-color-green {
    color: #6A9B16;
}

.cl-color-red {
    color: #DB421F;
}

/* #endregion CoreLogic Colors */

/* #region Global Classes - apply to multiple element types */
/* Note, many of these are not really global and should be moved.  Others are not in use. */

.linkButtons A {
    display: inline;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
}

    .linkButtons A:hover {
        color: white; /* Do not show blue text. */
    }

.med_Width {
    height: 30px;
    line-height: 30px;
    width: 130px;
    margin: 0px 20px;
}

.wide_Width {
    width: 325px;
}

.clearfix {
	*zoom: 1;
}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

/* Layout  */
.mainWindow {
    width: 900px !important; /* used to be 723 */
}

.mainFooter {
    width: 900px; /* Should be larger than mainWindow. */
    margin: 16px;
    text-align: center;
    font-size: 12pt;
}

/* These "cl-" classes currently support the login page only. */
.cl-inner-block {
    background: #fff;
    max-width: 1050px;
    padding: 30px 60px 10px 60px;
    margin-bottom: 40px;
    overflow: auto;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -webkit-box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.07);
}

.cl-app-logo {
    margin: 0 0 25px 0;
    font-size: 22pt;
    line-height: 36px;
}

.cl-row {
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}

    .cl-row:before, .cl-row:after {
        content: " ";
        display: table;
    }

    .cl-row:after {
        clear: both;
    }

    .cl-row .cl-row {
        margin: 0 -0.9375em;
        max-width: none;
        width: auto;
    }

.cl-column,
.cl-columns {
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    float: left;
}

    .cl-column + .cl-column:last-child,
    .cl-columns + .cl-columns:last-child {
        float: right;
    }

    .cl-column + .cl-column.end,
    .cl-columns + .cl-columns.end {
        float: left;
    }

.cl-offset-1 {
    padding-left: 8.33333% !important;
}

.cl-left-block {
    max-width: 400px;
}

.cl-right-block {
    /* Placeholder */
}

.cl-error {
    color: red;
    white-space: pre-line;
}

.cl-image {
    position: absolute;
    top: 40px;
    right: -15px;
    background: transparent !important;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    overflow: hidden;
    -webkit-box-shadow: 0px 6px 21px 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 6px 21px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 6px 21px 5px rgba(0, 0, 0, 0.15);
}

    .cl-image IMG {
        background: transparent !important;
    }

/* Classes for grids */
.clsGrid {
    border-right: thin inset;
    border-top: thin inset;
    overflow: scroll;
    border-left: thin inset;
    width: 100%;
    border-bottom: thin inset;
}

.clsGridRow {
    border: #626A6D 1px solid;
}

.clsGridRowHeader {
    background-color: #62B5E5;
}

    .clsGridRowHeader TD, .clsGridRowHeader TH,
    .clsGridRowHeader A {
        color: black !important;
        font-weight: bold !important;
    }

.clsGridRowEven {
    background-color: #F3F5F5;
}

.clsGridRowOdd {
    background-color: #DDDDDD;
}

.clsGridRowFooter {
    background-color: #62B5E5;
}

.clsGridRowHover TD {
    cursor: hand;
    background-color: #BFDCFF; /* TO DO: Change legacy color. */
}

.clsGridRowHighlight TD {
    cursor: hand;
    color: white;
    background-color: #1B57A6; /* TO DO: Change legacy color. */
}

.clsGridRowHeader TD, .clsGridRowHeader TH,
.clsGridRowEven TD,
.clsGridRowOdd TD,
.clsGridRowHover TD,
.clsGridRowHighlight TD {
    padding: 2px;
    text-align: left;
}


/* For the Forgotten Password page. */
.cl-validator {
    color: #DB421F !important;
}

.innerWindow {
    background-color: white;
}

.popupBorder {
    border: 2px solid #006699;
}

/* #endregion Global Classes */

/* #region Element-specific Style Classes */
DIV.sampleHeader {
    font-size: 12pt;
    font-weight: bold;
    height: 30px;
    vertical-align: bottom;
    text-align: left;
    background-color: white;
    position: relative;
    top: 6px;
    left: 20px;
}

FIELDSET.tutorial {
    background-color: white;
    height: 90%;
    width: 90%;
    border: 2px solid #006699;
    /* margin-top: 5%; removed because it wasn't working in IE. */
    margin-left: 5%;
    position: relative;
}

FIELDSET.tutorial LEGEND {
    background-color: white;
    font-weight: bold;
    font-size: 12pt;
    position: absolute;
    top: -1.0em;
    left: 1.0em;
}

SPAN.spacer {
    margin-left: 8px;
    margin-right: 8px;
}

SPAN.required {
    font-weight: bold;
    color: red;    /* Matches cl-error */
    font-size: 13pt;
    line-height: 13px;
}

SPAN.noM {
    margin-right: 0px !important;
}

TD.docList {
    font-size: 12pt;
}

TD.docList P {
    margin-top: 100px;
}

TD.docList A {
    color: #006699; /* formerly blue, #0000FF; */
    font-size: 12pt;
    font-weight: bold;
    margin-left: 60px;
    text-decoration: underline; 
}

TD.docList SPAN {
    font-size: 13pt;
    font-weight: bold;
    margin-left: 30px;
}

/* #endregion Element-specific Style Classes */

/* #region Frame styling */
#cl-header {
    padding: 45px 0 45px;
    text-align: center;
}

HEADER #cl-logo {
    margin: 0 auto;
    display: block;
    width: 234px;
    height: 67px;
}

#cl-header-loggedin {
    margin: 0 5px;
}

    #cl-header-loggedin:after {
        clear: both;
    }

    #cl-header-loggedin div {
        display: inline-block;
        overflow: hidden;
        padding-top: 25px;
        padding-bottom: 30px;
        padding-right: 0px;
    }

#cl-header-left {
    float: left;
    padding-left: 25px;
}

#cl-header-right {
    float: right;
    padding-left: 0px;
}

#cl_header_logo {
    height: 67px;
    margin-top: 5px;
}

#cl-header-se-logo {
    width: 380px;
    height: 72px;
}

#cl-menu-loggedin {
    background-color: #006699;
    color: white;
    text-transform: uppercase;
    font-size: 12pt;
    height: 30px;
    line-height: 30px;
    margin: 0px;
}

    #cl-menu-loggedin a {
        color: white;
    }

    #cl-menu-loggedin:after {
        clear: both;
    }

    #cl-menu-loggedin li {
        float: right;
        display: inline-block;
        padding: 1px 20px;
        margin: 0px;
    }

#cl-menu-loggedout {
    background-color: #006699;
    color: white;
    text-transform: uppercase;
    font-size: 13pt;
    height: 30px;
    line-height: 30px;
}

    #cl-menu-loggedout a {
        color: white;
    }

    #cl-menu-loggedout:after {
        clear: both;
    }

    #cl-menu-loggedout li {
        display: inline-block;
        padding: 1px 10px;
        margin: 0;
    }

        #cl-menu-loggedout li:nth-child(1),
        #cl-menu-loggedout li:nth-child(2),
        #cl-menu-loggedout li:nth-child(3) {
            float: left;
        }

        #cl-menu-loggedout li:nth-child(4),
        #cl-menu-loggedout li:nth-child(5) {
            float: right;
        }


#cl-menu-signup {
    background-color: #006699;
    color: white;
    text-transform: none;
    font-size: 13pt;
    height: 30px;
    line-height: 30px;
}

    #cl-menu-signup a {
        color: white;
    }

    #cl-menu-signup:after {
        clear: both;
    }

    #cl-menu-signup li {
        display: inline-block;
        padding: 1px 10px;
        margin: 0;
    }


        #cl-menu-signup li:nth-child(1) {
            float: right;
        }
SECTION#ContentContainer {
    border: 3px solid #006699;
    border-top: none;
    margin: 0px;
}

FOOTER {
    text-align: center;
}

    FOOTER #copyright {
        line-height: 1em;
        padding: 0;
    }

    FOOTER UL {
        margin: 0;
        padding: 0;
    }

        FOOTER UL LI {
            color: #17A2E3;
            margin: 0 2px;
            letter-spacing: .2px;
            display: inline;
        }

/* #endregion Frame Styling */

/* #region Content-specific styling */
/* #region Login Page */
#cl-marketing {
    width: 554px;
    height: 397px;
    background-image: url('../images/SE7_Login_Picture.png');
}

#marketing-text {
    width: 320px;
    padding-top: 60px;
    padding-left: 20px;
    vertical-align: middle;
    color: white;
    font-size: 22pt;
    font-weight: bold;
}

#marketing-small-text {
    font-size: 16pt;
    font-weight: normal;
    padding-left: 0px;
}

#se-join-msg {
    font-size: 13.5pt;
    text-align: center;
    margin: 0;
}

#login-form LABEL {
    display: block;
    margin-bottom: 9px;
}

    #login-form LABEL SPAN {
        float: right;
    }

#login-form .form-field {
    margin-bottom: 10px;
    clear: both;
}

    #login-form .form-field .button {
        margin: 15px 0 30px 0;
    }

#login-form .form-field--last {
    margin-bottom: 0;
}

    #login-form .form-field--last .button {
        margin: 15px 0;
    }

#login-form INPUT[type="text"],
#login-form INPUT[type="password"] {
    width: 100%;
    padding: 8px 16px;
    font-weight: 300;
}

#login-form INPUT::-webkit-input-placeholder {
    color: #626A6D;
}

#login-form INPUT:-moz-placeholder {
    /* Firefox 18- */
    color: #626A6D;
}

#login-form INPUT::-moz-placeholder {
    /* Firefox 19+ */
    color: #626A6D;
}

#login-form INPUT:-ms-input-placeholder {
    color: #626A6D;
}

#login-form INPUT[type="text"]:focus {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
}

#login-form INPUT[type="submit"] {
    -webkit-box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.07);
}

/* #endregion Login Page */

/* #region Landing Page */
#content-newestimate > DIV {
    border: 2px solid #626A6D;
    margin: 8px;
}

    #content-newestimate > DIV > DIV {
        padding-left: 10px;
        padding-bottom: 20px;
    }

        #content-newestimate > DIV > DIV:nth-child(1),
        #content-newestimate > DIV > DIV:nth-child(2) {
            border-bottom: 2px solid #626A6D;
        }

    #content-newestimate > DIV H2 {
        padding-left: 10px;
    }

#content-newestimate > P {
    padding-left: 10px;
    font-size: 12pt;
}

#content-newestimate > DIV A {
    padding-left: 20px;
    font-size: 12pt;
}

#content-landing-table {
    border-collapse: collapse;
    width: 100%;
}

    #content-landing-table TD {
        font-size: 12pt;
        padding: 5px 20px;
    }

/* #endregion Landing Page */

/* #region Forgotten Password Page */

#content-forgotten-password {
    padding: 0 15px 15px 15px;
}

    #content-forgotten-password LABEL {
        float: left;
        width: 220px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    #content-forgotten-password INPUT[type="text"] {
        width: 300px;
        float: left;
    }

    #content-forgotten-password INPUT[type="submit"] {
        display: inline-block;
        -moz-min-width: 100px;
        -ms-min-width: 100px;
        -o-min-width: 100px;
        -webkit-min-width: 100px;
        min-width: 100px;
        width: auto;
        margin-left: 220px;
    }

    #content-forgotten-password FORM:after {
        clear: both;
    }

    #content-forgotten-password H2,
    #content-forgotten-password H3 {
        margin-left: 15px;
    }

    #content-forgotten-password FORM .cl-row {
        margin: 15px;
    }

    #content-forgotten-password DIV[id$=pnlForm] {
        padding-top: 0;
        padding-bottom: 10px;
    }

    #content-forgotten-password DIV[id$=pnlSuccess] p,
    #content-forgotten-password DIV[id$=pnlFailure] p {
        padding-left: 15px;
        padding-right: 15px;
    }

    #content-forgotten-password DIV[id$=pnlForm] p:first-child {
        padding-bottom: 15px;
    }

    #content-forgotten-password FORM .cl-validator {
        padding-top: 8px;
        padding-left: 15px;
        float: left;
    }

/* #endregion Forgotten Password Page */

/* #endregion Content-specific styling */


/* #region Signup Pages */

TABLE.signup TD {
    padding: 12px;
}

TABLE.signup TD P, TABLE.formInfo TD P {
    font-size: 10pt;
    color: black;
}

.admin_title {
	font-weight: bold; 
    font-size: 13pt;
    color: black;
}

.signup_title {
    font-weight: bold;
    font-size: 12pt;
    color: black;
}

TABLE.formInfo TD {
    padding: 2px;
    color: black;
}

TABLE.formInfo INPUT[type="text"],
TABLE.formInfo INPUT[type="password"] {
    height: 20px;
    padding: 1px 5px;
    width: 100%;
    font-size: 10pt;
}

/* #endregion Signup Pages*/

/* #region Administration pages */

#left-menu-admin a {
	font-size: 10pt;
}

#left-menu-admin {
	margin-top: 15px;
}

#left-menu-admin a.disabled {
	cursor: default;
	pointer-events: none;
	color: gray;
}

#left-menu-admin td {
    height: 22px;
	padding-left: 20px;
	text-align: left;
}

.form-label {
	text-align: right;
	padding-right: 15px;
}

.admin-page .form-label a,
.admin-page table.form-row-spacing select {
	font-size: 10pt;
}

.admin-page .form-row-spacing {
	border-spacing: 0 5px;
	border-collapse: separate;
	table-layout: fixed;
}

.admin-page table.form-row-spacing input,
.admin-page table.form-row-spacing select {
	width: 100%;
	height: 20px;
	color: #626A6D;
	padding-left: 5px;
	font-size: 10pt;
}

.admin-page table.form-row-spacing .validator {
	margin-left: 10px;
}

.admin-page table.form-row-spacing .validator-container {
	text-align: left;
	padding-left: 10px;
}

.admin-page input.button.med_Width {
	width: 150px;
}

.admin-page .info-message {
    height: 30px;
	vertical-align: top;
	text-align: left;
}

.admin-page-title {
	width: 100%;
	text-align: left;
	font-size: 16pt;
    color: #2D2D2D;
    font-weight: bold;
	padding: 15px 20px 0 20px;
}

.admin-page .button-container {
	padding-top: 10px;
	padding-bottom: 20px;
	text-align: center;
}

.title_message {
    display: inline-block;
    margin-top: 10pt;
}

/* #endregion Administration pages */

/* #region Custom Components pages */

.cc-page {
	font-family: Lato;
}

.cc-page .button {
    padding: 0;
	/*margin: 0; */
    height: 30px;
    vertical-align: middle;
    line-height: normal;
}

.cc-page .button-secondary {
    background-color: lightgrey;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    color: #2d2d2d;
}

.cc-page .clsContentTable {
	padding: 0 20px 0 20px;
	text-align: left;
	margin: 0 auto;
}

.cc-page h2 {
	margin: 0;
	padding: 0.67em 0;
}

.cc-page input.input,
.cc-page select.input {
	height: 20px;
	color: #626A6D;
	padding-left: 5px;
	font-size: 10pt;
}

.cc-page .margin-l,
.cc-page input.margin-l,
.cc-page select.margin-l {
	margin-left: 5px;
}

.cc-page .margin-r,
.cc-page input.margin-r,
.cc-page select.margin-r {
	margin-right: 5px;
}

.cc-page .margin-b,
.cc-page input.margin-b,
.cc-page select.margin-b {
	margin-bottom: 5px;
}

.cc-page .margin-lr,
.cc-page input.margins-lr,
.cc-page select.margins-lr {
	margin-left: 5px;
	margin-right: 5px;
}

input.width-large,
select.width-large {
	width: 285px;
}

.cc-page input.width-md,
.cc-page select.width-md {
	width: 130px;
}

.cc-page #txtCode {
	width: 200px;
}

.cc-page select.large {
	width: 150px;
}

.cc-page input.width-sm,
.cc-page select.width-sm {
	width: 53px;
}

.cc-page .valign-middle {
	vertical-align: middle;
}

#cc-default-content td {
	text-align: left;
}

.cc-page .align-r {
	text-align: right;
}

.cc-page .align-l {
	text-align: left;
}

#cl-header-loggedin.cc-page ,
#cl-menu-loggedin.cc-page {
	max-width: 900px !important; /* used to be 723 */
}

#cboSort1, #cboSort2, #cboSort3 {
    width: 125px;
}

.cc-page #tblComponents {
	width: 100%;
}

.cc-page .form-row-spacing {
	border-spacing: 0 5px;
	border-collapse: separate;
	table-layout: fixed;
}

.force-wrap {
    word-wrap: break-word;
}

#cc-page-error p {
	font-size: 10pt;
}

#cc-page-edit input.width-md,
#cc-page-edit select.width-md {
	width: 200px;
}

#cc-page-edit input.width-sm,
#cc-page-edit select.width-sm {
	width: 50px;
}

#cc-page-edit .clsContentTable {
	margin: 0 20px;
}

.btn-like-a-element {
    text-decoration: none;
    color: #006699;
    /* Remove the gray background color from active links in IE 10. */
    background-color: transparent;
    font-size: inherit;
    white-space: nowrap;
}
/* #endregion Custom Components pages */

/* #region Dynamic Media Styling */

@media (min-width: 500px) and (max-width: 1151px) {
    .left-block {
        width: 100%;
    }

    .hide-mobile {
        display: none;
    }
}

@media (min-width: 1152px) {
    .cl-column,
    .left-block {
        width: 41.66667%;
    }

    .right-block {
        width: 58.33333%;
    }
}

@media (max-width: 499px) {
    .inner-block {
        padding: 30px 30px 10px 30px;
    }
}

@media (min-width: 500px) and (max-width: 1151px) {
    .inner-block {
        max-width: 500px;
        margin: 0 auto 40px auto;
        padding: 30px 60px 10px 60px !important;
    }
}

@media (max-width: 499px) {
    .hide-mobile {
        display: none;
    }

    #cl-header {
        padding-top: 45px;
    }
}

@media (min-width: 640px) and (max-width: 900px) {
    #content-forgotten-password form .cl-validator {
        padding-left: 220px;
    }
}

@media (max-width: 639px) {
    #content-forgotten-password form .cl-validator {
        padding-left: 0;
    }

    #content-forgotten-password input[type="submit"] {
        margin-left: 0;
    }

    #content-forgotten-password input[type="text"] {
        width: 95%;
    }
}

/* #endregion Dynamic Media Styling */
