/*
	Inspired by/taken code where offered from:
	
	Eric Meyer					:: http://ericmeyer.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com
	
-------------------------------------------------------------------------------*/

/* Let's default this puppy out
-------------------------------------------------------------------------------*/

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

article, aside, figure, footer, header, hgroup, nav, section {
    display: block;
}

/* Responsive images and other embedded objects
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
img,
object,
embed {
    max-width: 100%;
}

/* force a vertical scrollbar to prevent a jumpy page */
html {
    overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted. 
	don't forget to restore the bullets within content. */
ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before,
    blockquote:after,
    q:before,
    q:after {
        content: '';
        content: none;
    }

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted #000;
    cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

th {
    font-weight: bold;
    vertical-align: bottom;
}

td {
    font-weight: normal;
    vertical-align: top;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input, select {
    vertical-align: middle;
}

pre {
    white-space: pre; /* CSS2 */
    white-space: pre-wrap; /* CSS 2.1 */
    white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
    word-wrap: break-word; /* IE */
}

input[type="radio"] {
    vertical-align: text-bottom;
}

input[type="checkbox"] {
    vertical-align: bottom;
    *vertical-align: baseline;
}

.ie6 input {
    vertical-align: text-bottom;
}

select, input, textarea {
    font: 99% sans-serif;
}

table {
    font-size: inherit;
    font: 100%;
}

/* Accessible focus treatment
	people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
    outline: none;
}

small {
    font-size: 85%;
}

strong, th {
    font-weight: bold;
}

td, td img {
    vertical-align: top;
}

/* Make sure sup and sub don't screw with your line-heights
	gist.github.com/413930 */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
    font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
button {
    cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
    margin: 0;
}

/* make buttons play nice in IE */
button {
    width: auto;
    overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
    -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover */
.ie6 html {
    filter: expression(document.execCommand("BackgroundImageCache", false, true));
}

/* let's clear some floats */
.clearfix:before, .clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}


/* 
-------------------------------------------------------------------------------*/

/* new Linux- and Windows-friendly sans-serif font stack: http://mky.be/fontstack */
body {
    font: 13px 'Roboto', Arial, Helvetica, sans-serif;
}

/* using local fonts? make sure to read up on Paul Irish's 
	Bulletproof @font-face syntax: http://mky.be/font-face/bulletproof/ */

/* we like off-black for text */
body, select, input, textarea {
    color: #333;
}

a {
    color: #03f;
}

    a:hover {
        color: #69f;
    }

/* Custom text-selection colors (remove any text shadows: twitter.com/miketaylr/status/12228805301) */
::-moz-selection {
    background: #737373;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #737373;
    color: #fff;
    text-shadow: none;
}

/*	j.mp/webkit-tap-highlight-color */
a:link {
    -webkit-tap-highlight-color: #737373;
}

ins {
    background-color: #737373;
    color: #fff;
    text-decoration: none;
}

mark {
    background-color: #737373;
    color: #fff;
    font-style: italic;
    font-weight: bold;
}

/* COLORS
-------------------------------------------------------------------------------*/

/* Light Grey #000000 */
/* Dark Grey #737373 */
/* Orange #D92231 */

/* Main styles
-------------------------------------------------------------------------------*/

html {
    /*background-image: url(../imgs/background.jpg);*/
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #ffffff;
}

.wrapper {
    width: 1020px;
    margin: 0 auto;
    padding: 0px;
    background-color: #ffffff;
}

.hide-text {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}


/* Category Widget
-------------------------------------------------------------------------------*/
#category-widget {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* HOMEPAGE
-------------------------------------------------------------------------------*/

#homehead {
    width: 960px;
    height: 128px; /* +30 high for search */
    margin: 0px 30px;
    float: left;
    clear: both;
}

#logo {
    width: 210px;
    height: 100px;
    /* background-image: url(../imgs/main-logo.png); */
    background-position: top center;
    background-repeat: no-repeat;
    margin-top: 14px; /* to center with right content */
    float: left;
    /*Transition*/
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

    #logo:hover {
        opacity: 0.8;
    }

#space {
    width: 150px; /* mod for login links */
    height: 115px; /* adj from 100px for Anniv Logo */
    float: left;
}

#masthead {
    width: 600px; /* mod for login links */
    height: 100px;
    float: left;
}

#login {
    width: 355px; /* mod for login links */
    height: 38px;
    float: left;
}

    #login p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 10px;
        color: #737373;
        text-align: right;
        padding-top: 23px;
    }

    #login a {
        text-decoration: none;
        font-size: 10px;
        color: #737373;
        font-weight: normal;
    }

        #login a:hover {
            text-decoration: underline;
            color: #737373;
        }

#masthead-contact {
    width: 245px;
    height: 38px;
    float: left;
}

#tagline {
    width: 600px; /* mod for login links */
    height: 42px;
    background-image: url(../imgs/taglines.png);
    background-position: top right;
    background-repeat: no-repeat;
    float: left;
}

#search {
    width: 600px; /* mod for login links */
    height: 30px;
    float: left;
}

/*#homecontent {*/
/*width:960px; 
margin: 20px auto;
float:none; 
clear:both;
position: relative;
display: block;*/
/*width: 100% !important;
}*/

#homesplash {
    width: 575px;
    height: 325px;
    float: left;
}

/* Videos Navigation ------ */

#videosnav-wrap {
    width: 120px;
    height: 325px;
    float: left;
}

#awesome-menu {
    width: 120px;
    height: 325px;
    float: left;
    clear: both;
}

    #awesome-menu a {
        display: block;
        float: left;
        width: 120px;
        height: 325px;
        background-image: url(../imgs/home/videos_menu.png);
        text-indent: -9999px;
    }

        #awesome-menu a.whois-vid {
            height: 43px;
            background-position: 0 0;
        }

        #awesome-menu a.itprod-vid {
            height: 31px;
            background-position: 0 -43px;
        }

        #awesome-menu a.engsol-vid {
            height: 43px;
            background-position: 0 -74px;
        }

        #awesome-menu a.savvyprint-vid {
            height: 49px;
            background-position: 0 -117px;
        }

        #awesome-menu a.savvyguard-vid {
            height: 24px;
            background-position: 0 -166px;
        }

        #awesome-menu a.cloudsol-vid {
            height: 43px;
            background-position: 0 -190px;
        }

        #awesome-menu a.unicomm-vid {
            height: 46px;
            background-position: 0 -233px;
        }

        #awesome-menu a.whois-vid:hover, #awesome-menu a.whois-vid:focus {
            background-position: -120px 0;
        }

        #awesome-menu a.itprod-vid:hover, #awesome-menu a.itprod-vid:focus {
            background-position: -120px -43px;
        }

        #awesome-menu a.engsol-vid:hover, #awesome-menu a.engsol-vid:focus {
            background-position: -120px -74px;
        }

        #awesome-menu a.savvyprint-vid:hover, #awesome-menu a.savvyprint-vid:focus {
            background-position: -120px -117px;
        }

        #awesome-menu a.savvyguard-vid:hover, #awesome-menu a.savvyguard-vid:focus {
            background-position: -120px -166px;
        }

        #awesome-menu a.cloudsol-vid:hover, #awesome-menu a.cloudsol-vid:focus {
            background-position: -120px -190px;
        }

        #awesome-menu a.unicomm-vid:hover, #awesome-menu a.unicomm-vid:focus {
            background-position: -120px -233px;
        }

.videosnav-item {
    width: 120px;
    height: 46px;
    float: left;
    padding: 0;
    margin: 0;
}

.videosnav-item2 {
    width: 120px;
    float: left;
    padding: 0;
    margin: 0;
}


/* End Videos Navigation ------ */

#homesidebar {
    width: 258px;
    height: 325px;
    margin-left: 7px;
    float: left;
}

#homesubsplash {
    width: 960px;
    margin: 0px 30px 20px 30px;
    background-image: url(../imgs/sub-splash-content-bknd.png);
    background-position: top center;
    background-repeat: no-repeat;
    float: left;
    clear: both;
}

#itproducts,
#techsolutions,
#trending {
    width: 280px;
    float: left;
    padding: 40px 20px 0px 20px;
}

.trending-feed {
    width: 280px;
    float: left;
    padding: 40px 20px 0px 0px;
}


#errorpage {
    padding: 12px;
    float: left;
}

#homecontent h2 {
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 21px;
    padding-top: 4px;
    color: #737373;
    text-align: left;
}

#homecontent p,
#itproducts p,
#techsolutions p,
#trending p, .trending-feed p {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: inherit;
    line-height: 16px;
    padding-top: 4px;
    color: #737373;
    text-align: left;
}

#homecontent a,
#itproducts a,
#trending a, .trending-feed a {
    text-decoration: none;
    font-size: inherit;
    color: #737373;
    font-weight: normal;
}

#techsolutions a {
    text-decoration: underline;
    font-size: 11px;
    color: #737373;
    font-weight: normal;
}

    #techsolutions a:hover {
        text-decoration: none;
        color: #737373;
    }

#homecontent a:hover,
#itproducts a:hover,
#trending a:hover, .trending-feed a:hover {
    text-decoration: underline;
    color: #737373;
}

#homecontent a:active,
#itproducts a:active,
#techsolutions a:active,
#trending a:active, .trending-feed a:active {
    text-decoration: none;
    color: #D92231;
}

.home-subcontent-container {
    width: 280px;
    margin: 0px;
    float: left;
    clear: both;
}

.home-subcontent-left {
    width: 180px;
    float: left;
    padding: 0px;
    margin: 0px;
}

.home-subcontent-right {
    width: 95px;
    float: right;
    padding: 28px 0px 0px 5px;
    margin: 0px;
}

.orangedrop-container {
    width: 960px;
    margin: 0px;
    float: left;
    clear: both;
}

.orangedrop {
    background-image: url(../imgs/xglyph_letterhead_sef-black-32.png);
    background-position: top left;
    background-repeat: no-repeat;
    width: 298px;
    height: 30px;
    float: left;
    margin: 10px 0px 0px 20px;
}

    .orangedrop p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 11px;
        color: #737373;
        text-align: left;
        padding-left: 20px;
    }

    .orangedrop a {
        text-decoration: none;
        font-size: 11px;
        color: #737373;
        font-weight: normal;
    }

        .orangedrop a:hover {
            text-decoration: underline;
            color: #737373;
        }

#homefooter {
    width: 960px;
    /* margin: 0px 30px; */
    margin: 0 auto;
    clear: both;
}


/* MAIN STYLES
-------------------------------------------------------------------------------*/


ul.standard, ol.standard {
    padding-left: 13px;
    color: #737373;
    font-size: 12px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    margin-left: 0;
}

ol.standard {
    padding-left: 20px;
}

    ol.standard.morethan9 {
        padding-left: 30px;
    }

ul.standard li {
    list-style-type: disc;
}

ul.standard li, ol.standard li {
    margin: 0px 0;
}

ul.two-col-list {
    -moz-column-count: 2;
    -moz-column-gap: 60px;
    -webkit-column-count: 2;
    -webkit-column-gap: 60px;
    column-count: 2;
    column-gap: 60px;
    padding-top: 6px;
}

    ul.two-col-list li {
        -webkit-column-break-inside: avoid;
        -moz-column-break-inside: avoid;
        -o-column-break-inside: avoid;
        -ms-column-break-inside: avoid;
        column-break-inside: avoid;
        margin: 0;
        line-height: 26px;
    }

#subnav {
    width: 960px;
    margin: 0px 30px 0px 30px;
    clear: both;
}

    #subnav p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 11px;
        color: #737373;
        text-align: left;
        padding: 10px 0px 0px 20px;
    }

    #subnav a {
        text-decoration: none;
        font-size: 11px;
        color: #737373;
    }

        #subnav a:hover {
            text-decoration: underline;
            color: #737373;
        }

#content {
    /*width:960px; 
margin:12px 30px 0px 30px;
float:left; 
clear:both;
max-width: 96%;*/
}

#left {
    width: 213px;
    height: 244px;
    float: left;
    margin-right: 5px;
}

#splash {
    width: 523px;
    height: 244px;
    float: left;
}

#splash-wide {
    width: 738px;
    height: 244px;
    float: left;
}

#manserv_splash {
    width: 523px;
    height: 244px;
    float: left;
}

#manserv_splash1 {
    width: 261px;
    height: 244px;
    float: left;
}

#manserv_splash2 {
    width: 261px;
    height: 244px;
    float: left;
}

#splash-wide1 {
    width: 369px;
    height: 244px;
    float: left;
}

#splash-wide2 {
    width: 369px;
    height: 244px;
    float: left;
}

#sidebar {
    width: 214px;
    height: 244px;
    float: left;
    margin-left: 4px;
}

#subsplash, .subsplash {
    /*width:960px;*/
    /*margin:0px 30px 0px 30px;*/
    /*background-image: url(../imgs/sub-splash-content-bknd2.png);*/
    background-position: top center;
    background-repeat: no-repeat;
    vertical-align: top;
    /*float:left; */
    clear: both;
}

#subsplash2 {
    width: 746px;
    margin: 0px 0px 0px 30px;
    background-image: url(../imgs/sub-splash-content-bknd3.png);
    background-position: top center;
    background-repeat: no-repeat;
    vertical-align: top;
    float: left;
    clear: both;
}

