/*! HTML5 Boilerplate v6.0.1 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highdark:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

* {
    outline: none !important;
}

body {
    font-family: "Saira Semi Condensed", sans-serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    font-weight: 400;
    color: #005aaf;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
}

#preloader img {
    animation: pulse 1s infinite linear;
}

@keyframes pulse {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

#content {
    display: none;
}

h2 {
    text-transform: uppercase;
    font-size: 3.5em;
    margin-bottom: 0.5em;
}

.font-dark {
    color: #fff;
}

.container-fluid {
    padding: 0;
}

a {
    text-transform: uppercase;
    color: #005aaf;
    font-weight: bold;
}

/* Navbar */

nav.navbar {
    position: fixed;
    width: 100%;
    z-index: 11;
    font-size: 1em;
}

.navbar .navbar-toggler {
    border: 1px solid #fff;
}

.navbar-dark .navbar-nav .nav-link {
    color: #005aaf;
    text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    background-color: #005aaf;
    color: #fff;
}

.navbar-brand img {
    background: #fff;
    border-radius: 9px;
}

.mobile-logo {
    display: none;
}

.custom-toggler.navbar-toggler {
    border-color: #005aaf;
}
.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 90, 175, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.navbar-collapse .nav-item .nav-link {
    background: #dcf3fd;
    margin-bottom: 2px;
    padding-left: 11px;
}

.navbar-collapse .nav-item .nav-link.active {
    background: #005aaf;
}

.container button {
    background: #005aaf;
    color: #fff;
    text-transform: uppercase;
    border: none;
    border-radius: 15px;
    padding: 20px;
    width: 70%;
    margin-top: 2em;
    cursor: pointer;
}

button[disabled="disabled"] {
    opacity: 0.2;
    cursor: not-allowed;
}

.checkbox-hide {
    display: none;
}

.form-control,
.form-control:focus {
    background: transparent;
    border: none;
    padding: 0px;
    border-bottom: solid 1px #005aaf;
    border-radius: 0;
    padding-bottom: 2px;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
}

select.form-control:not([size]):not([multiple]) {
    border-radius: 0;
    height: auto;
    cursor: pointer;
}

.shadow {
    height: 25px;
    margin-top: -26px;
    width: 88%;
    box-shadow: 0px 20px 40px -5px #000;
    opacity: 0.4;
}

.flip {
    transform: scaleX(-1);
}

.container {
    padding-top: 2em;
    padding-bottom: 2em;
}

/* Flip and order menu on mobile */

@media only screen and (max-width: 576px) {
    .navbar-nav {
        display: flex;
        flex-direction: column-reverse;
    }

    .mobile-logo {
        display: block;
    }

    .desktop-logo,
    .logo-hide {
        display: none;
    }

    nav.navbar {
        background-color: #fff;
    }
}

@media only screen and (min-width: 576px) {
    ul.navbar-nav.mr-auto {
        position: fixed;
        transform: rotate(270deg);
        left: -260px;
        top: 355px;
    }
    li.nav-item a {
        background: #dcf3fd;
        padding: 25px 25px 10px !important;
        margin-right: 2px;
        color: #005aaf;
        display: inline-block;
    }
    li.nav-item a.active {
        background: #005aaf;
    }
    .navbar-dark .navbar-nav .active > .nav-link,
    .navbar-dark .navbar-nav .nav-link.active,
    .navbar-dark .navbar-nav .nav-link.show,
    .navbar-dark .navbar-nav .show > .nav-link {
        color: #fff;
    }
    .container {
        padding-left: 75px;
        padding-top: 6em;
        padding-bottom: 6em;
    }
}

/* Hero */

#hero {
    min-height: 100vh;
    background: url("../img/background.jpg") center no-repeat;
    background-size: cover;
    position: relative;
}

#hero .overlay {
    background: url("../img/bg.png") center no-repeat;
    width: 35%;
    height: 90vh;
    position: absolute;
    right: 0;
    top: 0;
}

#hero .overlay img.ipad {
    margin-left: -37%;
    margin-top: 25vh;
    width: 130%;
}

