﻿@charset "UTF-8";
/* apply a natural box layout model to all elements, but allowing components to change */
html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/**
 * Remove default margin.
 */
body {
    margin: 0;
}

/* 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/11, Safari, and Firefox < 22.
 */
[hidden],
template {
    display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
    background-color: transparent;
}

    /**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
    a:active,
    a:hover {
        outline: 0;
    }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
    font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * 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;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
    border: 0;
}

/**
 * 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;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
    box-sizing: content-box;
    height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * 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 `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
    overflow: visible;
}

/**
 * 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.
 */
button,
select {
    text-transform: none;
}

/**
 * 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.
 */
button,
html input[type="button"], input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
}

    /**
 * Re-set default cursor for disabled elements.
 */
    button[disabled],
    html input[disabled] {
        cursor: default;
    }

    /**
 * Remove inner padding and border in Firefox 4+.
 */
    button::-moz-focus-inner,
    input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
    line-height: normal;
}

    /**
 * 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 */
    }

    /**
 * 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;
    }

    /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
    input[type="search"] {
        -webkit-appearance: textfield;
        /* 1 */
        /* 2 */
        box-sizing: content-box;
    }

        /**
 * 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;
        }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
    overflow: auto;
}

/**
 * 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;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
.att-prim-blue-bg {
    background-color: #0065A4 !important;
}

.att-prim-black-bg {
    background-color: #000 !important;
}

.att-prim-white-bg {
    background-color: #fff !important;
}

.att-prim-orange-bg {
    background-color: #ea7400 !important;
}

.att-func-blue-bg {
    background-color: #0568ae !important;
}

.att-func-red-bg {
    background-color: #cf2a2a !important;
}

.att-func-yellow-bg {
    background-color: #ffb81c !important;
}

.att-func-green-bg {
    background-color: #007a3e !important;
}

.att-func-black-bg {
    background-color: #181819 !important;
}

.att-func-bggray-bg {
    background-color: #f2f2f3 !important;
}

.att-sec-ltblue-bg {
    background-color: #71c5e8 !important;
}

.att-sec-dkblue-bg {
    background-color: #0568ae !important;
}

.att-sec-ltgray-bg {
    background-color: #d2d2d2 !important;
}

.att-sec-gray-bg {
    background-color: #959595 !important;
}

.att-sec-dkgray-bg {
    background-color: #5a5a5a !important;
}

.att-sec-yellow-bg {
    background-color: #ffb81c !important;
}

.att-sec-ltgreen-bg {
    background-color: #b5bd00 !important;
}

.att-sec-green-bg {
    background-color: #4ca90c !important;
}

.att-sec-dkgreen-bg {
    background-color: #007a3e !important;
}

.att-sec-ltpurple-bg {
    background-color: #caa2dd !important;
}

.att-sec-purple-bg {
    background-color: #9063cd !important;
}

.att-sec-dkpurple-bg {
    background-color: #702f8a !important;
}

.att-sec-ltblue-bg-lighten {
    background-color: #d2ecf8 !important;
}

.att-sec-dkblue-bg-lighten {
    background-color: #bfe3fd !important;
}

.att-sec-dkblue-bg-xlighten {
    background-color: #e2f3ff !important;
}

.att-sec-ltgray-bg-lighten {
    background-color: #f1f1f1 !important;
}

.att-sec-gray-bg-lighten {
    background-color: #d5d5d5 !important;
}

.att-sec-dkgray-bg-lighten {
    background-color: #9a9a9a !important;
}

.att-sec-yellow-bg-lighten {
    background-color: #ffeec9 !important;
}

.att-sec-ltgreen-bg-lighten {
    background-color: #fcffbd !important;
}

.att-sec-green-bg-lighten {
    background-color: #8af243 !important;
}

.att-sec-dkgreen-bg-lighten {
    background-color: #d6ffeb !important;
}

.att-sec-ltpurple-bg-lighten {
    background-color: white !important;
}

.att-sec-purple-bg-lighten {
    background-color: #d5c4ec !important;
}

.att-sec-dkpurple-bg-lighten {
    background-color: #b16ccd !important;
}

.grid-2col-wrap {
    *zoom: 1;
}

    .grid-2col-wrap:before, .grid-2col-wrap:after {
        content: '';
        display: table;
    }

    .grid-2col-wrap:after {
        clear: both;
    }

    .grid-2col-wrap .grid-col {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        margin-left: 0%;
        margin-right: 0%;
    }

        .grid-2col-wrap .grid-col:before, .grid-2col-wrap .grid-col:after {
            content: '';
            display: table;
        }

        .grid-2col-wrap .grid-col:after {
            clear: both;
        }

        .grid-2col-wrap .grid-col:last-child {
            margin-right: 0%;
        }

@media (min-width: 900px), print {
    .grid-2col-wrap .grid-col {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 47.5%;
        margin-left: 0%;
        margin-right: 5%;
    }

        .grid-2col-wrap .grid-col:before, .grid-2col-wrap .grid-col:after {
            content: '';
            display: table;
        }

        .grid-2col-wrap .grid-col:after {
            clear: both;
        }

        .grid-2col-wrap .grid-col:last-child {
            margin-right: 0%;
        }
}

.grid-2col-60-40-nomobile-wrap {
    *zoom: 1;
}

    .grid-2col-60-40-nomobile-wrap:before, .grid-2col-60-40-nomobile-wrap:after {
        content: '';
        display: table;
    }

    .grid-2col-60-40-nomobile-wrap:after {
        clear: both;
    }

    .grid-2col-60-40-nomobile-wrap .grid-col {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 38.8%;
        margin-left: 0%;
        margin-right: 2%;
    }

        .grid-2col-60-40-nomobile-wrap .grid-col:before, .grid-2col-60-40-nomobile-wrap .grid-col:after {
            content: '';
            display: table;
        }

        .grid-2col-60-40-nomobile-wrap .grid-col:after {
            clear: both;
        }

        .grid-2col-60-40-nomobile-wrap .grid-col:last-child {
            margin-right: 0%;
        }

        .grid-2col-60-40-nomobile-wrap .grid-col:last-of-type {
            *zoom: 1;
            float: left;
            clear: none;
            text-align: inherit;
            padding-left: 0;
            padding-right: 0;
            width: 59.2%;
            margin-left: 0%;
            margin-right: 2%;
        }

            .grid-2col-60-40-nomobile-wrap .grid-col:last-of-type:before, .grid-2col-60-40-nomobile-wrap .grid-col:last-of-type:after {
                content: '';
                display: table;
            }

            .grid-2col-60-40-nomobile-wrap .grid-col:last-of-type:after {
                clear: both;
            }

            .grid-2col-60-40-nomobile-wrap .grid-col:last-of-type:last-child {
                margin-right: 0%;
            }

.grid-3col-wrap {
    *zoom: 1;
}

    .grid-3col-wrap:before, .grid-3col-wrap:after {
        content: '';
        display: table;
    }

    .grid-3col-wrap:after {
        clear: both;
    }

    .grid-3col-wrap .grid-col {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        margin-left: 0%;
        margin-right: 0%;
    }

        .grid-3col-wrap .grid-col:before, .grid-3col-wrap .grid-col:after {
            content: '';
            display: table;
        }

        .grid-3col-wrap .grid-col:after {
            clear: both;
        }

        .grid-3col-wrap .grid-col:last-child {
            margin-right: 0%;
        }

@media (min-width: 900px), print {
    .grid-3col-wrap .grid-col {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 30%;
        margin-left: 0%;
        margin-right: 5%;
    }

        .grid-3col-wrap .grid-col:before, .grid-3col-wrap .grid-col:after {
            content: '';
            display: table;
        }

        .grid-3col-wrap .grid-col:after {
            clear: both;
        }

        .grid-3col-wrap .grid-col:last-child {
            margin-right: 0%;
        }
}

@media (min-width: 900px), print {
    .grid-3col-wrap .grid-col.grid-col-2-3 {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 65%;
        margin-left: 0%;
        margin-right: 5%;
    }

        .grid-3col-wrap .grid-col.grid-col-2-3:before, .grid-3col-wrap .grid-col.grid-col-2-3:after {
            content: '';
            display: table;
        }

        .grid-3col-wrap .grid-col.grid-col-2-3:after {
            clear: both;
        }

        .grid-3col-wrap .grid-col.grid-col-2-3:last-child {
            margin-right: 0%;
        }
}

.grid-4col-wrap {
    *zoom: 1;
}

    .grid-4col-wrap:before, .grid-4col-wrap:after {
        content: '';
        display: table;
    }

    .grid-4col-wrap:after {
        clear: both;
    }

    .grid-4col-wrap .grid-col {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        margin-left: 0%;
        margin-right: 0%;
    }

        .grid-4col-wrap .grid-col:before, .grid-4col-wrap .grid-col:after {
            content: '';
            display: table;
        }

        .grid-4col-wrap .grid-col:after {
            clear: both;
        }

        .grid-4col-wrap .grid-col:last-child {
            margin-right: 0%;
        }

@media (min-width: 900px), print {
    .grid-4col-wrap .grid-col {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 21.25%;
        margin-left: 0%;
        margin-right: 5%;
    }

        .grid-4col-wrap .grid-col:before, .grid-4col-wrap .grid-col:after {
            content: '';
            display: table;
        }

        .grid-4col-wrap .grid-col:after {
            clear: both;
        }

        .grid-4col-wrap .grid-col:last-child {
            margin-right: 0%;
        }
}

/*! HTML5 Boilerplate v5.0 | MIT License | http://h5bp.com/ */
html {
    color: #222;
    font-size: 1.1em;
    line-height: 1;
    font-family: 'ATT Aleck CD', Georgia, Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

h4, h5, h6 {
    margin: 15px 0px;
}

h4 {
    font-weight: bold;
}

h5 {
    font-size: 16px;
    color: #009ede;
}

h6 {
    font-size: 14px;
    color: #666;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Fonts
   ========================================================================== */
/*@font-face{ 
    font-family: 'Aleck-Black';
    src: url('fonts/aleck/ATTAleckSans_W_Bk.woff') format('woff'),
         url('fonts/aleck/ATTAleckSans_W_Bk.woff2') format('woff2'),
         url('fonts/aleck/ATTAleckSans_W_Bk.ttf') format('truetype');
}

@font-face{ 
    font-family: 'Aleck-Black-Italic';
    src: url('fonts/aleck/ATTAleckSans_W_BkIt.woff') format('woff'),
         url('fonts/aleck/ATTAleckSans_W_BkIt.woff2') format('woff2'),
         url('fonts/aleck/ATTAleckSans_W_BkIt.ttf') format('truetype');
} */
@font-face {
    font-family: 'Aleck-Regular';
    src: url("fonts/aleck/ATTAleckSans_W_Rg.woff") format("woff"), url("fonts/aleck/ATTAleckSans_W_Rg.woff2") format("woff2"), url("fonts/aleck/ATTAleckSans_W_Rg.ttf") format("truetype");
}

/*
@font-face{ 
    font-family: 'Aleck-Regular-Italic';
    src: url('fonts/aleck/ATTAleckSans_W_It.woff') format('woff'),
         url('fonts/aleck/ATTAleckSans_W_It.woff2') format('woff2'),
         url('fonts/aleck/ATTAleckSans_W_It.ttf') format('truetype');
}   
*/
@font-face {
    font-family: 'Aleck-Thin';
    src: url("fonts/aleck/ATTAleckSans_W_Th.woff") format("woff"), url("fonts/aleck/ATTAleckSans_W_Th.woff2") format("woff2"), url("fonts/aleck/ATTAleckSans_W_Th.ttf") format("truetype");
}

/*@font-face{ 
    font-family: 'Aleck-Thin-Italic';
    src: url('fonts/aleck/ATTAleckSans_W_ThIt.woff') format('woff'),
         url('fonts/aleck/ATTAleckSans_W_ThIt.woff2') format('woff2'),
         url('fonts/aleck/ATTAleckSans_W_ThIt.ttf') format('truetype');
}   
*/
/*
@font-face{ 
    font-family: 'Aleck-Cd-Bold';
    src: url('fonts/aleckcd/ATTAleckCd_W_Bd.woff') format('woff'),
         url('fonts/aleckcd/ATTAleckCd_W_Bd.woff2') format('woff2'),
}

@font-face{ 
    font-family: 'Aleck-Cd-Bold-Italic';
    src: url('fonts/aleckcd/ATTAleckCd_W_BdIt.woff') format('woff'),
         url('fonts/aleckcd/ATTAleckCd_W_BdIt.woff2') format('woff2'),
}

@font-face{ 
    font-family: 'Aleck-Cd-Italic';
    src: url('fonts/aleckcd/ATTAleckCd_W_It.woff') format('woff'),
         url('fonts/aleckcd/ATTAleckCd_W_It.woff2') format('woff2'),
}
*/
@font-face {
    font-family: 'ATT Aleck CD';
    src: url("fonts/aleckcd/ATTAleckCd_W_Rg.woff") format("woff"), url("fonts/aleckcd/ATTAleckCd_W_Rg.woff2") format("woff2");
}

/* ===== Initializr Styles ==================================================
   Author: Jonathan Verrecchia - verekia.com/initializr/responsive-template
   ========================================================================== */
/* ===================
    ALL: Orange Theme
   =================== */
header {
    border-bottom: 20px solid #e44d26;
}

.footer-container,
.main aside {
    border-top: 20px solid #e44d26;
}

header,
.footer-container,
.main aside {
    background: #f16529;
}

.title {
    color: white;
}

/* ==============
    MOBILE: Main
   ============== */
.footer-container footer {
    color: white;
    padding: 20px 0;
}

/* ===============
    ALL: IE Fixes
   =============== */
.ie7 .title {
    padding-top: 20px;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* Main Structures */
.uses-banner .banner {
    max-width: 1300px;
    max-height: 400px;
    overflow: hidden;
    margin: 0px auto;
    width: 100%;
}

    .uses-banner .banner img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

.main-container {
    background-color: #f2f2f2;
    margin: 0px auto;
}

    .main-container .main-wrapper {
        box-sizing: border-box;
        max-width: 600px;
    }

        .main-container .main-wrapper .column-1,
        .main-container .main-wrapper .column-2,
        .main-container .main-wrapper .column-3,
        .main-container .main-wrapper .column-4 {
            box-sizing: border-box;
            padding-left: 20px;
            padding-right: 20px;
            position: relative;
            z-index: 999;
        }

.three-column .main-container .main-wrapper .column-1 > .component .intro.carousel,
.three-column .main-container .main-wrapper .column-1 .column-3,
.three-column .main-container .main-wrapper .column-1 .column-4 {
    padding-left: 15px;
    padding-right: 15px;
}

.main-container .main-wrapper .column-1 {
    padding-top: 15px;
}

/* Banner Page Styles */
.uses-banner .main-container .main-wrapper .column-1 {
    margin: 0px auto 0px;
}

.component {
    box-sizing: border-box;
    margin-bottom: 4rem;
    /*max-height: 380px;*/
}

    .component .component-wrapper {
        background-color: #fff;
        position: relative;
        padding: 20px;
        box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.1);
    }

.lt-ie9 .component .component-wrapper {
    border: 1px solid #ccc;
}

.component-sm {
    box-sizing: border-box;
    margin-bottom: 1rem;
}

.component-sm .component-wrapper {
    background-color: #fff;
    position: relative;
    padding: 10px 20px 10px 30px;
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.1);
    background: #ffd7dc;
}

    .component-sm .component-wrapper-notice {
        background-color: #fff;
        position: relative;
        padding: 10px 20px 10px 30px;
        box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.1);
        background: #FFFFCC;
    }