#no-margin, .no-margin {
    margin: 0;
}

#brochures,
#addresses {
    /*width:180px;*/
    float: left;
    padding: 35px 25px 20px 20px;
}

.locations {
    padding: 35px 20px 0px 20px !important;
}

.brochures-link {
    padding-left: 18px;
    padding-bottom: 10px;
    background-image: url(../imgs/pdf-icon.png);
    background-position: top left;
    background-repeat: no-repeat;
    float: left;
}

.universal-event-widget {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #737373;
    text-align: left;
    clear: both;
}

    .universal-event-widget p {
        line-height: 14px !important;
    }

    .universal-event-widget a {
        text-decoration: none !important;
    }

        .universal-event-widget a:hover {
            text-decoration: underline !important;
        }

.event-feed-link a {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 14px !important;
    line-height: 17px !important;
    font-weight: bold !important;
    padding: 0px !important;
    color: #D92231 !important;
    text-align: left;
}

#brochures p,
#addresses p,
#events p,
#content-right-alt p {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 16px;
    padding-top: 4px;
    color: #737373;
    text-align: left;
    clear: both;
}

#events h1, #brochures h1 {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    padding: 0px 0px 6px 0px;
    color: #D92231;
    text-align: left;
}

    #events h1 a, #brochures h1 a {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
        text-decoration: none;
    }

        #events h1 a:hover, #brochures h1 a:hover {
            font-family: 'Roboto', Arial, Helvetica, sans-serif;
            font-size: 14px;
            line-height: 17px;
            font-weight: bold;
            padding: 0px 0px 6px 0px;
            color: #D92231;
            text-align: left;
            text-decoration: underline;
        }

        #events h1 a:active, #brochures h1 a:active {
            font-family: 'Roboto', Arial, Helvetica, sans-serif;
            font-size: 14px;
            line-height: 17px;
            font-weight: bold;
            padding: 0px 0px 6px 0px;
            color: #737373;
            text-align: left;
            text-decoration: none;
        }

#brochures a, #events a, #addresses a {
    text-decoration: none;
    font-size: 11px;
    color: #737373;
    font-weight: normal;
}

#content-right-alt a {
    text-decoration: underline;
    font-size: 11px;
    color: #737373;
    font-weight: normal;
}

    #itprod a:hover,
    #col a:hover,
    #advsol a:hover,
    #engsol a:hover,
    #manserv a:hover,
    #manserv-wide a:hover,
    #cloudsol a:hover,
    #securitysol a:hover,
    #unicomm a:hover,
    #about a:hover,
    .event-info a:hover,
    .scheduled-event a:hover,
    #resource-center a:hover,
    #careers a:hover,
    #locations a:hover,
    #brochures a:hover,
    #mfps-copiers-leftnav a:hover,
    #addresses a:hover,
    .partner-copy a:hover,
    #events a:hover,
    #its-event a:hover,
    #its-event-2 a:hover,
    .its-event-date a:hover,
    #its-photos a:hover,
    .its-testimonial a:hover,
    #ite-cstatement a:hover,
    #ite-registration-wrap a:hover,
    #other-events-wrap a:hover,
    #ite-register-left a:hover,
    #ite-presenter-wrap a:hover,
    #content-right-alt a:hover,
    #content-wide a:hover {
        text-decoration: none;
        color: #000000;
    }

    #itprod a:active,
    #col a:active,
    #advsol a:active,
    #engsol a:active,
    #securitysol a:active,
    #manserv a:active,
    #manserv-wide a:active,
    #cloudsol a:active,
    #unicomm a:active,
    #about a:active,
    .event-info a:active,
    #resource-center a:active,
    #careers a:active,
    #locations a:active,
    #brochures a:active,
    #mfps-copiers-leftnav a:active,
    #addresses a:active,
    .partner-copy a:active,
    #events a:active,
    #its-event a:active,
    #its-event-2 a:active,
    .its-event-date a:active,
    #its-photos a:active,
    .its-testimonial a:active,
    #ite-cstatement a:active,
    #ite-registration-wrap a:active,
    #other-events-wrap a:active,
    #ite-register-left a:active,
    #ite-presenter-wrap a:active,
    #content-right-alt a:active,
    #content-wide a:active {
        text-decoration: none;
        color: #D92231;
    }

#events {
    width: 194px;
    float: left;
    vertical-align: top;
    padding: 35px 20px 20px 0px;
}

#content-right-alt {
    width: 194px;
    float: left;
    padding: 35px 20px 20px 0px;
}

.orange-text {
    color: #D92231;
}

.larger-text {
    font-size: 15px;
}

.light-grey-text {
    color: #000000;
}




/* MY ACCOUNT
-------------------------------------------------------------------------------*/

/*.page-account-info .public-wrapper {
    width: 960px !important;
    max-width: 100% !important;
    margin: 40px auto !important;
}*/

.public-wrapper {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-image: url(../../Images/xits_background.jpg);
    min-height: 39.375rem;
    padding: 1.25rem 1.875rem;
    background-position: top;
}

.public-wrapper-tile-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.strong-myacc {
    color: black;
    font-weight: bold;
}

#myacc {
    width: 506px;
    /*	padding: 35px 20px 20px 0px;
*/
}

    #myacc p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
        padding: 4px 0px 8px 0px;
        color: black;
        text-align: left;
    }

    #myacc h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: black;
        text-align: left;
    }

    #myacc a {
        text-decoration: underline;
        font-size: 13px;
        color: black;
        font-weight: normal;
    }

#myacc-login {
    width: 199px; /* -padding-left */
    background-image: url(../../Images/myaccount/login_bknd.png);
    background-position: top left;
    background-repeat: no-repeat;
    float: left;
    margin-right: 5px;
    padding-left: 14px;
    padding-top: 80px;
}

#myacc-login-panel {
    flex-basis: 40%;
    margin-right: 1rem;
    width: 100%;
    background-position: top left;
    background-repeat: no-repeat;
    float: none;
    margin-right: 0px;
    display: inline-block;
    position: relative;
    font-family: Roboto Condensed, sans-serif !important;
}

#myacc-login-panel-form {
    padding: 2.1875rem 2.5rem;
    max-width: 32rem;
    min-width: 25rem;
    width: 100%;
    padding: 1.875rem;
    background-color: hsla(0, 0%, 100%, .8);
    color: black !important;
    padding-bottom:80px;
}

    #myacc-login-panel-form p {
        font-weight: 200 !important;
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 400;
        margin: 0 0 1em;
        padding: 0;
        color: black !important;
    }


#myacc-login-panel h2 {
    font-weight: 200 !important;
    margin: 0 0 .5em;
    padding: 0;
    font-size: 2.25rem;
    line-height: 1.11111em;
    color: black !important;
}

#myacc-login-panel p {
    font-weight: 200 !important;
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 400;
    margin: 0 0 1em;
    padding: 0;
}

.form-label label {
    display: inline-block;
    margin-bottom: .3125rem;
    line-height: 1.22222em;
    font-family: Roboto Condensed, sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: black !important;
}

.xeroxLink {
    font-weight: 700 !important;
    color: black !important;
}

#myacc-forgot-pw {
    width: 465px;
    height: 186px;
    background-color: #000000;
    /*background-image: url(../../Images/reskin/forgot-password-block-bg.png);*/
    background-position: top left;
    background-repeat: no-repeat;
    float: none;
    margin-right: 0px;
    padding-left: 20px;
    padding-top: 15px;
    display: inline-block;
    position: relative;
}

#myacc-change-pw {
    width: 454px; /* -padding-left */
    height: 278px; /* -padding-top */
    background-image: url(../../Images/myaccount/change-pw_bknd.png);
    background-position: top left;
    background-repeat: no-repeat;
    float: left;
    margin-right: 0px;
    padding-left: 20px;
    padding-top: 57px;
}

#myacc-new-acct {
    width: 454px; /* -padding-left */
    height: 186px;
    background-image: url(../../Images/myaccount/new-acct_bknd.png);
    background-position: top left;
    background-repeat: no-repeat;
    float: left;
    margin-right: 0px;
    padding-left: 20px;
    padding-top: 57px;
}

#new-acct_form-wrap {
    width: 454px; /* -padding-left */
    padding: 0 20px 0 20px;
}

.xeroxLink {
    font-weight: 700;
    color: black;
}


#login-button-account {
    font-family: Roboto Condensed, sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    line-height: 3em !important;
    display: inline-block;
    background-color: #d92231;
    border: 1px solid #d92231;
    color: #fff !important;
    padding: 0 30px;
    vertical-align: middle;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none !important;
    width: 100% !important;
    min-width: 100% !important;
    white-space: nowrap;
    margin-bottom: 2rem !important;
}

#open-account-wrap {
    flex-basis: 60%;
    margin-left: 1rem;
    display: block;
}

    #open-account-wrap h2 {
        font-family: Roboto Condensed, sans-serif;
        font-weight: 200;
        font-size: 3rem;
        line-height: 1.08333em;
        text-align: center;
        color: #FFFFFF !important;
        padding-bottom: 10px;
    }

    #open-account-wrap h3 {
        color: #fff;
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-family: Roboto Condensed, sans-serif;
        font-weight: 200;
        font-size: 1.875rem;
        line-height: 1.13333em;
        padding: 0px;
        text-align: center;
        float: left;
    }

#open-account-header {
    width: 80%;
    margin: 0 auto;
}

#open-account-text {
    width: 60%;
    margin: 0 auto;
}





#need-help-wrap {
    width: 465px;
    height: 186px;
    background-color: #000000;
    /*background-image: url(../../Images/reskin/create-account-box.png);*/
    background-position: top left;
    background-repeat: no-repeat;
    float: none;
    padding: 15px 30px 0 20px;
    display: inline-block;
    position: relative;
}

    #need-help-wrap p {
        color: #FFFFFF;
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 0.95em;
        padding: 0px;
        text-align: left;
        float: left;
    }

#notes {
    width: 407px;
    float: left;
    margin: 20px 0px;
    padding: 10px 20px 10px 20px;
    background-color: #f1f1f1;
}

    #notes p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 11px;
        line-height: 16px;
        padding-bottom: 4px;
        color: #737373;
        text-align: left;
    }

    #notes a {
        text-decoration: none;
        font-size: 11px;
        color: #737373;
        font-weight: normal;
    }

.panel-cell {
    width: 66%;
}

.panel-cell-inner {
    width: 98%;
    height: 100%;
}

.grey-background {
    background-color: #ebebeb;
}



/* IT PRODUCTS
-------------------------------------------------------------------------------*/

.strong-itprod {
    color: #D92231;
    font-weight: bold;
}

#itprod {
    width: 506px;
    float: left;
    padding: 35px 20px 20px 0px;
}

    #itprod p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #itprod h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    #itprod a {
        text-decoration: underline;
        font-size: 12px;
        color: #737373;
        font-weight: normal;
    }

#itprod-login {
    width: 199px; /* -padding-left */
    height: 164px; /* -padding-top */
    background-image: url(../imgs/itproducts/login_bknd.png);
    background-position: top left;
    background-repeat: no-repeat;
    float: left;
    margin-right: 5px;
    padding-left: 14px;
    padding-top: 80px;
}


/* C.O.L.
-------------------------------------------------------------------------------*/

.col-wrapper { /* Alternate Wrapper */
    width: 1240px;
    margin: 0 auto;
    padding: 0px;
    background-image: url(../imgs/background-col.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #ffffff;
}

#col-head {
    width: 960px;
    height: 128px; /* +30 high for search */
    margin: 0 auto;
    clear: both;
}

#nav-col {
    width: 960px;
    height: 55px;
    margin: 0 auto;
    background-color: #fff;
    clear: both;
}

#content-col {
    width: 1240px;
    margin: 0px;
    float: left;
    clear: both;
}

.strong-col {
    color: #D92231;
    font-weight: bold;
}

#col {
    width: 925px;
    float: left;
    padding: 0px 20px 10px 15px;
}

    #col p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #col h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    #col a {
        text-decoration: underline;
        font-size: 12px;
        color: #737373;
        font-weight: normal;
    }

#col-footer {
    width: 960px;
    margin: 0 auto;
    clear: both;
}



/* ADVANCED SOLUTIONS
-------------------------------------------------------------------------------*/

.strong-advsol {
    color: #737373;
    font-weight: bold;
}

#advsol {
    width: 506px;
    float: left;
    padding: 35px 20px 20px 0px;
}

    #advsol p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: inherit;
        line-height: 17px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #advsol h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    #advsol a {
        text-decoration: underline;
        font-size: inherit;
        color: #737373;
        font-weight: normal;
    }


/* SECURITY SOLUTIONS
-------------------------------------------------------------------------------*/

.strong-securitysol {
    color: #D50034;
    font-weight: bold;
}

#securitysol {
    width: 506px;
    float: left;
    padding: 35px 20px 20px 0px;
}

    #securitysol p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #securitysol h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    /* For Accordion */
    #securitysol h2 {
        font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        cursor: pointer;
        padding: 8px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    #securitysol a {
        text-decoration: underline;
        font-size: 12px;
        color: #737373;
        font-weight: normal;
    }







/* ENGINEERED SOLUTIONS
-------------------------------------------------------------------------------*/

.strong-engsol {
    color: #DAC810;
    font-weight: bold;
}