@media only screen and (min-width: 1600px) {
    #hero .overlay {
        width: 32%;
        top: -115px;
    }

    #hero .overlay img.ipad {
        margin-top: 30vh;
    }
}

@media only screen and (max-width: 768px) {
    #hero .overlay img.ipad {
        margin-top: 15vh;
    }
}

#hero .overlay .partners {
    position: absolute;
    top: 10px;
    text-align: right;
}

#hero .overlay .partners p {
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #fff;
}

#hero .overlay .partners img {
    width: 75px;
    display: inline-block;
    margin-left: 15px;
}

#hero img.logo {
    margin-bottom: 2em;
}

#hero h1 {
    font-size: 5.8vw;
    text-transform: uppercase;
    line-height: 0.85em;
    color: #005aaf;
}

#hero h3 {
    color: #14b2e9;
    margin-bottom: 2em;
}

#hero li a {
    color: #14b2e9;
    font-size: 1.75rem;
    font-weight: 500;
}
#hero ul {
    margin-bottom: 2em;
    color: #14b2e9;
}

.cherwell-badge{
    width: 100px;
    position: absolute;
    right: 15px;
    top: 15px;
    object-fit: contain;
    z-index: 10;
}
.cherwell-link{
    z-index: 1 !important;
}

.gep-logo{
    display: block;
    width: 200px;
    position: absolute;
    right: 130px;
    top: 25px;
    object-fit: contain;
    z-index: 10;
}

.gep-logo-mobile{
    display: none;
}

@media only screen and (max-width: 576px) {
    .cherwell-badge{
        width: 43px;
        right: 20px;
        top: 130px;
    }

    .gep-logo{
        display: none;
    }

    .downloadNHSFormShow{
        margin-bottom: 4em;
    }

    .gep-logo-mobile{
        display: block;
        width: 100px;
        position: absolute;
        left: 15px;
        top: 130px;
        object-fit: contain;
        z-index: 10;
    }

    #hero .overlay img.ipad {
        margin-top: 5vh;
        margin-left: 11%;
        width: 85%;
    }

    #hero h1 {
        font-size: 14vw;
        padding-top: 60px;
    }

    #hero li a {
        font-size: 1rem;
    }

    #hero .overlay {
        width: 100%;
        height: 40vh;
        bottom: 0;
        top: auto;
        padding-top: 2vh;
    }

    .pb-mobile {
        padding-bottom: 20em;
        padding-top: 8em;
    }

    #hero h3 {
        margin-bottom: 1.2em;
    }

    .appstores {
        text-align: center;
    }
}

/* About */

#about {
    min-height: 100vh;
    background: url("../img/about-bg.png") center no-repeat;
    background-size: cover;
    position: relative;
}

#about .pull-up {
    margin-top: -25vh;
}

#about h2,
#about p {
    color: #fff;
}

@media only screen and (max-width: 768px) {
    #about .pull-up {
        margin-top: -15vh;
    }
}

@media only screen and (max-width: 576px) {
    #about .pull-up {
        margin-top: -8vh;
        width: 80%;
    }
    #about h2 {
        margin-top: 1rem;
    }
    .shadow {
        width: 60%;
    }
    .container button {
        width: 100%;
        border-radius: 35px;
        padding: 16px;
        margin-bottom: 1.5em;
    }
}

/* Solutions */

#solutions {
    min-height: 100vh;
    background: url("../img/solutions-image.png") 100% 14em no-repeat;
    background-size: 40%;
    position: relative;
    overflow-x: hidden;
}

@media only screen and (max-width: 768px) {
    #solutions {
        background: none;
    }
}

#solutions .icon {
    margin-right: 30px;
    width: 150px;
    float: left;
}

#solutions .restrict {
    float: left;
    width: 50%;
}

@media only screen and (max-width: 576px) {
    #solutions .icon {
        width: 80px;
    }
    #solutions .restrict {
        width: 60%;
    }

    #solutions h2 {
        line-height: 0.9;
    }
}