.component .component-wrapper .component-content {
    position: relative;
    width: 100%;
}

.component h2:not(.no-component) {
    border-bottom: 1px solid #000;
    display: block;
    font-size: 20px;
    line-height: 1.2;
    margin: 0 0 25px;
    padding-bottom: 20px;
    width: 100%;
} .component p, .component li, .component a {
    line-height: 1.25;
} .component ul {
    padding: 0px 0px 0px 15px;
} .component ul li {
        margin: 0px 0px 10px;
    } .component img {
    border: 1px solid #000;
    margin-bottom: 10px;
    max-width: 100%;
} .component img.align-left {
        margin: 0 15px 10px 0;
    } .component a {
    text-decoration: none;
    color: #0568ae;
} .component a.more {
        /*background: url('../img/more_caret.png') no-repeat 0 center;*/
        display: inline-block;
        position: relative;
        padding-left: 15px;
        font-size: 1em;
    } .component a.more:before {
            content: ">";
            position: absolute;
            display: inline;
            left: 0;
            top: 0;
        } .component .author, .component .timestamp {
    font-weight: bold;
    font-size: 13px;
} .component .author + .timestamp {
        border-left: 1px solid #000;
        display: inline-block;
        padding-left: 10px;
        margin-left: 10px;
    } .component .story-options {
    border-top: 1px solid #000;
    margin-top: 25px;
    padding-top: 20px;
    clear: both;
} .component .meta-info {
    margin: 15px 0px;
    clear: both;
} .component .meta-info.tall .author + .timestamp {
        margin-left: 0px;
        padding-left: 0px;
        display: block;
        border: 0px;
    }
/* Intro Styles */
.component .intro p:first-of-type {
    margin-top: 0px;
} .component .intro .featured-image {
    text-align: center;
} .component .intro .featured-image img {
        display: inline-block;
        max-width: 100%;
        border: 0px;
    } .component .carousel .slider {
    position: relative;
    overflow: hidden;
    padding: 0px;
    margin: 0px;
} .component .carousel .slider li {
        position: relative;
        margin-bottom: 0px;
        width: 100%;
    } .component .carousel .slider li a {
            max-width: 100%;
            display: block;
            width: 100%;
            height: 100%;
        } .component .carousel .slider li a img {
                max-width: 100%;
                margin: 0px;
                border: 0px;
            } .component .carousel .cycle-pager {
    border-top: 1px solid #000;
    padding-top: 25px;
    text-align: center;
} .component .carousel .cycle-pager .pager-item {
        display: inline-block;
        vertical-align: middle;
        background-color: #a3a3a3;
        border-radius: 50%;
        cursor: pointer;
        margin: 0 4px;
        width: 8px;
        height: 8px;
    } .component .carousel .cycle-pager .pager-item.cycle-pager-active {
            background-color: #009ede;
            width: 12px;
            height: 12px;
        } .component .carousel .cycle-arrows {
    position: absolute;
    bottom: 20px;
    width: 100%;
} .component .carousel .cycle-prev, .component .carousel .cycle-next {
    background: url("../img/slider_arrows_sprite.png") no-repeat 0 0;
    position: absolute;
    cursor: pointer;
    bottom: -25px;
    width: 12px;
    height: 20px;
} .component .carousel .cycle-prev {
    left: 0;
} .component .carousel .cycle-next {
    background-position: 100% 0;
    right: 0;
} .three-column .main-container .main-wrapper .column-1 > .component .intro.carousel {
    margin-right: -6px;
    margin-left: -6px;
} .component .intro.carousel .slider {
    background-color: #000;
} .component .intro.carousel h2 {
    margin-bottom: 0px;
} .component .intro.carousel h3 {
    border-bottom: 0px;
    margin-bottom: 0px;
    font-size: 18px;
    color: #009fdb;
} .component .intro.carousel .slider {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
} .component .intro.carousel .slider li a img {
        height: auto;
        width: 100%;
    } .component .intro.carousel .overlay {
    box-sizing: border-box;
    background-color: #000;
    padding: 20px;
} .component .intro.carousel .overlay p {
        color: #d2d2d2;
        font-size: 1em;
    } .component .intro.carousel .overlay a.more {
        color: #009fdb;
    } .component .intro.carousel .cycle-pager .pager-item {
    margin: 0 8px;
} .component .intro.carousel.medium {
    position: relative;
} .component .intro.carousel.medium h3 {
        font-size: 24px;
    } .component .intro.carousel.medium .overlay, .component .intro.carousel.large .overlay {
        position: absolute;
        padding: 25px;
        width: 50%;
        right: 0px;
        top: 0px;
    } .component .intro.carousel.large h3 {
    font-size: 30px;
} .component .intro.carousel.large .overlay {
    width: 30%;
} .component .intro.carousel.large .overlay p {
        font-size: 1.1em;
    } .component .intro.carousel.large .cycle-pager .pager-item {
    margin: 0 10px;
}
/* Image Styles */
/* Link List Styles */
.component .list-links ul {
    list-style-image: url("../img/link_caret.jpg");
}
/* News Release Styles */
.component .news-releases article {
    border-top: 1px solid #000;
    padding: 25px 0px;
} .component .news-releases h3 {
    border-bottom: 0 none;
    margin-bottom: 0;
} .component .news-releases article:last-of-type {
    padding-bottom: 0px;
} .component .news-releases .meta-info {
    margin-bottom: 0;
} .component .news-releases .meta-info .more {
        float: right;
    } .component .text-image img, .component .news-releases img {
    display: block;
} .component .text-image.large img, .component .news-releases.large img, .component .tabs.xlarge img, .component .quote.large img {
    margin: 0px 15px 25px 0px;
    max-width: 220px;
    float: left;
} .component .news-releases.large img {
    margin: 0px 15px 0px 0px;
}
/* Tabbed Content Styles */
.component .tabs .nav {
    padding-left: 0;
    margin: 0px auto;
    list-style: none;
} .component .tabs .nav > li {
        position: relative;
        margin-bottom: 0;
        display: block;
    } .component .tabs .nav > li > a {
            position: relative;
            display: block;
            padding: 5px 15px;
        } .component .tabs .nav > li > a:hover, .component .tabs .nav > li > a:focus {
                text-decoration: none;
                background-color: #eee;
            } .component .tabs .nav > li.disabled > a {
            color: #777;
        } .component .tabs .nav > li.disabled > a:hover, .component .tabs .nav > li.disabled > a:focus {
                color: #777;
                text-decoration: none;
                cursor: not-allowed;
                background-color: transparent;
            } .component .tabs .nav .open > a, .component .tabs .nav .open > a:hover, .component .tabs .nav .open > a:focus {
        background-color: #eee;
        border-color: #337ab7;
    } .component .tabs .nav .nav-divider {
        height: 1px;
        margin: 9px 0;
        overflow: hidden;
        background-color: #e5e5e5;
    } .component .tabs .nav > li > a > img {
        max-width: none;
    } .component .tabs .component ul.nav-tabs {
    margin: 0px;
    padding: 0px;
} .component .tabs .nav-tabs ul.nav-tabs > li {
    float: left;
    margin-bottom: -1px;
} .component .tabs .nav-tabs > li > a {
    line-height: 1.42857143;
    border: 1px solid transparent;
    background-color: #909090;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
} .component .tabs .nav-tabs > li > a:hover {
        background-color: #666;
    } .component .tabs .nav-tabs > li.active > a, .component .tabs .nav-tabs > li.active > a:hover, .component .tabs .nav-tabs > li.active > a:focus {
    color: #909090;
    cursor: default;
    background-color: #fff;
    border-bottom-color: transparent;
} .component .tabs .nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0;
} .component .tabs .nav-tabs.nav-justified > li {
        float: none;
    } .component .tabs .nav-tabs.nav-justified > li > a {
            margin-bottom: 0px;
            text-align: center;
        } .component .tabs .tab-wrap {
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-topright: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border: 1px solid #000;
    overflow: hidden;
} .component .tabs .tab-wrap .tab {
        padding: 20px;
        display: none;
    } .component .tabs .tab-wrap .tab.active {
            display: block;
        } .component .tabs .tab-wrap .tab p:first-child, .component .tabs.xlarge img + p {
            margin-top: 0px;
        } .component .tabs .tab-wrap .tab img, .component .story-image img {
            margin-bottom: 0px;
        } .component .tabs.large .nav-tabs > li > a {
    margin-left: 1px;
} .component .tabs.large .nav-tabs > li:first-child > a {
    margin-left: 0px;
} .component .tabs.large .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
} .component .tabs.large .nav-tabs.nav-justified > li > a {
        margin-bottom: 0;
    } .component .tabs.xlarge img, .component .quote.large img {
    margin: 0px 15px 15px 0px;
}
/* Video/Image Gallery Styles */
.component .media-gallery .html5gallery, .component .media-gallery .html5gallery-container-0 {
    box-sizing: border-box;
} .component .media-gallery .html5gallery-container-0 {
    background: #000;
} .component .media-gallery .html5gallery-car-0 {
    background-image: none !important;
    background-color: #333 !important;
    border-bottom: 1px solid #111111;
    border-top: 1px solid #555;
}
/* Ad Image Carousel Styles */
.component .ads.carousel h3 {
    margin-bottom: 0px;
} .component .ads.carousel .slider li a {
    text-align: center;
} .component .ads.carousel .slider li a img {
        max-height: 100%;
        width: auto;
    }