#engsol {
    width: 506px;
    float: left;
    padding: 35px 20px 20px 0px;
}

    #engsol p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #engsol h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    /* For Accordion */
    #engsol h2 {
        font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        cursor: pointer;
        padding: 8px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    #engsol a {
        text-decoration: underline;
        font-size: 12px;
        color: #737373;
        font-weight: normal;
    }


/* MANAGED SERVICES
-------------------------------------------------------------------------------*/

.strong-manserv {
    color: #005195;
    font-weight: bold;
}

#manserv {
    width: 506px;
    float: left;
    padding: 35px 20px 20px 0px;
}

    #manserv p, #manserv-wide p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #manserv h1, #manserv-wide h1, #manserv h2, #manserv-wide h2, #manserv h2 a, #manserv-wide h2 a {
        font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
        clear: both;
    }

        #manserv h2, #manserv-wide h2, #manserv h2 a, #manserv-wide h2 a {
            color: #000000;
        }

    #manserv a, #manserv-wide a {
        text-decoration: underline;
        font-size: 12px;
        color: #737373;
        font-weight: normal;
    }

#manserv-wide {
    width: 712px;
    float: left;
    padding: 42px 0px 20px 15px;
}

#mfps-copiers-leftnav {
    width: 180px;
    float: left;
    background-color: #FFFFFF;
    padding: 38px 13px 60px 20px;
    margin: 27px 7px 25px 0;
}

    #mfps-copiers-leftnav ul {
        margin-left: 15px;
        list-style-image: url(../imgs/arrow.png);
    }

    #mfps-copiers-leftnav p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 11px;
        line-height: 16px;
        padding-top: 4px;
        color: #737373;
        text-align: left;
        clear: both;
    }

    #mfps-copiers-leftnav h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

        #mfps-copiers-leftnav h1 a {
            font-family: 'Roboto', Arial, Helvetica, sans-serif;
            font-size: 14px;
            line-height: 17px;
            font-weight: bold;
            padding: 0px 0px 6px 0px;
            color: #D92231;
            text-align: left;
            text-decoration: none;
        }

            #mfps-copiers-leftnav h1 a:hover {
                font-family: 'Roboto', Arial, Helvetica, sans-serif;
                font-size: 14px;
                line-height: 17px;
                font-weight: bold;
                padding: 0px 0px 6px 0px;
                color: #D92231;
                text-align: left;
                text-decoration: underline;
            }

            #mfps-copiers-leftnav h1 a:active {
                font-family: 'Roboto', Arial, Helvetica, sans-serif;
                font-size: 14px;
                line-height: 17px;
                font-weight: bold;
                padding: 0px 0px 6px 0px;
                color: #737373;
                text-align: left;
                text-decoration: none;
            }

    #mfps-copiers-leftnav a {
        text-decoration: none;
        font-size: 11px;
        color: #737373;
        font-weight: normal;
    }

.products-row-wrap {
    float: left;
    clear: both;
    margin: 15px 0 0 0;
}

.products-wrap {
    float: left;
    margin-right: 15px !important;
    width: 220px;
    word-wrap: break-word;
}

    .products-wrap ul {
        margin: 0 0 10px 15px;
        list-style: disc;
    }

    .products-wrap li p {
        padding: 8px 0 0 !important;
    }

.products-img-container img, .indiv-products-img-container {
    width: 100%;
    -ms-interpolation-mode: bicubic; /* fix stupid IE image scaling issues */
}

.products-img-container {
    float: left;
    width: 210px;
    height: 110px;
    overflow: hidden;
    border: 5px solid #FFFFFF;
    margin: 0 0 15px;
}

.indiv-products-img-container {
    float: left;
    width: 230px;
    height: 130px;
    overflow: hidden;
    border: 8px solid #FFFFFF;
    margin: 0 20px 0 0;
}

.indiv-products-img-container_2 {
    float: left;
    width: 210px;
    height: 110px;
    overflow: hidden;
    border: 5px solid #FFFFFF;
    margin: 0 0 15px;
}

.indiv-products-img {
    position: absolute;
    width: 230px !important;
    height: 130px !important;
    float: left;
    overflow: hidden;
}

.indiv-products-img_2 {
    position: absolute;
    width: 210px !important;
    height: 110px !important;
    float: left;
    overflow: hidden;
}

.indiv-products-img-enlarge-drop {
    position: relative;
    z-index: 1;
    top: 5px;
    left: 5px;
    clear: both;
}

.indiv-products-img-enlarge-drop_2 {
    position: relative;
    z-index: 1;
    top: 5px;
    left: 5px;
    clear: both;
}

.products-descr-container {
    float: left;
    width: 260px;
}

.products-descr-container_2 {
    float: left;
    width: 210px;
}

    .products-descr-container h1, .products-descr-container_2 h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px !important;
        line-height: 17px;
        font-weight: bold !important;
        padding: 0px 0px 6px 0px;
        color: #D92231 !important;
        text-align: left;
    }

.products-wrap h2, .products-descr-container_2 {
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    padding: 0px;
    color: #D92231;
    text-align: left;
}

    .products-descr-container_2 p {
        font-weight: normal;
    }

    .products-wrap h2 a {
        font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
        font-size: 14px !important;
        line-height: 17px !important;
        font-weight: bold !important;
        padding: 0px;
        color: #D92231 !important;
        text-decoration: none !important;
    }

        .products-wrap h2 a:hover {
            text-decoration: underline !important;
            color: #D92231 !important;
        }

        .products-wrap h2 a:active {
            text-decoration: none !important;
            color: #737373 !important;
        }


.products-wrap h3 {
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    padding: 0px;
    text-transform: uppercase;
    color: #737373;
    text-align: left;
}

.products-wrap p {
    padding: 10px 0 5px 0 !important;
}

#indiv-prod-wrap {
    float: left;
    width: 530px;
    margin: 0 20px 20px 0;
}

.indiv-prod-wrap_2 {
    float: left;
    width: 220px;
    margin: 0 15px 20px 0;
}

#order-inq-btn-wrap {
    float: left;
}

#indiv-prod-descr-intro {
    float: left;
    clear: both;
    margin: 0;
    padding: 0 0 20px 0;
}

    #indiv-prod-descr-intro h1 {
        /* color: #737373; */
    }

#products-tabbed-content-wrap {
    float: left;
    clear: both;
    width: 708px;
}

#products-tabbed-content {
    border-top: 1px solid #FFFFFF;
    padding-top: 16px;
}

    #products-tabbed-content p {
        padding: 0 0 5px 0;
    }

    #products-tabbed-content ul {
        list-style: disc;
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 11px;
        line-height: 15px;
        color: #737373;
        margin: 6px 0 0 16px;
        padding: 0;
    }


/* ------------------------------------

Fifty50 Grid Layout for larger previews

------------------------------------  */


div > .products-row-wrap.fifty50 {
    width: 725px;
}

.products-row-wrap.fifty50 /* ADD A CLASS, REMOVE EXTRA COLUMN ELEMENT */ {
    float: none;
    width: 100%;
}

    .products-row-wrap.fifty50 .indiv-prod-wrap_2 {
        margin: 0;
        width: 50%;
        box-sizing: border-box;
        /*margin-bottom: 20px;*/
    }

        .products-row-wrap.fifty50 .indiv-prod-wrap_2:nth-child(odd) {
            padding-left: 10px;
        }

        .products-row-wrap.fifty50 .indiv-prod-wrap_2:nth-child(even) {
            padding-right: 10px;
        }

    .products-row-wrap.fifty50 .indiv-products-img-container_2 {
        position: relative;
        float: none;
        width: 100%;
        height: auto;
        box-sizing: border-box;
    }

        .products-row-wrap.fifty50 .indiv-products-img-container_2 p {
            display: none;
        }

    .products-row-wrap.fifty50 .indiv-products-img_2 {
        position: relative;
        width: 100% !important;
        height: auto !important;
        float: none;
    }

        .products-row-wrap.fifty50 .indiv-products-img_2 a[rel="shadowbox"] {
            display: inline-flex;
            vertical-align: text-bottom;
            height: 216px;
        }

            .products-row-wrap.fifty50 .indiv-products-img_2 a[rel="shadowbox"] img {
                width: 100%;
                height: auto;
            }

    .products-row-wrap.fifty50 .indiv-products-img-enlarge-drop_2 {
        position: absolute;
        z-index: 1;
    }

    .products-row-wrap.fifty50 .products-descr-container_2 {
        float: none;
        width: 100%;
    }



/* Post UI Tabs Overrides */

.ui-widget-content {
    background: none !important;
    border: none !important;
}

.ui-tabs {
    padding: 0 !important;
}

.ui-tabs-nav li.ui-tabs-active {
    padding-bottom: 0 !important;
}

.ui-tabs .ui-tabs-nav li a {
    /*padding: 0.8em 1em!important;*/
    padding: 0.8em 0.65em; /* tightened up to fit 6th tab on Symposium Pages */
    text-decoration: none !important;
    border: none !important;
}

.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited {
    color: #fff !important;
    background-color: #737373 !important;
    text-decoration: none !important;
    border: none !important;
    font-weight: bold !important;
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
    /* color: #fff!important; */
    text-decoration: none !important;
    border: none !important;
    font-weight: bold !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header {
    background: none !important;
    /*background-color: #000000!important;*/
    background-color: #FFFFFF !important;
    color: #737373 !important;
    border: none !important;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
    color: #fff !important;
    background-color: #D92231 !important;
    text-decoration: none !important;
    font-weight: bold !important;
    border: none !important;
}

.ui-widget-header {
    background: none !important;
    border: none !important;
    color: #fff !important;
}

.ui-tabs-panel {
    padding: 0em !important;
}


/* savvyPrint Meters Forms Layout */

.meters-row-wrap {
    float: left;
    clear: both;
    margin: 15px 0 0 0;
}

.meters-wrap {
    float: left;
    margin-right: 15px !important;
    width: 160px;
    word-wrap: break-word;
}



/* CLOUD SOLUTIONS
-------------------------------------------------------------------------------*/

.strong-cloudsol {
    color: #5e9532;
    font-weight: bold;
}

#cloudsol {
    width: 506px;
    float: left;
    padding: 35px 20px 20px 0px;
}

    #cloudsol p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #cloudsol h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    #cloudsol a {
        text-decoration: underline;
        font-size: 12px;
        color: #737373;
        font-weight: normal;
    }


/* UNIFIED COMMUNICATIONS
-------------------------------------------------------------------------------*/

.strong-unicomm {
    color: #804c9c;
    font-weight: bold;
}

#unicomm {
    width: 506px;
    float: left;
    padding: 35px 20px 20px 0px;
}

    #unicomm p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #unicomm h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    #unicomm a {
        text-decoration: underline;
        font-size: 12px;
        color: #737373;
        font-weight: normal;
    }

#uc-voice-partners-bar {
    float: left;
    clear: both;
    width: 500px;
    margin-bottom: 15px;
}

.orangedrop_uc {
    background-image: url(../imgs/xglyph_letterhead_sef-black-32.png);
    background-position: top 3px left;
    background-repeat: no-repeat;
    width: 298px;
    height: 30px;
    float: left;
    margin-top: -3px;
}

    .orangedrop_uc p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 11px;
        color: #737373;
        text-align: left;
        padding-left: 20px;
    }

    .orangedrop_uc a {
        color: #D92231 !important;
        font-size: 11px;
        font-weight: bold !important;
        padding: 0 0 0 20px;
        text-decoration: none !important;
    }

        .orangedrop_uc a:hover {
            color: #D92231 !important;
            text-decoration: underline !important;
        }


/* ABOUT IT SAVVY
-------------------------------------------------------------------------------*/

.strong-about {
    color: #D92231;
    font-weight: bold;
}

#about {
    width: 506px;
    float: left;
    padding: 35px 20px 20px 0px;
}

    #about p, .mgmt-info p, #resource-center p, #success-stories p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #about h1, .mgmt-info h1, #resource-center h1, #success-stories h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

        #about h1 a {
            text-decoration: underline;
            font-family: 'Roboto', Arial, Helvetica, sans-serif;
            font-size: 14px;
            line-height: 17px;
            font-weight: bold;
            padding: 0px 0px 6px 0px;
            color: #D92231;
            text-align: left;
        }

            #about h1 a:hover {
                text-decoration: none;
                color: #737373;
            }

            #about h1 a:active {
                text-decoration: none;
                color: #D92231;
            }

    #about h2 {
        font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 15px 0px 6px 0px;
        color: #000000;
        text-align: left;
    }

    #about a, .mgmt-info a, #success-stories a {
        text-decoration: underline;
        font-size: 12px;
        color: #737373;
        font-weight: normal;
    }


/* AWARDS & CERTIFICATIONS -------------------- */

#awards_header {
    width: 498px;
    height: 33px;
    margin-top: 15px;
    padding: 0px;
    background-image: url(../imgs/about/awards-banner.jpg);
    background-position: top left;
    background-repeat: no-repeat;
    float: left;
}

#certifications_header {
    width: 498px;
    height: 33px;
    margin-top: 15px;
    padding: 0px;
    background-image: url(../imgs/about/certifications-banner.jpg);
    background-position: top left;
    background-repeat: no-repeat;
    float: left;
}


/* SUCCESS STORIES -------------------- */