#solutions .solution {
    padding: 30px 0;
    cursor: pointer;
}

.link {
    text-transform: inherit;
    font-weight: normal;
}

#solutions .solution:after {
    content: "";
    display: table;
    clear: both;
}

#solutions .solution hr {
    height: 1px;
    border: none;
    background: #005aaf;
    width: 90px;
    transition: width 0.5s ease-in;
}

#solutions .solution:hover {
    background: #30aefd26;
    padding-left: 15px;
    transition: all 0.2s ease-in;
}

#solutions .solution:hover hr {
    width: 150%;
}

#solutions .solution a:hover {
    text-decoration: none;
}

/* Case Studies */

#cases {
    min-height: 100vh;
    background: url("../img/about-bg.png") center no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
}

#cases .logo {
    margin-bottom: 2em;
    background: #30aefd91;
    padding: 2em;
    border-radius: 10px;
}

@media only screen and (max-width: 576px) {
    #cases h2 {
        margin-top: 1rem;
    }
}

/* Case Studies */

#contact {
    min-height: 100vh;
    background: url("../img/contact-bg.png") bottom left no-repeat;
    background-size: cover;
    position: relative;
}

#contact .partner .col-md-6 {
    text-align: center;
}

#contact .partner:after {
    content: "";
    display: table;
    clear: both;
}

#contact .contact-details {
    margin-top: 4em;
    margin-bottom: 4em;
}

#contact .connect {
    margin-top: 2em;
    margin-bottom: 4em;
}

#contact .connect .icon {
    margin-right: 1em;
}

@media only screen and (max-width: 576px) {
    #contact h2 {
        line-height: 0.9;
    }

    .neg-pb {
        padding-bottom: 0;
    }

    .appstores img {
        width: 90%;
    }
}

/* Solutions */

#workforce-mobility-app,
#it-asset-management,
#enterprise-mobility,
#mobile-device-management {
    background: #fff;
    position: relative;
}

#enterprise-mobility {
    background: url("../img/background.jpg") center no-repeat;
    background-size: cover;
}

#mobile-device-management {
    background: url("../img/contact-bg.png") center no-repeat;
    background-size: cover;
}

#workforce-mobility-app h2,
#it-asset-management h2,
#enterprise-mobility h2,
#mobile-device-management h2 {
    line-height: 1em;
}

@media only screen and (max-width: 786px) {
    #workforce-mobility-app h2,
    #it-asset-management h2,
    #enterprise-mobility h2,
    #mobile-device-management h2 {
        font-size: 2.5em;
        margin-top: 25px;
    }
}

@media only screen and (max-width: 576px) {
    #workforce-mobility-app h2,
    #it-asset-management h2,
    #enterprise-mobility h2,
    #mobile-device-management h2 {
        /* color: #fff; */
        z-index: 2;
        position: relative;
        /* margin-top: 8.5em; */
    }
}

#workforce-mobility-app .icon,
#it-asset-management .icon,
#enterprise-mobility .icon,
#mobile-device-management .icon {
    margin-right: 30px;
    width: 110px;
}

#workforce-mobility-app .app {
    margin-right: 10px;
    width: 25%;
}

@media only screen and (max-width: 786px) {
    #workforce-mobility-app .icon,
    #it-asset-management .icon,
    #enterprise-mobility .icon,
    #mobile-device-management .icon {
        width: 95px;
        margin-top: 20px;
    }
}

@media only screen and (max-width: 576px) {
    #workforce-mobility-app .icon,
    #it-asset-management .icon,
    #enterprise-mobility .icon,
    #mobile-device-management .icon {
        width: 70px;
        margin-right: 10px;
        /* display: none; */
    }
}

#workforce-mobility-app .col-sm-4,
#it-asset-management .col-sm-4,
#enterprise-mobility .col-sm-4,
#mobile-device-management .col-sm-4 {
    position: relative;
    z-index: 10;
    color: #fff;
    padding-top: 4em;
}