/* Story Social Share Styles */
.component .social-story h3 {
    margin-bottom: 15px;
} .component .share {
    margin-top: 10px;
} .component .share h5 {
        font-weight: bold;
        margin: 0px 10px 0px 0px;
        font-size: 15px;
        line-height: 30px;
        color: #333;
    } .component .share .share-buttons {
        max-width: 100px;
    } .component .share .btn-share a {
        background: url("../img/share_sprite.png") no-repeat 0 0;
        display: inline-block;
        margin-bottom: 3px;
        height: 24px;
        width: 24px;
    } .component .share .btn-share .twitter {
        background-position: -24px 0;
    } .component .share .btn-share .linkedin {
        background-position: -48px 0;
    } .component .share .btn-share .google {
        background-position: -72px 0;
    } .component .share .btn-share .pinterest {
        background-position: -96px 0;
    } .component .share .btn-share .tumblr {
        background-position: -120px 0;
    } .component .share .btn-share .email {
        background-position: -144px 0;
    } .component .share.small .share-buttons {
        max-width: 100%;
    } .component .share.small .btn-share a {
        margin-bottom: 0px;
    } .component .share.medium {
        min-width: 295px;
        margin-top: 0px;
        float: right;
    } .component .share.medium h5 {
            line-height: 24px;
            float: left;
        } .component .share.large {
        min-width: 355px;
    } .component .share.large h5 {
            margin: 0 15px 0 0;
        } .component .share.large .btn-share a {
            margin: 0 2px;
        } .component .story-image.large img, .component .social-story.large img {
    margin: 0 20px 15px 0;
    max-width: 45%;
    float: left;
} .component .story-image.large img.align-right, .component .social-story.large img.align-right {
        margin: 0px 0px 15px 20px;
        float: right;
    } .component .story-image.large .meta-info, .component .social-story.large .meta-info {
    clear: none;
}
/* Quote Styles */
.component .quote {
    background-color: #009ede;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 20px;
} .component .quote h3 {
        border-bottom: 0px;
        padding-bottom: 0px;
        color: #fff;
    } .component .quote blockquote {
        margin: 0px 0px 20px 0px;
        line-height: 1.25;
    } .component .quote cite {
        position: relative;
        padding-left: 20px;
        color: #fff;
    } .component .quote cite:before {
            content: "—";
            position: absolute;
            color: #fff;
            left: 0;
            top: 0;
        }