#success-stories {
    width: 712px;
    float: left;
    clear: both;
    padding: 30px 0px 20px 15px;
}

.ss-wrap {
    width: 712px;
    background-image: url(../imgs/about/dotted-line-long.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    margin-bottom: 12px;
    float: left;
    clear: both;
}

.ss-thumbs {
    width: 205px;
    margin: 0px;
    padding: 0px;
    float: left;
}

.ss-blurbs {
    width: 502px;
    margin-bottom: 0px;
    padding-bottom: 30px;
    float: left;
}

.ss_btn-wrap {
    margin: 0;
    padding: 0;
    float: left;
    clear: both;
}

.ss_left {
    float: left;
    margin: 0;
    padding: 0;
}

.ss_right {
    float: left;
    font-size: 10px;
    margin-left: 8px !important;
    color: #737373 !important;
}

    .ss_right p {
        font-size: 10px;
        margin-left: 8px !important;
        color: #737373 !important;
    }

    .ss_left a, .ss_right a {
        font-size: 10px !important;
        text-decoration: none !important;
        color: #737373 !important;
    }

        .ss_left a:hover, .ss_right a:hover {
            font-size: 10px !important;
            text-decoration: underline !important;
            color: #737373 !important;
        }

        .ss_left a:active, .ss_right a:active {
            font-size: 10px !important;
            text-decoration: none !important;
            color: #D92231 !important;
        }


/* SUCCESS STORIES (revised page) -------------------*/

#content-wide {
    width: 960px;
    float: left;
    clear: both;
    padding: 30px 0px 20px 0px;
}

    #content-wide p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #content-wide h1 {
        font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    /* For Accordion */
    #content-wide h2 {
        font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        cursor: pointer;
        padding: 8px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    #content-wide a {
        text-decoration: underline;
        font-size: 12px;
        color: #737373;
        font-weight: normal;
    }

/* SUCCESS STORIES COLLAPSE-O-MATIC */

.collapsocontainer {
    float: left;
    clear: both;
}

.collapsowrap-vid {
    float: left !important;
    background-color: #FFF;
    padding: 10px 18px 10px 0;
}

    .collapsowrap-vid img {
        border: 1px solid #e1e1e1;
        -webkit-box-shadow: 2px 2px 3px 1px #e1e1e1;
        box-shadow: 2px 2px 3px 1px #e1e1e1;
    }

.collapsowrap-pdf {
    float: left !important;
    background-color: #FFF;
    padding: 10px 28px 10px 0;
    min-height: 402px;
}

    .collapsowrap-pdf img {
        border: 1px solid #e1e1e1;
        -webkit-box-shadow: 2px 2px 3px 1px #e1e1e1;
        box-shadow: 2px 2px 3px 1px #e1e1e1;
    }

.collapseomatic {
    background-image: url(../imgs/about/expand-btn.png) !important;
    /* background-position:top 8px right; */
    background-position: 878px /*x-position*/ 8px /*y-position*/;
    background-repeat: no-repeat;
    float: right;
    height: 16px;
    text-align: right;
    width: 960px;
    border-top: 1px dotted #CCCCCC;
    color: #737373;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin-top: 10px;
    text-align: left;
    padding-top: 10px !important;
    text-decoration: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.colomat-close {
    background-image: url(../imgs/about/collapse-btn.png) !important;
    /* background-position:top 8px right; */
    background-position: 878px /*x-position*/ 8px /*y-position*/;
    background-repeat: no-repeat;
    padding-top: 10px !important;
}

.colomat-visited {
    margin-left: 0px !important;
}

.collapseomatic_content {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: #737373;
    padding-bottom: 16px !important;
    width: 960px;
    margin-left: 0px !important;
    padding-left: 0px !important;
    float: left;
    clear: both;
}

.ss-pdf-title, .ss-vid-title {
    width: 210px !important;
    max-width: 210px !important;
}

    .ss-pdf-title h3, .ss-vid-title h3 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        color: #737373;
        font-size: 12px;
        font-weight: bold;
        line-height: 14px;
        text-align: left;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

        .ss-pdf-title h3 a, .ss-vid-title h3 a {
            font-weight: bold !important;
        }

    .ss-pdf-title p, .ss-vid-title p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        color: #737373;
        font-size: 11px;
        font-weight: normal !important;
        line-height: 13px;
        text-align: left;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

.collapseomore {
    background-image: url(../imgs/about/more-btn.png) !important;
    background-position: top 8px left;
    background-repeat: no-repeat;
    float: left;
    height: 16px;
    text-align: left;
    width: 960px;
    border-top: 1px dotted #CCCCCC;
    color: #737373;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin-top: 10px;
    text-align: left;
    padding-top: 10px !important;
    text-decoration: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.collapseomore-close {
    background-image: url(../imgs/about/less-btn.png) !important;
    background-position: top 8px left;
    background-repeat: no-repeat;
    padding-top: 10px !important;
}

#special-bubble span:before {
    content: '';
    background-image: url(../imgs/about/ss-pdfs/ss-bubbles-small/itproducts-bubble-ss.png);
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 0px;
    margin-right: 5px;
    display: inline-block;
    width: 14px;
    height: 12px;
    margin-right: 5px;
}



/* EVENTS -------------------- */

#event-header-wrap {
    width: 960px;
    margin-top: 40px;
    padding: 0px;
    float: left;
    clear: both;
}

#event-header-spacer {
    width: 212px;
    margin: 0px;
    padding: 0px;
    float: left;
}

#event-header {
    width: 495px;
    background-image: url(../imgs/about/event_page-end.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    margin-bottom: 0px;
    padding-bottom: 40px;
    float: left;
}

.event-wrap {
    width: 960px;
    margin-top: 15px;
    padding: 0px;
    float: left;
    clear: both;
}

.event-graphic {
    width: 212px;
    margin: 0px;
    padding: 0px;
    float: left;
}

.event-info-scheduled-wrap {
    float: left;
    vertical-align: top;
    background-image: url(../imgs/about/dotted-line.png);
    background-position: bottom left;
    background-repeat: repeat-x;
    padding: 0px 0px 40px 0px;
}

.event-info {
    width: 495px;
    float: left;
}

.scheduled-event {
    width: 210px;
    float: left;
    vertical-align: top;
    padding: 0 0 0 24px;
}

#scheduled-event-header {
    width: 210px;
    float: left;
    vertical-align: top;
    padding: 98px 20px 20px 20px;
    background-image: url(../imgs/about/dotted-line.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    margin-bottom: 0px;
}

.scheduled-event p {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 16px;
    color: #737373;
    text-align: left;
}

.scheduled-event a {
    text-decoration: none;
    font-size: 11px;
    color: #737373;
    font-weight: normal;
}


.event-info p, #event-header p {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 17px;
    padding: 4px 0px 8px 0px;
    color: #737373;
    text-align: left;
}

.event-info h1, #event-header h1 {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    padding: 0px 0px 6px 0px;
    color: #D92231;
    text-align: left;
}

.event-info a, #event-header a {
    text-decoration: none;
    font-size: 12px;
    color: #737373;
    font-weight: normal;
}

#its-event-wrap {
    width: 506px;
    float: left;
    padding: 0px 20px 20px 0px;
}

#its-event, #ite-cstatement {
    width: 506px;
    background-image: url(../imgs/about/event_page-end.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    margin-bottom: 18px;
    float: left;
    padding: 35px 20px 40px 0px;
}

#its-event-2 {
    width: 506px;
    background-image: url(../imgs/about/event_page-end.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    margin-bottom: 18px;
    float: left;
    padding: 35px 20px 48px 0px;
}


#ite-cstatement {
    padding-top: 0;
}

    #its-event p, #its-event-2 p, #its-photos p, .its-testimonial p, #ite-cstatement p, #ite-registration-wrap p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #its-event h1, #its-event-2 h1, #its-photos h1, #its-testimonial-wrap h1, #ite-cstatement h1, #ite-registration-wrap h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    #its-event a, #its-event-2 a, #its-photos a, .its-testimonial a, #ite-cstatement a, #ite-registration-wrap a {
        text-decoration: underline;
        font-size: 12px;
        color: #737373;
        font-weight: normal;
    }

#its-testimonial-wrap, #ite-registration-wrap {
    width: 506px;
    float: left;
    padding: 0 20px 20px 0px;
}

.its-testimonial {
    width: 506px;
    background-image: url(../imgs/about/dotted-line.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    margin-bottom: 5px;
    float: left;
    padding: 0 0 28px 0;
}

#its-photos {
    width: 506px;
    background-image: url(../imgs/about/event_page-end.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    margin-bottom: 18px;
    float: left;
    padding: 0 20px 50px 0px;
}

.ite-photogrid {
    width: 506px;
    float: left;
    clear: both;
}

.ite-photogrid-item {
    width: 235px;
    padding: 15px 15px 0 0;
    float: left;
}

#other-events-wrap {
    width: 194px;
    float: left;
    vertical-align: top;
    padding: 35px 20px 20px 0px;
}

.other-events {
    width: 194px;
    float: left;
    background-image: url(../imgs/about/dotted-line.png);
    background-position: top left;
    background-repeat: no-repeat;
    vertical-align: top;
    padding: 20px 0 0 0;
    margin-top: 10px;
}

#event-dates {
    width: 194px;
    float: left;
    vertical-align: top;
    padding: 35px 0 10px 0;
}

.its-event-date {
    width: 194px;
    float: left;
    vertical-align: top;
    padding: 0 0 10px 0;
}

    .its-event-date p, #other-events-wrap p, #ite-register-left p, #ite-presenter-wrap p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 11px;
        line-height: 14px;
        padding-top: 4px;
        color: #737373;
        text-align: left;
    }

    .its-event-date a, #other-events-wrap a, #ite-register-left a, #ite-presenter-wrap a {
        text-decoration: underline;
        font-size: 11px;
        color: #737373;
        font-weight: normal;
    }

    .its-event-date h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 15px;
        font-weight: bold;
        padding: 0px 0px 0px 0px;
        color: #737373;
        text-align: left;
    }

.drop-bullet {
    background-image: url(../imgs/xglyph_letterhead_sef-black-32.png);
    background-position: 0% 20%;
    background-repeat: no-repeat;
    width: 506px;
    float: left;
    padding: 0;
    margin: 3px 0;
}

    .drop-bullet p {
        padding-left: 25px !important;
    }

#ite-register-left {
    width: 180px;
    float: left;
    padding: 35px 20px 20px 20px;
}

#ite-presenter-wrap {
    width: 180px;
    float: left;
    background-image: url(../imgs/about/dotted-line.png);
    background-position: top left;
    background-repeat: no-repeat;
    vertical-align: top;
    padding: 30px 0 0 0;
    margin-top: 10px;
}

#ite-presenter {
    width: 175px;
    height: 120px;
    border: 1px solid #000000;
    float: left;
    margin-bottom: 15px;
}



/* PARTNERS --------------------------- */

.partners {
    float: left;
    padding-bottom: 40px;
}

.partner-wrap {
    float: left;
    clear: both;
}

.partner-logos {
    width: 180px;
    float: left;
    text-align: right;
    padding: 35px 20px 20px 20px;
}

    .partner-logos img {
        padding-right: 10px;
    }


.partner-copy {
    width: 506px;
    float: left;
    padding: 35px 20px 0px 0px;
}

.partner-feed {
    width: 940px;
    float: left;
    padding: 0px 20px 0px 0px;
}

.partner-copy p {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 17px;
    padding: 4px 0px 8px 0px;
    color: #737373;
    text-align: left;
}

.partner-copy h1 {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    padding: 0px 0px 6px 0px;
    color: #D92231;
    text-align: left;
}

.partner-copy a {
    text-decoration: underline;
    font-size: 12px;
    color: #737373;
    font-weight: normal;
}




/* RESOURCE CENTER -------------------- */

#resource-center {
    width: 712px;
    float: left;
    padding: 30px 0px 20px 15px;
}

    #resource-center p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #resource-center h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    #resource-center a {
        text-decoration: underline;
        font-size: 12px;
        color: #737373;
        font-weight: normal;
    }


/* NEWS -------------------- */

#news {
    width: 506px;
    float: left;
    padding: 35px 20px 20px 0px;
}

    #news p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
        color: #737373;
        text-align: left;
    }

    #news h1 {
        font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    #news h2 {
        font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 15px 0px 6px 0px;
        color: #000000;
        text-align: left;
    }

    #news a {
        text-decoration: underline;
        font-size: 12px;
        color: #737373;
        font-weight: normal;
    }

.news-deck {
    width: 495px;
    float: left;
}

.news-story {
    width: 495px;
    margin: 0px;
    padding: 0px;
    float: left;
}