#workforce-mobility-app .col-md-8 .panel-text,
#it-asset-management .col-md-8 .panel-text,
#enterprise-mobility .col-md-8 .panel-text,
#mobile-device-management .col-md-8 .panel-text {
    position: relative;
    z-index: 10;
    color: #fff;
    padding-top: 4em;
}

@media only screen and (max-width: 576px) {
    #workforce-mobility-app .col-sm-12 .panel-text,
    #it-asset-management .col-sm-12 .panel-text,
    #enterprise-mobility .col-sm-12 .panel-text,
    #mobile-device-management .col-sm-12 .panel-text {
        padding-top: 0;
        position: relative;
        z-index: 2;
        color: #005aaf;
    }

    #workforce-mobility-app .col-sm-4,
    #it-asset-management .col-sm-4,
    #enterprise-mobility .col-sm-4,
    #mobile-device-management .col-sm-4 {
        padding-top: 2em;
        padding-bottom: 2em;
    }
}

#workforce-mobility-app button,
#it-asset-management button,
#enterprise-mobility button,
#mobile-device-management button {
    background: #005aaf;
    color: #fff;
    text-transform: uppercase;
    border: none;
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    margin-right: 15px;
    margin-top: 2em;
    cursor: pointer;
}

@media only screen and (max-width: 786px) {
    #workforce-mobility-app button,
    #it-asset-management button,
    #enterprise-mobility button,
    #mobile-device-management button {
        width: 170px;
        font-size: 0.75em;
    }
}

@media only screen and (max-width: 576px) {
    .mt {
        margin-top: 2em;
    }
    #workforce-mobility-app button {
        margin-bottom: 0;
    }
    #workforce-mobility-app button,
    #it-asset-management button,
    #enterprise-mobility button,
    #mobile-device-management button {
        width: 100%;
        font-size: 1em;
        border-radius: 35px;
        padding: 16px;
    }

    #enterprise-mobility button,
    #mobile-device-management button {
        color: #005aaf;
        background-color: #fff;
    }
}

#workforce-mobility-app .col-sm-4 img {
    max-width: 115%;
}

@media only screen and (max-width: 576px) {
    #workforce-mobility-app .col-sm-4 img {
        max-width: 85%;
    }
}

#it-asset-management .col-sm-4 img {
    max-width: 100%;
}

@media only screen and (max-width: 576px) {
    #it-asset-management .col-sm-4 img {
        max-width: 85%;
    }
}

#enterprise-mobility .col-sm-4 img {
    max-width: 100%;
}

@media only screen and (max-width: 576px) {
    #enterprise-mobility .col-sm-4 img {
        max-width: 85%;
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }
}

#mobile-device-management .col-sm-4 img {
    max-width: 100%;
}

@media only screen and (max-width: 576px) {
    #mobile-device-management .col-sm-4 img {
        max-width: 85%;
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }
}

#workforce-mobility-app .full-panel,
#it-asset-management .full-panel,
#enterprise-mobility .full-panel,
#mobile-device-management .full-panel {
    position: absolute;
    background: #5b8fdd;
    height: 75%;
    width: 75%;
    top: 240px;
    right: 0;
    color: #fff;
    z-index: 0;
}

#workforce-mobility-app .full-panel {
    height: 85%;
}

@media only screen and (max-width: 576px) {
    #workforce-mobility-app .full-panel,
    #it-asset-management .full-panel,
    #enterprise-mobility .full-panel,
    #mobile-device-management .full-panel {
        display: none;
        width: 100%;
        z-index: 0;
    }

    #enterprise-mobility,
    #mobile-device-management {
        background: #fff;
        background-color: #5c9be0;
    }

    #workforce-mobility-app,
    #it-asset-management {
        background: url("../img/background.jpg") center no-repeat;
        background-size: cover;
    }

    #enterprise-mobility p,
    #mobile-device-management p,
    #enterprise-mobility h2,
    #mobile-device-management h2,
    #enterprise-mobility h3,
    #mobile-device-management h3 {
        color: #fff;
    }
}

#enterprise-mobility .full-panel,
#mobile-device-management .full-panel {
    height: 75%;
    left: 0;
}