/* Twitter Bootstrap Grid Styles */
.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
} .row {
    margin-right: -15px;
    margin-left: -15px;
    position: relative;
} .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 8px;
    padding-left: 8px;
} .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
} .col-xs-12 {
    width: 100%;
} .col-xs-11 {
    width: 91.66666667%;
} .col-xs-10 {
    width: 83.33333333%;
} .col-xs-9 {
    width: 75%;
} .col-xs-8 {
    width: 66.66666667%;
} .col-xs-7 {
    width: 58.33333333%;
} .col-xs-6 {
    width: 50%;
} .col-xs-5 {
    width: 41.66666667%;
} .col-xs-4 {
    width: 33.33333333%;
} .col-xs-3 {
    width: 25%;
} .col-xs-2 {
    width: 16.66666667%;
} .col-xs-1 {
    width: 8.33333333%;
} .col-xs-pull-12 {
    right: 100%;
} .col-xs-pull-11 {
    right: 91.66666667%;
} .col-xs-pull-10 {
    right: 83.33333333%;
} .col-xs-pull-9 {
    right: 75%;
} .col-xs-pull-8 {
    right: 66.66666667%;
} .col-xs-pull-7 {
    right: 58.33333333%;
} .col-xs-pull-6 {
    right: 50%;
} .col-xs-pull-5 {
    right: 41.66666667%;
} .col-xs-pull-4 {
    right: 33.33333333%;
} .col-xs-pull-3 {
    right: 25%;
} .col-xs-pull-2 {
    right: 16.66666667%;
} .col-xs-pull-1 {
    right: 8.33333333%;
} .col-xs-pull-0 {
    right: auto;
} .col-xs-push-12 {
    left: 100%;
} .col-xs-push-11 {
    left: 91.66666667%;
} .col-xs-push-10 {
    left: 83.33333333%;
} .col-xs-push-9 {
    left: 75%;
} .col-xs-push-8 {
    left: 66.66666667%;
} .col-xs-push-7 {
    left: 58.33333333%;
} .col-xs-push-6 {
    left: 50%;
} .col-xs-push-5 {
    left: 41.66666667%;
} .col-xs-push-4 {
    left: 33.33333333%;
} .col-xs-push-3 {
    left: 25%;
} .col-xs-push-2 {
    left: 16.66666667%;
} .col-xs-push-1 {
    left: 8.33333333%;
} .col-xs-push-0 {
    left: auto;
} .col-xs-offset-12 {
    margin-left: 100%;
} .col-xs-offset-11 {
    margin-left: 91.66666667%;
} .col-xs-offset-10 {
    margin-left: 83.33333333%;
} .col-xs-offset-9 {
    margin-left: 75%;
} .col-xs-offset-8 {
    margin-left: 66.66666667%;
} .col-xs-offset-7 {
    margin-left: 58.33333333%;
} .col-xs-offset-6 {
    margin-left: 50%;
} .col-xs-offset-5 {
    margin-left: 41.66666667%;
} .col-xs-offset-4 {
    margin-left: 33.33333333%;
} .col-xs-offset-3 {
    margin-left: 25%;
} .col-xs-offset-2 {
    margin-left: 16.66666667%;
} .col-xs-offset-1 {
    margin-left: 8.33333333%;
} .col-xs-offset-0 {
    margin-left: 0;
}
/* Global Header Styles */
header {
    background-color: #009ede;
    border-bottom: 0px;
    box-shadow: none;
} header .header-wrapper {
        box-sizing: border-box;
        max-width: 1280px;
        position: relative;
        margin: 0px auto;
        padding: 0px 15px;
        width: 100%;
    } header h1.title {
        font-family: 'Aleck-Thin', 'ATT Aleck Cd', Helvetica, Arial, sans-serif;
        box-sizing: border-box;
        padding: 15px 20px 15px 0px;
        min-height: 48px;
        margin: 0px;
        font-weight: normal;
        font-size: 28px;
    } header h1.title img {
            max-width: 600px;
            height:126px;
        } header #nav-wrapper {
        overflow: hidden;
    } header #InsMasthead {
        margin-bottom: 0px;
    } header #InsMasthead #TopNav {
            list-style-type: none;
            margin: 10px 0px 0px;
            display: none;
            right: 10px;
        } header #InsMasthead #TopNav ul li {
                display: inline-block;
            } header #InsMasthead #TopNav ul li a {
                    text-decoration: none;
                    font-weight: normal;
                    padding: 0.5em 0.75em;
                    font-size: 12px;
                    color: #fff;
                } header #InsMasthead #TopNav ul li:first-child a {
                    padding-left: 0px;
                } header #InsMasthead #subPanelNav {
            min-height: 400px;
            max-width: 970px;
            width: 95%;
        } header #InsMasthead #subPanelNav .panelTop a {
                margin-left: 0px !important;
                box-sizing: border-box;
                display: inline-block;
                padding-left: 25px;
                width: 33%;
            } header #subPanelNav iframe#subPanelFrame {
        margin: 0px;
        width: 100%;
    } nav {
    background-color: #000;
    font-family: 'Aleck-Regular', Arial, Helvetica, sans-serif;
    float: none;
    height: 50px;
    width: 100%;
} nav .nav-wrap, footer .lower-footer .footer-wrap {
        box-sizing: border-box;
        position: relative;
        max-width: 1280px;
        margin: 0px auto;
    } nav ul, footer .footer-nav {
        font-family: 'Aleck-Regular', Arial, Helvetica, sans-serif;
        list-style-type: none;
        display: none;
        margin: 0;
        padding: 0;
    } nav ul {
        background-color: #000;
        position: relative;
        z-index: 998;
        clear: both;
        width: 100%;
    } nav li {
        height: 50px;
    } nav a, footer .footer-nav a {
        text-decoration: none;
        background: none;
        line-height: 50px;
        padding: 0px 15px;
        color: #fff;
        float: left;
        width: auto;
        margin: 0px;
    } nav a:hover, nav .home-btn {
            color: #eaa91c;
        } nav .nav-wrap > a {
        display: block;
        float: left;
    } nav .menu-btn {
        background: url("/Content/img/menu_icon.png") no-repeat 0 center;
        background-size: 19px 13px;
        padding: 0px 10px 0px 30px;
        margin-left: 15px;
    } nav .home-btn {
        background: url("/Content/img/menu_divider.png") no-repeat 0 center;
        padding: 0px 0px 0px 10px;
    } nav .menu-btn:hover {
        color: #fff;
    } nav .util {
        box-sizing: border-box;
        position: absolute;
        right: 15px;
        top: 0px;
        z-index: 999999;
    } nav .util a.logout {
            background: url("/Content/img/menu_divider.png") no-repeat 0% center;
            padding: 0px 0px 0px 10px;
            font-size: 14px;
            color: #71c5e8;
            float: none;
        } nav .util a.logout:hover {
                color: #fff;
            } nav .util .user {
            font-style: italic;
            padding-right: 10px;
            color: #fff;
        } nav .util .user, nav .util .logout {
            display: inline;
        } nav .util .user .welcome {
                display: none;
            } nav .util .user .username {
                font-weight: bold;
            } @media (max-width: 480px) {
    nav {
        height: 80px;
    }

        nav .menu-btn {
            margin-bottom: 30px;
        }

        nav .header-nav {
            border-top: 2px solid #333;
        }

        nav .util {
            clear: both;
            display: block;
            margin-left: 15px;
            position: absolute;
            top: 32px;
            left: 0;
        }

            nav .util .user .username {
                font-size: 0.8rem;
            }
} .ui-dialog {
    z-index: 1000 !important;
}
/******************************************************************************************/
/************************************* FORM STYLES ****************************************/
/******************************************************************************************/
.form {
    margin: 0 auto 2em auto;
    width: 100%;
} .form input[type=text], .form input[type=number], .form input[type=password], .form select, .form textarea {
        border: 1px solid #666666;
        padding: 0.5em;
        margin: 0 0 0.25rem 0;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
    } .form textarea {
        height: 100px;
    } .form input[type=checkbox] {
        display: inline-block;
        margin-right: 1em;
        width: auto;
    } .form input[type=radio] {
        display: inline-block;
        margin-right: 0.25em;
        margin-left: 0.75em;
        width: auto;
    } .form input[type=radio]:first-of-type {
            margin-left: 0;
        } .form input[type=text].required, .form input[type=number].required, .form textarea.required, .form select.required {
        border: 1px solid #00a5e6;
        background: #c2e2f9;
    } .form .formoutputwrap {
        margin: 0.3em 1em 0.5em 0;
    } .form input[type=text]:focus, .form input[type=number]:focus, .form input[type=password]:focus, .form textarea:focus, .form select:focus {
        background: #fff;
    } .form input[disabled=disabled] {
        background: #eee;
        color: #bbb;
        border-color: #ccc;
    } .form input.readonly, .form input.readonly:focus {
        background: #eee;
        color: #666;
        border-color: #ccc;
        box-shadow: none;
    } .form hr {
        height: 1px;
        color: #dddddd;
        background: #dddddd;
        border: none;
        margin: 2rem 0;
    } .form fieldset {
        padding: 1rem;
        border: 1px solid #cccccc;
        margin: 0 0 2rem 0;
        background: #fff;
        position: relative;
    } @media (min-width: 600px), print {
    .form fieldset {
        padding: 1rem 1.5rem;
    }
} .form legend {
    padding: 0.5rem 1rem;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    background: #fff;
    border: 1px solid #dddddd;
    -webkit-font-smoothing: antialiased;
} .form label {
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    position: relative;
} .form label.required, .form span.required {
        font-weight: 700;
    } .form label.required:before, .form span.required:before {
            clear: initial;
            color: #cf2a2a;
            display: inline-block;
            font-size: 1em;
            font-weight: 700;
            content: "*";
            margin-right: 4px;
        } .form .formelement {
    *zoom: 1;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
} .form .formelement:before, .form .formelement:after {
        content: '';
        display: table;
    } .form .formelement:after {
        clear: both;
    } .form .form2col .form-column {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
} .form .form2col .form-column:before, .form .form2col .form-column:after {
        content: '';
        display: table;
    } .form .form2col .form-column:after {
        clear: both;
    } .form .form2col .form-column:last-child {
        margin-right: 0%;
    } @media (min-width: 900px), print {
    .form .form2col .form-column {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 47.5%;
        margin-left: 0%;
        margin-right: 5%;
    }

        .form .form2col .form-column:before, .form .form2col .form-column:after {
            content: '';
            display: table;
        }

        .form .form2col .form-column:after {
            clear: both;
        }

        .form .form2col .form-column:last-child {
            margin-right: 0%;
        }
} .form .form3col .form-column {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
} .form .form3col .form-column:before, .form .form3col .form-column:after {
        content: '';
        display: table;
    } .form .form3col .form-column:after {
        clear: both;
    } .form .form3col .form-column:last-child {
        margin-right: 0%;
    } @media (min-width: 900px), print {
    .form .form3col .form-column {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 30%;
        margin-left: 0%;
        margin-right: 5%;
    }

        .form .form3col .form-column:before, .form .form3col .form-column:after {
            content: '';
            display: table;
        }

        .form .form3col .form-column:after {
            clear: both;
        }

        .form .form3col .form-column:last-child {
            margin-right: 0%;
        }
} .form .form3col .form-column.form-column-2-3 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 30%;
    margin-left: 0%;
    margin-right: 5%;
} .form .form3col .form-column.form-column-2-3:before, .form .form3col .form-column.form-column-2-3:after {
        content: '';
        display: table;
    } .form .form3col .form-column.form-column-2-3:after {
        clear: both;
    } .form .form3col .form-column.form-column-2-3:last-child {
        margin-right: 0%;
    } .form .formelement.stacked {
    margin-bottom: 0;
} .form .formelement.stacked label {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        margin-left: 0%;
        margin-right: 0%;
        margin-bottom: 0;
    } .form .formelement.stacked label:before, .form .formelement.stacked label:after {
            content: '';
            display: table;
        } .form .formelement.stacked label:after {
            clear: both;
        } .form .formelement.stacked label:last-child {
            margin-right: 0%;
        } .form .formelement.stacked label.smallgray {
            font-size: 0.75rem;
            font-weight: normal;
            color: #888888;
        } .form .formelement.stacked .forminputwrap, .form .formelement.stacked .formoutputwrap {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        margin-left: 0%;
        margin-right: 0%;
    } .form .formelement.stacked .forminputwrap:before, .form .formelement.stacked .forminputwrap:after, .form .formelement.stacked .formoutputwrap:before, .form .formelement.stacked .formoutputwrap:after {
            content: '';
            display: table;
        } .form .formelement.stacked .forminputwrap:after, .form .formelement.stacked .formoutputwrap:after {
            clear: both;
        } .form .formelement.stacked .forminputwrap:last-child, .form .formelement.stacked .formoutputwrap:last-child {
            margin-right: 0%;
        } .form label {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    line-height: 1.25;
} .form label:before, .form label:after {
        content: '';
        display: table;
    } .form label:after {
        clear: both;
    } .form label:last-child {
        margin-right: 0%;
    } @media (min-width: 600px), print {
    .form label {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 30%;
        margin-left: 0%;
        margin-right: 5%;
    }

        .form label:before, .form label:after {
            content: '';
            display: table;
        }

        .form label:after {
            clear: both;
        }

        .form label:last-child {
            margin-right: 0%;
        }
} .forminputwrap, .formoutputwrap {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    line-height: 1.1;
    position: relative;
} .forminputwrap:before, .forminputwrap:after, .formoutputwrap:before, .formoutputwrap:after {
        content: '';
        display: table;
    } .forminputwrap:after, .formoutputwrap:after {
        clear: both;
    } .forminputwrap:last-child, .formoutputwrap:last-child {
        margin-right: 0%;
    } @media (min-width: 600px), print {
    .forminputwrap, .formoutputwrap {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 65%;
        margin-left: 0%;
        margin-right: 5%;
    }

        .forminputwrap:before, .forminputwrap:after, .formoutputwrap:before, .formoutputwrap:after {
            content: '';
            display: table;
        }

        .forminputwrap:after, .formoutputwrap:after {
            clear: both;
        }

        .forminputwrap:last-child, .formoutputwrap:last-child {
            margin-right: 0%;
        }
} .form .form2col, .form .form3col {
    *zoom: 1;
} .form .form2col:before, .form .form2col:after, .form .form3col:before, .form .form3col:after {
        content: '';
        display: table;
    } .form .form2col:after, .form .form3col:after {
        clear: both;
    } .form .form2col .form-column label, .form .form2col .form-column .forminputwrap, .form .form2col .form-column .formoutputwrap, .form .form3col .form-column label, .form .form3col .form-column .forminputwrap, .form .form3col .form-column .formoutputwrap {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        margin-left: 0%;
        margin-right: 0%;
    } .form .form2col .form-column label:before, .form .form2col .form-column label:after, .form .form2col .form-column .forminputwrap:before, .form .form2col .form-column .forminputwrap:after, .form .form2col .form-column .formoutputwrap:before, .form .form2col .form-column .formoutputwrap:after, .form .form3col .form-column label:before, .form .form3col .form-column label:after, .form .form3col .form-column .forminputwrap:before, .form .form3col .form-column .forminputwrap:after, .form .form3col .form-column .formoutputwrap:before, .form .form3col .form-column .formoutputwrap:after {
            content: '';
            display: table;
        } .form .form2col .form-column label:after, .form .form2col .form-column .forminputwrap:after, .form .form2col .form-column .formoutputwrap:after, .form .form3col .form-column label:after, .form .form3col .form-column .forminputwrap:after, .form .form3col .form-column .formoutputwrap:after {
            clear: both;
        } .form .form2col .form-column label:last-child, .form .form2col .form-column .forminputwrap:last-child, .form .form2col .form-column .formoutputwrap:last-child, .form .form3col .form-column label:last-child, .form .form3col .form-column .forminputwrap:last-child, .form .form3col .form-column .formoutputwrap:last-child {
            margin-right: 0%;
        } @media (min-width: 600px), print {
    .form .form2col .form-column label, .form .form3col .form-column label {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 33.375%;
        margin-left: 0%;
        margin-right: 2.5%;
    }

        .form .form2col .form-column label:before, .form .form2col .form-column label:after, .form .form3col .form-column label:before, .form .form3col .form-column label:after {
            content: '';
            display: table;
        }

        .form .form2col .form-column label:after, .form .form3col .form-column label:after {
            clear: both;
        }

        .form .form2col .form-column label:last-child, .form .form3col .form-column label:last-child {
            margin-right: 0%;
        }

    .form .form2col .form-column .forminputwrap, .form .form2col .form-column .formoutputwrap, .form .form3col .form-column .forminputwrap, .form .form3col .form-column .formoutputwrap {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 64.125%;
        margin-left: 0%;
        margin-right: 2.5%;
    }

        .form .form2col .form-column .forminputwrap:before, .form .form2col .form-column .forminputwrap:after, .form .form2col .form-column .formoutputwrap:before, .form .form2col .form-column .formoutputwrap:after, .form .form3col .form-column .forminputwrap:before, .form .form3col .form-column .forminputwrap:after, .form .form3col .form-column .formoutputwrap:before, .form .form3col .form-column .formoutputwrap:after {
            content: '';
            display: table;
        }

        .form .form2col .form-column .forminputwrap:after, .form .form2col .form-column .formoutputwrap:after, .form .form3col .form-column .forminputwrap:after, .form .form3col .form-column .formoutputwrap:after {
            clear: both;
        }

        .form .form2col .form-column .forminputwrap:last-child, .form .form2col .form-column .formoutputwrap:last-child, .form .form3col .form-column .forminputwrap:last-child, .form .form3col .form-column .formoutputwrap:last-child {
            margin-right: 0%;
        }
} .form.form-600-centered {
    max-width: 600px;
    margin: 0 auto;
} .form.form-800-centered {
    max-width: 800px;
    margin: 0 auto;
}
/* Disabled form element styles */
.form input:disabled, .form select:disabled {
    border: 1px solid #ddd;
    background: #f0f0f0;
    color: #bbb;
} .form .formelement.error-highlight {
    background: #f5f5f5;
    border-left: 5px solid #cf2a2a;
    padding: 1rem;
} .form .formelement.error-highlight label.required span, .form .formelement.error-highlight label.required span:after {
        color: #cf2a2a;
    } .form .formelement.error-highlight .error-highlight-msg, .form .formelement.error-highlight .input-validation-error, .form .formelement.error-highlight .field-validation-error {
        color: #cf2a2a;
        font-size: 0.85rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
        margin-top: 0.5rem;
    } .form-submit {
    text-align: center;
    margin: 0;
    padding: 2px;
} .form .forminputwrap .radio-checkbox-list, .radio-checkbox-list {
    *zoom: 1;
} .form .forminputwrap .radio-checkbox-list:before, .form .forminputwrap .radio-checkbox-list:after, .radio-checkbox-list:before, .radio-checkbox-list:after {
        content: '';
        display: table;
    } .form .forminputwrap .radio-checkbox-list:after, .radio-checkbox-list:after {
        clear: both;
    } .form .forminputwrap .radio-checkbox-list input[type=radio], .form .forminputwrap .radio-checkbox-list input[type=checkbox], .radio-checkbox-list input[type=radio], .radio-checkbox-list input[type=checkbox] {
        display: inline-block;
        margin-bottom: 0.25rem;
        margin-right: 0.5rem;
        margin-top: 0.1rem;
    } .form .forminputwrap .radio-checkbox-list label, .radio-checkbox-list label {
        color: #222222;
        display: inline-block;
        float: none;
        margin-right: 1rem;
        margin-bottom: 0.5rem;
        width: auto;
    } .form .forminputwrap .radio-checkbox-list.radio-checkbox-list-vertical input[type=radio], .form .forminputwrap .radio-checkbox-list.radio-checkbox-list-vertical input[type=checkbox], .radio-checkbox-list.radio-checkbox-list-vertical input[type=radio], .radio-checkbox-list.radio-checkbox-list-vertical input[type=checkbox] {
        display: inline-block;
        border: 1px solid #dce1e4;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 8%;
        margin-left: 0%;
        margin-right: 0%;
        margin-top: 4px;
        background-color: #ddd;
    } .form .forminputwrap .radio-checkbox-list.radio-checkbox-list-vertical input[type=radio]:before, .form .forminputwrap .radio-checkbox-list.radio-checkbox-list-vertical input[type=radio]:after, .form .forminputwrap .radio-checkbox-list.radio-checkbox-list-vertical input[type=checkbox]:before, .form .forminputwrap .radio-checkbox-list.radio-checkbox-list-vertical input[type=checkbox]:after, .radio-checkbox-list.radio-checkbox-list-vertical input[type=radio]:before, .radio-checkbox-list.radio-checkbox-list-vertical input[type=radio]:after, .radio-checkbox-list.radio-checkbox-list-vertical input[type=checkbox]:before, .radio-checkbox-list.radio-checkbox-list-vertical input[type=checkbox]:after {
            content: '';
            display: table;
        } .form .forminputwrap .radio-checkbox-list.radio-checkbox-list-vertical input[type=radio]:after, .form .forminputwrap .radio-checkbox-list.radio-checkbox-list-vertical input[type=checkbox]:after, .radio-checkbox-list.radio-checkbox-list-vertical input[type=radio]:after, .radio-checkbox-list.radio-checkbox-list-vertical input[type=checkbox]:after {
            clear: both;
        } .form .forminputwrap .radio-checkbox-list.radio-checkbox-list-vertical label, .radio-checkbox-list.radio-checkbox-list-vertical label {
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 92%;
        margin-left: 0%;
        margin-right: 0%;
    } .form .forminputwrap .radio-checkbox-list.radio-checkbox-list-vertical label:before, .form .forminputwrap .radio-checkbox-list.radio-checkbox-list-vertical label:after, .radio-checkbox-list.radio-checkbox-list-vertical label:before, .radio-checkbox-list.radio-checkbox-list-vertical label:after {
            content: '';
            display: table;
        } .form .forminputwrap .radio-checkbox-list.radio-checkbox-list-vertical label:after, .radio-checkbox-list.radio-checkbox-list-vertical label:after {
            clear: both;
        } .form .forminputwrap .radio-checkbox-list.radio-checkbox-list-width2080 input[type=radio], .form .forminputwrap .radio-checkbox-list.radio-checkbox-list-width2080 input[type=checkbox], .radio-checkbox-list.radio-checkbox-list-width2080 input[type=radio], .radio-checkbox-list.radio-checkbox-list-width2080 input[type=checkbox] {
        width: 20%;
    } .form .forminputwrap .radio-checkbox-list.radio-checkbox-list-width2080 label, .radio-checkbox-list.radio-checkbox-list-width2080 label {
        width: 80%;
    } .input-width-auto {
    width: auto !important;
} .inline-input-button-100-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
} .inline-input-button-100-wrap .inline-button {
        float: right;
    } .inline-input-button-100-wrap .inline-input-wrap {
        float: left;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding-right: .5em;
    } .inline-input-button-100-wrap .inline-input-wrap input[type=text] {
            width: 100%;
        } .input-returned-text {
    padding-left: 0.5em;
} .form-input-help {
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0.25rem;
    color: #888888;
    font-size: 0.85rem;
    font-weight: normal;
} .form div.RadEditor {
    width: 100% !important;
} .label-styles-required {
    font-weight: 700;
    display: inline-block;
} .label-styles-required:after {
        clear: initial;
        color: #cf2a2a;
        display: inline-block;
        font-size: 0.8em;
        font-weight: 700;
        content: "*";
        margin-left: 4px;
    }