.news-deck p {
    background-image: url(../imgs/about/dotted-line.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    margin-bottom: 12px;
    padding-bottom: 38px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 17px;
    color: #737373;
    text-align: left;
}

.news-story p {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 17px;
    padding: 4px 0px 8px 0px;
    color: #737373;
    text-align: left;
}

.news-deck h1, .news-story h1 {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    padding: 0px 0px 10px 0px !important;
    color: #D92231;
    text-align: left;
}

    .news-deck h1 a {
        text-decoration: none !important;
        font-size: 14px !important;
        font-weight: bold !important;
        color: #D92231 !important;
    }

        .news-deck h1 a:hover {
            text-decoration: underline !important;
            font-size: 14px;
            color: #D92231;
        }

        .news-deck h1 a:active {
            text-decoration: none !important;
            font-size: 14px;
            color: #737373 !important;
        }

.news-deck h3, .news-story h3 {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 13px;
    font-weight: normal;
    padding: 0px 0px 10px 0px !important;
    color: #000000;
    text-align: left;
}

.news-deck a {
    text-decoration: none !important;
    font-size: 11px !important;
    color: #737373;
    font-weight: normal;
}

.news-story a {
    text-decoration: underline;
    font-size: 12px;
    color: #737373;
    font-weight: normal;
}

.back-btn {
    color: #FFFFFF;
    width: 84px;
    height: 29px;
    border: none;
    margin: 10px 0px;
}

#newsfoot {
    width: 506px;
    float: left;
    padding: 0px 20px 20px 0px;
}

    #newsfoot p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 10px;
        line-height: 13px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #newsfoot h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    #newsfoot a {
        text-decoration: underline;
        font-size: 10px;
        color: #737373;
        font-weight: normal;
    }

    #newsfoot h3 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 13px;
        line-height: 17px;
        font-weight: normal;
        padding: 10px 0px 4px 0px;
        color: #000000;
        text-align: left;
    }




/* MGMT TEAM -------------------- */

#about-mgmt_header1 {
    width: 712px;
    height: 34px;
    margin-top: 30px;
    padding-right: 32px;
    background-image: url(../imgs/about/executive-mgmt_header.jpg);
    background-position: top left;
    background-repeat: no-repeat;
    float: left;
}

#about-mgmt_header2 {
    width: 712px;
    height: 34px;
    margin-top: 30px;
    padding-right: 32px;
    background-image: url(../imgs/about/mgmt_header.jpg);
    background-position: top left;
    background-repeat: no-repeat;
    float: left;
}

#about-mgmt_header3 {
    width: 712px;
    height: 34px;
    margin-top: 30px;
    padding-right: 32px;
    background-image: url(../imgs/about/advsol_header.jpg);
    background-position: top left;
    background-repeat: no-repeat;
    float: left;
}

.profile-wrap {
    width: 712px;
    margin-top: 20px;
    padding: 0px;
    float: left;
    clear: both;
}

.mgmt-photo {
    width: 212px;
    margin: 0px;
    padding: 0px;
    float: left;
}

.mgmt-info {
    width: 495px;
    background-image: url(../imgs/about/dotted-line.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    margin-bottom: 0px;
    padding-bottom: 30px;
    float: left;
}



/* CAREERS
-------------------------------------------------------------------------------*/

.strong-careers {
    color: #D92231;
    font-weight: bold;
}

#careers {
    width: 506px;
    float: left;
    padding: 35px 20px 20px 0px;
}

    #careers p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #careers h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    #careers a {
        text-decoration: underline;
        font-size: 12px;
        color: #737373;
        font-weight: normal;
    }


/* LOCATIONS
-------------------------------------------------------------------------------*/

.strong-locations {
    color: #D92231;
    font-weight: bold;
}

#locations {
    width: 720px;
    float: left;
    padding: 35px 20px 20px 0px;
}

    #locations p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #locations h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    #locations a {
        text-decoration: underline;
        font-size: 12px;
        color: #737373;
        font-weight: normal;
    }

#locations-login {
    width: 199px; /* -padding-left */
    height: 164px; /* -padding-top */
    background-image: url(../imgs/locations/login_bknd.png);
    background-position: top left;
    background-repeat: no-repeat;
    float: left;
    margin-right: 5px;
    padding-left: 14px;
    padding-top: 80px;
}


/* CONTACT US
-------------------------------------------------------------------------------*/

.strong-contactus {
    color: #D92231;
    font-weight: bold;
}

#contactus {
    width: 506px;
    float: left;
    padding: 35px 20px 20px 0px;
}

    #contactus p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #contactus h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    #contactus a {
        text-decoration: underline;
        font-size: 12px;
        color: #737373;
        font-weight: normal;
    }

#contactus-login {
    width: 199px; /* -padding-left */
    height: 164px; /* -padding-top */
    background-image: url(../imgs/contactus/login_bknd.png);
    background-position: top left;
    background-repeat: no-repeat;
    float: left;
    margin-right: 5px;
    padding-left: 14px;
    padding-top: 80px;
}


/* PRIVACY POLICY
-------------------------------------------------------------------------------*/

#privacy {
    width: 506px;
    float: left;
    padding: 35px 20px 20px 0px;
}

    #privacy p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 10px;
        line-height: 13px;
        padding: 4px 0px 8px 0px;
        color: #737373;
        text-align: left;
    }

    #privacy h1 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 17px;
        font-weight: bold;
        padding: 0px 0px 6px 0px;
        color: #D92231;
        text-align: left;
    }

    #privacy a {
        text-decoration: underline;
        font-size: 12px;
        color: #737373;
        font-weight: normal;
    }

    #privacy h3 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 13px;
        line-height: 17px;
        font-weight: normal;
        padding: 10px 0px 4px 0px;
        color: #000000;
        text-align: left;
    }

/* MEDIA CENTER 

-------------------------------------------------------------------------------*/

#mcenter {
    width: 180px;
    float: left;
    padding: 35px 20px 20px 20px;
}

.mcenter-link {
    padding-left: 18px;
    padding-bottom: 10px;
    background-image: url(../imgs/about/play-icon.png);
    background-position: top left;
    background-repeat: no-repeat;
    float: left;
}

#mcenter p {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 16px;
    padding-top: 4px;
    color: #737373;
    text-align: left;
}

#mcenter a {
    text-decoration: none;
    font-size: 11px;
    color: #737373;
    font-weight: normal;
}

    #mcenter a:hover {
        text-decoration: none;
        color: #000000;
    }

    #mcenter a:active {
        text-decoration: none;
        color: #D92231;
    }


/* SUPPORT 

-------------------------------------------------------------------------------*/

#support-left {
    width: 210px;
    float: left;
    padding: 35px 10px 20px 0px;
}

    #support-left h2 {
        font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
        font-size: 13px;
        line-height: 16px;
        font-weight: bold;
        padding: 0px 0px 15px 0px;
        color: #D92231;
        text-align: left;
    }


#sguard_header {
    width: 498px;
    height: 33px;
    margin: 20px 0px;
    padding: 0px;
    background-image: url(../imgs/about/support_sguard-header.png);
    background-position: top left;
    background-repeat: no-repeat;
    float: left;
}

#sprint_header {
    width: 498px;
    height: 33px;
    margin: 20px 0px;
    padding: 0px;
    background-image: url(../imgs/about/support_sprint-header.png);
    background-position: top left;
    background-repeat: no-repeat;
    float: left;
}

.container.red {
    border: solid 1px #c00;
    padding-bottom: 12px !important;
    padding-top: 14px !important;
    margin: 0 0;
}

.container.green {
    border: solid 1px #f2ffe1;
    padding-bottom: 12px !important;
    padding-top: 14px !important;
    margin: 0 0;
}

.container.yellow {
    padding-top: 14px !important;
    border: solid 1px #ffd324;
    padding-bottom: 12px !important;
    margin: 0 0;
}

.yellow {
    color: #DAC810;
}

.orange, .orange a {
    color: #D92231 !important;
}


/* SITE MAP 

-------------------------------------------------------------------------------*/

#sitemap {
    width: 960px;
    margin: 12px 30px 0px 30px;
    float: left;
    clear: both;
}

.header-icon {
    padding-right: 23px;
    margin-left: 20px;
    margin-bottom: 15px;
    background-image: url(../imgs/xglyph_adhesive_lef-black-32.png);
    background-position: top right;
    background-repeat: no-repeat;
    float: left;
    clear: both;
}

.sm_header {
    width: 960px;
    margin-top: 10px;
    padding: 0px;
    border-bottom: 1px solid #e3e3e3;
    float: left;
    clear: both;
}

.sm_row {
    width: 960px;
    margin: 0px;
    padding: 20px 0 10px 0px;
    float: left;
    clear: both;
}

.sm_col-1 {
    width: 800px;
    padding-left: 20px;
    float: left;
}

.sm_col-4 {
    width: 220px;
    padding-left: 20px;
    float: left;
}

.sm_col-5 {
    width: 172px;
    padding-left: 20px;
    float: left;
}

#sitemap p {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 17px;
    padding: 0px;
    color: #000000;
    text-align: left;
}

#sitemap a {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    text-decoration: none;
    font-size: 11px;
    line-height: 17px;
    color: #737373;
    font-weight: normal;
}

    #sitemap a:hover {
        text-decoration: underline;
        color: #000000;
    }

    #sitemap a:active {
        text-decoration: none;
        color: #D92231;
    }

#sitemap h3 {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    padding: 0px;
    color: #000000;
    text-align: left;
}

    #sitemap h3 a {
        text-decoration: none !important;
        font-size: 14px !important;
        font-weight: bold !important;
        color: #000000 !important;
    }

        #sitemap h3 a:hover {
            text-decoration: underline !important;
            font-size: 14px;
            color: #D92231 !important;
        }

        #sitemap h3 a:active {
            text-decoration: none !important;
            font-size: 14px;
            color: #737373 !important;
        }



/* ACCORDION

-------------------------------------------------------------------------------*/

.collapsible,
.page_collapsible,
.accordion {
    margin: 0;
    padding: 10px;
    height: 20px;
    border-top: #fff 1px solid;
    background: #f9f9f9;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-decoration: none;
    padding: 10px;
    color: #D92231;
    cursor: pointer;
}

.accordion-open,
.collapse-open {
    background: #f9f9f9;
    color: #737373;
}

    .accordion-open span,
    .collapse-open span {
        display: block;
        float: right;
        padding: 10px;
    }

    .accordion-open span,
    .collapse-open span {
        background: url(../imgs/minus.png) center center no-repeat;
    }

.accordion-close span,
.collapse-close span {
    display: block;
    float: right;
    background: url(../imgs/plus.png) center center no-repeat;
    padding: 10px;
}

div.accordion_container {
    padding: 0;
    margin: 0;
}

div.accordion_content {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 17px;
    padding: 10px;
    color: #737373;
}

    div.accordion_content ul, div.accordion_content p {
        padding: 0;
        margin: 0;
        padding: 3px;
    }

        div.accordion_content ul li {
            list-style-position: inside;
            line-height: 25px;
        }

            div.accordion_content ul li a {
                color: #D92231;
            }



/* VIDEO SLIDER

-------------------------------------------------------------------------------*/

#video-sliderwrap {
    width: 960px;
    height: 146px;
    margin: 0px 30px;
    background-image: url(../imgs/engsol/slider-bknd.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    float: left;
    clear: both;
}

#video-slider {
    width: 425px;
    height: 94px;
    margin: 26px 245px 26px 245px;
    float: left;
}

.video-slider-right-cta {
    float: right;
    padding: 25px 0px;
    width: 145px;
    height: 150px;
    cursor: pointer;
}

.inside-frame {
    width: 470px;
    height: 94px;
    margin: 0px;
    padding: 0px;
    float: left;
    clear: both;
}

.inside-element {
    width: 134px;
    height: 94px;
    padding: 0px;
    margin: 0 11px;
    float: left;
}

/* PDF SLIDER

-------------------------------------------------------------------------------*/

.pdf-sliderwrap {
    width: 960px;
    height: 213px !important;
    margin: 0px 30px;
    background-image: url(../imgs/engsol/pdf-slider-wide.jpg) !important;
    background-position: top center;
    background-repeat: no-repeat;
    float: left;
    clear: both;
}

    .pdf-sliderwrap .pdf-slider {
        width: 570px;
        height: 198px !important;
        margin: 13px 195px 13px 195px !important;
        float: left;
    }

        .pdf-sliderwrap .pdf-slider .anythingSlider {
            width: 570px !important;
            height: 198px !important;
        }

            .pdf-sliderwrap .pdf-slider .anythingSlider .panel {
                width: 570px !important;
                height: 188px !important;
            }

        .pdf-sliderwrap .pdf-slider .inside-frame {
            width: 570px;
            height: 188px;
            margin: 0px;
            padding: 0px;
            float: left;
            clear: both;
        }

        .pdf-sliderwrap .pdf-slider .inside-element {
            width: 166px;
            height: 176px;
            padding: 0px;
            margin: 11px 11px 0;
            float: left;
            text-align: center;
            display: block;
        }

            .pdf-sliderwrap .pdf-slider .inside-element p {
                text-align: center;
                margin-top: 10px;
            }

            .pdf-sliderwrap .pdf-slider .inside-element a {
                width: 149px;
                display: block;
                margin: 0 auto;
            }

            .pdf-sliderwrap .pdf-slider .inside-element p a {
                color: #737373;
                text-decoration: none;
                text-align: center;
                width: 100%;
            }

            .pdf-sliderwrap .pdf-slider .inside-element a img {
                width: 100%;
                height: auto;
                margin: 0 auto;
            }


/* FOOTER

-------------------------------------------------------------------------------*/


#sponsors {
    width: 960px;
    margin: 0px;
    padding-top: 10px;
}

#footerlinks {
    width: 960px;
    margin-top: 3px;
    background-image: url(../imgs/footer-background.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    float: left;
    clear: both;
}