#it-asset-management .full-panel,
#mobile-device-management .full-panel {
    height: 81%;
}

@media only screen and (max-width: 1024px) {
    #workforce-mobility-app .full-panel,
    #enterprise-mobility .full-panel {
        height: 77.5%;
    }
    #it-asset-management .full-panel,
    #mobile-device-management .full-panel {
        height: 83.5%;
    }
}

@media only screen and (max-width: 786px) {
    #workforce-mobility-app .full-panel,
    #enterprise-mobility .full-panel {
        height: 86.5%;
    }

    #it-asset-management .full-panel,
    #mobile-device-management .full-panel {
        height: 84.5%;
    }
}

/* Download Form */
.downloadForm, .downloadNHSForm {
    display: none;
    opacity: 0;
    transition: 0.5s;
}

.downloadFormActive {
    display: block;
    opacity: 1;
    transition: 0.5s;
}

.form-container {
    background-color: transparent;
    padding-top: 3em;
    padding-bottom: 1em;
}

.downloadForm ::-webkit-input-placeholder, .downloadNHSForm ::-webkit-input-placeholder{
    /* Chrome/Opera/Safari */
    color: #fff;
}
.downloadForm ::-moz-placeholder, .downloadNHSForm ::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}
.downloadForm :-ms-input-placeholder, .downloadNHSForm :-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}
.downloadForm :-moz-placeholder, .downloadNHSForm :-moz-placeholder{
    /* Firefox 18- */
    color: #fff;
}

.downloadForm .form-control,
.downloadForm .form-control:focus, 
.downloadNHSForm .form-control,
.downloadNHSForm .form-control:focus
{
    border-bottom: solid 1px #fff;
    color: #fff;
}

.downloadForm hr, .downloadNHSForm hr {
    border-top: 1px solid #fff;
    margin: 0 0 1.5em 0;
}

#cases .logo.entrepeneurs-logo{
    width: 249px;
    height: 99px;
    object-fit: contain;
    padding: 1em;
}

.entrepeneurs-partner-logo{
    margin-top: 75px;
}

@media only screen and (max-width: 576px) {
    .entrepeneurs-partner-logo {
        margin-top: 30px;
    }
}

.download-btn {
    padding: 10px !important;
    margin-top: 0 !important;
}

#cases .form-container {
    width: 100%;
    padding-top: 2em;
}

#workforce-mobility-app .form-inline {
    padding-top: 1.2em;
}

@media only screen and (max-width: 1024px) {

    #workforce-mobility-app .app {
        width: 20%;
    }
}
@media only screen and (max-width: 768px) {
    .form-container {
        padding-top: 2em;
    }
}

@media only screen and (max-width: 576px) {
    #cases .form-container {
        width: 100%;
    }

    .download-btn {
        width: 100% !important;
    }

    #workforce-mobility-app .downloadForm ::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: #005aaf;
    }

    #workforce-mobility-app .downloadForm .form-control,
    #workforce-mobility-app .downloadForm .form-control:focus {
        border-bottom: solid 1px #005aaf;
        color: #005aaf;
    }

    #workforce-mobility-app .app {
        width: 40% !important;
    }

    .form-inline {
        padding-top: 1em;
    }
}

.disabled {
    opacity: 0.5;
}

.download-btn em {
    font-style: normal;
}

.mobile-padding img {
    width: 80% !important;
}

/* Footer Section*/
@media only screen and (max-width: 576px) {
    .flex-sm-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .d-inline-50 {
        display: inline-block;
        width: 50%;
    }

    .mobile-padding {
        padding-bottom: 60px;
        padding-top: 60px;
    }

    .mobile-padding img {
        width: 60% !important;
    }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
    /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    -webkit-clip-path: none;
    clip-path: none;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
    (-webkit-min-device-pixel-ratio: 1.25),
    (min-resolution: 1.25dppx),
    (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}

/*
Private Policy Styles
*/

#ppBody {
    font-size: 11pt;
    width: 100%;
    margin: 0 auto;
    text-align: justify;
}

.ppConsistencies {
    display: none;
}