/******************************* Tooltips *************************************/
.form-input-tooltip {
    margin-top: 0.25rem;
    margin-bottom: 0;
    color: #222222;
    font-size: 0.9rem;
} .form-input-tooltip .help-content {
        background-color: #eaf6fc;
        border: 1px solid #71c5e8;
        display: none;
        padding: 1rem;
        margin-bottom: 1rem;
        margin-top: 0.5rem;
    } .form-input-tooltip .help-content:first-child {
            margin-top: 0;
        } .form-input-tooltip .help-content ol, .form-input-tooltip .help-content ul {
            margin-top: 0;
        } .form-input-tooltip .help-content img {
            max-width: 100%;
        } .form-input-tooltip .help-content h3 {
            border: none;
            font-size: 0.9rem;
            font-weight: bold;
            margin: 0 0 0.5rem 0;
            padding: 0;
        }
/******************************* Modified checkboxes and radiobuttons *************************************/
/* AT&T core styles were modified to account for .Net markup output */
.form label.label-fancychkbx {
    width: 100%;
} .form label.label-fancychkbx.label-fancychkbx-inline {
        width: auto;
        display: inline-block;
    } .form label.label-fancychkbx input[type="radio"], .form label.label-fancychkbx input[type="checkbox"] {
        background-color: transparent;
        display: none;
        width: auto;
        border: 0px;
    } .form label.label-fancychkbx .lt-ie9 input[type="radio"], .form label.label-fancychkbx .lt-ie9 input[type="checkbox"] {
        margin-right: 5px;
        display: inline;
    } .form label.label-fancychkbx input[type="radio"] ~ span.fancychkbx-radiospan, .form label.label-fancychkbx input[type="checkbox"] ~ span.fancychkbx-checkspan {
        pointer-events: none;
        margin-right: 6px;
        cursor: pointer;
        display: block;
        float: left;
    } .form label.label-fancychkbx .lt-ie9 input[type="radio"] ~ span.fancychkbx-radiospan, .form label.label-fancychkbx .lt-ie9 input[type="checkbox"] ~ span.fancychkbx-checkspan {
        display: none;
    } .form label.label-fancychkbx input[type="radio"] ~ span.fancychkbx-radiospan {
        background: url("../img/radio_sprite.png") 100% 0;
        height: 20px;
        width: 20px;
    } .form label.label-fancychkbx input[type="radio"]:checked ~ span.fancychkbx-radiospan {
        background-position: 0 0;
    } .form label.label-fancychkbx input[type="checkbox"] ~ span.fancychkbx-checkspan {
        border: 3px solid #767676;
        border-radius: 2px;
        position: relative;
        margin-bottom: 0;
        line-height: 20px;
        height: 20px;
        width: 20px;
    } .form label.label-fancychkbx input[type="checkbox"]:checked ~ span.fancychkbx-checkspan:after, .form label.label-fancychkbx input[type="checkbox"] ~ span.fancychkbx-checkspan.checked:after {
            content: url("../img/checkmark.png");
            position: absolute;
            line-height: 0;
            font-size: 32px;
            top: -4px;
            left: 2px;
        } form input[type=checkbox] ~ span.fancychkbx-checkspan.checked:after, form input[type=checkbox]:checked.fancychkbx-checkspan ~ span:after {
    content: url(../img/checkmark.png);
    position: absolute;
    line-height: 0;
    font-size: 32px;
    top: -4px;
    left: 2px;
} button, footer .feature-link a, .btn, .btn.btn-login, .component a.btn {
    background-color: #009ede;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    line-height: 32px;
    margin-bottom: 0.5rem;
    padding: 0px 15px;
    height: 32px;
    border: 0px;
    color: #fff;
    width: auto;
    white-space: nowrap;
} .btn.btn-large {
        padding: 0.5rem 2rem !important;
        font-size: 1.5rem !important;
        line-height: 1.5 !important;
        height: auto !important;
    } .btn.btn-medium {
        padding: 0.5rem 1rem !important;
        font-size: 1rem !important;
        line-height: 1.5 !important;
        height: auto !important;
    } .btn.btn-small {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.7rem !important;
        line-height: 1.5 !important;
        height: auto !important;
    } .btn.btn-xsmall {
        padding: 0.15rem 0.5rem !important;
        font-size: 0.65rem !important;
        line-height: 1.35 !important;
        height: auto !important;
    } a.btn.btn-help {
    background-color: #eaf6fc;
    border: 1px solid #71c5e8;
    border-radius: 3px;
    color: #0065A4;
    font-size: 0.6rem;
    height: 20px;
    line-height: 18px;
    padding: 0 6px;
} a.btn.btn-help:hover {
        background-color: #fff;
        color: #0065A4;
    } a.btn.btn-cancel, a.btn.btn-gray {
    background-color: #d2d2d2;
    color: #5a5a5a;
}
/* Footer Styles */
footer {
    text-align: center;
    color: #fff;
} footer a {
        text-decoration: none;
    } footer h4 {
        margin: 45px auto 35px;
        font-size: 20px;
    } footer .upper-footer .footer-wrap {
        max-width: 1260px;
    } footer .bucket {
        border-top: 1px solid #676867;
        padding-bottom: 55px;
        overflow: hidden;
        margin: 0px auto;
        max-width: 400px;
        width: 85%;
    } footer .bucket:first-child {
            border-top: 0px;
        } footer .upper-footer {
        background-color: #333;
        overflow: hidden;
    } footer .feature-link a {
        display: inline-block;
        width: 179px;
        color: #fff;
    } footer .lower-footer {
        background-color: #000;
        height: 90px;
    } footer .lower-footer p {
            line-height: 90px;
            margin: 0px;
        } footer .footer-nav {
        float: left;
    }
/* ==========================================================================
   Media Queries
   ========================================================================== */