.footer-column {
    width: 140px;
    float: left;
    padding: 0px 8px 40px 12px;
}

    .footer-column p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 10px;
        line-height: 14px;
        color: #000000;
        text-align: left;
    }

    .footer-column h3 {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 10px;
        line-height: 14px;
        color: #000000;
        text-align: left;
        font-weight: bold;
        padding-bottom: 5px;
    }

    .footer-column a {
        text-decoration: none;
        font-size: 10px;
        color: #000000;
    }

        .footer-column a:hover {
            text-decoration: underline;
            color: #737373;
        }

        .footer-column a:active {
            text-decoration: none;
            color: #D92231;
        }

#footerbase, #col-footer {
    width: 960px;
    margin-top: 10px;
    background-color: #FFF;
    float: left;
    clear: both;
}

#footerbase-left {
    width: 268px; /* - 12px */
    padding-left: 12px;
    float: left;
}

#footerbase-center {
    width: 450px;
    float: left;
}

#footerbase-right {
    width: 230px;
    float: right;
}

#footerbase-bottom {
    clear: both;
}

#footerbase p, #footerbase-center p, footerbase-bottom p, #col-footer p {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 10px !important;
    padding: 10px 0px 40px 0px;
    color: #000000;
    text-align: center;
}

#footerbase-center p {
    padding-bottom: 0px;
}

#footerbase a, #col-footer a {
    text-decoration: none;
    font-size: 10px;
    color: #000000;
}

    #footerbase a:hover, #col-footer a:hover {
        text-decoration: underline;
        color: #737373;
    }

.vertspace {
    width: 140px;
    height: 5px;
    float: left;
    clear: both;
}


/* PW/Protected Posts 
-------------------------------------------------------------------------------*/

/* .post-password-form {
	width:506px; 
	float:left; 
	padding: 35px 20px 20px 0px;
}

.post-password-form p {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 16px;
	padding-top: 4px;
	color: #737373;
	text-align:left;
} */



/* SEARCH 
-------------------------------------------------------------------------------*/

#search-field-wrap {
    padding: 0px;
    float: right;
    clear: both;
}

#styled-field-search {
    float: left;
}

#search-go {
    margin: 0px;
    padding: 0px;
    float: left;
    width: 24px;
    height: 20px;
    padding-top: 3px;
}

    #search-go a {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 10px;
        line-height: 14px;
        color: #000000;
        text-align: left;
        text-decoration: none;
    }

.searchfield {
    height: 2.0em;
    padding: 1px 6px; /* 2px 6px */
    margin-right: 5px;
    font-size: 0.9em; /* 0.8em */
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    background-color: #f3f3f3;
    color: #D92231; /* #000000; */
    font-weight: bold;
    border: 1px solid #000000;
}

    .searchfield::-webkit-input-placeholder {
        color: #D92231;
    }


/* FORMS 
-------------------------------------------------------------------------------*/

.styled-field {
    margin-bottom: 10px;
    float: left;
}

.styled-field2 {
    margin-bottom: 10px;
    clear: both;
}

.styled-button {
    margin-top: 3px;
    float: left;
}

.field-wrap {
    padding: 0px;
    float: left;
    clear: both;
}

.field-wrap-black {
    background-color: #333;
    padding: .875rem 2.5rem 1.25rem;
}

.button-wrap {
    padding: 0px;
    position: relative;
    z-index: 0;
    right: 45px;
    bottom: 45px;
    float: right;
    clear: both;
}

.login-button-wrap {
    padding: 0px;
    z-index: 0;
    clear: both;
}

.field-wrap-black {
    background-color: #333;
    padding: .875rem 2.5rem 1.25rem;
}

    .field-wrap-black h4 {
        text-align: center;
        color: #fff;
        font-size: 1.5rem;
        line-height: 1.16667em;
        margin: 0;
    }

    .field-wrap-black a {
        color: #fff;
        padding: 0
    }

.forgot-password-button-wrap {
    padding: 0px;
    position: relative;
    z-index: 0;
    right: 120px;
    bottom: 72px;
    float: right;
    clear: both;
}

.button-wrap2 {
    padding: 0px;
    position: relative;
    right: 45px;
    bottom: 38px;
    float: right;
    z-index: 0;
    clear: both;
}

.open-account-button-wrap {
    padding: 20px 250px 0px 0px;
    position: relative;
    z-index: 0;
    right: 20px;
    bottom: 5px;
    float: right;
    clear: both;
}

.need-help-button-wrap {
    padding: 20px 265px 0px 0px;
    position: relative;
    z-index: 0;
    right: 20px;
    bottom: 5px;
    float: right;
    clear: both;
}

.form-label {
    margin: 0px;
    padding: 0px;
    float: left;
}

.form-text, .form-text2 {
    margin: 0px;
    padding-right: 40px;
}

    .form-label p, .form-text p, .form-label label {
        color: #fff !important;
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 0.95em;
        padding: 5px 0px !important;
        text-align: left;
        float: left;
    }

    .form-label a, .form-text a {
        text-decoration: none;
        font-size: 10px;
        color: #fff;
    }

        .form-label a:hover, .form-text a:hover {
            text-decoration: underline;
            color: #fff;
        }

    .form-text2 p {
        color: #fff;
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 0.85em;
        padding: 5px 0px;
        text-align: left;
        float: left;
    }

    .form-text2 a {
        text-decoration: underline;
        font-size: 11px;
        color: #fff;
    }

        .form-text2 a:hover {
            text-decoration: none;
            color: #fff;
        }

        .form-text2 a:active {
            text-decoration: none;
            color: #D92231;
        }

.styled-select {
    padding: 4px;
    color: #000000;
}

.field {
    height: 2.0em;
    padding: 2px 6px;
    margin-right: 5px;
    font-size: 0.8em;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    background-color: #f3f3f3;
    color: #737373;
    border: 1px solid #000000;
}

.hidden-field {
    display: none;
}

#form {
    margin: 0;
    padding: 0;
    align: left;
    color: #888;
}

/* PARTNERS BAR CAROUSEL ---------- */

.scroll-img {
    width: 738px;
    height: 67px;
    overflow: hidden;
    font-size: 0;
}

    .scroll-img ul {
        width: 700px;
        height: 600px;
        margin: 0;
    }

        .scroll-img ul li {
            display: inline-block;
            /*margin: 10px 0 10px 10px;*/
        }

#partner-scroll.scroll-img ul {
    width: 1500px;
    padding: 0;
}



/* ACT-ON Style Tweak (force space below select boxes) ------- */

.formFieldMediumRight {
    margin-bottom: 10px !important;
}


/* CONTACT FORM 7 PLUGIN STYLES ------------ */

#form-wrap {
    width: 440px;
    padding: 0px;
    float: left;
    clear: both;
}

#form-wrap2 {
    width: 440px;
    padding-left: 15px;
    float: left;
    clear: both;
}

.field-wrap_cf7 {
    padding: 0px;
}

.field_cf7 {
    height: 2.0em;
    padding: 2px 6px;
    margin-right: 5px;
    font-size: 0.9em;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    background-color: #f3f3f3;
    color: #737373;
    border: 1px solid #000000;
}

.submit_button_cf7 {
    color: #FFFFFF;
    width: 93px;
    height: 29px;
    border: none;
    margin: 20px 0px;
    background: url(../../Images/myaccount/submit_btn.png);
    background-position: top left;
    background-repeat: no-repeat;
    text-indent: -9999px;
    clear: both;
}

.button-wrap_cf7 {
    margin: 0px;
    padding: 0px;
    clear: both;
}

.styled-field_cf7 {
    margin-bottom: 5px;
    text-align: left;
    clear: both;
}

.form-label_cf7 {
    margin: 0px;
    padding: 0px;
}

    .form-label_cf7 p {
        color: #000000 !important;
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 0.85em;
        padding: 5px 0px;
        text-align: left;
        clear: both;
    }

.select-menu_cf7 {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 0.90em;
    line-height: 1.7em;
    padding: 5px 0px;
    color: #737373;
}

span.wpcf7-list-item {
    display: block;
    clear: both;
}

.text-area_cf7 {
    width: 440px;
    resize: none;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 0.90em;
    line-height: 1.3em;
    padding: 5px 5px;
    background-color: #f3f3f3;
    color: #737373;
    border: 1px solid #000000;
}

.text-area_cf7_sm {
    width: 440px;
    resize: none;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 0.90em;
    line-height: 1.3em;
    padding: 5px 5px;
    background-color: #f3f3f3;
    color: #737373;
    border: 1px solid #000000;
    height: 80px;
}

/* CF7 Messages */

.wpcf7 .wpcf7-validation-errors, .wpcf7-response-output wpcf7-validation-errors {
    border: none;
    font-family: 'Roboto', Arial, Helvetica, sans-serif !important;
    font-size: 12px !important;
    line-height: 17px !important;
    background-color: #D92231;
    color: #FFFFFF;
    margin: 0;
    padding: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.wpcf7 .wpcf7-mail-sent-ok {
    border: none;
    font-family: 'Roboto', Arial, Helvetica, sans-serif !important;
    font-size: 12px !important;
    line-height: 17px !important;
    background-color: #D92231; /* was #339933 */
    color: #FFFFFF;
    margin: 0;
    padding: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.wpcf7 .wpcf7-mail-sent-ng {
    border: none;
    font-family: 'Roboto', Arial, Helvetica, sans-serif !important;
    font-size: 12px !important;
    line-height: 17px !important;
    background-color: #D92231;
    margin: 0;
    padding: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: white;
}

.wpcf7 span.wpcf7-not-valid-tip, .wpcf7 span.wpcf7-not-valid-tip-no-ajax {
    border: none;
    font-family: 'Roboto', Arial, Helvetica, sans-serif !important;
    font-size: 12px !important;
    line-height: 17px !important;
    background-color: #D92231;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    width: 180px;
    color: white;
    /* Drop shadow */
    -webkit-box-shadow: 3px 3px 3px rgba(0,0,0,0.3);
    -moz-box-shadow: 3px 3px 3px rgba(0,0,0,0.3);
    box-shadow: 3px 3px 3px rgba(0,0,0,0.3);
}



/* TABLES 
-------------------------------------------------------------------------------*/

/* Careers (Currently not in use) */

#og {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 11px;
    padding: 0px;
    color: #737373;
    text-align: left;
}

.og-header {
    font-size: 12px;
    font-weight: bold;
    padding: 6px 12px;
    color: #fff;
    background-color: #D92231;
    border: 4px solid #fff;
    text-align: left;
}

.og-cell {
    padding: 6px 12px;
    color: #737373;
    background-color: #e2e9e9;
    border: 4px solid #fff;
    text-align: left;
}


/* Awards Table */

#aw {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    width: 498px;
    font-size: 11px;
    padding: 0px;
    margin-bottom: 12px;
    color: #737373;
    text-align: left;
}

.aw-header {
    font-size: 12px;
    font-weight: bold;
    padding: 6px 12px;
    color: #fff;
    background-color: #D92231;
    border: 4px solid #fff;
    text-align: left;
}

.aw-cell {
    padding: 6px 12px;
    color: #737373;
    background-color: #f1f1f1;
    border-top: 5px solid #fff;
    text-align: left;
    vertical-align: middle;
}


/* Resource Center */

.rc {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 11px !important;
    padding: 0px;
    color: #737373;
    text-align: left;
}

.rc-header {
    background-image: url(../imgs/about/brochures_header.jpg);
    background-position: top left;
    background-repeat: no-repeat;
    width: 712px;
    height: 36px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background-color: #D92231;
    text-align: left;
    text-indent: -9999px;
}

.rc-header2 {
    background-image: url(../imgs/about/videos_header.jpg);
    background-position: top left;
    background-repeat: no-repeat;
    width: 712px;
    height: 36px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background-color: #D92231;
    text-align: left;
    text-indent: -9999px;
}

.rc-header3 {
    background-image: url(../imgs/about/success-stories_header.jpg);
    background-position: top left;
    background-repeat: no-repeat;
    width: 712px;
    height: 36px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background-color: #D92231;
    text-align: left;
    text-indent: -9999px;
}

.rc-header4 {
    background-image: url(../imgs/about/articles_header.jpg);
    background-position: top left;
    background-repeat: no-repeat;
    width: 712px;
    height: 36px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background-color: #D92231;
    text-align: left;
    text-indent: -9999px;
}

.rc-cell {
    padding: 6px 0px 8px 12px;
    color: #737373;
    background-color: #ffffff;
    text-align: left;
}

.rc-cell_alt {
    padding: 6px 0px 8px 12px;
    color: #737373;
    background-color: #e2e9e9;
    text-align: left;
}

    .rc-cell p, .rc-cell_alt p {
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 11px !important;
        line-height: 16px;
        color: #737373;
        text-align: left;
    }

    .rc-cell a, .rc-cell_alt a {
        text-decoration: none;
        font-size: 11px;
        color: #737373;
        font-weight: normal;
    }

        .rc-cell a:hover, .rc-cell_alt a:hover {
            text-decoration: underline;
            font-size: 11px;
            color: #737373;
            font-weight: normal;
        }

        .rc-cell a:active, .rc-cell_alt a:active {
            text-decoration: none;
            font-size: 11px;
            color: #FF6633;
            font-weight: normal;
        }


/* Advanced Solutions/Wireless */

.adv-sol-content-table {
    margin: 10px 0 12px 0;
}