@media only screen and (min-width: 480px) {
    .header-wrapper, nav a, .main-container.uses-banner .main {
        padding: 0px 20px;
    }

    nav .util {
        right: 20px;
    }

    nav .menu-btn {
        margin-left: 20px;
    }

    .uses-banner .main-container .main-wrapper .column-1 {
        margin: 0px auto 0px;
    }

    .component .component-wrapper:before,
    .component .component-wrapper:after {
        width: 47.5%;
    }

    .search form input[type="search"],
    .no-textshadow .search form input[type="text"] {
        margin-left: 55px;
    }
} @media only screen and (min-width: 600px) {
    nav .util .user .welcome {
        display: inline;
    }

    .main-container .main-wrapper .column-1 {
        padding-top: 20px;
    }

    .uses-banner .main-container .main-wrapper .column-1 {
        margin: 0px auto 0px;
    }

    .component .component-wrapper {
        padding: 26px;
    }

    .component h2, .component h3, footer h4 {
        font-size: 22px;
    }

    .news-releases .meta-info {
        clear: none;
    }
} @media only screen and (min-width: 768px) {
    header h1 {
        padding: 12px 30px 0 75px;
        margin: 45px 0px;
        font-size: 35px;
    }
    /*header #InsMasthead #TopNav {
        display: block;
    }*/
    nav .nav-wrap, footer .lower-footer .footer-wrap {
        padding: 0 20px;
    }

        nav .nav-wrap > a {
            display: none;
        }

    nav ul, footer .footer-nav {
        background-color: transparent;
        display: block !important;
    }

        nav ul li, footer .footer-nav li {
            display: inline;
        }

        nav a, footer .footer-nav a {
            padding: 0 10px;
        }

        nav li:first-child a,
        footer .footer-nav li:first-child a {
            padding-left: 0;
        }

    nav li:last-child a {
        padding-right: 0;
    }

    .main-container .main-wrapper {
        max-width: 1300px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .two-column .main-container .main-wrapper {
        padding-left: 20px;
        padding-right: 15px;
    }

    .two-column.uses-banner .main-container .main-wrapper {
        padding-right: 35px;
    }

    .three-column .main-container .main-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    .main-container .main-wrapper .column-2,
    .main-container .main-wrapper .column-3 {
        padding-top: 20px;
    }
    /*.three-column .main-container .main-wrapper .column-3, 
        .three-column .main-container .main-wrapper .column-4 {
            padding-top: 0px;
        }*/
    .main-container .main-wrapper .column-2,
    .three-column.uses-banner .main-container .main-wrapper .column-3 {
        background-color: #dfdfdf;
    }

    .uses-banner .main-container .main-wrapper .column-2,
    .uses-banner .main-container .main-wrapper .column-3 {
        margin: -80px auto 0px;
    }

    .three-column.uses-banner .main-container .main-wrapper .column-2,
    .three-column.uses-banner .main-container .main-wrapper .column-3 {
        margin: 0px auto;
    }

    .component.col-sm-12 .component-wrapper:before,
    .component.col-sm-12 .component-wrapper:after {
        width: 48.5%;
    }

    .component.col-sm-6 .component-wrapper:before,
    .component.col-sm-6 .component-wrapper:after {
        width: 46.5%;
    }

    .component.col-sm-4 .component-wrapper:before,
    .component.col-sm-4 .component-wrapper:after {
        width: 45%;
    }

    .component h2 {
        font-size: 27px;
    }

    .component .intro p {
        font-size: 18px;
        line-height: 1.5;
    }

    .component .intro .featured-image {
        max-width: 30%;
        float: right;
    }

    .component .intro.static.uses-image h2,
    .component .intro.static.uses-image p {
        max-width: 70%;
        float: left;
    }

    .three-column .main-container .main-wrapper .column-1 > .component .intro.carousel {
        margin-right: 0px;
        margin-left: 0px;
    }
    /* Footer Styles */
    footer .upper-footer .footer-wrap {
        margin: 50px auto;
    }

    footer .lower-footer {
        height: 50px;
    }

    footer .bucket {
        border-top: 0px;
        border-left: 1px solid #676867;
        padding-bottom: 0px;
        max-width: 313px;
        margin: 0px auto;
        min-height: 202px;
        width: 24.9%;
        float: left;
    }

        footer .bucket:first-child {
            border-left: 0px;
        }

    footer h4 {
        margin: 0px auto 30px;
    }

    footer .lower-footer p {
        margin: 0px;
        line-height: 50px;
        float: right;
    }
    /* Form Styles */
    .adv-search form .input-group {
        max-width: 155px;
        margin: 0px auto;
    }

    .adv-search form button {
        margin: 8px 0px;
        display: block;
    }

    .search form input[type="search"],
    .no-textshadow .search form input[type="text"] {
        margin-left: 0px;
    }
    /* Twitter Bootstrap Grid Styles */
    .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 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }
} @media only screen and (min-width: 768px) and (max-width: 980px) {
    footer h4 {
        font-size: 20px;
    }

    form button, footer .feature-link a {
        padding: 0 6px;
    }

    footer form input[type="text"],
    footer form input[type="search"] {
        width: 155px;
    }

    footer .feature-link a,
    form .select-skin,
    footer .search form input[type="search"],
    .no-textshadow footer .search form input[type="text"] {
        width: 130px;
    }

    .dropdowns form .input-group {
        max-width: 175px;
    }
} @media only screen and (min-width: 992px) {
    header #InsMasthead #TopNav ul li a {
        padding: 0.5em 1.25em;
    }

    nav a, footer .footer-nav a {
        padding: 0px 15px;
    }

    .uses-banner .main-container .main-wrapper .column-1 {
        margin: 2rem auto 0px;
    }

    .uses-banner .main-container .main-wrapper .column-2,
    .uses-banner .main-container .main-wrapper .column-3,
    .three-column.uses-banner .main-container .main-wrapper .column-2 {
        margin: -175px auto 0px;
    }

    .three-column.uses-banner .main-container .main-wrapper .column-3 {
        padding-top: 0px;
        margin: 0px auto;
    }

    .component.col-sm-8 .component-wrapper:before,
    .component.col-sm-8 .component-wrapper:after {
        width: 48%;
    }

    .component.col-sm-6 .component-wrapper:before,
    .component.col-sm-6 .component-wrapper:after {
        width: 47%;
    }

    .component.col-sm-4 .component-wrapper:before,
    .component.col-sm-4 .component-wrapper:after {
        width: 46%;
    }

    .component.col-md-3 .component-wrapper:before,
    .component.col-md-3 .component-wrapper:after {
        width: 44%;
    }

    .component p,
    .component ul li {
        font-size: 1em;
    }

    .component .intro p {
        font-size: 21px;
    }

    .component .media-gallery .gallery {
        overflow: hidden;
        height: 235px;
    }

        .component .media-gallery .gallery .current-feature {
            margin: 0 2% 0 0;
            height: 100%;
            float: left;
            width: 73%;
        }

            .component .media-gallery .gallery .current-feature img {
                max-height: 100%;
                width: auto;
            }

        .component .media-gallery .gallery .gallery-nav {
            overflow-x: hidden;
            overflow-y: scroll;
            max-height: 100%;
            width: 25%;
            float: left;
        }

            .component .media-gallery .gallery .gallery-nav li {
                margin: 0 0px 5px 0;
                display: block;
                width: auto;
            }
    /* Footer Styles */
    footer .upper-footer .footer-wrap {
        max-width: 1260px;
        margin: 50px auto;
    }

    footer .bucket {
        max-width: 313px;
        margin: 0px auto;
        min-height: 202px;
    }
    /* Form Styles */
    .adv-search form .input-group {
        max-width: 179px;
    }
    /* Twitter Bootstrap Grid Styles */
    .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 {
        float: left;
    }

    .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
        padding-right: 11px;
        padding-left: 11px;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 33.33333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0;
    }
} @media only screen and (min-width: 1200px) {
    header h1 {
        padding: 12px 30px 0 85px;
        margin: 50px 0px;
        font-size: 40px;
    }

    nav a, footer .footer-nav a {
        padding: 0px 21px;
    }

    .main-container .main-wrapper {
        padding-left: 25px;
        padding-right: 25px;
    }

    .two-column .main-container .main-wrapper {
        padding-left: 15px;
    }

    .two-column.uses-banner .main-container .main-wrapper {
        padding-right: 40px;
    }

    .three-column.uses-banner .main-container .main-wrapper {
        padding-left: 25px;
        padding-right: 25px;
    }

    .main-container .main-wrapper .column-1,
    .main-container .main-wrapper .column-2,
    .main-container .main-wrapper .column-3,
    .main-container .main-wrapper .column-4 {
        padding-top: 25px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .two-column .main-container .main-wrapper .column-1,
    .two-column .main-container .main-wrapper .column-2,
    .three-column .main-container .main-wrapper .column-2 {
        padding-left: 25px;
        padding-right: 25px;
    }

    .three-column .main-container .main-wrapper .column-1 {
        padding-left: 15px;
        padding-right: 25px;
    }

    .uses-banner .main-container .main-wrapper .column-2,
    .uses-banner .main-container .main-wrapper .column-3 {
        margin: -170px auto 0px !important;
    }

    .three-column .main-container .main-wrapper .column-1 > .row:first-child .component {
        padding-left: 25px;
    }

    .three-column.uses-banner .main-container .main-wrapper .column-1 > .row:first-child .component {
        padding-left: 15px;
    }

    .three-column .main-container .main-wrapper .column-1 .column-3 {
        padding: 0px 15px 25px 25px;
    }

    .three-column .main-container .main-wrapper .column-1 .column-4,
    .three-column.uses-banner .main-container .main-wrapper .column-3 {
        background-color: #dfdfdf;
        padding: 25px;
    }

    .three-column.uses-banner .main-container .main-wrapper .column-1 {
        padding-left: 25px;
        padding-right: 25px;
    }
    /*.component.col-sm-12 .component-wrapper:before,
    .component.col-sm-12 .component-wrapper:after {
        width: 49%;
    }
    .component.col-sm-8 .component-wrapper:before, 
    .component.col-sm-8 .component-wrapper:after {
        width: 48.5%;
    }
    .component.col-sm-6 .component-wrapper:before, 
    .component.col-sm-6 .component-wrapper:after {
        width: 48%;
    }
    .component.col-sm-4 .component-wrapper:before, 
    .component.col-sm-4 .component-wrapper:after {
        width: 46.5%;
    }
    .component.col-md-3 .component-wrapper:before, 
    .component.col-md-3 .component-wrapper:after {
        width: 45.5%;
    }*/
    .component .component-wrapper {
        padding: 25px;
        padding-bottom: 2rem;
    }

    .component h2 {
        font-size: 30px;
    }

    .component h3, footer h4 {
        font-size: 25px;
    }
    /* Twitter Bootstrap Grid Styles */
    .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 {
        float: left;
    }

    .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
        padding-right: 15px;
        padding-left: 15px;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0;
    }
} @media only screen and (min-width: 1300px) {
    nav a {
        padding: 0 30px;
    }

    header .top-nav {
        right: 20px;
    }

    header .header-wrapper, nav .nav-wrap,
    footer .lower-footer .footer-wrap {
        max-width: 1280px;
        padding: 0 25px;
    }

    nav .util {
        right: 30px;
    }

    .main-container .main-wrapper {
        padding-left: 35px;
        padding-right: 35px;
    }

    .two-column .main-container .main-wrapper,
    .three-column .main-container .main-wrapper {
        max-width: 1280px;
    }
}
/* -------------------------- horizontal UL with zero padding and margin ------------------------------ */
.ulhoriz {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 0;
} .ulhoriz li {
        padding: 0;
        margin: 0;
        display: inline-block;
        font-size: 1rem;
    } .ulzero {
    padding: 0;
    margin: 0;
} .ulzero li {
        padding: 0;
        margin: 0;
    } .ulnobullet, .ulnobullet li {
    padding: 0;
    margin: 0;
    list-style: none;
} .hide {
    display: none;
} .img-left, .img-right {
    margin: 0;
    margin-bottom: 1em;
} .img-left.img-border, .img-left.img-caption, .img-right.img-border, .img-right.img-caption {
        border: 1px solid #ccc;
        padding: 0.25em;
    } .img-left.img-caption, .img-right.img-caption {
        text-align: center;
        padding-bottom: 0.4em;
    } .img-left.img-caption img, .img-right.img-caption img {
            margin: 0;
        } .img-left.img-caption div, .img-right.img-caption div {
            font-size: 0.8em;
            color: #666;
        } .img-left {
    float: left;
    margin-right: 1.5em !important;
} .img-right {
    float: right;
    margin-left: 1.5em !important;
} .text-small {
    font-size: 0.9rem !important;
} .text-xsmall {
    font-size: 0.8rem !important;
} .text-large {
    font-size: 1.2rem !important;
} .text-xlarge {
    font-size: 1.4rem !important;
} .text-left {
    text-align: left;
} .text-right {
    text-align: right;
} .text-center {
    text-align: center;
} .margin-bot-0 {
    margin-bottom: 0;
} .margin-bot-1rem {
    margin-bottom: 1rem;
} .margin-bot-2rem {
    margin-bottom: 2rem;
} .margin-top-0 {
    margin-top: 0;
} .margin-top-1rem {
    margin-top: 1rem;
} .margin-top-2rem {
    margin-top: 2rem;
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
.hidden {
    display: none !important;
    visibility: hidden;
} .visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
} .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
        clip: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        width: auto;
    } .invisible {
    visibility: hidden;
} .clearfix:before, .clearfix:after, .cf:before, .cf:after {
    content: " ";
    display: table;
} .clearfix:after, .cf:after {
    clear: both;
} .clearfix, .cf {
    *zoom: 1;
} .wordbreak {
    /* Careful, this breaks the word wherever it is without a hyphen */
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-all;
}
/* Popup Help box styles - Legacy AT&T popup help */
.popuphelp, .popuphelp p, .popuphelp li {
    font-size: 14px;
} .popuphelp {
    width: 300px;
    max-width: 100%;
    border: solid 2px #0065A4;
    background-color: #f2f2f3;
    padding: 5px;
    text-align: left;
} .nt-internal-notes {
    color: red;
    background: yellow;
    font-weight: bold;
} table {
    background-color: #fff;
    border: solid 1px #c6cccf;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1rem;
} table th, table td {
        padding: 0.5rem;
        line-height: 1.3;
        border: solid 1px #dddddd;
    } table th, table tfoot td {
        background-color: #dddddd;
        font-weight: normal;
        font-size: .85rem;
    } table tfoot td {
        font-weight: 700;
    } table td {
        vertical-align: top;
        font-size: .85rem;
    } table th {
        vertical-align: middle;
        text-align: left;
        font-size: .85rem;
        font-weight: bold;
    } table.n h2.table-heading {
        background: #888888;
        display: block;
        font-size: 1.15rem;
        padding: 0.15rem 0.5rem;
        color: #fff;
        margin-bottom: 0.25rem;
    } fieldset table {
    border: solid 1px #dddddd;
} fieldset table th {
        background-color: #efefef;
    }
/* striped tables
----------------------------------------------------------*/
/* tables without border - e.g. Nested tables in Docket Activity Report
---------------------------------------------------------------------------*/
table.noborder {
    border-color: transparent;
} table.noborder td, table.noborder th {
        border-color: transparent;
    } table.noborder td:first-of-type, tr:nth-child(even) table.noborder td, tr:nth-child(odd) table.noborder td, table.noborder th:first-of-type, tr:nth-child(even) table.noborder th, tr:nth-child(odd) table.noborder th {
            border-color: transparent;
        }
/*form elements inside of tables - e.g. inline editing*/
td .formelement {
    margin-bottom: 0;
}
/* tables without sortable columns
---------------------------------------------------------------------------*/
th a.sortable, td a.sortable {
    display: block;
    width: 100%;
} th a.sortable {
    padding-right: 18px;
    position: relative;
} a.sortable:before, a.sortable:after {
    /* adjust border widths to adjust aspect ratio of triangles */
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 4.5px solid transparent;
    border-right: 4.5px solid transparent;
    content: "";
    display: block;
    height: 0;
    right: 0;
    top: 50%;
    position: absolute;
    width: 0;
} a.sortable:before {
    border-bottom-color: #bbbbbb;
    margin-top: -12px;
} a.sortable:after {
    border-top-color: #bbbbbb;
    margin-top: 4px;
} a.sortable.sorted-asc:before {
    border-bottom-color: #0065A4;
} a.sortable.sorted-desc:after {
    border-top-color: #0065A4;
} table.tbl-many-col a.sortable:before, table.tbl-many-col a.sortable:after {
    /* adjust border widths to adjust aspect ratio of triangles */
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 5.5px;
    border-right-width: 5.5px;
} table.tbl-many-col a.sortable:before {
    margin-top: -15px;
}
/* Manage Icon table cells
---------------------------------------------------------------------------*/
th.tbl-td-manage, td.tbl-td-manage {
    text-align: center;
    white-space: nowrap;
    width: 10%;
} @media screen and (max-width: 899px) {
    th.tbl-td-manage,
    td.tbl-td-manage {
        width: 100%;
        text-align: left;
    }
} th.tbl-td-manage a:first-of-type, td.tbl-td-manage a:first-of-type {
    margin-right: 0.25rem;
}
/* Set width to auto table cells
---------------------------------------------------------------------------*/
th.tbl-td-width-auto, td.tbl-td-width-auto {
    width: auto;
}
/********************************************************************************************** 
*******************************    Responsive table display  **********************************
***********************************************************************************************/
/* placeholder class for mobile responsive tables that should have their header values placed as content on their td's for mobile size */
table.tbl-mobile-headers {
    /* generic tables (that have no cell content) */
} @media screen and (max-width: 899px) {
    table.tbl-mobile-headers {
        border: none;
        /* Force table to not be like tables anymore */
        /* Hide table headers (but not display: none;, for accessibility) */
    }

        table.tbl-mobile-headers > thead,
        table.tbl-mobile-headers > tbody,
        table.tbl-mobile-headers > thead > tr,
        table.tbl-mobile-headers > tbody > tr,
        table.tbl-mobile-headers > thead > tr > th,
        table.tbl-mobile-headers > tbody > tr > td,
        table.tbl-mobile-headers > tfoot,
        table.tbl-mobile-headers > tfoot > tr,
        table.tbl-mobile-headers > tfoot > tr > th,
        table.tbl-mobile-headers > tfoot > tr > td {
            display: block;
        }

            table.tbl-mobile-headers > tfoot > tr > td.tbl-td-manage {
                display: none;
            }

            table.tbl-mobile-headers > tfoot > tr > td.textright,
            table.tbl-mobile-headers > tfoot > tr > th.textright,
            table.tbl-mobile-headers > tfoot > tr > td.text-center,
            table.tbl-mobile-headers > tfoot > tr > th.text-center {
                text-align: left;
            }

            table.tbl-mobile-headers > thead > tr, table.tbl-mobile-headers tr.tr-thead {
                position: absolute;
                top: -9999px;
                left: -9999px;
            }

            table.tbl-mobile-headers > tbody > tr {
                margin-bottom: 1rem;
                border: 2px solid #71c5e8;
            }

                table.tbl-mobile-headers > tbody > tr > td {
                    font-size: 1rem;
                    padding-left: 0;
                    padding: 0.5rem;
                    border: 1px solid #fff;
                    border-bottom: 1px solid #dddddd;
                }

                    table.tbl-mobile-headers > tbody > tr > td:last-of-type {
                        border-bottom: 1px solid #fff;
                    }

                    table.tbl-mobile-headers > tbody > tr > td:before {
                        border: none;
                        font-size: 0.8rem;
                        position: relative;
                        top: 0;
                        left: 0;
                        width: 100%;
                        padding: 0 0 0.25rem 0;
                        white-space: normal;
                        color: #888888;
                        display: block;
                        position: relative;
                        font-style: italic;
                        font-weight: 400;
                    }

                    table.tbl-mobile-headers > tbody > tr > td.text-center,
                    table.tbl-mobile-headers > tbody > tr > td.text-right {
                        text-align: left;
                    }

        table.tbl-mobile-headers tr > td.mobile-hide,
        table.tbl-mobile-headers tr > td.mobile-hide:before,
        table.tbl-mobile-headers tr > td.mobile-hide:after,
        table.tbl-mobile-headers tr > td.mobile-hide-label:before,
        table.tbl-mobile-headers tr > td.mobile-hide-label:after {
            display: none;
        }
} table.tbl-mobile-headers tr td:empty::after {
    content: "--";
}
/* --------------------------------- Set Table Widths for all Table Cells -------------------------------------*/
.tbl-td-width-50 th, .tbl-td-width-50 td {
    width: 50%;
} .tbl-td-width-33 th, .tbl-td-width-33 td {
    width: 33%;
} .tbl-td-width-25 th, .tbl-td-width-25 td {
    width: 25%;
} .tbl-td-width-20 th, .tbl-td-width-20 td {
    width: 20%;
} .tbl-td-width-16 th, .tbl-td-width-16 td {
    width: 16.67%;
} @media screen and (max-width: 899px) {
    .tbl-td-width-50 th, .tbl-td-width-50 td {
        width: 100%;
    }

    .tbl-td-width-33 th, .tbl-td-width-33 td {
        width: 100%;
    }

    .tbl-td-width-25 th, .tbl-td-width-25 td {
        width: 100%;
    }

    .tbl-td-width-20 th, .tbl-td-width-20 td {
        width: 100%;
    }

    .tbl-td-width-16 th, .tbl-td-width-16 td {
        width: 100%;
    }
}
/* --------------------------------- Set font-size smaller for very wide tables with many columns -------------------------------------*/
/* --------------------------------- Horizontal Scrolling Table with Locked First Column(s) -------------------------------------*/
.table-outer-wrapper {
    position: relative;
} .scrolling-lock-table-wrapper {
    overflow-x: scroll;
    overflow-y: visible;
    width: 100%;
    padding-left: 210px;
} .scrolling-lock-table-wrapper table {
        margin-bottom: 0;
    } .scrolling-lock-table-wrapper td, .scrolling-lock-table-wrapper th {
        text-align: left;
        white-space: nowrap;
    } .scrolling-lock-table-wrapper th.text-center, .scrolling-lock-table-wrapper td.text-center {
            text-align: center;
        } .scrolling-lock-table-wrapper th:nth-of-type(1), .scrolling-lock-table-wrapper td:nth-of-type(1), .scrolling-lock-table-wrapper th:nth-of-type(2), .scrolling-lock-table-wrapper td:nth-of-type(2) {
            position: absolute;
            z-index: 10;
            border-right: none;
        } .scrolling-lock-table-wrapper td:nth-of-type(1), .scrolling-lock-table-wrapper td:nth-of-type(2) {
            background-color: #fff;
        } .scrolling-lock-table-wrapper th:nth-of-type(1), .scrolling-lock-table-wrapper td:nth-of-type(1) {
            position: absolute;
            left: 0;
            width: 140px;
            border-bottom: none;
        } .scrolling-lock-table-wrapper th:nth-of-type(2), .scrolling-lock-table-wrapper td:nth-of-type(2) {
            position: absolute;
            left: 140px;
            width: 70px;
        } .scrolling-lock-table-wrapper .thead-selectall th {
        background-color: #fff;
        border-left: none;
        border-right: none;
        overflow: hidden;
    } .scrolling-lock-table-wrapper .thead-selectall th a.btn-edit-row {
            margin: 0;
        }