.table-content-header, .table-content-row, .table-content-alt-row {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #737373;
    text-align: left;
}

.table-content-header {
    background: #000000;
    padding: 8px 12px;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    vertical-align: middle;
}

.table-content-hi-light {
    background: #000000 !important;
    color: #fff !important;
    padding: 8px 8px 8px 12px;
}

.table-content-row {
    background: #f1f1f1;
    padding: 8px 8px 8px 12px;
}

.table-content-alt-row {
    padding: 8px 12px;
}

    .table-content-row ul, .table-content-alt-row ul {
        list-style-type: disc;
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 11px;
        color: #737373;
        text-align: left;
    }


/* ITsavvy Open */

.its-open {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 11px;
    padding: 0px;
    color: #737373;
    text-align: left;
    margin: 8px 0 12px;
    max-width: 500px;
    width: 500px;
}

    .its-open .table-content-row {
        background: #f1f1f1;
    }

    .its-open .table-content-alt-row {
    }

    .its-open td {
        padding: 6px 12px;
    }

.time-col {
    width: 35%;
}

.ngg-galleryoverview {
    margin-top: 0 !important;
}

.slideshowlink {
    display: none;
}

#about .products-wrap h3 {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 17px;
    font-weight: bold !important;
    padding: 0px;
    text-transform: none !important;
}

    #about .products-wrap h3 a {
        color: #D92231 !important;
        text-decoration: none !important;
        font-weight: bold !important;
    }

/* Maintenance Alert Bar styles!
-------------------------------------------------------------------------------*/

.maintenanceAlert {
    width: 960px;
    min-height: 60px;
    background: #f3f3f3;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin: 7px 30px 0px 30px;
    overflow: hidden;
}

.iconLeft {
    background-color: #f6641f;
    width: 70px;
    min-height: 60px;
    background-image: url(../imgs/alert.png);
    background-position: center;
    background-repeat: no-repeat;
    float: left;
}

.messageRight {
    padding: 12px 20px;
    float: left;
}


.maintenanceAlert h4 {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 14px;
    /*line-height: 17px;*/
    font-weight: bold;
    padding: 0px 0px 4px 0px;
    color: #D92231;
    text-align: left;
}

.maintenanceAlert p {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 12px;
    /*line-height: 17px;*/
    padding: 0;
    color: #737373;
    text-align: left;
}


/* Email Capture styles!
-------------------------------------------------------------------------------*/

#Email_Capture {
    height: 100%;
    background: url(../imgs/about/about-lets-share-data-splash-left.jpg) no-repeat;
    box-sizing: border-box;
    padding: 62px 24px;
}

    #Email_Capture p {
        color: white;
        margin-bottom: 10px;
    }

#emailCapture {
    width: 100%;
}


/*Off Canvas tabSlide Email Subscribe Modal
	-------------------------------------------------------------------------------*/

.slide-out-div {
    padding: 25px;
    width: 280px;
    height: auto !important;
    background: #47626f;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    z-index: 300;
    text-align: left;
}

    .slide-out-div p {
        color: white;
        font-family: 'Roboto', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 17px;
    }

    .slide-out-div h3 {
        margin: 1em 0;
    }

.handle {
    background-image: url('../../Images/envelope.png');
    background-position: top;
    background-color: #f1f5f8;
    width: 66px;
    height: 66px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 2px 1px 8px 0px rgba(50, 50, 50, 0.3);
    -moz-box-shadow: 2px 1px 8px 0px rgba(50, 50, 50, 0.3);
    box-shadow: 2px 1px 8px 0px rgba(50, 50, 50, 0.3);
}

    .handle:after {
        content: " ";
        background-image: url('../../Images/subscribe.png');
        background-position: center;
        background-repeat: no-repeat;
        display: block;
        background-color: rgba(71,98,111,.7);
        width: 0px;
        height: 66px;
        position: absolute;
        right: 66px;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        opacity: 0;
    }

    .handle:hover {
        background-color: #fd6321;
        background-position: bottom;
        border-radius: none;
    }

        .handle:hover:after {
            opacity: 1;
            margin-left: -125px;
            width: 125px;
            color: white;
        }

.slide-out-div.open .handle {
    display: none !important;
}

.slide-out-div.open .close {
    display: block;
    width: 18px;
    height: 18px;
    background-image: url('../../Images/close.png');
    background-repeat: no-repeat;
    opacity: .8;
    position: absolute;
    top: 7px;
    left: 7px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .slide-out-div.open .close:hover {
        opacity: 1;
    }

.slide-out-div.open {
    -webkit-box-shadow: -2px 1px 8px 0px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: -2px 1px 8px 0px rgba(50, 50, 50, 0.5);
    box-shadow: -2px 1px 8px 0px rgba(50, 50, 50, 0.5);
}

#itsavvy-email-widget {
    display: none;
}


ul.borderGrid {
    display: block;
    margin-bottom: 15px;
}

    ul.borderGrid li {
        float: left;
        display: block;
        width: 166px;
        height: 115px;
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: auto;
    }

        ul.borderGrid li a, ul.borderGrid li a img {
            display: block;
            width: 166px;
            height: 115px;
            border: none;
            outline: none;
        }

        ul.borderGrid li.clear {
            clear: both;
            display: block;
            float: none;
            width: 100%;
            height: 0px;
        }