/* --------------------------------- Alternating color rows -------------------------------------*/
.row-bg {
    background: #efefef;
}
/* --------------------------------- max-width tables  -------------------------------------*/
table.tbl-width-600 {
    max-width: 600px;
    margin: 1rem auto;
}
/* This is the core CSS of Tooltipster */
/* GENERAL STRUCTURE RULES (do not edit this section) */
.tooltipster-base {
    /* this ensures that a constrained height set by functionPosition,
	if greater that the natural height of the tooltip, will be enforced
	in browsers that support display:flex */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    pointer-events: none;
    /* this may be overriden in JS for fixed position origins */
    position: absolute;
} .tooltipster-box {
    /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
	and flex-basis auto for IE11- (at least) */
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
} .tooltipster-content {
    /* prevents an overflow if the user adds padding to the div */
    box-sizing: border-box;
    /* these make sure we'll be able to detect any overflow */
    max-height: 100%;
    max-width: 100%;
    overflow: auto;
} .tooltipster-ruler {
    /* these let us test the size of the tooltip without overflowing the window */
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
}
/* ANIMATIONS */
/* Open/close animations */
/* fade */
.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
} .tooltipster-fade.tooltipster-show {
        opacity: 1;
    }
/* grow */
.tooltipster-grow {
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-backface-visibility: hidden;
} .tooltipster-grow.tooltipster-show {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
        transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    }
/* swing */
.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    -webkit-transition-property: -webkit-transform, opacity;
    transition-property: transform;
} .tooltipster-swing.tooltipster-show {
        opacity: 1;
        -webkit-transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
        -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
        -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
        transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    }
/* fall */
.tooltipster-fall {
    -webkit-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
} .tooltipster-fall.tooltipster-initial {
        top: 0 !important;
    } .tooltipster-fall.tooltipster-dying {
        -webkit-transition-property: all;
        transition-property: all;
        top: 0 !important;
        opacity: 0;
    }
/* slide */
.tooltipster-slide {
    -webkit-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
} .tooltipster-slide.tooltipster-initial {
        left: -40px !important;
    } .tooltipster-slide.tooltipster-dying {
        -webkit-transition-property: all;
        transition-property: all;
        left: 0 !important;
        opacity: 0;
    }
/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@-webkit-keyframes tooltipster-fading {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
} @keyframes tooltipster-fading {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
} .tooltipster-update-fade {
    -webkit-animation: tooltipster-fading 400ms;
    animation: tooltipster-fading 400ms;
}
/* rotate */
@-webkit-keyframes tooltipster-rotating {
    25% {
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg);
    }

    75% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
} @keyframes tooltipster-rotating {
    25% {
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg);
    }

    75% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
} .tooltipster-update-rotate {
    -webkit-animation: tooltipster-rotating 600ms;
    animation: tooltipster-rotating 600ms;
}
/* scale */
@-webkit-keyframes tooltipster-scaling {
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
} @keyframes tooltipster-scaling {
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
} .tooltipster-update-scale {
    -webkit-animation: tooltipster-scaling 600ms;
    animation: tooltipster-scaling 600ms;
}
/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 * 
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */
.tooltipster-sidetip .tooltipster-box {
    background: #565656;
    border: 2px solid black;
    border-radius: 4px;
} .tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
    margin-top: 8px;
} .tooltipster-sidetip.tooltipster-left .tooltipster-box {
    margin-right: 8px;
} .tooltipster-sidetip.tooltipster-right .tooltipster-box {
    margin-left: 8px;
} .tooltipster-sidetip.tooltipster-top .tooltipster-box {
    margin-bottom: 8px;
}
/* .tooltipster-content */
.tooltipster-sidetip .tooltipster-content {
    color: white;
    line-height: 18px;
    padding: 6px 14px;
}
/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */
.tooltipster-sidetip .tooltipster-arrow {
    overflow: hidden;
    position: absolute;
} .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
    height: 10px;
    /* half the width, for centering */
    margin-left: -10px;
    top: 0;
    width: 20px;
} .tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    right: 0;
    /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
	been positioned yet */
    top: 0;
    width: 10px;
} .tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    left: 0;
    /* same as .tooltipster-left .tooltipster-arrow */
    top: 0;
    width: 10px;
} .tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
    bottom: 0;
    height: 10px;
    margin-left: -10px;
    width: 20px;
}
/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
    height: 0;
    position: absolute;
    width: 0;
}
/* .tooltipster-arrow-background */
.tooltipster-sidetip .tooltipster-arrow-background {
    border: 10px solid transparent;
} .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #565656;
    left: 0px;
    top: 3px;
} .tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #565656;
    left: -3px;
    top: 0px;
} .tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #0065A4;
    left: 3px;
    top: 0px;
} .tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #565656;
    left: 0px;
    top: -3px;
}
/* .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-border {
    border: 10px solid transparent;
    left: 0;
    top: 0;
} .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: black;
} .tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
    border-left-color: black;
} .tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
    border-right-color: black;
} .tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
    border-top-color: black;
}
/* tooltipster-arrow-uncropped */
.tooltipster-sidetip .tooltipster-arrow-uncropped {
    position: relative;
} .tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -10px;
} .tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
    left: -10px;
}
/* Custom Theme for AT&T */
.tooltipstered {
    color: #0065A4;
    border-bottom: 1px dotted #0065A4;
    cursor: pointer;
    padding-right: 1.1em;
    margin-right: 0.25rem;
    background: url(/Content/img/help-circle.svg) center right no-repeat;
    white-space: nowrap;
    background-size: 16px;
} .tooltipstered:hover {
        color: #5a5a5a;
        border-bottom: 1px dashed #5a5a5a;
    } .tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-box {
    background: #fff;
    border: 3px solid #0065A4;
    border-radius: 3px;
} .tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-content {
    color: #666666;
    padding: 0.75rem;
    line-height: 1.35;
} .tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #0065A4;
} .tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #0065A4;
} .tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #0065A4;
} .tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #0065A4;
} .tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #0065A4;
} .tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #0065A4;
} .tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #0065A4;
} .tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #0065A4;
} div.banner {
    display: none;
} body.uses-banner div.banner {
    display: block;
} .full-width-page .main-wrapper {
    max-width: 100%;
} .homerays-wrap {
    display: none;
} .main-container-inner {
    max-width: 1440px;
    margin: 0 auto;
    /*background-image: url("/Content/img/pagerays-2.png");*/
    background-size: 100%;
    background-repeat: repeat-y;
    background-position: top;
} .rays-wrap {
    position: relative;
    border: 2px solid gray;
    max-width: 1280px;
    margin: 0 auto;
} .rays-wrap .homerays {
        position: absolute;
        right: 0;
        top: 0;
    } @media only screen and (min-width: 1280px) {
    .rays-wrap .homerays {
        right: -80px;
    }
} .rays-wrap .homerays img {
    max-width: 100%;
} .er-login .main-container-inner {
    background-image: none;
} .er-login .login-grid {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
} @media (min-width: 900px), print {
    .er-login .grid-2col-wrap.login-grid .grid-col {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        padding-left: 0;
        padding-right: 0;
        width: 42%;
        margin-left: 0%;
        margin-right: 16%;
    }

        .er-login .grid-2col-wrap.login-grid .grid-col:before, .er-login .grid-2col-wrap.login-grid .grid-col:after {
            content: '';
            display: table;
        }

        .er-login .grid-2col-wrap.login-grid .grid-col:after {
            clear: both;
        }

        .er-login .grid-2col-wrap.login-grid .grid-col:last-child {
            margin-right: 0%;
        }
} .er-login .grid-2col-wrap.login-grid .grid-col.internal-login p.login-btn-internal {
    text-align: right;
} @media (min-width: 900px), print {
    .er-login .grid-2col-wrap.login-grid .grid-col.internal-login p.login-btn-internal {
        text-align: left;
    }
} body.er-home .main-container-inner {
    max-width: default;
    margin: 0 auto;
    background-image: none;
    background-size: default;
    background-repeat: default;
    background-position: default;
} body.er-home .homerays-wrap {
    display: block;
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
} body.er-home .homerays-wrap .homerays {
        position: absolute;
        top: 0;
        z-index: 10;
        right: 0;
    } @media only screen and (min-width: 1280px) {
    body.er-home .homerays-wrap .homerays {
        right: -80px;
    }
} body.er-home .homerays-wrap .homerays img {
    max-width: 100%;
} body.er-home .banner {
    position: relative;
} body.er-home .banner .banner-text-wrap {
        position: absolute;
        color: #fff;
        top: 0;
        bottom: 0;
        margin-left: -webkit-calc(1rem + 7vw);
        margin-left: calc(1rem + 7vw);
        line-height: 1;
        font-size: -webkit-calc(9px + 0.85vw);
        font-size: calc(9px + 0.85vw);
        z-index: 20;
    } body.er-home .banner .banner-text-wrap h1 {
            position: relative;
            top: 40%;
            -webkit-transform: translateY(-40%);
            -ms-transform: translateY(-40%);
            transform: translateY(-40%);
            margin: 0;
        } @media only screen and (min-width: 768px) {
    body.er-home .banner .banner-text-wrap {
        font-size: -webkit-calc(16px + 0.75vw);
        font-size: calc(16px + 0.75vw);
        margin-left: -webkit-calc(3rem + 5.25vw);
        margin-left: calc(3rem + 5.25vw);
    }
} @media only screen and (min-width: 1440px) {
    body.er-home .banner .banner-text-wrap {
        font-size: 1.8rem;
        margin-left: 7.5rem;
    }
} .table-pac-grid thead th {
    color: white;
} .table-pac-grid thead.leadership-report-thead-rowspans th {
    color: initial;
} .table-pac-grid.table-general-campaign-report tr.level-0 td {
    background-color: #0568ae;
    color: #fff;
} .table-pac-grid.table-general-campaign-report tr.level-1 td {
    background-color: #71c5e8;
    color: #fff;
} .table-pac-grid.table-general-campaign-report tr.level-1 td:first-of-type {
        padding-left: 1rem;
    } .table-pac-grid.table-general-campaign-report tr.level-2 td {
    background-color: #bfe3fd;
    color: initial;
} .table-pac-grid.table-general-campaign-report tr.level-2 td:first-of-type {
        padding-left: 1.5rem;
    } .table-pac-grid.table-general-campaign-report tr.level-3 td {
    background-color: #fff;
    color: initial;
} .table-pac-grid.table-general-campaign-report tr.level-3 td:first-of-type {
        padding-left: 2rem;
    } .scrolling-lock-table-wrapper.table-general-campaign-report-wrap {
    padding-left: 270px;
} .scrolling-lock-table-wrapper.table-general-campaign-report-wrap th:nth-of-type(1), .scrolling-lock-table-wrapper.table-general-campaign-report-wrap td:nth-of-type(1) {
        width: 200px;
    } .scrolling-lock-table-wrapper.table-general-campaign-report-wrap th:nth-of-type(2), .scrolling-lock-table-wrapper.table-general-campaign-report-wrap td:nth-of-type(2) {
        left: 200px;
    }
/******************************* Main Application Page and Form Styles *************************************/
.form.form-financials {
    margin-bottom: 2rem;
} .form.form-financials h3 {
        margin-top: 0;
    } .form.form-financials label, .form.form-financials .forminputwrap, .form.form-financials .formoutputwrap {
        width: 47.5%;
        font-size: 0.85rem;
    } .form.form-financials label {
        font-size: 0.85rem;
    } .form.form-financials .grid-2col-wrap .grid-col {
        width: 49%;
        margin-right: 2%;
    } .form.form-financials .grid-2col-wrap .grid-col:last-of-type {
            margin-right: 0;
        } a.webphone-link img {
    border: none;
    height: 1.1em;
    width: 1.1em;
} .form .form-financials label {
    width: 50%;
} .form .form-financials .forminputwrap {
    width: 45%;
} .form .form-financials .forminputwrap input[type=number] {
        margin-left: 0.25rem;
        width: 70%;
    }
/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")";
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/*# sourceMappingURL=main.css.map */