/* ORDER DETAIL */
.center-content {
    clear: both;
    margin-left: auto;
    margin-right: auto;
    width: 935px;
}
/*
/* MEGAMENU DROP DOWN
-------------------------------------------------------------------------------*!/

/* ----- My Account ----- *!/

#menu {
	list-style:none;
	width:96px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/l-nav-button-bknd.jpg);
	
	
}

#menu li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 96px;
	
}

#menu li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/l-nav-button-bknd_over.jpg);
}

#menu li:hover .dropdown_1column {
	position: relative; 
	z-index: 9999;
	top: 12px; 
	left: 0px;
	overflow:visible;
}


#menu li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 6px;
	color: #737373;
	display:block;
	outline:0;
	text-decoration:none;
}


/* ----- My Account ACTIVE ----- *!/

#menu-active {
	list-style:none;
	width:96px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/l-nav-button-bknd_over.jpg);
	
	
}

#menu-active li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 96px;
	
}

#menu-active li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/l-nav-button-bknd_over.jpg);
}

#menu-active li:hover .dropdown_1column {
	position: relative; 
	z-index: 1;
	top: 12px; 
	left: 0px;
	overflow:visible;
}

#menu-active li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 6px;
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
}


/* ----- IT Products ----- *!/


#menu2 {
	list-style:none;
	width:102px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/button1-bknd.jpg);
	
	
}

#menu2 li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 102px;
	
}

#menu2 li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/button1-bknd_over.jpg);
	
}

#menu2 li:hover .dropdown_5columns {
	position: relative; 
	z-index: 1;
	top: 12px; 
	left: -96px;
	overflow:visible;
}

#menu2 li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 2px;
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
}

#menu2 span {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 4px;
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
}



/* ----- IT Products ACTIVE----- *!/


#menu2-active {
	list-style:none;
	width:102px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
    background-image:url(../imgs/nav/button1-bknd_over.jpg);	
}

#menu2-active li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 102px;	
}

#menu2-active li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/button1-bknd_over.jpg);
	/* height:46px; Remove if using dropdown *!/
}

#menu2-active li:hover .dropdown_5columns {
	position: relative; 
	z-index: 1;
	top: 12px; 
	left: -96px;
	overflow:visible;
}

#menu2-active li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 2px;
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
}

#menu2-active span {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 4px;
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
}





/* ----- Engineered Solutions ----- *!/


#menu3 {
	list-style:none;
	width:121px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/button2-bknd.jpg);	
}

#menu3 li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 121px;
	
}

#menu3 li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/engsol-button_bknd.png);
	/* background-image:url(../imgs/nav/button2-bknd_over.jpg); *!/
		
}

#menu3 li:hover .dropdown_2columns {
	position: relative; 
	z-index: 1;
	top: 12px; 
	left: -10px;
	overflow:visible;
}


#menu3 li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 6px;
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
}


/* ----- Engineered Solutions ACTIVE----- *!/


#menu3-active {
	list-style:none;
	width:121px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/engsol-button_bknd.png);	
}

#menu3-active li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 121px;	
}

#menu3-active li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/engsol-button_bknd.png);
	/* height:46px; Remove if using dropdown *!/
}

#menu3-active li:hover .dropdown_2columns {
	position: relative; 
	z-index: 1;
	top: 12px; 
	left: -10px;
	overflow:visible;
}

#menu3-active li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 6px;
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
}



/* ----- Managed Services ----- *!/


#menu4 {
	list-style:none;
	width:106px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/button3-bknd.jpg);
	
	
}

#menu4 li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 106px;
	height: 54px;
	box-sizing: border-box;
}

#menu4 li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/manserv-button_bknd.png);
	/* background-image:url(../imgs/nav/button3-bknd_over.jpg); *!/
}

#menu4 li:hover .dropdown_1column, 
#menu4 li:hover .dropdown_2columns  {
	position: relative; 
	z-index: 1;
	top: 12px; 
	left: -10px;
	overflow:visible;
}
#menu4 li:hover .dropdown_2columns li {
	height: auto;
	box-sizing: content-box;
}

#menu4 li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 6px;
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
}


/* ----- Managed Services ACTIVE----- *!/


#menu4-active {
	list-style:none;
	width:106px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/manserv-button_bknd.png);
	
	
}

#menu4-active li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 106px;
	
}

#menu4-active li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/manserv-button_bknd.png);
	/* height:46px; Remove if using dropdown *!/
}

#menu4-active li:hover .dropdown_1column, 
#menu4-active li:hover .dropdown_2columns {
	position: relative; 
	z-index: 1;
	top: 12px; 
	left: -10px;
	overflow:visible;
}

#menu4-active li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 6px;
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
}



/* ----- Cloud Solutions ----- *!/


#menu5 {
	list-style:none;
	width:111px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/button4-bknd.jpg);
	
	
}

#menu5 li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 111px;
	height: 54px;
	box-sizing: border-box;
}

#menu5 li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/cloudsol-button_bknd.png);
	/* background-image:url(../imgs/nav/button4-bknd_over.jpg);	*!/
}

#menu5 li:hover .dropdown_1column,
#menu5 li:hover .dropdown_2columns  {
	position: relative; 
	z-index: 1;
	top: 12px; 
	left: -10px;
	overflow:visible;
}

#menu5 li:hover .dropdown_2columns li {
	height: auto;
	box-sizing: content-box;
}

#menu5 li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 6px;
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
}


/* ----- Cloud Solutions ACTIVE ----- *!/


#menu5-active {
	list-style:none;
	width:111px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/cloudsol-button_bknd.png);
	
	
}

#menu5-active li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 111px;
	
}

#menu5-active li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/cloudsol-button_bknd.png);
	/* height:46px; Remove if using dropdown *!/	
}

#menu5-active li:hover .dropdown_1column,
#menu5-active li:hover .dropdown_2columns {
	position: relative; 
	z-index: 1;
	top: 12px; 
	left: -10px;
	overflow:visible;
}


#menu5-active li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 6px;
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
}



/* ----- Unified Communications ----- *!/


#menu6 {
	list-style:none;
	width:158px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/button5-bknd.jpg);	
}

#menu6 li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 158px;
	height: 54px;
	box-sizing: border-box;	
}

#menu6 li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/unicomm-button_bknd.png);
	/* background-image:url(../imgs/nav/button5-bknd_over.jpg);	*!/
}

#menu6 li:hover .dropdown_1column,
#menu6 li:hover .dropdown_2columns {
	position: relative; 
	z-index: 1;
	top: 12px; 
	left: -10px;
	overflow:visible;
}

#menu6 li:hover .dropdown_2columns li {
	height: auto;
	box-sizing: content-box;
}

#menu6 li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 6px;
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
}


/* ----- Unified Communications ACTIVE----- *!/


#menu6-active {
	list-style:none;
	width:158px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/unicomm-button_bknd.png);	
}

#menu6-active li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 158px;
	
}

#menu6-active li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/unicomm-button_bknd.png);	
	/* height:46px; Remove if using dropdown *!/
}

#menu6-active li:hover .dropdown_1column,
#menu6-active li:hover .dropdown_2columns {
	position: relative; 
	z-index: 1;
	top: 12px; 
	left: -10px;
	overflow:visible;
}
#menu6 li:hover .dropdown_2columns li {
	height: auto;
	box-sizing: content-box;
}

#menu6-active li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 6px;
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
}



/* ----- About ----- *!/


#menu7 {
	list-style:none;
	width:98px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/r-nav-button1-bknd.jpg);
	
	
}

#menu7 li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 98px;
	
}

#menu7 li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/r-nav-button1-bknd_over.jpg);
}

#menu7 li:hover .dropdown_1column {
	position: relative; 
	z-index: 1;
	top: 12px; 
	left: -10px;
	overflow:visible;
}

#menu7 li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 6px;
	color: #737373;
	display:block;
	outline:0;
	text-decoration:none;
}


/* ----- About ACTIVE ----- *!/


#menu7-active {
	list-style:none;
	width:98px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/r-nav-button1-bknd_over.jpg);	
}

#menu7-active li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 98px;	
}

#menu7-active li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/r-nav-button1-bknd_over.jpg);
	/* height:46px; Remove if using dropdown *!/
}

#menu7-active li:hover .dropdown_1column {
	position: relative; 
	z-index: 1;
	top: 12px; 
	left: -10px;
	overflow:visible;
}

#menu7-active li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 6px;
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
}



/* ----- Careers ----- *!/


#menu8 {
	list-style:none;
	width:76px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/r-nav-button2-bknd.jpg);
	
	
}

#menu8 li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 76px;
	
}

#menu8 li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/r-nav-button2-bknd_over.jpg);
}

#menu8 li:hover .dropdown_1column_sm {
	position: relative; 
	z-index: 1;
	top: 18px; 
	left: -10px;
	overflow:visible;
}

#menu8 li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 6px;
	color: #737373;
	display:block;
	outline:0;
	text-decoration:none;
}

#menu8 span {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 8px;
	color: #737373;
	display:block;
	outline:0;
	text-decoration:none;
}

#menu8 span:hover {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 8px;
	color: #fff;
	display:block;
	outline:0;
	text-decoration:none;
}



/* ----- Careers ACTIVE ----- *!/


#menu8-active {
	list-style:none;
	width:76px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/r-nav-button2-bknd_over.jpg);	
}

#menu8-active li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 76px;	
}

#menu8-active li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/r-nav-button2-bknd_over.jpg);
	/* height:46px; Remove if using dropdown *!/
}

#menu8-active li:hover .dropdown_1column_sm {
	position: relative; 
	z-index: 1;
	top: 18px; 
	left: -10px;
	overflow:visible;
}

#menu8-active li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 6px;
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
}

#menu8-active span {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 8px;
	color: #737373;
	display:block;
	outline:0;
	text-decoration:none;
}

#menu8-active span:hover {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 8px;
	color: #fff;
	display:block;
	outline:0;
	text-decoration:none;
}



/* ----- Locations ----- *!/


#menu9 {
	list-style:none;
	width:92px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/r-nav-button3-bknd.jpg);
	
	
}

#menu9 li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 92px;
	
}

#menu9 li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/r-nav-button3-bknd_over.jpg);
	height:46px;	
}


#menu9 li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 14px;
	color: #737373;
	display:block;
	outline:0;
	text-decoration:none;
}


/* ----- Locations ACTIVE ----- *!/


#menu9-active {
	list-style:none;
	width:92px;
	margin:0px auto 0px auto;
	height:55px;
	padding:0px;
	background-image:url(../imgs/nav/r-nav-button3-bknd_over.jpg);
	
	
}

#menu9-active li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	z-index: 1;
	padding: 4px 0px 4px 0px;
	margin-right:20px;
	border:none;
	width: 92px;
	
}

#menu9-active li:hover {
	padding: 4px 0px 4px 0px;
	background-image:url(../imgs/nav/r-nav-button3-bknd_over.jpg);
	height:46px;	
}


#menu9-active li a {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px; 
	line-height: 14px;
	padding-top: 14px;
	color: #EEEEEE;
	display:block;
	outline:0;
	text-decoration:none;
}



/* --- DROPDOWN STYLING ----------------------------*!/


#menu li:hover a,
#menu2 li:hover a,
#menu3 li:hover a,
#menu4 li:hover a,
#menu5 li:hover a,
#menu6 li:hover a,
#menu7 li:hover a,
#menu8 li:hover a,
#menu9 li:hover a,
#menu-active li:hover a,
#menu2-active li:hover a,
#menu3-active li:hover a,
#menu4-active li:hover a,
#menu5-active li:hover a,
#menu6-active li:hover a,
#menu7-active li:hover a,
#menu8-active li:hover a,
#menu9-active li:hover a {
	color:#eeeeee;
}

.dropdown_1column_sm,
.dropdown_1column,
.dropdown_2columns,
.dropdown_5columns,
.dropdown_6columns {
	margin:4px auto;
	float:left;
	position:absolute;
	left:-999em; /* Hides the drop down *!/
	text-align:left;
	padding:10px 15px 15px 15px;
	border:1px solid #999;
	border-top:none;
	background:#f9f9f9;
}

.dropdown_1column_sm {
	width: 130px;
}

.dropdown_1column {
	width: 160px;
}

.dropdown_2columns {
	width: 370px;
}

.dropdown_5columns {
	width: 920px;
}

.dropdown_6columns {
	width: 920px;
}

.col_1,
.col_2,
.col_3,
.col_4,
.col_5 {
	display:inline;
	float: left;
	position: relative;
	margin-top: 10px;
	margin-right: 10px;
}

.col_1 {width:159px; padding-left: 15px; }
.col_2 {width:148px; border-left: 1px solid #e1e1e1; padding-left: 25px;}
.col_3 {width:159px;}
.col_4 {width:159px;}
.col_5 {width:159px;}


#menu .menu_right,
#menu2 .menu_right,
#menu3 .menu_right,
#menu4 .menu_right,
#menu5 .menu_right,
#menu6 .menu_right,
#menu7 .menu_right,
#menu8 .menu_right,
#menu9 .menu_right,
#menu-active .menu_right,
#menu2-active .menu_right,
#menu3-active .menu_right,
#menu4-active .menu_right,
#menu5-active .menu_right,
#menu6-active .menu_right,
#menu7-active .menu_right,
#menu8-active .menu_right,
#menu9-active .menu_right {
	float:right;
	margin-right:0px;
}


#menu li:hover .align_right,
#menu2 li:hover .align_right,
#menu3 li:hover .align_right,
#menu4 li:hover .align_right,
#menu5 li:hover .align_right,
#menu6 li:hover .align_right,
#menu7 li:hover .align_right,
#menu8 li:hover .align_right,
#menu9 li:hover .align_right,
#menu-active li:hover .align_right,
#menu2-active li:hover .align_right,
#menu3-active li:hover .align_right,
#menu4-active li:hover .align_right,
#menu5-active li:hover .align_right,
#menu6-active li:hover .align_right,
#menu7-active li:hover .align_right,
#menu8-active li:hover .align_right,
#menu9-active li:hover .align_right {
	left:auto;
	right:-1px;
	top:auto;
}

#menu p, #menu h2, #menu h3, #menu ul li,
#menu2 p, #menu2 h2, #menu2 h3, #menu2 ul li,
#menu3 p, #menu3 h2, #menu3 h3, #menu3 ul li,
#menu4 p, #menu4 h2, #menu4 h3, #menu4 ul li,
#menu5 p, #menu5 h2, #menu5 h3, #menu5 ul li,
#menu6 p, #menu6 h2, #menu6 h3, #menu6 ul li,
#menu7 p, #menu7 h2, #menu7 h3, #menu7 ul li,
#menu8 p, #menu8 h2, #menu8 h3, #menu8 ul li,
#menu9 p, #menu9 h2, #menu9 h3, #menu9 ul li,
#menu-active p, #menu-active h2, #menu-active h3, #menu-active ul li,
#menu2-active p, #menu2-active h2, #menu2-active h3, #menu2-active ul li,
#menu3-active p, #menu3-active h2, #menu3-active h3, #menu3-active ul li,
#menu4-active p, #menu4-active h2, #menu4-active h3, #menu4-active ul li,
#menu5-active p, #menu5-active h2, #menu5-active h3, #menu5-active ul li,
#menu6-active p, #menu6-active h2, #menu6-active h3, #menu6-active ul li,
#menu7-active p, #menu7-active h2, #menu7-active h3, #menu7-active ul li,
#menu8-active p, #menu8-active h2, #menu8-active h3, #menu8-active ul li,
#menu9-active p, #menu9-active h2, #menu9-active h3, #menu9-active ul li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align:left;
	font-size:11px;
	line-height:13px;
	color: #000000;
}

#menu h3,
#menu2 h3,
#menu3 h3,
#menu4 h3,
#menu5 h3,
#menu6 h3,
#menu7 h3,
#menu8 h3,
#menu9 h3,
#menu-active h3,
#menu2-active h3,
#menu3-active h3,
#menu4-active h3,
#menu5-active h3,
#menu6-active h3,
#menu7-active h3,
#menu8-active h3,
#menu9-active h3 {
	font-size:11px;
	padding: 0px 0px 0px 0px;
	margin: 0px;
	color: #D92231;
}

#menu p,
#menu2 p,
#menu3 p,
#menu4 p,
#menu5 p,
#menu6 p,
#menu7 p,
#menu8 p,
#menu9 p,
#menu-active p,
#menu2-active p,
#menu3-active p,
#menu4-active p,
#menu5-active p,
#menu6-active p,
#menu7-active p,
#menu8-active p,
#menu9-active p {
	/* line-height:12px;
	margin:0 0 10px 0; *!/
}

#menu li:hover div a,
#menu2 li:hover div a,
#menu3 li:hover div a,
#menu4 li:hover div a,
#menu5 li:hover div a,
#menu6 li:hover div a,
#menu7 li:hover div a,
#menu8 li:hover div a,
#menu9 li:hover div a,
#menu-active li:hover div a,
#menu2-active li:hover div a,
#menu3-active li:hover div a,
#menu4-active li:hover div a,
#menu5-active li:hover div a,
#menu6-active li:hover div a,
#menu7-active li:hover div a,
#menu8-active li:hover div a,
#menu9-active li:hover div a {
	font-size:11px;
	line-height:13px;
	color: #000000;
	font-weight:normal;
}

#menu li:hover div a:hover,
#menu2 li:hover div a:hover,
#menu3 li:hover div a:hover,
#menu4 li:hover div a:hover,
#menu5 li:hover div a:hover,
#menu6 li:hover div a:hover,
#menu7 li:hover div a:hover,
#menu8 li:hover div a:hover,
#menu9 li:hover div a:hover,
#menu-active li:hover div a:hover,
#menu2-active li:hover div a:hover,
#menu3-active li:hover div a:hover,
#menu4-active li:hover div a:hover,
#menu5-active li:hover div a:hover,
#menu6-active li:hover div a:hover,
#menu7-active li:hover div a:hover,
#menu8-active li:hover div a:hover,
#menu9-active li:hover div a:hover {
	text-decoration: underline;
	color: #737373;
}

#menu li:hover div a:active,
#menu2 li:hover div a:active,
#menu3 li:hover div a:active,
#menu4 li:hover div a:active,
#menu5 li:hover div a:active,
#menu6 li:hover div a:active,
#menu7 li:hover div a:active,
#menu8 li:hover div a:active,
#menu9 li:hover div a:active,
#menu-active li:hover div a:active,
#menu2-active li:hover div a:active,
#menu3-active li:hover div a:active,
#menu4-active li:hover div a:active,
#menu5-active li:hover div a:active,
#menu6-active li:hover div a:active,
#menu7-active li:hover div a:active,
#menu8-active li:hover div a:active,
#menu9-active li:hover div a:active {
	text-decoration: none;
	color: #D92231;
}

.strong {
	font-weight:bold;
}
.italic {
	font-style:italic;
}

#menu li ul,
#menu2 li ul,
#menu3 li ul,
#menu4 li ul,
#menu5 li ul,
#menu6 li ul,
#menu7 li ul,
#menu8 li ul,
#menu9 li ul,
#menu-active li ul,
#menu2-active li ul,
#menu3-active li ul,
#menu4-active li ul,
#menu5-active li ul,
#menu6-active li ul,
#menu7-active li ul,
#menu8-active li ul,
#menu9-active li ul {
	list-style:none;
	padding:0;
	margin:0 0 12px 0;
}

#menu li ul li,
#menu2 li ul li,
#menu3 li ul li,
#menu4 li ul li,
#menu5 li ul li,
#menu6 li ul li,
#menu7 li ul li,
#menu8 li ul li,
#menu9 li ul li,
#menu-active li ul li,
#menu2-active li ul li,
#menu3-active li ul li,
#menu4-active li ul li,
#menu5-active li ul li,
#menu6-active li ul li,
#menu7-active li ul li,
#menu8-active li ul li,
#menu9-active li ul li {
	font-size:11px;
	position:relative;
	z-index: 1;
	padding:0;
	margin:0;
	float:none;
	text-align:left;
	width:130px;
}

#menu li ul li:hover,
#menu2 li ul li:hover,
#menu3 li ul li:hover,
#menu4 li ul li:hover,
#menu5 li ul li:hover,
#menu6 li ul li:hover,
#menu7 li ul li:hover,
#menu8 li ul li:hover,
#menu9 li ul li:hover,
#menu-active li ul li:hover,
#menu2-active li ul li:hover,
#menu3-active li ul li:hover,
#menu4-active li ul li:hover,
#menu5-active li ul li:hover,
#menu6-active li ul li:hover,
#menu7-active li ul li:hover,
#menu8-active li ul li:hover,
#menu9-active li ul li:hover {
	background:none;
	border:none;
	padding:0;
	margin:0;
}
*/





/* Print styles!
-------------------------------------------------------------------------------*/
@media print {
}


/* Media queries!
-------------------------------------------------------------------------------*/

/* Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
}

@media all and (orientation: portrait) {
}

@media all and (orientation: landscape) {
}

.portal-container a:not(.btn),
.portal-container a:not(.btn):active,
.portal-container a:not(.btn):hover,
.portal-container a:not(.btn):focus {
    text-decoration: underline !important;
}

.footer--logo {
    max-width: 30%;
}
