.dual-branding-header {
        max-width: 1230px;
        margin: 0.5rem auto 0.5rem auto;
        min-height: 4rem;    
        display: flex;
        justify-content: space-between;
        align-items: center;
}

.dual-branding-header p {
    font-weight: bold;
    margin: 0;
    font-size: 2rem;
    max-width: 60%;
}

.dual-branding-image {
    height: 100%;
    height: 4rem;
}

@media only screen and (max-width: 1350px) and (min-width: 1024px) {
    .dual-branding-header {
        margin: 0.5rem 3rem 0.5rem 3rem;
        
    }
}

@media only screen and (max-width: 1024px) {
    .dual-branding-header {
        margin: 0.5rem 0 0.5rem 27px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        flex-direction: column;
    }
    
    .dual-branding-header p {
        max-width: 100%;
    }
    
    .dual-branding-image {
        margin-right: 3rem;
    }
    
    .dual-branding-header-hr {
        display: none;
    }
}
/*
--------------------
  Forms styling 2136290
--------------------
*/
     /* general inputs - text, drop downs etc */
    .sq-form-field {
        width: 60%;
        height: 2.5rem;
        background-color: #eee;
        border: none;
        padding-left: 0.3rem;
    }
    
    .sq-form-field[rows] {
        height: auto !important;
    }
    
    .sq-form-question-answer select[size] {
        height: auto !important;
    }
    
    .sq-form-question-title {
        font-weight: bold;
        margin-bottom: 0.3rem;
    }
    
    .sq-form-question-answer {
        margin-top: 0.3rem;
    }
    
    .sq-form-question {
        margin-bottom: 0.5rem;
    }
    
    /* Question notes */
    .sq-form-question-note {
        display: block;    
        font-style: normal;
        width: 60%;
        font-size: 0.8rem;
        color: #53565a;
    }  
    
    /* Title */
    .sq-form-question-title {
        width: 60%;
        display: block;
    }
    
    /* submit button */
    .sq-form-submit {
        color: white;
        font-weight: 600;
        background-color: #06c;
        border: none;
        padding: .75rem 1rem;
        margin: 0 0 1rem;
        max-width: fit-content;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
        transition: box-shadow .2s;
    }
    
    .sq-form-submit:hover {
        cursor: pointer;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
    }
    
    /* checkbox list */
    .sq-form-question-tickbox-table {
        width: 60%;
    }
    
    .sq-form-question-tickbox-table fieldset {
        padding: 0;
        margin: 0;
        border: none;
    }
    
    .sq-form-question-tickbox-list input {
        width: 1.5rem !important;
        height: 1.4rem;
        margin-right: 0.5rem;
    }
    
    .sq-form-question-tickbox-list label {
        width: 95%;
    }
    
    .sq-form-question-answer li {
        display: flex;
        align-items: center;
        margin-bottom: 0.6rem;
    }
    
    .sq-form-question-tickbox-list fieldset, .sq-form-question-tickbox-list fieldset ul {
        margin: 0;
        padding: 0;
        border: none;
    } 
    
    /* checkbox table */
    .sq-backend-table-header {
        width: 1%;    
    }
    
    .sq-backend-table-cell input {
        width: 1.5rem !important;
        height: 1.4rem;
        margin-right: 0.5rem;
    }
    
    /* Form upload */
    .sq-form-upload input {
        background-color: white;
        border-radius: 0;
    }
    
    /* Option List */
    .sq-form-question-option-list input {
        width: 1.5rem !important;
        height: 1.4rem;
        margin-right: 0.5rem;
    }
    
    .sq-form-question-option-list li {
        display: flex;
        align-items: center;
        margin-bottom: 0.6rem;
    }
    
    .sq-form-question-option-list ul {
        margin: 0;
        padding: 0;
        border: none;
    }
    
    .sq-form-question-option-list fieldset {
        padding: 0;
        margin: 0;
        border: none;
    }
    
    /* Date / Time */
    .sq-form-question-datetime .sq-form-question-answer {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .sq-form-question-datetime fieldset {
        padding: 0;
        margin: 0;
        border: none;
    }
    
    .sq-form-question-datetime {
        width: 60%;
    }
    
    .sq-form-question-datetime label {
        width: auto;
        margin-right: 0.3rem;
    }
    
    .sq-form-question-datetime select {
        margin-right: 1.5rem;
    }
    
    .sq-form-question-datetime .sq-form-field:last-of-type {
        margin-right: 0;
    }
    
    /* Password */
    .sq-form-question-password fieldset {
        border: none;
        margin: 0;
        padding: 0;
    }
    
    /* Required Asteriks */
    .sq-form-required-field {
        color: red;
        font-weight: 400;
        text-decoration: unset;
    }
    
    /* Error Message */
    .sq-form-error,
    .sq-form-errors-message {
        position: relative;
        background: #F9EAEA;
        color: #BC3531;
        border: solid 2px #BC3531;
        padding: 0.5em 1em;
        margin-bottom: 20px;
        display: inline-block;
        width: 60%;
    }
    
    .sq-form-errors-message {
        float: none;
    }
    
    .sq-form-question-datetime .sq-form-error {
        width: 100%;
    }
    
    /* Sections */
    .sq-form-section {
        border: none;
        margin: 0;
        padding: 0;
    }
    
    .sq-form-section-title {
        margin-bottom: 0.5rem;
        font-weight: bold;
        font-size: 1.3rem;
    }
    
    /* Mobile */
    @media only screen and (max-width: 769px) {
        .sq-form-question-datetime, .sq-form-field, 
        .sq-form-error, .sq-form-errors-message, 
        .sq-form-question-note, .sq-form-question-title {
            width: 100%;
        }
        
        .sq-form-upload input {
            padding: 0;
        }
    }
  
.sq-form-question-map{
    display:none;
}
:root {
    --main-bg-color: #ffffff;
    --blue-mid:#0066cc;
    --lightgrey:#f1f1f1;
    --forground-light:#000000; 
    --forground-dark:#ffffff; 
    --forground-grey:#53565a;
    
    --Theme-0: #009681;
    --Theme-1: #980634;
    --Theme-2: #991e66;
    --Theme-3: #183686;
    --Theme-4: #d34017;
    --Theme-5: #008b4c;
    --Theme-6: #007bc3; 
    --Dark-beige: #e7e6db;
    --Light-beige: #f7f6f3;
    --Primary-beige: #f4f3ed;
     
     /*--Contextual Colours--*/ 
    --success:#B2DCD6; 
    --info:#A6DBFF;
    --warning:#ffc107;
    --danger:#E0555F;
}     

 
/*GLOBAL - COLOURS*/
.bg-green {background-color:var(--Theme-0);}
.bg-red {background-color:var(--Theme-2);}
.bg-burgundy {background-color: var(--Theme-1);}
.bg-blue {background-color:var(--Theme-3);}
.bg-orange {background-color:var(--Theme-4);}
.bg-blue-mid {background-color:var(--blue-mid)} 
.bg-beige {background-color:var(--Primary-biege);}
.bg-lightgrey {background-color:var(--lightgrey);} 
.bg-grey {background-color:var(--forground-grey);}
.bg-sky-blue {background-color:var(--info);} 
.bg-green-light {background-color:var(--success);}
.bg-strawberry {background-color:var(--danger);} 



.border-blue {border: 3px solid var(--blue-mid) !important;}

/*Normalization*/
* {
    box-sizing: border-box;
}

h2,h3,h4,h5,h5,h6,p,.tile-text-section, ul, hr, .caption {
    margin-top:0 !important;
    margin-bottom:1.5rem;
}

/*-----------------------------------------------------*/
/*Utilities*/
[hidden] {display: none;}
.hidden {
      display: none !important;
      visibility: hidden;
}
.invisible , hr.invisible {
  visibility: hidden;
}
.clearboth {clear: both;}
.one-em {font-size: 1em;}


.blue a{
    color: white;
    text-decoration: underline;
}
.blue a:hover{
    color: white;
    text-decoration: none;
}
    
    
    
    
    
    
    
.infobox, .info-box{
    display: inline-block;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    width: 100%;
    border: 0px;
    color: var(--forground-light);
}
.infobox.blue, .info-box.blue {
    background: var(--blue-mid);
    color: var(--forground-dark);
}

.infobox.grey, .info-box.grey {
    background: var(--lightgrey);
    color: var(--forground-light);
}

.infoboxgrey{
    display: inline-block;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    width: 100%;
    border: 0px;
    color: var(--forground-light);
    background: var(--lightgrey);
}

/*------------------------------------------------*/
.infobox.theme-0{
    --theme-color: var(--Theme-0);
    background: var(--Theme-0);
}
.infobox.theme-1{
    --theme-color: var(--Theme-1);
    background: var(--Theme-1);
}
.infobox.theme-2{
    --theme-color: var(--Theme-2);
    background: var(--Theme-2);
}
.infobox.theme-3{
    --theme-color: var(--Theme-3);
    background: var(--Theme-3);
}
.infobox.theme-4{
    --theme-color: var(--Theme-4);
    background: var(--Theme-4);
}
.infobox.theme-5{
    --theme-color: var(--Theme-5);
    background: var(--Theme-5);
}
.infobox.theme-6{
    --theme-color: var(--Theme-6);
    background: var(--Theme-6);
}

.infobox.background-20, .infobox.background-tint1 {
    background: color-mix(in srgb, var(--theme-color), white 80%);
}

.infobox.background-40, .background-tint2 {
    background: color-mix(in srgb, var(--theme-color), white 60%);
}

.infobox.background-60, .infobox.background-tint3 {
    background: color-mix(in srgb, var(--theme-color), white 40%);
}

/*.infobox.background-60 a, .infobox.background-tint3 a{*/
/*    color: white;*/
/*    text-decoration: underline;*/
/*}*/

/*.infobox.background-60 a:hover, .infobox.background-tint3 a:hover{*/
/*    color: white;*/
/*    text-decoration: none;*/
/*}*/


/*------------------------------------------*/
.infobox.lineleft, .infobox.lineleft-theme-0{
    border-left: solid 6px var(--Theme-0);
}
.infobox.lineleft-theme-1{
    border-left: solid 6px var(--Theme-1);
}
.infobox.lineleft-theme-2{
    border-left: solid 6px var(--Theme-2);
}
.infobox.lineleft-theme-3{
    border-left: solid 6px var(--Theme-3);
}
.infobox.lineleft-theme-4{
    border-left: solid 6px var(--Theme-4);
}
.infobox.lineleft-theme-5{
    border-left: solid 6px var(--Theme-5);
}
.infobox.lineleft-theme-6{
    border-left: solid 6px var(--Theme-6);
}

.infobox :last-child {
    margin-bottom:0px;
    padding-bottom:0px;
}

.infobox > h2:first-child{
    margin-top:-0.2rem !important;
}
/*Contextual Classes Module */
/*Included:                 */
/*  .active                 */
/*  .danger                 */
/*  .info .infobox          */
/*  .success                */
/*  .warning                */
/*  .intro .introtext       */
/*  .sub .sup               */
/*  .caption                */
/*--------------------------*/

/*.blue a{*/
/*    color: white;*/
/*    text-decoration: underline;*/
/*}*/
/*.blue a:hover{*/
/*    color: white;*/
/*    text-decoration: none;*/
/*}*/
    /*.infobox, .info-box{*/
    /*    display: inline-block;*/
    /*    margin-bottom: 2.5rem;*/
    /*    padding: 1.5rem;*/
    /*    width: 100%;*/
    /*    border: 0px;*/
    /*    color: var(--forground-light);*/
    /*}*/
    /*.infobox.blue, .info-box.blue {*/
    /*    background: var(--blue-mid);*/
    /*    color: var(--forground-dark);*/
    /*}*/

    /*.infobox.grey, .info-box.grey {*/
    /*    background: var(--lightgrey);*/
    /*    color: var(--forground-light);*/
    /*}*/
    
    /*.infoboxgrey{*/
    /*    display: inline-block;*/
    /*    margin-bottom: 2.5rem;*/
    /*    padding: 1.5rem;*/
    /*    width: 100%;*/
    /*    border: 0px;*/
    /*    color: var(--forground-light);*/
    /*    background: var(--lightgrey);*/
    /*}*/

    /*------------------------------------------------*/
    /*.infobox.theme-0{*/
    /*    --theme-color: var(--Theme-0);*/
    /*    background: var(--Theme-0);*/
    /*}*/
    /*.infobox.theme-1{*/
    /*    --theme-color: var(--Theme-1);*/
    /*    background: var(--Theme-1);*/
    /*}*/
    /*.infobox.theme-2{*/
    /*    --theme-color: var(--Theme-2);*/
    /*    background: var(--Theme-2);*/
    /*}*/
    /*.infobox.theme-3{*/
    /*    --theme-color: var(--Theme-3);*/
    /*    background: var(--Theme-3);*/
    /*}*/
    /*.infobox.theme-4{*/
    /*    --theme-color: var(--Theme-4);*/
    /*    background: var(--Theme-4);*/
    /*}*/
    /*.infobox.theme-5{*/
    /*    --theme-color: var(--Theme-5);*/
    /*    background: var(--Theme-5);*/
    /*}*/
    /*.infobox.theme-6{*/
    /*    --theme-color: var(--Theme-6);*/
    /*    background: var(--Theme-6);*/
    /*}*/

    /*.infobox.background-20, .infobox.background-tint1 {*/
    /*    background: color-mix(in srgb, var(--theme-color), white 80%);*/
    /*}*/
    
    /*.infobox.background-40, .infobox.background-tint2 {*/
    /*    background: color-mix(in srgb, var(--theme-color), white 60%);*/
    /*}*/
    
    /*.infobox.background-60, .infobox.background-tint3 {*/
    /*    background: color-mix(in srgb, var(--theme-color), white 40%);*/
    /*}*/
    
    
    /*------------------------------------------*/
    /*.infobox.lineleft, .infobox.lineleft-theme-0{*/
    /*    border-left: solid 6px var(--Theme-0);*/
    /*}*/
    /*.infobox.lineleft-theme-1{*/
    /*    border-left: solid 6px var(--Theme-1);*/
    /*}*/
    /*.infobox.lineleft-theme-2{*/
    /*    border-left: solid 6px var(--Theme-2);*/
    /*}*/
    /*.infobox.lineleft-theme-3{*/
    /*    border-left: solid 6px var(--Theme-3);*/
    /*}*/
    /*.infobox.lineleft-theme-4{*/
    /*    border-left: solid 6px var(--Theme-4);*/
    /*}*/
    /*.infobox.lineleft-theme-5{*/
    /*    border-left: solid 6px var(--Theme-5);*/
    /*}*/
    /*.infobox.lineleft-theme-6{*/
    /*    border-left: solid 6px var(--Theme-6);*/
    /*}*/

    /*.infobox :last-child {*/
    /*    margin-bottom:0px;*/
    /*    padding-bottom:0px;*/
    /*}*/
    
    /*.infobox > h2:first-child{*/
    /*    margin-top:-0.2rem !important;*/
    /*}*/
    
/*Info*/
    .info { 
        padding:1.3%;
        color : #2d2d2d;
        display: inline-block;
        background : color-mix(in srgb, var(--info) 50%, white);
        margin-bottom:2%;
    }
    
    .info.border {
        border: 3px solid var(--info);
        /*border: 3px solid color-mix(in srgb, var(--success) 100%, black);*/
    }
/*Success*/
    .success {
        padding:1.3%;
        color : #2d2d2d;
        display: inline-block;
        background : color-mix(in srgb, var(--success) 50%, white);
        margin-bottom:2%;
    }
    
    .success.border {
        border: 3px solid var(--success);
        /*border: 3px solid color-mix(in srgb, var(--success) 100%, black);*/
    }
 
/*Warning*/
    .warning {
        padding:1.3%;
        color : #2d2d2d;
        display: inline-block;
        background : color-mix(in srgb, var(--warning) 50%, white);
        /*rgba(var(--warning), 0.8);*/
        margin-bottom:2%;
    }
    
    .warning.border {
        border: 3px solid var(--warning);
        /*border: 3px solid color-mix(in srgb, var(--warning) 100%, black);*/
    }
    
/*Danger*/
    .danger {
        padding:1.3%;
        color : #2d2d2d;
        display: inline-block;
        background : color-mix(in srgb, var(--danger) 50%, white);
        margin-bottom:2%;
    }
    
    .danger.border {
        border: 3px solid var(--danger);
    }
    
/*Introtext*/
    .introtext{
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    .intro {
        font-size:20px;
        color:#000;
        margin-bottom: 2.25rem;
    }
  
/*Caption*/
    .caption{
        color:var(--forground-grey);
    }


/*Typography - Webglyphs*/
@font-face {
    font-family: 'WebHostingHub-Glyphs';
    src: url('/__data/assets/file/0012/3405/webhostinghub-glyphs.eot?v=0.2.3');
    src: url('/__data/assets/file/0012/3405/webhostinghub-glyphs.eot?v=0.2.3?#iefix') format('embedded-opentype'),
         url('/__data/assets/file/0009/3402/webhostinghub-glyphs.ttf?v=0.2.3') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: auto;
    -moz-font-feature-settings: "calt=0,liga=0";
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'WebHostingHub-Glyphs';
    background: none;
    width: auto;
    height: auto;
    font-display: auto;
    font-style: normal
}

.icon-aaabattery:before {
    content: '\f413'
}

.icon-abacus:before {
    content: '\f261'
}

.icon-accountfilter:before {
    content: '\f05e'
}

.icon-acsource:before {
    content: '\f3ea'
}

.icon-addfriend:before {
    content: '\f3da'
}

.icon-address:before {
    content: '\f08f'
}

.icon-addshape:before {
    content: '\f1fd'
}

.icon-addtocart:before {
    content: '\f394'
}

.icon-addtolist:before {
    content: '\f2ac'
}

.icon-adjust:before {
    content: '\f484'
}

.icon-adobe:before {
    content: '\f1c9'
}

.icon-ads-bilboard:before {
    content: '\f082'
}

.icon-affiliate:before {
    content: '\f01e'
}

.icon-ajax:before {
    content: '\f06f'
}

.icon-alarm:before {
    content: '\f233'
}

.icon-alarmalt:before {
    content: '\f23d'
}

.icon-album-cover:before {
    content: '\f19f'
}

.icon-alertalt:before {
    content: '\f2b4'
}

.icon-alertpay:before {
    content: '\f269'
}

.icon-algorhythm:before {
    content: '\f0b8'
}

.icon-alienship:before {
    content: '\f41f'
}

.icon-alienware:before {
    content: '\f3be'
}

.icon-align-center:before {
    content: '\f1d9'
}

.icon-align-justify:before {
    content: '\f1da'
}

.icon-align-left:before {
    content: '\f1d7'
}

.icon-align-right:before {
    content: '\f1d8'
}

.icon-alignbottomedge:before {
    content: '\f1d3'
}

.icon-alignhorizontalcenter:before {
    content: '\f1d2'
}

.icon-alignleftedge:before {
    content: '\f1d6'
}

.icon-alignrightedge:before {
    content: '\f1d5'
}

.icon-aligntopedge:before {
    content: '\f1d4'
}

.icon-alignverticalcenter:before {
    content: '\f1d1'
}

.icon-amd:before {
    content: '\f020'
}

.icon-analogdown:before {
    content: '\f2cb'
}

.icon-analogleft:before {
    content: '\f2c8'
}

.icon-analogright:before {
    content: '\f2c9'
}

.icon-analogup:before {
    content: '\f2ca'
}

.icon-analytics-piechart:before {
    content: '\f000'
}

.icon-analyticsalt-piechartalt:before {
    content: '\f001'
}

.icon-anchor-port:before {
    content: '\f21d'
}

.icon-android:before {
    content: '\f12a'
}

.icon-angrybirds:before {
    content: '\f3c1'
}

.icon-antenna:before {
    content: '\f3ec'
}

.icon-apache-feather:before {
    content: '\f056'
}

.icon-aperture:before {
    content: '\f356'
}

.icon-appointment-agenda:before {
    content: '\f26c'
}

.icon-archive:before {
    content: '\f171'
}

.icon-arrow-down:before {
    content: '\f2fe'
}

.icon-arrow-left:before {
    content: '\f305'
}

.icon-arrow-right:before {
    content: '\f304'
}

.icon-arrow-up:before {
    content: '\f301'
}

.icon-asterisk:before {
    content: '\f317'
}

.icon-asteriskalt:before {
    content: '\002a'
}

.icon-at:before {
    content: '\40'
}

.icon-atari:before {
    content: '\f3b9'
}

.icon-authentication-keyalt:before {
    content: '\f051'
}

.icon-automobile-car:before {
    content: '\f239'
}

.icon-autorespond:before {
    content: '\f08e'
}

.icon-avatar:before {
    content: '\f15a'
}

.icon-avataralt:before {
    content: '\f161'
}

.icon-avengers:before {
    content: '\f342'
}

.icon-awstats:before {
    content: '\f04c'
}

.icon-axe:before {
    content: '\f2ef'
}

.icon-backup-vault:before {
    content: '\f004'
}

.icon-backupalt-vaultalt:before {
    content: '\f005'
}

.icon-backupwizard:before {
    content: '\f05f'
}

.icon-backward:before {
    content: '\f183'
}

.icon-bag:before {
    content: '\f234'
}

.icon-baloon:before {
    content: '\f405'
}

.icon-ban-circle:before {
    content: '\f313'
}

.icon-banana:before {
    content: '\f3f4'
}

.icon-bandwidth:before {
    content: '\f006'
}

.icon-bank:before {
    content: '\f262'
}

.icon-barchart:before {
    content: '\f02f'
}

.icon-barchartalt:before {
    content: '\f07d'
}

.icon-barcode:before {
    content: '\f276'
}

.icon-basecamp:before {
    content: '\f160'
}

.icon-basketball:before {
    content: '\f2e9'
}

.icon-bat:before {
    content: '\f3d3'
}

.icon-batman:before {
    content: '\f348'
}

.icon-batteryaltcharging:before {
    content: '\f104'
}

.icon-batteryaltfull:before {
    content: '\f101'
}

.icon-batteryaltsixty:before {
    content: '\f102'
}

.icon-batteryaltthird:before {
    content: '\f103'
}

.icon-batterycharged:before {
    content: '\f0f4'
}

.icon-batterycharging:before {
    content: '\f0f3'
}

.icon-batteryeighty:before {
    content: '\f0f9'
}

.icon-batteryempty:before {
    content: '\f0f5'
}

.icon-batteryforty:before {
    content: '\f0f7'
}

.icon-batteryfull:before {
    content: '\f0fa'
}

.icon-batterysixty:before {
    content: '\f0f8'
}

.icon-batterytwenty:before {
    content: '\f0f6'
}

.icon-bed:before {
    content: '\f2b9'
}

.icon-beer:before {
    content: '\f244'
}

.icon-bell:before {
    content: '\2407'
}

.icon-bigger:before {
    content: '\f30a'
}

.icon-bill:before {
    content: '\f278'
}

.icon-binary:before {
    content: '\f087'
}

.icon-binoculars-searchalt:before {
    content: '\f2a0'
}

.icon-birdhouse:before {
    content: '\f390'
}

.icon-birthday:before {
    content: '\f36b'
}

.icon-bishop:before {
    content: '\f2f9'
}

.icon-blackberry:before {
    content: '\f421'
}

.icon-blankstare:before {
    content: '\f13e'
}

.icon-blogger-blog:before {
    content: '\f167'
}

.icon-bluetooth:before {
    content: '\f12b'
}

.icon-bluetoothconnected:before {
    content: '\f386'
}

.icon-boardgame:before {
    content: '\f2d9'
}

.icon-boat:before {
    content: '\f21a'
}

.icon-bold:before {
    content: '\f1f4'
}

.icon-bomb:before {
    content: '\f2dc'
}

.icon-bone:before {
    content: '\f35f'
}

.icon-book:before {
    content: '\f1ba'
}

.icon-bookmark:before {
    content: '\f143'
}

.icon-boombox:before {
    content: '\f195'
}

.icon-bottle:before {
    content: '\f361'
}

.icon-bow:before {
    content: '\f2ee'
}

.icon-bowling:before {
    content: '\f2f3'
}

.icon-bowlingpins:before {
    content: '\f3d2'
}

.icon-bowtie:before {
    content: '\f37f'
}

.icon-boxtrapper-mousetrap:before {
    content: '\f046'
}

.icon-braces:before {
    content: '\f0b4'
}

.icon-braille0:before {
    content: '\f44b'
}

.icon-braille1:before {
    content: '\f44c'
}

.icon-braille2:before {
    content: '\f44d'
}

.icon-braille3:before {
    content: '\f44e'
}

.icon-braille4:before {
    content: '\f44f'
}

.icon-braille5:before {
    content: '\f450'
}

.icon-braille6:before {
    content: '\f451'
}

.icon-braille7:before {
    content: '\f452'
}

.icon-braille8:before {
    content: '\f453'
}

.icon-braille9:before {
    content: '\f454'
}

.icon-braillea:before {
    content: '\f431'
}

.icon-brailleb:before {
    content: '\f432'
}

.icon-braillec:before {
    content: '\f433'
}

.icon-brailled:before {
    content: '\f434'
}

.icon-braillee:before {
    content: '\f435'
}

.icon-braillef:before {
    content: '\f436'
}

.icon-brailleg:before {
    content: '\f437'
}

.icon-brailleh:before {
    content: '\f438'
}

.icon-braillei:before {
    content: '\f439'
}

.icon-braillej:before {
    content: '\f43a'
}

.icon-braillek:before {
    content: '\f43b'
}

.icon-braillel:before {
    content: '\f43c'
}

.icon-braillem:before {
    content: '\f43d'
}

.icon-braillen:before {
    content: '\f43e'
}

.icon-brailleo:before {
    content: '\f43f'
}

.icon-braillep:before {
    content: '\f440'
}

.icon-brailleq:before {
    content: '\f441'
}

.icon-brailler:before {
    content: '\f442'
}

.icon-brailles:before {
    content: '\f443'
}

.icon-braillespace:before {
    content: '\f455'
}

.icon-braillet:before {
    content: '\f444'
}

.icon-brailleu:before {
    content: '\f445'
}

.icon-braillev:before {
    content: '\f446'
}

.icon-braillew:before {
    content: '\f447'
}

.icon-braillex:before {
    content: '\f448'
}

.icon-brailley:before {
    content: '\f449'
}

.icon-braillez:before {
    content: '\f44a'
}

.icon-brain:before {
    content: '\f3e3'
}

.icon-bread:before {
    content: '\f42f'
}

.icon-breakable:before {
    content: '\f41c'
}

.icon-briefcase:before {
    content: '\f25e'
}

.icon-briefcasethree:before {
    content: '\f25f'
}

.icon-briefcasetwo:before {
    content: '\f0a2'
}

.icon-brightness:before {
    content: '\f10a'
}

.icon-brightnessfull:before {
    content: '\f10b'
}

.icon-brightnesshalf:before {
    content: '\f10c'
}

.icon-broom:before {
    content: '\f40a'
}

.icon-browser:before {
    content: '\f159'
}

.icon-brush:before {
    content: '\f1b8'
}

.icon-bucket:before {
    content: '\f1b5'
}

.icon-bug:before {
    content: '\f0a7'
}

.icon-bullhorn:before {
    content: '\f287'
}

.icon-bus:before {
    content: '\f241'
}

.icon-businesscardalt:before {
    content: '\f137'
}

.icon-buttona:before {
    content: '\f2bf'
}

.icon-buttonb:before {
    content: '\f2c0'
}

.icon-buttonx:before {
    content: '\f2c1'
}

.icon-buttony:before {
    content: '\f2c2'
}

.icon-cactus-desert:before {
    content: '\f22c'
}

.icon-calculator:before {
    content: '\f258'
}

.icon-calculatoralt:before {
    content: '\f265'
}

.icon-calendar:before {
    content: '\f20f'
}

.icon-calendaralt-cronjobs:before {
    content: '\f0a1'
}

.icon-camera:before {
    content: '\f19b'
}

.icon-candle:before {
    content: '\f29a'
}

.icon-candy:before {
    content: '\f42d'
}

.icon-candycane:before {
    content: '\f37d'
}

.icon-cannon:before {
    content: '\f401'
}

.icon-canvas:before {
    content: '\f1c8'
}

.icon-canvasrulers:before {
    content: '\f205'
}

.icon-capacitator:before {
    content: '\f3e8'
}

.icon-capslock:before {
    content: '\21ea'
}

.icon-captainamerica:before {
    content: '\f341'
}

.icon-carrot:before {
    content: '\f3f2'
}

.icon-cashregister:before {
    content: '\f26e'
}

.icon-cassette:before {
    content: '\f377'
}

.icon-cd-dvd:before {
    content: '\f0cd'
}

.icon-certificate:before {
    content: '\f277'
}

.icon-certificatealt:before {
    content: '\f058'
}

.icon-certificatethree:before {
    content: '\f059'
}

.icon-cgi:before {
    content: '\f086'
}

.icon-cgicenter:before {
    content: '\f079'
}

.icon-chair:before {
    content: '\2441'
}

.icon-chat:before {
    content: '\f162'
}

.icon-check:before {
    content: '\f310'
}

.icon-checkboxalt:before {
    content: '\f311'
}

.icon-checkin:before {
    content: '\f223'
}

.icon-checkinalt:before {
    content: '\f227'
}

.icon-chef:before {
    content: '\f3ce'
}

.icon-cherry:before {
    content: '\f35d'
}

.icon-chevron-down:before {
    content: '\f48b'
}

.icon-chevron-left:before {
    content: '\f489'
}

.icon-chevron-right:before {
    content: '\f488'
}

.icon-chevron-up:before {
    content: '\f48a'
}

.icon-chevrons:before {
    content: '\f0b5'
}

.icon-chicken:before {
    content: '\f359'
}

.icon-chocolate:before {
    content: '\f367'
}

.icon-christiancross:before {
    content: '\f40f'
}

.icon-christmastree:before {
    content: '\f37b'
}

.icon-chrome:before {
    content: '\f14e'
}

.icon-cigarette:before {
    content: '\f229'
}

.icon-circle-arrow-down:before {
    content: '\f475'
}

.icon-circle-arrow-left:before {
    content: '\f472'
}

.icon-circle-arrow-right:before {
    content: '\f473'
}

.icon-circle-arrow-up:before {
    content: '\f474'
}

.icon-circleadd:before {
    content: '\f0d1'
}

.icon-circledelete:before {
    content: '\f0d2'
}

.icon-circledown:before {
    content: '\f3c7'
}

.icon-circleleft:before {
    content: '\f3c6'
}

.icon-circleright:before {
    content: '\f3c9'
}

.icon-circleselect:before {
    content: '\f0d3'
}

.icon-circleselection:before {
    content: '\f1b1'
}

.icon-circleup:before {
    content: '\f3c8'
}

.icon-clearformatting:before {
    content: '\f1e7'
}

.icon-clipboard-paste:before {
    content: '\f0cb'
}

.icon-clockalt-timealt:before {
    content: '\f22b'
}

.icon-closetab:before {
    content: '\f170'
}

.icon-closewindow:before {
    content: '\f16e'
}

.icon-cloud:before {
    content: '\f0b9'
}

.icon-clouddownload:before {
    content: '\f0bb'
}

.icon-cloudhosting:before {
    content: '\f007'
}

.icon-cloudsync:before {
    content: '\f0bc'
}

.icon-cloudupload:before {
    content: '\f0ba'
}

.icon-clubs:before {
    content: '\f2f6'
}

.icon-cmd:before {
    content: '\f33a'
}

.icon-cms:before {
    content: '\f036'
}

.icon-cmsmadesimple:before {
    content: '\f0b0'
}

.icon-codeigniter:before {
    content: '\f077'
}

.icon-coffee:before {
    content: '\f235'
}

.icon-coffeebean:before {
    content: '\f366'
}

.icon-cog:before {
    content: '\f00f'
}

.icon-colocation:before {
    content: '\f024'
}

.icon-colocationalt:before {
    content: '\f023'
}

.icon-colors:before {
    content: '\f1e6'
}

.icon-comment:before {
    content: '\f12c'
}

.icon-commentout:before {
    content: '\f080'
}

.icon-commentround:before {
    content: '\f155'
}

.icon-commentroundempty:before {
    content: '\f156'
}

.icon-commentroundtyping:before {
    content: '\f157'
}

.icon-commentroundtypingempty:before {
    content: '\f158'
}

.icon-commenttyping:before {
    content: '\f12d'
}

.icon-compass:before {
    content: '\263c'
}

.icon-concretefive:before {
    content: '\f0af'
}

.icon-contact-businesscard:before {
    content: '\f040'
}

.icon-controllernes:before {
    content: '\f2d2'
}

.icon-controllerps:before {
    content: '\f2d1'
}

.icon-controllersnes:before {
    content: '\f2d3'
}

.icon-controlpanel:before {
    content: '\f008'
}

.icon-controlpanelalt:before {
    content: '\f009'
}

.icon-cooling:before {
    content: '\f00a'
}

.icon-coppermine:before {
    content: '\f0a4'
}

.icon-copy:before {
    content: '\f0c9'
}

.icon-copyright:before {
    content: '\00a9'
}

.icon-coupon:before {
    content: '\f254'
}

.icon-cpanel:before {
    content: '\f072'
}

.icon-cplusplus:before {
    content: '\f0b1'
}

.icon-cpu-processor:before {
    content: '\f002'
}

.icon-cpualt-processoralt:before {
    content: '\f003'
}

.icon-crayon:before {
    content: '\f383'
}

.icon-createfile:before {
    content: '\f0c6'
}

.icon-createfolder:before {
    content: '\f0da'
}

.icon-creativecommons:before {
    content: '\f1fc'
}

.icon-creditcard:before {
    content: '\f279'
}

.icon-cricket:before {
    content: '\f418'
}

.icon-croisant:before {
    content: '\f29f'
}

.icon-crop:before {
    content: '\f1af'
}

.icon-crown:before {
    content: '\f28f'
}

.icon-csharp:before {
    content: '\f0b2'
}

.icon-cssthree:before {
    content: '\f06a'
}

.icon-cup-coffeealt:before {
    content: '\f24b'
}

.icon-cupcake:before {
    content: '\f35b'
}

.icon-curling:before {
    content: '\f3d7'
}

.icon-cursor:before {
    content: '\f0dc'
}

.icon-cut-scissors:before {
    content: '\f0ca'
}

.icon-dagger:before {
    content: '\2020'
}

.icon-danger:before {
    content: '\f415'
}

.icon-dart:before {
    content: '\f3d4'
}

.icon-darthvader:before {
    content: '\f34a'
}

.icon-database:before {
    content: '\f00b'
}

.icon-databaseadd:before {
    content: '\f00c'
}

.icon-databasedelete:before {
    content: '\f00d'
}

.icon-davidstar:before {
    content: '\f40e'
}

.icon-dcsource:before {
    content: '\f3e9'
}

.icon-dedicatedserver:before {
    content: '\f00e'
}

.icon-deletefile:before {
    content: '\f0c7'
}

.icon-deletefolder:before {
    content: '\f0db'
}

.icon-delicious:before {
    content: '\f152'
}

.icon-designcontest:before {
    content: '\f351'
}

.icon-desklamp:before {
    content: '\f412'
}

.icon-dialpad:before {
    content: '\f399'
}

.icon-diamond:before {
    content: '\2666'
}

.icon-diamonds:before {
    content: '\f2f7'
}

.icon-die-dice:before {
    content: '\f2d8'
}

.icon-diefive:before {
    content: '\f3fb'
}

.icon-diefour:before {
    content: '\f3fa'
}

.icon-dieone:before {
    content: '\f3f7'
}

.icon-diesix:before {
    content: '\f3fc'
}

.icon-diethree:before {
    content: '\f3f9'
}

.icon-dietwo:before {
    content: '\f3f8'
}

.icon-diode:before {
    content: '\f3e7'
}

.icon-director:before {
    content: '\f2ae'
}

.icon-diskspace:before {
    content: '\f096'
}

.icon-distributehorizontalcenters:before {
    content: '\f1dc'
}

.icon-distributeverticalcenters:before {
    content: '\f1db'
}

.icon-divide:before {
    content: '\00f7'
}

.icon-dna:before {
    content: '\f409'
}

.icon-dnszone:before {
    content: '\f07f'
}

.icon-document:before {
    content: '\f0c2'
}

.icon-doghouse:before {
    content: '\f38f'
}

.icon-dollar:before {
    content: '\24'
}

.icon-dollaralt:before {
    content: '\f259'
}

.icon-dolphinsoftware:before {
    content: '\f064'
}

.icon-domain:before {
    content: '\f01d'
}

.icon-domainaddon:before {
    content: '\f053'
}

.icon-domino:before {
    content: '\f3d5'
}

.icon-donut:before {
    content: '\f3ca'
}

.icon-downleft:before {
    content: '\f2ff'
}

.icon-download:before {
    content: '\f47b'
}

.icon-download-alt:before {
    content: '\f11a'
}

.icon-downright:before {
    content: '\f300'
}

.icon-draft:before {
    content: '\f172'
}

.icon-dreamweaver:before {
    content: '\f1d0'
}

.icon-dribbble:before {
    content: '\f14c'
}

.icon-dropmenu:before {
    content: '\f0a5'
}

.icon-drupal:before {
    content: '\f075'
}

.icon-drwho:before {
    content: '\f3c0'
}

.icon-edit:before {
    content: '\f47c'
}

.icon-editalt:before {
    content: '\f0f2'
}

.icon-egg:before {
    content: '\f407'
}

.icon-eightball:before {
    content: '\f36e'
}

.icon-eject:before {
    content: '\f199'
}

.icon-elipse:before {
    content: '\f1bc'
}

.icon-emailalt:before {
    content: '\f136'
}

.icon-emailexport:before {
    content: '\f176'
}

.icon-emailforward:before {
    content: '\f175'
}

.icon-emailforwarders:before {
    content: '\f049'
}

.icon-emailimport:before {
    content: '\f177'
}

.icon-emailrefresh:before {
    content: '\f174'
}

.icon-emailtrace:before {
    content: '\f091'
}

.icon-emergency:before {
    content: '\f246'
}

.icon-emptycart:before {
    content: '\f395'
}

.icon-enter:before {
    content: '\f323'
}

.icon-envelope:before {
    content: '\f028'
}

.icon-equalizer:before {
    content: '\f18e'
}

.icon-equalizeralt:before {
    content: '\f18f'
}

.icon-equals:before {
    content: '\f30c'
}

.icon-eraser:before {
    content: '\f1f1'
}

.icon-erroralt:before {
    content: '\f05a'
}

.icon-euro:before {
    content: '\20ac'
}

.icon-euroalt:before {
    content: '\f25a'
}

.icon-evernote:before {
    content: '\f17c'
}

.icon-exchange-currency:before {
    content: '\f26b'
}

.icon-exclamation-sign:before {
    content: '\f04a'
}

.icon-excludeshape:before {
    content: '\f200'
}

.icon-exit:before {
    content: '\f324'
}

.icon-explorerwindow:before {
    content: '\f0d9'
}

.icon-exportfile:before {
    content: '\f32f'
}

.icon-exposure:before {
    content: '\f1de'
}

.icon-extinguisher:before {
    content: '\f2b7'
}

.icon-eye-close:before {
    content: '\f481'
}

.icon-eye-open:before {
    content: '\f2b5'
}

.icon-eye-view:before {
    content: '\f280'
}

.icon-eyedropper:before {
    content: '\f1ad'
}

.icon-facebook:before {
    content: '\f140'
}

.icon-facebookalt:before {
    content: '\f14b'
}

.icon-facetime-video:before {
    content: '\f19c'
}

.icon-factory:before {
    content: '\f27a'
}

.icon-fantastico:before {
    content: '\f0ae'
}

.icon-faq:before {
    content: '\f099'
}

.icon-fast-backward:before {
    content: '\f47e'
}

.icon-fast-forward:before {
    content: '\f47f'
}

.icon-fastdown:before {
    content: '\f31d'
}

.icon-fastleft:before {
    content: '\f31a'
}

.icon-fastright:before {
    content: '\f31b'
}

.icon-fastup:before {
    content: '\f31c'
}

.icon-favoritefile:before {
    content: '\f381'
}

.icon-favoritefolder:before {
    content: '\f382'
}

.icon-featheralt-write:before {
    content: '\f1c5'
}

.icon-fedora:before {
    content: '\f3f1'
}

.icon-fence:before {
    content: '\f2af'
}

.icon-file:before {
    content: '\f0d6'
}

.icon-film:before {
    content: '\f19d'
}

.icon-filmstrip:before {
    content: '\f3ed'
}

.icon-filter:before {
    content: '\f05c'
}

.icon-finder:before {
    content: '\f398'
}

.icon-fire:before {
    content: '\f27f'
}

.icon-firefox:before {
    content: '\f420'
}

.icon-firewall:before {
    content: '\f021'
}

.icon-firewire:before {
    content: '\f0fc'
}

.icon-firstaid:before {
    content: '\f2ba'
}

.icon-fish:before {
    content: '\f35a'
}

.icon-fishbone:before {
    content: '\f42b'
}

.icon-flag:before {
    content: '\f487'
}

.icon-flagalt:before {
    content: '\f232'
}

.icon-flagtriangle:before {
    content: '\f20b'
}

.icon-flash:before {
    content: '\f1cf'
}

.icon-flashlight:before {
    content: '\f299'
}

.icon-flashplayer:before {
    content: '\f070'
}

.icon-flaskfull:before {
    content: '\f27e'
}

.icon-flickr:before {
    content: '\f146'
}

.icon-flower:before {
    content: '\f2a5'
}

.icon-flowernew:before {
    content: '\f3a8'
}

.icon-folder-close:before {
    content: '\f094'
}

.icon-folder-open:before {
    content: '\f483'
}

.icon-foldertree:before {
    content: '\f0f0'
}

.icon-font:before {
    content: '\f1ae'
}

.icon-foodtray:before {
    content: '\f3d0'
}

.icon-football-soccer:before {
    content: '\f2eb'
}

.icon-forbiddenalt:before {
    content: '\f314'
}

.icon-forest-tree:before {
    content: '\f217'
}

.icon-forestalt-treealt:before {
    content: '\f21c'
}

.icon-fork:before {
    content: '\22d4'
}

.icon-forklift:before {
    content: '\f29b'
}

.icon-form:before {
    content: '\f08c'
}

.icon-forrst:before {
    content: '\f14d'
}

.icon-fort:before {
    content: '\f400'
}

.icon-forward:before {
    content: '\f182'
}

.icon-fourohfour:before {
    content: '\f09d'
}

.icon-foursquare:before {
    content: '\f42a'
}

.icon-freeway:before {
    content: '\f24a'
}

.icon-fridge:before {
    content: '\f40d'
}

.icon-fries:before {
    content: '\f36a'
}

.icon-ftp:before {
    content: '\f029'
}

.icon-ftpaccounts:before {
    content: '\f07b'
}

.icon-ftpsession:before {
    content: '\f07c'
}

.icon-fullscreen:before {
    content: '\f485'
}

.icon-gameboy:before {
    content: '\f403'
}

.icon-gamecursor:before {
    content: '\f2d0'
}

.icon-gasstation:before {
    content: '\f216'
}

.icon-gearfour:before {
    content: '\f3a7'
}

.icon-ghost:before {
    content: '\f2da'
}

.icon-gift:before {
    content: '\f260'
}

.icon-github:before {
    content: '\f081'
}

.icon-glass:before {
    content: '\f236'
}

.icon-glasses:before {
    content: '\f295'
}

.icon-glassesalt:before {
    content: '\f39d'
}

.icon-globe:before {
    content: '\f01b'
}

.icon-globealt:before {
    content: '\f36c'
}

.icon-glue:before {
    content: '\f36d'
}

.icon-gmail:before {
    content: '\f150'
}

.icon-golf:before {
    content: '\f2f1'
}

.icon-googledrive:before {
    content: '\f163'
}

.icon-googleplus:before {
    content: '\f165'
}

.icon-googlewallet:before {
    content: '\f270'
}

.icon-gpsoff-gps:before {
    content: '\f21e'
}

.icon-gpson:before {
    content: '\f21f'
}

.icon-gpu-graphicscard:before {
    content: '\f108'
}

.icon-gradient:before {
    content: '\2207'
}

.icon-grails:before {
    content: '\f085'
}

.icon-greenlantern:before {
    content: '\f340'
}

.icon-greenlightbulb:before {
    content: '\f406'
}

.icon-grooveshark:before {
    content: '\f3a2'
}

.icon-groups-friends:before {
    content: '\f134'
}

.icon-guitar:before {
    content: '\f19a'
}

.icon-halflife:before {
    content: '\f3ba'
}

.icon-halo:before {
    content: '\f3bb'
}

.icon-hamburger:before {
    content: '\f2b3'
}

.icon-hammer:before {
    content: '\f291'
}

.icon-hand-down:before {
    content: '\f387'
}

.icon-hand-left:before {
    content: '\f389'
}

.icon-hand-right:before {
    content: '\f388'
}

.icon-hand-up:before {
    content: '\f0dd'
}

.icon-handcuffs:before {
    content: '\f393'
}

.icon-handdrag:before {
    content: '\f0de'
}

.icon-handtwofingers:before {
    content: '\f0df'
}

.icon-hanger:before {
    content: '\f2ab'
}

.icon-happy:before {
    content: '\f13c'
}

.icon-harrypotter:before {
    content: '\f38b'
}

.icon-hdd:before {
    content: '\f02a'
}

.icon-hdtv:before {
    content: '\f1a0'
}

.icon-headphones:before {
    content: '\f180'
}

.icon-headphonesalt:before {
    content: '\f1a3'
}

.icon-heart:before {
    content: '\f131'
}

.icon-heartempty-love:before {
    content: '\f132'
}

.icon-hearts:before {
    content: '\f2f4'
}

.icon-helicopter:before {
    content: '\f3e4'
}

.icon-hexagon-polygon:before {
    content: '\f1be'
}

.icon-hockey:before {
    content: '\f3d9'
}

.icon-home:before {
    content: '\21b8'
}

.icon-homealt:before {
    content: '\f02b'
}

.icon-hospital:before {
    content: '\f247'
}

.icon-hotdog:before {
    content: '\f3cc'
}

.icon-hotlinkprotection:before {
    content: '\f050'
}

.icon-hourglassalt:before {
    content: '\f122'
}

.icon-html:before {
    content: '\f068'
}

.icon-htmlfive:before {
    content: '\f069'
}

.icon-hydrant:before {
    content: '\f3ff'
}

.icon-icecream:before {
    content: '\f2a4'
}

.icon-icecreamalt:before {
    content: '\f289'
}

.icon-illustrator:before {
    content: '\f1ce'
}

.icon-imac:before {
    content: '\f0fb'
}

.icon-images-gallery:before {
    content: '\f09f'
}

.icon-importcontacts:before {
    content: '\f092'
}

.icon-importfile:before {
    content: '\f32e'
}

.icon-inbox:before {
    content: '\f17a'
}

.icon-inboxalt:before {
    content: '\f178'
}

.icon-incomingcall:before {
    content: '\f15d'
}

.icon-indent-left:before {
    content: '\f1f2'
}

.icon-indent-right:before {
    content: '\f1f3'
}

.icon-indexmanager:before {
    content: '\f09e'
}

.icon-infinity:before {
    content: '\221e'
}

.icon-info-sign:before {
    content: '\f315'
}

.icon-infographic:before {
    content: '\f336'
}

.icon-ink:before {
    content: '\f3f6'
}

.icon-inkpen:before {
    content: '\f1ac'
}

.icon-insertbarchart:before {
    content: '\f1e5'
}

.icon-insertpicture:before {
    content: '\f1e0'
}

.icon-insertpicturecenter:before {
    content: '\f1e3'
}

.icon-insertpictureleft:before {
    content: '\f1e1'
}

.icon-insertpictureright:before {
    content: '\f1e2'
}

.icon-insertpiechart:before {
    content: '\f1e4'
}

.icon-instagram:before {
    content: '\f14a'
}

.icon-install:before {
    content: '\f128'
}

.icon-intel:before {
    content: '\f01f'
}

.icon-intersection:before {
    content: '\2229'
}

.icon-intersectshape:before {
    content: '\f1ff'
}

.icon-invert:before {
    content: '\f1df'
}

.icon-invoice:before {
    content: '\f3e5'
}

.icon-ipcontrol:before {
    content: '\f08b'
}

.icon-iphone:before {
    content: '\f0e6'
}

.icon-ipod:before {
    content: '\f190'
}

.icon-ironman:before {
    content: '\f349'
}

.icon-islam:before {
    content: '\f410'
}

.icon-island:before {
    content: '\f392'
}

.icon-italic:before {
    content: '\f1f5'
}

.icon-jar:before {
    content: '\f2b6'
}

.icon-jason:before {
    content: '\f38c'
}

.icon-java:before {
    content: '\f083'
}

.icon-joomla:before {
    content: '\f073'
}

.icon-joystickarcade:before {
    content: '\f2d4'
}

.icon-joystickatari:before {
    content: '\f2d5'
}

.icon-jquery:before {
    content: '\f06b'
}

.icon-jqueryui:before {
    content: '\f06c'
}

.icon-kerning:before {
    content: '\f1e9'
}

.icon-key:before {
    content: '\f093'
}

.icon-keyboard:before {
    content: '\f119'
}

.icon-keyboardalt:before {
    content: '\f105'
}

.icon-keyboarddelete:before {
    content: '\f3a6'
}

.icon-kidney:before {
    content: '\f3e0'
}

.icon-king:before {
    content: '\f2fc'
}

.icon-knife:before {
    content: '\f214'
}

.icon-knight:before {
    content: '\f2fb'
}

.icon-knob:before {
    content: '\f376'
}

.icon-lab-flask:before {
    content: '\f27d'
}

.icon-lamp:before {
    content: '\f2b1'
}

.icon-lan:before {
    content: '\f0ee'
}

.icon-language:before {
    content: '\f042'
}

.icon-laptop:before {
    content: '\f0d8'
}

.icon-lasso:before {
    content: '\f396'
}

.icon-lastfm:before {
    content: '\f3a3'
}

.icon-laugh:before {
    content: '\f13f'
}

.icon-law:before {
    content: '\f263'
}

.icon-layers:before {
    content: '\f1ca'
}

.icon-layersalt:before {
    content: '\f1cb'
}

.icon-leaf:before {
    content: '\f039'
}

.icon-leechprotect:before {
    content: '\f07e'
}

.icon-legacyfilemanager:before {
    content: '\f095'
}

.icon-lego:before {
    content: '\f370'
}

.icon-lifeempty:before {
    content: '\f2e1'
}

.icon-lifefull:before {
    content: '\f2e3'
}

.icon-lifehacker:before {
    content: '\f380'
}

.icon-lifehalf:before {
    content: '\f2e2'
}

.icon-lifepreserver:before {
    content: '\f015'
}

.icon-lightbulb-idea:before {
    content: '\f338'
}

.icon-lighthouse:before {
    content: '\f3e6'
}

.icon-lightning:before {
    content: '\f231'
}

.icon-lightningalt:before {
    content: '\f2a8'
}

.icon-line:before {
    content: '\f1bf'
}

.icon-lineheight:before {
    content: '\f1c0'
}

.icon-link:before {
    content: '\f022'
}

.icon-linkalt:before {
    content: '\f333'
}

.icon-linkedin:before {
    content: '\f166'
}

.icon-linux:before {
    content: '\f01a'
}

.icon-list:before {
    content: '\f111'
}

.icon-list-alt:before {
    content: '\f480'
}

.icon-liver:before {
    content: '\f3e2'
}

.icon-loading-hourglass:before {
    content: '\f123'
}

.icon-loadingalt:before {
    content: '\f339'
}

.icon-lock:before {
    content: '\f0be'
}

.icon-lockalt-keyhole:before {
    content: '\f0eb'
}

.icon-lollypop:before {
    content: '\f3ee'
}

.icon-lungs:before {
    content: '\f3df'
}

.icon-macpro:before {
    content: '\f3a5'
}

.icon-macro-plant:before {
    content: '\f1c6'
}

.icon-magazine:before {
    content: '\f1ec'
}

.icon-magento:before {
    content: '\f06e'
}

.icon-magnet:before {
    content: '\f281'
}

.icon-mailbox:before {
    content: '\f044'
}

.icon-mailinglists:before {
    content: '\f090'
}

.icon-man-male:before {
    content: '\f2a1'
}

.icon-managedhosting:before {
    content: '\f038'
}

.icon-map:before {
    content: '\f209'
}

.icon-map-marker:before {
    content: '\f220'
}

.icon-marker:before {
    content: '\f204'
}

.icon-marvin:before {
    content: '\f3dd'
}

.icon-mastercard:before {
    content: '\f266'
}

.icon-maximize:before {
    content: '\f30f'
}

.icon-medal:before {
    content: '\f2e5'
}

.icon-medalbronze:before {
    content: '\f2e8'
}

.icon-medalgold:before {
    content: '\f2e6'
}

.icon-medalsilver:before {
    content: '\f2e7'
}

.icon-mediarepeat:before {
    content: '\f187'
}

.icon-men:before {
    content: '\f24c'
}

.icon-menu:before {
    content: '\f127'
}

.icon-merge:before {
    content: '\f334'
}

.icon-mergecells:before {
    content: '\f327'
}

.icon-mergeshapes:before {
    content: '\f201'
}

.icon-metro-subway:before {
    content: '\f24f'
}

.icon-metronome:before {
    content: '\f374'
}

.icon-mickeymouse:before {
    content: '\f37a'
}

.icon-microphone:before {
    content: '\f191'
}

.icon-microscope:before {
    content: '\f283'
}

.icon-microsd:before {
    content: '\f107'
}

.icon-microwave:before {
    content: '\f42e'
}

.icon-mimetype:before {
    content: '\f057'
}

.icon-minimize:before {
    content: '\f30e'
}

.icon-minus:before {
    content: '\2212'
}

.icon-minus-sign:before {
    content: '\f477'
}

.icon-missedcall:before {
    content: '\f15c'
}

.icon-mobile:before {
    content: '\f0e8'
}

.icon-moleskine:before {
    content: '\f1f0'
}

.icon-money-cash:before {
    content: '\f27b'
}

.icon-moneybag:before {
    content: '\f271'
}

.icon-monitor:before {
    content: '\f0d5'
}

.icon-monstersinc:before {
    content: '\f3bd'
}

.icon-moon-night:before {
    content: '\f207'
}

.icon-mouse:before {
    content: '\f0d4'
}

.icon-mousealt:before {
    content: '\f126'
}

.icon-move:before {
    content: '\f322'
}

.icon-movieclapper:before {
    content: '\f193'
}

.icon-moviereel:before {
    content: '\f17f'
}

.icon-muffin:before {
    content: '\f363'
}

.icon-mug:before {
    content: '\f24e'
}

.icon-mushroom:before {
    content: '\f35e'
}

.icon-music:before {
    content: '\f181'
}

.icon-musicalt:before {
    content: '\f18d'
}

.icon-mutealt:before {
    content: '\f0e5'
}

.icon-mxentry:before {
    content: '\f07a'
}

.icon-mybb:before {
    content: '\f065'
}

.icon-myspace:before {
    content: '\f153'
}

.icon-mysql-dolphin:before {
    content: '\f076'
}

.icon-nail:before {
    content: '\f428'
}

.icon-navigation:before {
    content: '\f23a'
}

.icon-network:before {
    content: '\f0a6'
}

.icon-networksignal:before {
    content: '\f3a9'
}

.icon-news:before {
    content: '\f256'
}

.icon-newtab:before {
    content: '\f16f'
}

.icon-newwindow:before {
    content: '\f16d'
}

.icon-next:before {
    content: '\f18a'
}

.icon-nexus:before {
    content: '\f0e7'
}

.icon-nintendods:before {
    content: '\f404'
}

.icon-nodejs:before {
    content: '\f084'
}

.icon-notes:before {
    content: '\f0d7'
}

.icon-notificationbottom:before {
    content: '\f144'
}

.icon-notificationtop:before {
    content: '\f145'
}

.icon-nut:before {
    content: '\f427'
}

.icon-off:before {
    content: '\f11d'
}

.icon-office-building:before {
    content: '\f245'
}

.icon-officechair:before {
    content: '\f26d'
}

.icon-ok:before {
    content: '\2713'
}

.icon-ok-circle:before {
    content: '\f471'
}

.icon-ok-sign:before {
    content: '\f479'
}

.icon-oneup:before {
    content: '\f3b7'
}

.icon-oneupalt:before {
    content: '\f3b6'
}

.icon-opencart:before {
    content: '\f060'
}

.icon-opennewwindow:before {
    content: '\f332'
}

.icon-orange:before {
    content: '\f29e'
}

.icon-outbox:before {
    content: '\f179'
}

.icon-outgoingcall:before {
    content: '\f15e'
}

.icon-oxwall:before {
    content: '\f06d'
}

.icon-pacman:before {
    content: '\f2db'
}

.icon-pageback:before {
    content: '\f31e'
}

.icon-pagebreak:before {
    content: '\f1cc'
}

.icon-pageforward:before {
    content: '\f31f'
}

.icon-pagesetup:before {
    content: '\f331'
}

.icon-paintbrush:before {
    content: '\f1e8'
}

.icon-paintroll:before {
    content: '\f1fa'
}

.icon-palette-painting:before {
    content: '\f1b9'
}

.icon-paperclip:before {
    content: '\f284'
}

.icon-paperclipalt:before {
    content: '\f285'
}

.icon-paperclipvertical:before {
    content: '\f286'
}

.icon-paperplane:before {
    content: '\f296'
}

.icon-parentheses:before {
    content: '\f3c4'
}

.icon-parkeddomain:before {
    content: '\f055'
}

.icon-password:before {
    content: '\f03e'
}

.icon-passwordalt:before {
    content: '\f03f'
}

.icon-pasta:before {
    content: '\f408'
}

.icon-patch:before {
    content: '\f2a3'
}

.icon-path:before {
    content: '\f169'
}

.icon-pause:before {
    content: '\f186'
}

.icon-paw-pet:before {
    content: '\f29d'
}

.icon-pawn:before {
    content: '\f2f8'
}

.icon-paypal:before {
    content: '\f267'
}

.icon-peace:before {
    content: '\f2a7'
}

.icon-pen:before {
    content: '\f1ee'
}

.icon-pencil:before {
    content: '\f1b7'
}

.icon-pepperoni:before {
    content: '\f364'
}

.icon-percent:before {
    content: '\25'
}

.icon-perl-camel:before {
    content: '\f0b6'
}

.icon-perlalt:before {
    content: '\f0b7'
}

.icon-phone-call:before {
    content: '\f14f'
}

.icon-phonealt:before {
    content: '\f15b'
}

.icon-phonebook:before {
    content: '\f149'
}

.icon-phonebookalt:before {
    content: '\f135'
}

.icon-phonemic:before {
    content: '\f391'
}

.icon-phoneold:before {
    content: '\f148'
}

.icon-photoshop:before {
    content: '\f1cd'
}

.icon-php:before {
    content: '\f09c'
}

.icon-phpbb:before {
    content: '\f063'
}

.icon-phppear:before {
    content: '\f09b'
}

.icon-piano:before {
    content: '\f19e'
}

.icon-picture:before {
    content: '\22b7'
}

.icon-pictureframe:before {
    content: '\f41e'
}

.icon-piggybank:before {
    content: '\f257'
}

.icon-pigpena:before {
    content: '\f456'
}

.icon-pigpenb:before {
    content: '\f457'
}

.icon-pigpenc:before {
    content: '\f458'
}

.icon-pigpend:before {
    content: '\f459'
}

.icon-pigpene:before {
    content: '\f45a'
}

.icon-pigpenf:before {
    content: '\f45b'
}

.icon-pigpeng:before {
    content: '\f45c'
}

.icon-pigpenh:before {
    content: '\f45d'
}

.icon-pigpeni:before {
    content: '\f45e'
}

.icon-pigpenj:before {
    content: '\f45f'
}

.icon-pigpenk:before {
    content: '\f460'
}

.icon-pigpenl:before {
    content: '\f461'
}

.icon-pigpenm:before {
    content: '\f462'
}

.icon-pigpenn:before {
    content: '\f463'
}

.icon-pigpeno:before {
    content: '\f464'
}

.icon-pigpenp:before {
    content: '\f465'
}

.icon-pigpenq:before {
    content: '\f466'
}

.icon-pigpenr:before {
    content: '\f467'
}

.icon-pigpens:before {
    content: '\f468'
}

.icon-pigpent:before {
    content: '\f469'
}

.icon-pigpenu:before {
    content: '\f46a'
}

.icon-pigpenv:before {
    content: '\f46b'
}

.icon-pigpenw:before {
    content: '\f46c'
}

.icon-pigpenx:before {
    content: '\f46d'
}

.icon-pigpeny:before {
    content: '\f46e'
}

.icon-pigpenz:before {
    content: '\f46f'
}

.icon-pilcrow:before {
    content: '\00b6'
}

.icon-pill-antivirusalt:before {
    content: '\f0aa'
}

.icon-pin:before {
    content: '\f20a'
}

.icon-pipe:before {
    content: '\01c0'
}

.icon-piwigo:before {
    content: '\f0ad'
}

.icon-pizza:before {
    content: '\f35c'
}

.icon-placeadd:before {
    content: '\f221'
}

.icon-placealt:before {
    content: '\f224'
}

.icon-placealtadd:before {
    content: '\f225'
}

.icon-placealtdelete:before {
    content: '\f226'
}

.icon-placedelete:before {
    content: '\f222'
}

.icon-placeios:before {
    content: '\f20c'
}

.icon-plane:before {
    content: '\f23e'
}

.icon-plaque:before {
    content: '\f2b8'
}

.icon-play:before {
    content: '\f184'
}

.icon-play-circle:before {
    content: '\f17e'
}

.icon-playstore:before {
    content: '\f255'
}

.icon-playvideo:before {
    content: '\f03d'
}

.icon-plug:before {
    content: '\f0ea'
}

.icon-pluginalt:before {
    content: '\f098'
}

.icon-plus:before {
    content: '\002b'
}

.icon-plus-sign:before {
    content: '\f476'
}

.icon-pocket:before {
    content: '\f16b'
}

.icon-podcast:before {
    content: '\f1a2'
}

.icon-podium-winner:before {
    content: '\f2d6'
}

.icon-pokemon:before {
    content: '\f354'
}

.icon-police:before {
    content: '\f2aa'
}

.icon-polygonlasso:before {
    content: '\f397'
}

.icon-post:before {
    content: '\f12e'
}

.icon-postalt:before {
    content: '\f130'
}

.icon-pound:before {
    content: '\f25b'
}

.icon-poundalt:before {
    content: '\f25c'
}

.icon-powerjack:before {
    content: '\f0fd'
}

.icon-powerplug:before {
    content: '\f0ed'
}

.icon-powerplugeu:before {
    content: '\f28b'
}

.icon-powerplugus:before {
    content: '\f28c'
}

.icon-presentation:before {
    content: '\f0c4'
}

.icon-prestashop:before {
    content: '\f061'
}

.icon-pretzel:before {
    content: '\f3cf'
}

.icon-preview:before {
    content: '\f330'
}

.icon-previous:before {
    content: '\f18b'
}

.icon-print:before {
    content: '\f125'
}

.icon-protecteddirectory:before {
    content: '\f04d'
}

.icon-pscircle:before {
    content: '\f2bb'
}

.icon-pscursor:before {
    content: '\f2c3'
}

.icon-psdown:before {
    content: '\f2c6'
}

.icon-psleft:before {
    content: '\f2c7'
}

.icon-pslone:before {
    content: '\f2cc'
}

.icon-psltwo:before {
    content: '\f2cd'
}

.icon-psright:before {
    content: '\f2c5'
}

.icon-psrone:before {
    content: '\f2ce'
}

.icon-psrtwo:before {
    content: '\f2cf'
}

.icon-pssquare:before {
    content: '\f2bc'
}

.icon-pstriangle:before {
    content: '\f2bd'
}

.icon-psup:before {
    content: '\f2c4'
}

.icon-psx:before {
    content: '\f2be'
}

.icon-pull:before {
    content: '\f089'
}

.icon-punisher:before {
    content: '\f343'
}

.icon-push:before {
    content: '\f088'
}

.icon-puzzle-plugin:before {
    content: '\f0a0'
}

.icon-python:before {
    content: '\f071'
}

.icon-qrcode:before {
    content: '\f275'
}

.icon-quake:before {
    content: '\f355'
}

.icon-queen:before {
    content: '\f2fd'
}

.icon-query:before {
    content: '\f08a'
}

.icon-question-sign:before {
    content: '\f0a3'
}

.icon-quote:before {
    content: '\f12f'
}

.icon-quotedown:before {
    content: '\f329'
}

.icon-quoteup:before {
    content: '\f328'
}

.icon-raceflag:before {
    content: '\f38e'
}

.icon-racquet:before {
    content: '\f2f2'
}

.icon-radio:before {
    content: '\f1a1'
}

.icon-radioactive:before {
    content: '\f282'
}

.icon-radiobutton:before {
    content: '\f312'
}

.icon-railroad:before {
    content: '\f248'
}

.icon-rain:before {
    content: '\f22f'
}

.icon-ram:before {
    content: '\f02c'
}

.icon-random:before {
    content: '\f188'
}

.icon-rar:before {
    content: '\f117'
}

.icon-raspberry:before {
    content: '\f368'
}

.icon-raspberrypi:before {
    content: '\f369'
}

.icon-rawaccesslogs:before {
    content: '\f0c1'
}

.icon-razor:before {
    content: '\f416'
}

.icon-reademail:before {
    content: '\f173'
}

.icon-record:before {
    content: '\f189'
}

.icon-rectangle:before {
    content: '\25ad'
}

.icon-recycle:before {
    content: '\f297'
}

.icon-reddit:before {
    content: '\f154'
}

.icon-redirect:before {
    content: '\f054'
}

.icon-refresh:before {
    content: '\f078'
}

.icon-reliability:before {
    content: '\f016'
}

.icon-remote:before {
    content: '\f298'
}

.icon-remove:before {
    content: '\00d7'
}

.icon-remove-circle:before {
    content: '\f470'
}

.icon-remove-sign:before {
    content: '\f478'
}

.icon-removefriend:before {
    content: '\f3db'
}

.icon-repeat:before {
    content: '\f32b'
}

.icon-repeatone:before {
    content: '\f196'
}

.icon-resellerhosting:before {
    content: '\f03a'
}

.icon-residentevil:before {
    content: '\f350'
}

.icon-resistor:before {
    content: '\f3eb'
}

.icon-resize:before {
    content: '\f1ed'
}

.icon-resize-full:before {
    content: '\f325'
}

.icon-resize-horizontal:before {
    content: '\f318'
}

.icon-resize-small:before {
    content: '\f326'
}

.icon-resize-vertical:before {
    content: '\f319'
}

.icon-restart:before {
    content: '\f11f'
}

.icon-restaurantmenu:before {
    content: '\f362'
}

.icon-restore:before {
    content: '\f30d'
}

.icon-restricted:before {
    content: '\f0ab'
}

.icon-retweet:before {
    content: '\f486'
}

.icon-rim:before {
    content: '\f36f'
}

.icon-ring:before {
    content: '\02da'
}

.icon-road:before {
    content: '\f249'
}

.icon-roadsign-roadsignright:before {
    content: '\f21b'
}

.icon-roadsignleft:before {
    content: '\f240'
}

.icon-robocop:before {
    content: '\f357'
}

.icon-rocket-launch:before {
    content: '\f29c'
}

.icon-rook:before {
    content: '\f2fa'
}

.icon-root:before {
    content: '\f33c'
}

.icon-rorschach:before {
    content: '\f358'
}

.icon-rotateclockwise:before {
    content: '\f202'
}

.icon-rotatecounterclockwise:before {
    content: '\f203'
}

.icon-roundrectangle:before {
    content: '\f1bd'
}

.icon-route:before {
    content: '\f402'
}

.icon-router:before {
    content: '\f0e9'
}

.icon-rss:before {
    content: '\f17b'
}

.icon-rubberstamp:before {
    content: '\f274'
}

.icon-ruby:before {
    content: '\f067'
}

.icon-ruler:before {
    content: '\f1ef'
}

.icon-sad:before {
    content: '\f13d'
}

.icon-safetypin:before {
    content: '\f417'
}

.icon-satellite:before {
    content: '\f38a'
}

.icon-satellitedish-remotemysql:before {
    content: '\f0c0'
}

.icon-save-floppy:before {
    content: '\f0c8'
}

.icon-scales:before {
    content: '\f3fd'
}

.icon-science-atom:before {
    content: '\f2b0'
}

.icon-scope-scan:before {
    content: '\f212'
}

.icon-scopealt:before {
    content: '\f237'
}

.icon-screenshot:before {
    content: '\f109'
}

.icon-screw:before {
    content: '\f426'
}

.icon-screwdriver:before {
    content: '\f292'
}

.icon-screwdriveralt:before {
    content: '\f293'
}

.icon-script:before {
    content: '\f08d'
}

.icon-sd:before {
    content: '\f106'
}

.icon-search:before {
    content: '\f0c5'
}

.icon-searchdocument:before {
    content: '\f419'
}

.icon-searchfolder:before {
    content: '\f41a'
}

.icon-security-shield:before {
    content: '\f02d'
}

.icon-securityalt-shieldalt:before {
    content: '\f02e'
}

.icon-selection-rectangleselection:before {
    content: '\f1b0'
}

.icon-selectionadd:before {
    content: '\f1b2'
}

.icon-selectionintersect:before {
    content: '\f1b4'
}

.icon-selectionremove:before {
    content: '\f1b3'
}

.icon-seo:before {
    content: '\f030'
}

.icon-server:before {
    content: '\f026'
}

.icon-servers:before {
    content: '\f027'
}

.icon-settingsandroid:before {
    content: '\f309'
}

.icon-settingsfour-gearsalt:before {
    content: '\f306'
}

.icon-settingsthree-gears:before {
    content: '\f307'
}

.icon-settingstwo-gearalt:before {
    content: '\f308'
}

.icon-shades-sunglasses:before {
    content: '\f294'
}

.icon-shapes:before {
    content: '\f1dd'
}

.icon-share:before {
    content: '\f47d'
}

.icon-share-alt:before {
    content: '\f16c'
}

.icon-sharealt:before {
    content: '\f147'
}

.icon-sharedfile:before {
    content: '\f0ef'
}

.icon-sharedhosting:before {
    content: '\f037'
}

.icon-sharethree:before {
    content: '\f414'
}

.icon-sheriff:before {
    content: '\f2a9'
}

.icon-shipping:before {
    content: '\f23f'
}

.icon-shopping:before {
    content: '\f010'
}

.icon-shopping-cart:before {
    content: '\f035'
}

.icon-shoppingbag:before {
    content: '\f273'
}

.icon-shortcut:before {
    content: '\f043'
}

.icon-shovel:before {
    content: '\f290'
}

.icon-shredder:before {
    content: '\f27c'
}

.icon-shutdown:before {
    content: '\f11e'
}

.icon-sidebar:before {
    content: '\f124'
}

.icon-signal:before {
    content: '\f100'
}

.icon-sim:before {
    content: '\f0e1'
}

.icon-simalt:before {
    content: '\f121'
}

.icon-skrill:before {
    content: '\f268'
}

.icon-skull:before {
    content: '\f38d'
}

.icon-skype:before {
    content: '\f141'
}

.icon-skypeaway:before {
    content: '\f39f'
}

.icon-skypebusy:before {
    content: '\f3a0'
}

.icon-skypeoffline:before {
    content: '\f3a1'
}

.icon-skypeonline:before {
    content: '\f39e'
}

.icon-smaller:before {
    content: '\f30b'
}

.icon-smf:before {
    content: '\f062'
}

.icon-smile:before {
    content: '\263a'
}

.icon-snow:before {
    content: '\f22e'
}

.icon-snowman:before {
    content: '\f37c'
}

.icon-socialnetwork:before {
    content: '\f03b'
}

.icon-software:before {
    content: '\f09a'
}

.icon-sortbynameascending-atoz:before {
    content: '\f1c2'
}

.icon-sortbynamedescending-ztoa:before {
    content: '\f1c1'
}

.icon-sortbysizeascending:before {
    content: '\f1c3'
}

.icon-sortbysizedescending:before {
    content: '\f1c4'
}

.icon-soundwave:before {
    content: '\f194'
}

.icon-soup:before {
    content: '\f3d1'
}

.icon-spaceinvaders:before {
    content: '\f352'
}

.icon-spades:before {
    content: '\f2f5'
}

.icon-spam:before {
    content: '\f047'
}

.icon-spamalt:before {
    content: '\f048'
}

.icon-spawn:before {
    content: '\f344'
}

.icon-speaker:before {
    content: '\f372'
}

.icon-speed:before {
    content: '\f40b'
}

.icon-spider:before {
    content: '\f346'
}

.icon-spiderman:before {
    content: '\f347'
}

.icon-split:before {
    content: '\f335'
}

.icon-spoon:before {
    content: '\f213'
}

.icon-spray:before {
    content: '\f1c7'
}

.icon-spreadsheet:before {
    content: '\f0c3'
}

.icon-squareapp:before {
    content: '\f26f'
}

.icon-squarebrackets:before {
    content: '\f0b3'
}

.icon-ssh:before {
    content: '\f04e'
}

.icon-sslmanager:before {
    content: '\f04f'
}

.icon-stadium:before {
    content: '\f3d6'
}

.icon-stamp:before {
    content: '\f242'
}

.icon-stampalt:before {
    content: '\f243'
}

.icon-star:before {
    content: '\f13a'
}

.icon-star-empty:before {
    content: '\f13b'
}

.icon-starempty:before {
    content: '\f2de'
}

.icon-starfull:before {
    content: '\f2e0'
}

.icon-starhalf:before {
    content: '\f2df'
}

.icon-steak:before {
    content: '\f360'
}

.icon-steam:before {
    content: '\f2dd'
}

.icon-step-backward:before {
    content: '\f198'
}

.icon-step-forward:before {
    content: '\f197'
}

.icon-sticker:before {
    content: '\f3f5'
}

.icon-stiletto:before {
    content: '\f429'
}

.icon-stockdown:before {
    content: '\f252'
}

.icon-stocks:before {
    content: '\f250'
}

.icon-stockup:before {
    content: '\f251'
}

.icon-stomach:before {
    content: '\f3e1'
}

.icon-stop:before {
    content: '\f185'
}

.icon-stopwatch:before {
    content: '\f219'
}

.icon-storage-box:before {
    content: '\f011'
}

.icon-storagealt-drawer:before {
    content: '\f012'
}

.icon-store:before {
    content: '\f272'
}

.icon-storm:before {
    content: '\f230'
}

.icon-stove:before {
    content: '\f371'
}

.icon-strawberry:before {
    content: '\f3f3'
}

.icon-strikethrough:before {
    content: '\f1f7'
}

.icon-student-school:before {
    content: '\f288'
}

.icon-stumbleupon:before {
    content: '\f40c'
}

.icon-subdomain:before {
    content: '\f052'
}

.icon-submarine:before {
    content: '\f373'
}

.icon-subscript:before {
    content: '\f1ea'
}

.icon-subtractshape:before {
    content: '\f1fe'
}

.icon-sum:before {
    content: '\f33b'
}

.icon-sun-day:before {
    content: '\f206'
}

.icon-sunnysideup:before {
    content: '\f365'
}

.icon-superman:before {
    content: '\f33f'
}

.icon-superscript:before {
    content: '\f1eb'
}

.icon-support:before {
    content: '\f013'
}

.icon-supportalt:before {
    content: '\f014'
}

.icon-switch:before {
    content: '\f28a'
}

.icon-switchoff:before {
    content: '\f32d'
}

.icon-switchoffalt:before {
    content: '\f28e'
}

.icon-switchon:before {
    content: '\f32c'
}

.icon-switchonalt:before {
    content: '\f28d'
}

.icon-sword:before {
    content: '\f2ed'
}

.icon-sync:before {
    content: '\f0bd'
}

.icon-syncalt:before {
    content: '\f11c'
}

.icon-synckeeplocal:before {
    content: '\f33e'
}

.icon-synckeepserver:before {
    content: '\f33d'
}

.icon-syringe-antivirus:before {
    content: '\f0a9'
}

.icon-tablet:before {
    content: '\f118'
}

.icon-tabletennis-pingpong:before {
    content: '\f2f0'
}

.icon-taco:before {
    content: '\f3cd'
}

.icon-tag:before {
    content: '\f032'
}

.icon-tagalt-pricealt:before {
    content: '\f264'
}

.icon-tags:before {
    content: '\f482'
}

.icon-tagvertical:before {
    content: '\f15f'
}

.icon-tank:before {
    content: '\f423'
}

.icon-target:before {
    content: '\f2a6'
}

.icon-taskmanager-logprograms:before {
    content: '\f04b'
}

.icon-tasks:before {
    content: '\f0e0'
}

.icon-taxi:before {
    content: '\f3a4'
}

.icon-tea:before {
    content: '\f3cb'
}

.icon-teapot:before {
    content: '\f42c'
}

.icon-telescope:before {
    content: '\f3ef'
}

.icon-temperature-thermometer:before {
    content: '\f20d'
}

.icon-temperaturealt-thermometeralt:before {
    content: '\f20e'
}

.icon-tennis:before {
    content: '\f2ea'
}

.icon-tent-camping:before {
    content: '\f215'
}

.icon-terminal:before {
    content: '\f114'
}

.icon-tethering:before {
    content: '\f0f1'
}

.icon-tetrisone:before {
    content: '\f34b'
}

.icon-tetristhree:before {
    content: '\f34d'
}

.icon-tetristwo:before {
    content: '\f34c'
}

.icon-text-height:before {
    content: '\f1f8'
}

.icon-text-width:before {
    content: '\f1f9'
}

.icon-th:before {
    content: '\f110'
}

.icon-th-large:before {
    content: '\f112'
}

.icon-th-list:before {
    content: '\f113'
}

.icon-theather:before {
    content: '\f39c'
}

.icon-theme-style:before {
    content: '\f041'
}

.icon-thissideup:before {
    content: '\f41d'
}

.icon-threecolumns:before {
    content: '\f1ab'
}

.icon-thumbs-down:before {
    content: '\f139'
}

.icon-thumbs-up:before {
    content: '\f138'
}

.icon-ticket:before {
    content: '\f3dc'
}

.icon-tictactoe:before {
    content: '\f39a'
}

.icon-tie-business:before {
    content: '\2040'
}

.icon-time:before {
    content: '\f210'
}

.icon-timeline:before {
    content: '\f253'
}

.icon-tint:before {
    content: '\f208'
}

.icon-toast:before {
    content: '\f2ad'
}

.icon-toiletpaper:before {
    content: '\f384'
}

.icon-tooth:before {
    content: '\f3de'
}

.icon-toothbrush:before {
    content: '\f385'
}

.icon-tophat:before {
    content: '\f3f0'
}

.icon-torigate:before {
    content: '\f411'
}

.icon-touchpad:before {
    content: '\f115'
}

.icon-trafficlight:before {
    content: '\f22a'
}

.icon-transform:before {
    content: '\f1a6'
}

.icon-trash:before {
    content: '\f0ce'
}

.icon-trashempty:before {
    content: '\f0cf'
}

.icon-trashfull:before {
    content: '\f0d0'
}

.icon-travel:before {
    content: '\f422'
}

.icon-treediagram:before {
    content: '\f0ec'
}

.icon-treeornament:before {
    content: '\f37e'
}

.icon-triangle:before {
    content: '\25b3'
}

.icon-tron:before {
    content: '\f34f'
}

.icon-trophy:before {
    content: '\f2d7'
}

.icon-truck:before {
    content: '\f211'
}

.icon-trumpet:before {
    content: '\f375'
}

.icon-tumblr:before {
    content: '\f164'
}

.icon-tv:before {
    content: '\f1a4'
}

.icon-twitter:before {
    content: '\f16a'
}

.icon-twocolumnsleft:before {
    content: '\f1a9'
}

.icon-twocolumnsleftalt:before {
    content: '\f1aa'
}

.icon-twocolumnsright:before {
    content: '\f1a7'
}

.icon-twocolumnsrightalt:before {
    content: '\f1a8'
}

.icon-ubuntu:before {
    content: '\f120'
}

.icon-umbrella:before {
    content: '\f218'
}

.icon-underline:before {
    content: '\f1f6'
}

.icon-undo:before {
    content: '\f32a'
}

.icon-unlock:before {
    content: '\f0bf'
}

.icon-upleft:before {
    content: '\f302'
}

.icon-upload:before {
    content: '\f47a'
}

.icon-uploadalt:before {
    content: '\f11b'
}

.icon-upright:before {
    content: '\f303'
}

.icon-uptime:before {
    content: '\f017'
}

.icon-usb:before {
    content: '\f10d'
}

.icon-usbalt:before {
    content: '\f10e'
}

.icon-usbplug:before {
    content: '\f10f'
}

.icon-user:before {
    content: '\f133'
}

.icon-userfilter:before {
    content: '\f05d'
}

.icon-usfootball:before {
    content: '\f2ec'
}

.icon-value-coins:before {
    content: '\f018'
}

.icon-vector:before {
    content: '\f1b6'
}

.icon-vendetta:before {
    content: '\f3c5'
}

.icon-video:before {
    content: '\f17d'
}

.icon-viking:before {
    content: '\f379'
}

.icon-vimeo:before {
    content: '\f168'
}

.icon-vinyl:before {
    content: '\f0cc'
}

.icon-violin:before {
    content: '\f1a5'
}

.icon-virus:before {
    content: '\f0a8'
}

.icon-visa:before {
    content: '\f3c2'
}

.icon-visitor:before {
    content: '\f097'
}

.icon-vlc-cone:before {
    content: '\f192'
}

.icon-voice:before {
    content: '\f18c'
}

.icon-volume-down:before {
    content: '\f0e3'
}

.icon-volume-off:before {
    content: '\f0e4'
}

.icon-volume-up:before {
    content: '\f0e2'
}

.icon-vps:before {
    content: '\f025'
}

.icon-wacom:before {
    content: '\f1bb'
}

.icon-walle:before {
    content: '\f3bc'
}

.icon-wallet:before {
    content: '\e000'
}

.icon-warcraft:before {
    content: '\f3bf'
}

.icon-warmedal:before {
    content: '\f2e4'
}

.icon-warning-sign:before {
    content: '\f316'
}

.icon-washer:before {
    content: '\f39b'
}

.icon-watch:before {
    content: '\f378'
}

.icon-watertap-plumbing:before {
    content: '\f22d'
}

.icon-wave-sea:before {
    content: '\f23c'
}

.icon-wavealt-seaalt:before {
    content: '\f23b'
}

.icon-webcam:before {
    content: '\f0fe'
}

.icon-webcamalt:before {
    content: '\f129'
}

.icon-webhostinghub:before {
    content: '\f031'
}

.icon-webmail:before {
    content: '\f045'
}

.icon-webpage:before {
    content: '\f033'
}

.icon-webplatform:before {
    content: '\f3c3'
}

.icon-websitealt:before {
    content: '\f01c'
}

.icon-websitebuilder:before {
    content: '\f034'
}

.icon-weight:before {
    content: '\f430'
}

.icon-westernunion:before {
    content: '\f26a'
}

.icon-wheel:before {
    content: '\f228'
}

.icon-wheelchair:before {
    content: '\f3fe'
}

.icon-whistle:before {
    content: '\f3d8'
}

.icon-whmcs:before {
    content: '\f066'
}

.icon-wifi:before {
    content: '\f0ff'
}

.icon-wind:before {
    content: '\f41b'
}

.icon-windleft:before {
    content: '\f424'
}

.icon-windows:before {
    content: '\f019'
}

.icon-windright:before {
    content: '\f425'
}

.icon-wine:before {
    content: '\f238'
}

.icon-wizard:before {
    content: '\f03c'
}

.icon-wizardalt:before {
    content: '\f1fb'
}

.icon-wizardhat:before {
    content: '\f337'
}

.icon-woman-female:before {
    content: '\f2a2'
}

.icon-women:before {
    content: '\f24d'
}

.icon-wordpress:before {
    content: '\f074'
}

.icon-wrench:before {
    content: '\f05b'
}

.icon-wrenchalt:before {
    content: '\f2b2'
}

.icon-xbox:before {
    content: '\f353'
}

.icon-xmen:before {
    content: '\f345'
}

.icon-yahoo:before {
    content: '\f151'
}

.icon-yen:before {
    content: '\00a5'
}

.icon-yenalt:before {
    content: '\f25d'
}

.icon-yinyang:before {
    content: '\262f'
}

.icon-youtube:before {
    content: '\f142'
}

.icon-zelda:before {
    content: '\f3b8'
}

.icon-zikula:before {
    content: '\f0ac'
}

.icon-zip:before {
    content: '\f116'
}

.icon-zodiac-aquarius:before {
    content: '\f3b4'
}

.icon-zodiac-aries:before {
    content: '\f3aa'
}

.icon-zodiac-cancer:before {
    content: '\f3ad'
}

.icon-zodiac-capricorn:before {
    content: '\f3b3'
}

.icon-zodiac-gemini:before {
    content: '\f3ac'
}

.icon-zodiac-leo:before {
    content: '\f3ae'
}

.icon-zodiac-libra:before {
    content: '\f3b0'
}

.icon-zodiac-pisces:before {
    content: '\f3b5'
}

.icon-zodiac-sagitarius:before {
    content: '\f3b2'
}

.icon-zodiac-scorpio:before {
    content: '\f3b1'
}

.icon-zodiac-taurus:before {
    content: '\f3ab'
}

.icon-zodiac-virgo:before {
    content: '\f3af'
}

.icon-zoom-in:before {
    content: '\f320'
}

.icon-zoom-out:before {
    content: '\f321'
}

.icon-vk:before {
    content: '\f34e'
}

.icon-bitcoin:before {
    content: '\f584'
}

.icon-rouble:before {
    content: '\f4ca'
}

.icon-phpnuke:before {
    content: '\f48c'
}

.icon-modx:before {
    content: '\f48d'
}

.icon-eoneohseven:before {
    content: '\f48e'
}

.icon-subrion:before {
    content: '\f48f'
}

.icon-typothree:before {
    content: '\f490'
}

.icon-tikiwiki:before {
    content: '\f491'
}

.icon-pligg:before {
    content: '\f492'
}

.icon-pyrocms:before {
    content: '\f493'
}

.icon-mambo:before {
    content: '\f494'
}

.icon-contao:before {
    content: '\f495'
}

.icon-crackedegg:before {
    content: '\f496'
}

.icon-coffeecupalt:before {
    content: '\f497'
}

.icon-reademailalt:before {
    content: '\f498'
}

.icon-train:before {
    content: '\f499'
}

.icon-shoebox:before {
    content: '\f49a'
}

.icon-bathtub:before {
    content: '\f49b'
}

.icon-ninegag:before {
    content: '\f49c'
}

.icon-pebble:before {
    content: '\f49d'
}

.icon-musicthree:before {
    content: '\f49e'
}

.icon-stairsup:before {
    content: '\f49f'
}

.icon-stairsdown:before {
    content: '\f4a0'
}

.icon-bookalt:before {
    content: '\f4a1'
}

.icon-programclose:before {
    content: '\f4a2'
}

.icon-programok:before {
    content: '\f4a3'
}

.icon-splitalt:before {
    content: '\f4a4'
}

.icon-solarsystem:before {
    content: '\f4a5'
}

.icon-honeycomb:before {
    content: '\f4a6'
}

.icon-tools:before {
    content: '\f4a7'
}

.icon-xoops:before {
    content: '\f4a8'
}

.icon-pixie:before {
    content: '\f4a9'
}

.icon-dotclear:before {
    content: '\f4aa'
}

.icon-impresscms:before {
    content: '\f4ab'
}

.icon-saurus:before {
    content: '\f4ac'
}

.icon-impresspages:before {
    content: '\f4ad'
}

.icon-monstra:before {
    content: '\f4ae'
}

.icon-snews:before {
    content: '\f4af'
}

.icon-jcore:before {
    content: '\f4b0'
}

.icon-silverstripe:before {
    content: '\f4b1'
}

.icon-btwoevolution:before {
    content: '\f4b2'
}

.icon-nucleus:before {
    content: '\f4b3'
}

.icon-symphony:before {
    content: '\f4b5'
}

.icon-vanillacms:before {
    content: '\f4b6'
}

.icon-bbpress:before {
    content: '\f4b7'
}

.icon-phpbbalt:before {
    content: '\f4b8'
}

.icon-chyrp:before {
    content: '\f4b9'
}

.icon-pivotx:before {
    content: '\f4ba'
}

.icon-pagecookery:before {
    content: '\f4bb'
}

.icon-moviereelalt:before {
    content: '\f4bc'
}

.icon-cassettealt:before {
    content: '\f4bd'
}

.icon-photobucket:before {
    content: '\f4be'
}

.icon-technorati:before {
    content: '\f4bf'
}

.icon-theverge:before {
    content: '\f4c0'
}

.icon-stacks:before {
    content: '\f4c1'
}

.icon-dotlist:before {
    content: '\f4c2'
}

.icon-numberlist:before {
    content: '\f4c3'
}

.icon-indentleft:before {
    content: '\f4c4'
}

.icon-indentright:before {
    content: '\f4c5'
}

.icon-fblike:before {
    content: '\f4c6'
}

.icon-fbdislike:before {
    content: '\f4c7'
}

.icon-sale:before {
    content: '\f4c8'
}

.icon-sharetronix:before {
    content: '\f4c9'
}

.icon-markerdown:before {
    content: '\f4cb'
}

.icon-markerup:before {
    content: '\f4cc'
}

.icon-markerleft:before {
    content: '\f4cd'
}

.icon-markerright:before {
    content: '\f4ce'
}

.icon-bookmarkalt:before {
    content: '\f4cf'
}

.icon-calendarthree:before {
    content: '\f4d0'
}

.icon-wineglass:before {
    content: '\f4d1'
}

.icon-slidersoff:before {
    content: '\f4d2'
}

.icon-slidersmiddle:before {
    content: '\f4d3'
}

.icon-slidersfull:before {
    content: '\f4d4'
}

.icon-slidersdesc:before {
    content: '\f4d5'
}

.icon-slidersasc:before {
    content: '\f4d6'
}

.icon-slideronefull:before {
    content: '\f4d7'
}

.icon-slidertwofull:before {
    content: '\f4d8'
}

.icon-sliderthreefull:before {
    content: '\f4d9'
}

.icon-noborders:before {
    content: '\f4da'
}

.icon-bottomborder:before {
    content: '\f4db'
}

.icon-topborder:before {
    content: '\f4dc'
}

.icon-leftborder:before {
    content: '\f4dd'
}

.icon-rightborder:before {
    content: '\f4de'
}

.icon-horizontalborder:before {
    content: '\f4df'
}

.icon-verticalborder:before {
    content: '\f4e0'
}

.icon-outerborders:before {
    content: '\f4e1'
}

.icon-innerborders:before {
    content: '\f4e2'
}

.icon-fullborders:before {
    content: '\f4e3'
}

.icon-networksignalalt:before {
    content: '\f4e4'
}

.icon-resizeverticalalt:before {
    content: '\f4e5'
}

.icon-resizehorizontalalt:before {
    content: '\f4e6'
}

.icon-moneyalt:before {
    content: '\f4e7'
}

.icon-fontcase:before {
    content: '\f4e8'
}

.icon-playstation:before {
    content: '\f4e9'
}

.icon-cube:before {
    content: '\f4ea'
}

.icon-sphere:before {
    content: '\f4eb'
}

.icon-ceilinglight:before {
    content: '\f4ec'
}

.icon-chandelier:before {
    content: '\f4ed'
}

.icon-details:before {
    content: '\f4ee'
}

.icon-detailsalt:before {
    content: '\f4ef'
}

.icon-bullet:before {
    content: '\f4f0'
}

.icon-gun:before {
    content: '\f4f1'
}

.icon-processorthree:before {
    content: '\f4f2'
}

.icon-world:before {
    content: '\f4f3'
}

.icon-statistics:before {
    content: '\f4f4'
}

.icon-shoppingcartalt:before {
    content: '\f4f5'
}

.icon-microphonealt:before {
    content: '\f4f6'
}

.icon-routeralt:before {
    content: '\f4f7'
}

.icon-shell:before {
    content: '\f4f8'
}

.icon-squareplay:before {
    content: '\f4f9'
}

.icon-squarestop:before {
    content: '\f4fa'
}

.icon-squarepause:before {
    content: '\f4fb'
}

.icon-squarerecord:before {
    content: '\f4fc'
}

.icon-squareforward:before {
    content: '\f4fd'
}

.icon-squareback:before {
    content: '\f4fe'
}

.icon-squarenext:before {
    content: '\f4ff'
}

.icon-squareprevious:before {
    content: '\f500'
}

.icon-mega:before {
    content: '\f501'
}

.icon-charliechaplin:before {
    content: '\f502'
}

.icon-popcorn:before {
    content: '\f503'
}

.icon-fatarrowright:before {
    content: '\f504'
}

.icon-fatarrowleft:before {
    content: '\f505'
}

.icon-fatarrowdown:before {
    content: '\f506'
}

.icon-fatarrowup:before {
    content: '\f507'
}

.icon-shirtbutton:before {
    content: '\f508'
}

.icon-shirtbuttonalt:before {
    content: '\f509'
}

.icon-cuckooclock:before {
    content: '\f50a'
}

.icon-lens:before {
    content: '\f50b'
}

.icon-voltage:before {
    content: '\f50c'
}

.icon-planealt:before {
    content: '\f50d'
}

.icon-busalt:before {
    content: '\f50e'
}

.icon-lipstick:before {
    content: '\f50f'
}

.icon-plantalt:before {
    content: '\f510'
}

.icon-paperboat:before {
    content: '\f511'
}

.icon-texture:before {
    content: '\f512'
}

.icon-dominoone:before {
    content: '\f513'
}

.icon-dominotwo:before {
    content: '\f514'
}

.icon-dominothree:before {
    content: '\f515'
}

.icon-dominofour:before {
    content: '\f516'
}

.icon-dominofive:before {
    content: '\f517'
}

.icon-dominosix:before {
    content: '\f518'
}

.icon-dominoseven:before {
    content: '\f519'
}

.icon-dominoeight:before {
    content: '\f51a'
}

.icon-dominonine:before {
    content: '\f51b'
}

.icon-connected:before {
    content: '\f51c'
}

.icon-connectedpc:before {
    content: '\f51d'
}

.icon-musicsheet:before {
    content: '\f51e'
}

.icon-rdio:before {
    content: '\f51f'
}

.icon-spotify:before {
    content: '\f520'
}

.icon-deviantart:before {
    content: '\f521'
}

.icon-yelp:before {
    content: '\f522'
}

.icon-behance:before {
    content: '\f523'
}

.icon-nfc:before {
    content: '\f524'
}

.icon-earbudsalt:before {
    content: '\f525'
}

.icon-earbuds:before {
    content: '\f526'
}

.icon-amazon:before {
    content: '\f527'
}

.icon-openid:before {
    content: '\f528'
}

.icon-digg:before {
    content: '\f529'
}

.icon-retweet:before {
    content: '\f52a'
}

.icon-moonnew:before {
    content: '\f52b'
}

.icon-moonwaxingcrescent:before {
    content: '\f52c'
}

.icon-moonfirstquarter:before {
    content: '\f52d'
}

.icon-moonwaxinggibbous:before {
    content: '\f52e'
}

.icon-moonfull:before {
    content: '\f52f'
}

.icon-moonwaninggibbous:before {
    content: '\f530'
}

.icon-moonthirdquarter:before {
    content: '\f531'
}

.icon-moonwaningcrescent:before {
    content: '\f532'
}

.icon-planet:before {
    content: '\f533'
}

.icon-sodacup:before {
    content: '\f534'
}

.icon-cocktail:before {
    content: '\f535'
}

.icon-church:before {
    content: '\f536'
}

.icon-mosque:before {
    content: '\f537'
}

.icon-comedy:before {
    content: '\f538'
}

.icon-tragedy:before {
    content: '\f539'
}

.icon-bacon:before {
    content: '\f53a'
}

.icon-trailor:before {
    content: '\f53b'
}

.icon-tshirt:before {
    content: '\f53c'
}

.icon-design:before {
    content: '\f53d'
}

.icon-spiderweb:before {
    content: '\f53e'
}

.icon-fireplace:before {
    content: '\f53f'
}

.icon-tallglass:before {
    content: '\f540'
}

.icon-grapes:before {
    content: '\f541'
}

.icon-biohazard:before {
    content: '\f542'
}

.icon-directions:before {
    content: '\f543'
}

.icon-equalizerthree:before {
    content: '\f544'
}

.icon-mountains:before {
    content: '\f545'
}

.icon-bing:before {
    content: '\f546'
}

.icon-windowseight:before {
    content: '\f547'
}

.icon-microsoftoffice:before {
    content: '\f548'
}

.icon-salealt:before {
    content: '\f549'
}

.icon-purse:before {
    content: '\f54a'
}

.icon-chickenalt:before {
    content: '\f54b'
}

.icon-podium:before {
    content: '\f54c'
}

.icon-findfriends:before {
    content: '\f54d'
}

.icon-microphonethree:before {
    content: '\f54e'
}

.icon-workshirt:before {
    content: '\f54f'
}

.icon-donotdisturb:before {
    content: '\f550'
}

.icon-addtags:before {
    content: '\f551'
}

.icon-removetags:before {
    content: '\f556'
}

.icon-carbattery:before {
    content: '\f553'
}

.icon-debug:before {
    content: '\f554'
}

.icon-trojan:before {
    content: '\f555'
}

.icon-molecule:before {
    content: '\f556'
}

.icon-safetygoggles:before {
    content: '\f557'
}

.icon-leather:before {
    content: '\f558'
}

.icon-teddybear:before {
    content: '\f559'
}

.icon-stroller:before {
    content: '\f55a'
}

.icon-circleplay:before {
    content: '\f55b'
}

.icon-circlestop:before {
    content: '\f55c'
}

.icon-circlepause:before {
    content: '\f55d'
}

.icon-circlerecord:before {
    content: '\f55e'
}

.icon-circleforward:before {
    content: '\f55f'
}

.icon-circlebackward:before {
    content: '\f560'
}

.icon-circlenext:before {
    content: '\f561'
}

.icon-circleprevious:before {
    content: '\f562'
}

.icon-circleplayempty:before {
    content: '\f563'
}

.icon-circlestopempty:before {
    content: '\f564'
}

.icon-circlepauseempty:before {
    content: '\f565'
}

.icon-circlerecordempty:before {
    content: '\f566'
}

.icon-circleforwardempty:before {
    content: '\f567'
}

.icon-circlebackwardempty:before {
    content: '\f568'
}

.icon-circlenextempty:before {
    content: '\f569'
}

.icon-circlepreviousempty:before {
    content: '\f56a'
}

.icon-belt:before {
    content: '\f56b'
}

.icon-bait:before {
    content: '\f56c'
}

.icon-manalt:before {
    content: '\f56d'
}

.icon-womanalt:before {
    content: '\f56e'
}

.icon-clover:before {
    content: '\f56f'
}

.icon-pacifier:before {
    content: '\f570'
}

.icon-calcplus:before {
    content: '\f571'
}

.icon-calcminus:before {
    content: '\f572'
}

.icon-calcmultiply:before {
    content: '\f573'
}

.icon-calcdivide:before {
    content: '\f574'
}

.icon-calcequals:before {
    content: '\f575'
}

.icon-city:before {
    content: '\f576'
}

.icon-hdvideo:before {
    content: '\f577'
}

.icon-horizontalexpand:before {
    content: '\f578'
}

.icon-horizontalcontract:before {
    content: '\f579'
}

.icon-radar:before {
    content: '\f57a'
}

.icon-threed:before {
    content: '\f57b'
}

.icon-flickralt:before {
    content: '\f57c'
}

.icon-pattern:before {
    content: '\f57d'
}

.icon-elevator:before {
    content: '\f57e'
}

.icon-escalator:before {
    content: '\f57f'
}

.icon-portrait:before {
    content: '\f580'
}

.icon-cigar:before {
    content: '\f581'
}

.icon-dropbox:before {
    content: '\f582'
}

.icon-origami:before {
    content: '\f583'
}

.icon-opensource:before {
    content: '\f585'
}

.icon-redaxscript:before {
    content: '\f586'
}

.icon-mahara:before {
    content: '\f587'
}

.icon-forkcms:before {
    content: '\f588'
}

.icon-pimcore:before {
    content: '\f589'
}

.icon-bigace:before {
    content: '\f58a'
}

.icon-aef:before {
    content: '\f58b'
}

.icon-punbb:before {
    content: '\f58c'
}

.icon-phorum:before {
    content: '\f58d'
}

.icon-fluxbb:before {
    content: '\f58e'
}

.icon-minibb:before {
    content: '\f58f'
}

.icon-zenphoto:before {
    content: '\f590'
}

.icon-fourimages:before {
    content: '\f591'
}

.icon-plogger:before {
    content: '\f592'
}

.icon-jcow:before {
    content: '\f593'
}

.icon-elgg:before {
    content: '\f594'
}

.icon-etano:before {
    content: '\f595'
}

.icon-openclassifieds:before {
    content: '\f596'
}

.icon-osclass:before {
    content: '\f597'
}

.icon-openx:before {
    content: '\f598'
}

.icon-phplist:before {
    content: '\f599'
}

.icon-roundcube:before {
    content: '\f59a'
}

.icon-pommo:before {
    content: '\f59b'
}

.icon-webinsta:before {
    content: '\f59c'
}

.icon-limesurvey:before {
    content: '\f59d'
}

.icon-fengoffice:before {
    content: '\f59e'
}

.icon-eyeos:before {
    content: '\f59f'
}

.icon-dotproject:before {
    content: '\f5a0'
}

.icon-collabtive:before {
    content: '\f5a1'
}

.icon-projectpier:before {
    content: '\f5a2'
}

.icon-taskfreak:before {
    content: '\f5a3'
}

.icon-eventum:before {
    content: '\f5a4'
}

.icon-traq:before {
    content: '\f5a5'
}

.icon-mantisbugtracker:before {
    content: '\f5a6'
}

.icon-oscommerce:before {
    content: '\f5a7'
}

.icon-zencart:before {
    content: '\f5a8'
}

.icon-tomatocart:before {
    content: '\f5a9'
}

.icon-boxbilling:before {
    content: '\f5aa'
}

.icon-zurmo:before {
    content: '\f5ab'
}

.icon-orangehrm:before {
    content: '\f5ac'
}

.icon-vtiger:before {
    content: '\f5ad'
}

.icon-mibew:before {
    content: '\f5ae'
}

.icon-phpmyfaq:before {
    content: '\f5af'
}

.icon-yiiframework:before {
    content: '\f5b0'
}

.icon-zendframework:before {
    content: '\f5b1'
}

.icon-fuelphp:before {
    content: '\f5b2'
}

.icon-kohana:before {
    content: '\f5b3'
}

.icon-smarty:before {
    content: '\f5b4'
}

.icon-sidu:before {
    content: '\f5b5'
}

.icon-simplepie:before {
    content: '\f5b6'
}

.icon-projectsend:before {
    content: '\f5b7'
}

.icon-extjs:before {
    content: '\f5b8'
}

.icon-raphael:before {
    content: '\f5b9'
}

.icon-sizzle:before {
    content: '\f5ba'
}

.icon-yui:before {
    content: '\f5bb'
}

.icon-scissorsalt:before {
    content: '\f5bc'
}

.icon-cuthere:before {
    content: '\f5bd'
}

.icon-coinsalt:before {
    content: '\f5be'
}

.icon-parkingmeter:before {
    content: '\f5bf'
}

.icon-treethree:before {
    content: '\f5c0'
}

.icon-packarchive:before {
    content: '\f5c1'
}

.icon-unpackarchive:before {
    content: '\f5c2'
}

.icon-terminalalt:before {
    content: '\f5c3'
}

.icon-jersey:before {
    content: '\f5c4'
}

.icon-vial:before {
    content: '\f5c5'
}

.icon-noteslist:before {
    content: '\f5c6'
}

.icon-notestasks:before {
    content: '\f5c7'
}

.icon-notesdate:before {
    content: '\f5c8'
}

.icon-noteslocation:before {
    content: '\f5c9'
}

.icon-noteslistalt:before {
    content: '\f5ca'
}

.icon-notestasksalt:before {
    content: '\f5cb'
}

.icon-notesdatealt:before {
    content: '\f5cc'
}

.icon-noteslocationalt:before {
    content: '\f5cd'
}

.icon-useralt:before {
    content: '\f5ce'
}

.icon-adduseralt:before {
    content: '\f5cf'
}

.icon-removeuseralt:before {
    content: '\f5d0'
}

.icon-banuseralt:before {
    content: '\f5d1'
}

.icon-banuser:before {
    content: '\f5d2'
}

.icon-paintrollalt:before {
    content: '\f5d3'
}

.icon-textcursor:before {
    content: '\f5d4'
}

.icon-textfield:before {
    content: '\f5d5'
}

.icon-precisecursor:before {
    content: '\f5d6'
}

.icon-brokenlink:before {
    content: '\f5d7'
}

.icon-bookmarkthree:before {
    content: '\f5d8'
}

.icon-bookmarkfour:before {
    content: '\f5d9'
}

.icon-warmedalalt:before {
    content: '\f5da'
}

.icon-thinking:before {
    content: '\f5db'
}

.icon-commentlove:before {
    content: '\f5dc'
}

.icon-commentsmiley:before {
    content: '\f5dd'
}

.icon-sharetwo:before {
    content: '\f147'
}

.icon-emptystar:before {
    content: '\f2de'
}

.icon-halfstar:before {
    content: '\f2df'
}

.icon-fullstar:before {
    content: '\f2e0'
}

.icon-forbidden:before {
    content: '\f314'
}

.icon-indentleftalt:before {
    content: '\f4c4'
}

.icon-indentrightalt:before {
    content: '\f4c5'
}

.icon-modxalt:before {
    content: '\f5de'
}

.icon-apple:before {
    content: '\f5df'
}

.icon-greekcolumn:before {
    content: '\f5e0'
}

.icon-walletalt:before {
    content: '\f5e1'
}

.icon-dollarsquare:before {
    content: '\f5e2'
}

.icon-poundsquare:before {
    content: '\f5e3'
}

.icon-yensquare:before {
    content: '\f5e4'
}

.icon-eurosquare:before {
    content: '\f5e5'
}

.icon-bitcoinsquare:before {
    content: '\f5e6'
}

.icon-roublesquare:before {
    content: '\f5e7'
}

.icon-roublealt:before {
    content: '\f5e8'
}

.icon-bitcoinalt:before {
    content: '\f5e9'
}

.icon-gavel:before {
    content: '\f5ea'
}

.icon-barchartasc:before {
    content: '\f5eb'
}

.icon-barchartdesc:before {
    content: '\f5ec'
}

.icon-house:before {
    content: '\f5ed'
}

.icon-garage:before {
    content: '\f5ee'
}

.icon-milk:before {
    content: '\f5ef'
}

.icon-hryvnia:before {
    content: '\f5f0'
}

.icon-hryvniasquare:before {
    content: '\f5f1'
}

.icon-hryvniaalt:before {
    content: '\f5f2'
}

.icon-beeralt:before {
    content: '\f5f3'
}

.icon-trolleyfull:before {
    content: '\f5f4'
}

.icon-trolleyload:before {
    content: '\f5f5'
}

.icon-trolleyunload:before {
    content: '\f5f6'
}

.icon-trolleyempty:before {
    content: '\f5f7'
}

.icon-mootools:before {
    content: '\f5f8'
}

.icon-mootoolstwo:before {
    content: '\f5f9'
}

.icon-mootoolsthree:before {
    content: '\f5fa'
}

.icon-mysqlthree:before {
    content: '\f5fb'
}

.icon-mysqlalt:before {
    content: '\f5fc'
}

.icon-pgsql:before {
    content: '\f5fd'
}

.icon-mongodb:before {
    content: '\f5fe'
}

.icon-neofourj:before {
    content: '\f5ff'
}

.icon-nosql:before {
    content: '\f600'
}

.icon-catface:before {
    content: '\f601'
}

.icon-polaroid:before {
    content: '\f602'
}

.icon-clouderror:before {
    content: '\f603'
}

.icon-camcorder:before {
    content: '\f604'
}

.icon-projector:before {
    content: '\f605'
}

.icon-sdvideo:before {
    content: '\f606'
}

.icon-fx:before {
    content: '\f607'
}

.icon-gramophone:before {
    content: '\f608'
}

.icon-speakeralt:before {
    content: '\f609'
}

.icon-hddalt:before {
    content: '\f60a'
}

.icon-usbflash:before {
    content: '\f60b'
}

.icon-manillaenvelope:before {
    content: '\f60c'
}

.icon-stickynote:before {
    content: '\f60d'
}

.icon-stickynotealt:before {
    content: '\f60e'
}

.icon-torch:before {
    content: '\f60f'
}

.icon-flashlightalt:before {
    content: '\f610'
}

.icon-campfire:before {
    content: '\f611'
}

.icon-cctv:before {
    content: '\f612'
}

.icon-drill:before {
    content: '\f613'
}

.icon-lampalt:before {
    content: '\f614'
}

.icon-flowerpot:before {
    content: '\f615'
}

.icon-defragment:before {
    content: '\f616'
}

.icon-panoramio:before {
    content: '\f617'
}

.icon-panorama:before {
    content: '\f618'
}

.icon-photosphere:before {
    content: '\f619'
}

.icon-panoramaalt:before {
    content: '\f61a'
}

.icon-timer:before {
    content: '\f61b'
}

.icon-burstmode:before {
    content: '\f61c'
}

.icon-cameraflash:before {
    content: '\f61d'
}

.icon-autoflash:before {
    content: '\f61e'
}

.icon-noflash:before {
    content: '\f61f'
}

.icon-threetofour:before {
    content: '\f620'
}

.icon-sixteentonine:before {
    content: '\f621'
}

.icon-cat:before {
    content: '\f622'
}

.icon-dog:before {
    content: '\f623'
}

.icon-rabbit:before {
    content: '\f624'
}

.icon-koala:before {
    content: '\f625'
}

.icon-butterflyalt:before {
    content: '\f626'
}

.icon-butterfly:before {
    content: '\f627'
}

.icon-wwf:before {
    content: '\f628'
}

.icon-poop:before {
    content: '\f629'
}

.icon-poopalt:before {
    content: '\f62a'
}

.icon-kiwi:before {
    content: '\f62b'
}

.icon-kiwifruit:before {
    content: '\f62c'
}

.icon-lemon:before {
    content: '\f62d'
}

.icon-pear:before {
    content: '\f62e'
}

.icon-watermelon:before {
    content: '\f62f'
}

.icon-onion:before {
    content: '\f630'
}

.icon-turnip:before {
    content: '\f631'
}

.icon-eggplant:before {
    content: '\f632'
}

.icon-avocado:before {
    content: '\f633'
}

.icon-perfume:before {
    content: '\f634'
}

.icon-arch:before {
    content: '\f635'
}

.icon-pluspages:before {
    content: '\f636'
}

.icon-community:before {
    content: '\f637'
}

.icon-pluscircles:before {
    content: '\f638'
}

.icon-googleplusold:before {
    content: '\f639'
}

.icon-plusgames:before {
    content: '\f63a'
}

.icon-event:before {
    content: '\f63b'
}

.icon-miui:before {
    content: '\f63c'
}

.icon-hot:before {
    content: '\f63d'
}

.icon-flowup:before {
    content: '\f63e'
}

.icon-flowdown:before {
    content: '\f63f'
}

.icon-moustache:before {
    content: '\f640'
}

.icon-angle:before {
    content: '\f641'
}

.icon-sleep:before {
    content: '\f642'
}

.icon-acorn:before {
    content: '\f643'
}

.icon-steamalt:before {
    content: '\f644'
}

.icon-resizeupleft:before {
    content: '\f645'
}

.icon-resizeupright:before {
    content: '\f646'
}

.icon-resizedownright:before {
    content: '\f647'
}

.icon-resizedownleft:before {
    content: '\f648'
}

.icon-hammeralt:before {
    content: '\f649'
}

.icon-bamboo:before {
    content: '\f64a'
}

.icon-mypictures:before {
    content: '\f64b'
}

.icon-mymusic:before {
    content: '\f64c'
}

.icon-myvideos:before {
    content: '\f64d'
}

.icon-systemfolder:before {
    content: '\f64e'
}

.icon-bookthree:before {
    content: '\f64f'
}

.icon-compile:before {
    content: '\f650'
}

.icon-report:before {
    content: '\f651'
}

.icon-fliphorizontal:before {
    content: '\f652'
}

.icon-flipvertical:before {
    content: '\f653'
}

.icon-construction:before {
    content: '\f654'
}

.icon-counteralt:before {
    content: '\f655'
}

.icon-counter:before {
    content: '\f656'
}

.icon-papercutter:before {
    content: '\f657'
}

.icon-snaptodot:before {
    content: '\f658'
}

.icon-snaptogrid:before {
    content: '\f659'
}

.icon-caligraphy:before {
    content: '\f65a'
}

.icon-icecreamthree:before {
    content: '\f65b'
}

.icon-skitch:before {
    content: '\f65c'
}

.icon-archlinux:before {
    content: '\f65d'
}

.icon-elementaryos:before {
    content: '\f65e'
}

.icon-loadingone:before {
    content: '\f65f'
}

.icon-loadingtwo:before {
    content: '\f660'
}

.icon-loadingthree:before {
    content: '\f661'
}

.icon-loadingfour:before {
    content: '\f662'
}

.icon-loadingfive:before {
    content: '\f663'
}

.icon-loadingsix:before {
    content: '\f664'
}

.icon-loadingseven:before {
    content: '\f665'
}

.icon-loadingeight:before {
    content: '\f666'
}

.icon-brokenheart:before {
    content: '\f667'
}

.icon-heartarrow:before {
    content: '\f668'
}

.icon-heartsparkle:before {
    content: '\f669'
}

.icon-cell:before {
    content: '\f66a'
}

.icon-panda:before {
    content: '\f66b'
}

.icon-refreshalt:before {
    content: '\f66c'
}

.icon-mirror:before {
    content: '\f66d'
}

.icon-headphonesthree:before {
    content: '\f66e'
}

.icon-fan:before {
    content: '\f66f'
}

.icon-tornado:before {
    content: '\f670'
}

.icon-hangout:before {
    content: '\f671'
}

.icon-beaker:before {
    content: '\f672'
}

.icon-beakeralt:before {
    content: '\f673'
}

.icon-phonescreensize:before {
    content: '\f674'
}

.icon-tabletscreensize:before {
    content: '\f675'
}

.icon-notification:before {
    content: '\f676'
}

.icon-googleglass:before {
    content: '\f677'
}

.icon-pinterest:before {
    content: '\f678'
}

.icon-soundcloud:before {
    content: '\f679'
}

.icon-alarmclock:before {
    content: '\f67a'
}

.icon-addalarm:before {
    content: '\f67b'
}

.icon-deletealarm:before {
    content: '\f67c'
}

.icon-turnoffalarm:before {
    content: '\f67d'
}

.icon-snooze:before {
    content: '\f67e'
}

.icon-bringforward:before {
    content: '\f67f'
}

.icon-sendbackward:before {
    content: '\f680'
}

.icon-bringtofront:before {
    content: '\f681'
}

.icon-sendtoback:before {
    content: '\f682'
}

.icon-tectile:before {
    content: '\f683'
}

.icon-grave:before {
    content: '\f684'
}

.icon-gravetwo:before {
    content: '\f685'
}

.icon-gravethree:before {
    content: '\f686'
}

.icon-gravefour:before {
    content: '\f687'
}

.icon-textlayer:before {
    content: '\f688'
}

.icon-vectoralt:before {
    content: '\f689'
}

.icon-drmanhattan:before {
    content: '\f68a'
}

.icon-foursquarealt:before {
    content: '\f68b'
}

.icon-hashtag:before {
    content: '\f68c'
}

.icon-enteralt:before {
    content: '\f68d'
}

.icon-exitalt:before {
    content: '\f68e'
}

.icon-cartalt:before {
    content: '\f68f'
}

.icon-vaultthree:before {
    content: '\f690'
}

.icon-fatundo:before {
    content: '\f691'
}

.icon-fatredo:before {
    content: '\f692'
}

.icon-feedly:before {
    content: '\f693'
}

.icon-feedlyalt:before {
    content: '\f694'
}

.icon-squareheart:before {
    content: '\f695'
}

.icon-squarestar:before {
    content: '\f696'
}

.icon-squarecomment:before {
    content: '\f697'
}

.icon-squarelike:before {
    content: '\f698'
}

.icon-squarebookmark:before {
    content: '\f699'
}

.icon-squaresearch:before {
    content: '\f69a'
}

.icon-squaresettings:before {
    content: '\f69b'
}

.icon-squarevoice:before {
    content: '\f69c'
}

.icon-google:before {
    content: '\f69d'
}

.icon-emojigrinalt:before {
    content: '\f69e'
}

.icon-emojigrin:before {
    content: '\f69f'
}

.icon-constellation:before {
    content: '\f6a0'
}

.icon-emojisurprise:before {
    content: '\f6a1'
}

.icon-emojidead:before {
    content: '\f6a2'
}

.icon-emojiangry:before {
    content: '\f6a3'
}

.icon-emojidevil:before {
    content: '\f6a4'
}

.icon-emojiwink:before {
    content: '\f6a5'
}

.icon-moonorbit:before {
    content: '\f6a6'
}

.icon-emojismile:before {
    content: '\f6a7'
}

.icon-emojisorry:before {
    content: '\f6a8'
}

.icon-emojiconfused:before {
    content: '\f6a9'
}

.icon-emojisleep:before {
    content: '\f6aa'
}

.icon-emojicry:before {
    content: '\f6ab'
}

.icon-circlefork:before {
    content: '\f6ac'
}

.icon-circlespoon:before {
    content: '\f6ad'
}

.icon-circleknife:before {
    content: '\f6ae'
}

.icon-circlepencil:before {
    content: '\f6af'
}

.icon-circlehammer:before {
    content: '\f6b0'
}

.icon-circlescrewdriver:before {
    content: '\f6b1'
}

.icon-middlefinger:before {
    content: '\f6b2'
}

.icon-heavymetal:before {
    content: '\f6b3'
}

.icon-turnright:before {
    content: '\f6b4'
}

.icon-turnleft:before {
    content: '\f6b5'
}

.icon-vineapp:before {
    content: '\f6b6'
}

.icon-vineappalt:before {
    content: '\f6b7'
}

.icon-finance:before {
    content: '\f6b8'
}

.icon-survey:before {
    content: '\f6b9'
}

.icon-hangouts:before {
    content: '\f6ba'
}

.icon-square0:before {
    content: '\f6bb'
}

.icon-square1:before {
    content: '\f6bc'
}

.icon-square2:before {
    content: '\f6bd'
}

.icon-square3:before {
    content: '\f6be'
}

.icon-square4:before {
    content: '\f6bf'
}

.icon-square5:before {
    content: '\f6c0'
}

.icon-square6:before {
    content: '\f6c1'
}

.icon-square7:before {
    content: '\f6c2'
}

.icon-square8:before {
    content: '\f6c3'
}

.icon-square9:before {
    content: '\f6c4'
}

.icon-squarea:before {
    content: '\f6c5'
}

.icon-squareb:before {
    content: '\f6c6'
}

.icon-squarec:before {
    content: '\f6c7'
}

.icon-squared:before {
    content: '\f6c8'
}

.icon-squaree:before {
    content: '\f6c9'
}

.icon-squaref:before {
    content: '\f6ca'
}

.icon-squareg:before {
    content: '\f6cb'
}

.icon-squareh:before {
    content: '\f6cc'
}

.icon-squarei:before {
    content: '\f6cd'
}

.icon-squarej:before {
    content: '\f6ce'
}

.icon-squarek:before {
    content: '\f6cf'
}

.icon-squarel:before {
    content: '\f6d0'
}

.icon-squarem:before {
    content: '\f6d1'
}

.icon-squaren:before {
    content: '\f6d2'
}

.icon-squareo:before {
    content: '\f6d3'
}

.icon-squarep:before {
    content: '\f6d4'
}

.icon-squareq:before {
    content: '\f6d5'
}

.icon-squarer:before {
    content: '\f6d6'
}

.icon-squares:before {
    content: '\f6d7'
}

.icon-squaret:before {
    content: '\f6d8'
}

.icon-squareu:before {
    content: '\f6d9'
}

.icon-squarev:before {
    content: '\f6da'
}

.icon-squarew:before {
    content: '\f6db'
}

.icon-squarex:before {
    content: '\f6dc'
}

.icon-squarey:before {
    content: '\f6dd'
}

.icon-squarez:before {
    content: '\f6de'
}

.icon-shuttle:before {
    content: '\f6df'
}

.icon-meteor:before {
    content: '\f6e0'
}

.icon-galaxy:before {
    content: '\f6e1'
}

.icon-observatory:before {
    content: '\f6e2'
}

.icon-astronaut:before {
    content: '\f6e3'
}

.icon-asteroid:before {
    content: '\f6e4'
}

.icon-sunrise:before {
    content: '\f6e5'
}

.icon-sunset:before {
    content: '\f6e6'
}

.icon-tiderise:before {
    content: '\f6e7'
}

.icon-tidefall:before {
    content: '\f6e8'
}

.icon-mushroomcloud:before {
    content: '\f6e9'
}

.icon-galaxyalt:before {
    content: '\f6ea'
}

.icon-sputnik:before {
    content: '\f6eb'
}

.icon-sextant:before {
    content: '\f6ec'
}

.icon-spock:before {
    content: '\f6ed'
}

.icon-meteorite:before {
    content: '\f6ee'
}

.icon-deathstar:before {
    content: '\f6ef'
}

.icon-deathstarbulding:before {
    content: '\f6f0'
}

.icon-fallingstar:before {
    content: '\f6f1'
}

.icon-windmill:before {
    content: '\f6f2'
}

.icon-windmillalt:before {
    content: '\f6f3'
}

.icon-pumpjack:before {
    content: '\f6f4'
}

.icon-nuclearplant:before {
    content: '\f6f5'
}

.icon-solarpanel:before {
    content: '\f6f6'
}

.icon-barrel:before {
    content: '\f6f7'
}

.icon-canister:before {
    content: '\f6f8'
}

.icon-railtunnel:before {
    content: '\f6f9'
}

.icon-roadtunnel:before {
    content: '\f6fa'
}

.icon-pickaxe:before {
    content: '\f6fb'
}

.icon-cow:before {
    content: '\f6fc'
}

.icon-sheep:before {
    content: '\f6fd'
}

.icon-fountain:before {
    content: '\f6fe'
}

.icon-circlezero:before {
    content: '\f6ff'
}

.icon-circleone:before {
    content: '\f700'
}

.icon-circletwo:before {
    content: '\f701'
}

.icon-circlethree:before {
    content: '\f702'
}

.icon-circlefour:before {
    content: '\f703'
}

.icon-circlefive:before {
    content: '\f704'
}

.icon-circlesix:before {
    content: '\f705'
}

.icon-circleseven:before {
    content: '\f706'
}

.icon-circleeight:before {
    content: '\f707'
}

.icon-circlenine:before {
    content: '\f708'
}

.icon-circlea:before {
    content: '\f709'
}

.icon-circleb:before {
    content: '\f70a'
}

.icon-circlec:before {
    content: '\f70b'
}

.icon-circled:before {
    content: '\f70c'
}

.icon-circlee:before {
    content: '\f70d'
}

.icon-circlef:before {
    content: '\f70e'
}

.icon-circleg:before {
    content: '\f70f'
}

.icon-circleh:before {
    content: '\f710'
}

.icon-circlei:before {
    content: '\f711'
}

.icon-circlej:before {
    content: '\f712'
}

.icon-circlek:before {
    content: '\f713'
}

.icon-circlel:before {
    content: '\f714'
}

.icon-circlem:before {
    content: '\f715'
}

.icon-circlen:before {
    content: '\f716'
}

.icon-circleo:before {
    content: '\f717'
}

.icon-circlep:before {
    content: '\f718'
}

.icon-circleq:before {
    content: '\f719'
}

.icon-circler:before {
    content: '\f71a'
}

.icon-circles:before {
    content: '\f71b'
}

.icon-circlet:before {
    content: '\f71c'
}

.icon-circleu:before {
    content: '\f71d'
}

.icon-circlev:before {
    content: '\f71e'
}

.icon-circlew:before {
    content: '\f71f'
}

.icon-circlex:before {
    content: '\f720'
}

.icon-circley:before {
    content: '\f721'
}

.icon-circlez:before {
    content: '\f722'
}

.icon-creeper:before {
    content: '\f723'
}

.icon-minecraft:before {
    content: '\f724'
}

.icon-minecraftalt:before {
    content: '\f725'
}

.icon-pixelsword:before {
    content: '\f726'
}

.icon-pixelbroadsword:before {
    content: '\f727'
}

.icon-pixelwand:before {
    content: '\f728'
}

.icon-pixelpotion:before {
    content: '\f729'
}

.icon-pixelpotionalt:before {
    content: '\f72a'
}

.icon-pixelpickaxe:before {
    content: '\f72b'
}

.icon-pixelbow:before {
    content: '\f72c'
}

.icon-pixelarrow:before {
    content: '\f72d'
}

.icon-pixelaxe:before {
    content: '\f72e'
}

.icon-pixeldagger:before {
    content: '\f72f'
}

.icon-pixelbastardsword:before {
    content: '\f730'
}

.icon-pixellance:before {
    content: '\f731'
}

.icon-pixelbattleaxe:before {
    content: '\f732'
}

.icon-pixelshovel:before {
    content: '\f733'
}

.icon-pixelsphere:before {
    content: '\f734'
}

.icon-pixelelixir:before {
    content: '\f735'
}

.icon-pixelchest:before {
    content: '\f736'
}

.icon-pixelshield:before {
    content: '\f737'
}

.icon-pixelheart:before {
    content: '\f738'
}

.icon-rudder:before {
    content: '\f739'
}

.icon-folderalt:before {
    content: '\f73a'
}

.icon-removefolderalt:before {
    content: '\f73b'
}

.icon-addfolderalt:before {
    content: '\f73c'
}

.icon-deletefolderalt:before {
    content: '\f73d'
}

.icon-openfolderalt:before {
    content: '\f73e'
}

.icon-clipboardalt:before {
    content: '\f73f'
}

.icon-pastealt:before {
    content: '\f740'
}

.icon-loadingflowccw:before {
    content: '\f741'
}

.icon-loadingflowcw:before {
    content: '\f742'
}

.icon-code:before {
    content: '\f743'
}

.icon-cloveralt:before {
    content: '\f744'
}

.icon-lips:before {
    content: '\f745'
}

.icon-kiss:before {
    content: '\f746'
}

.icon-manualshift:before {
    content: '\f747'
}

.icon-simcardthree:before {
    content: '\f748'
}

.icon-parthenon:before {
    content: '\f749'
}

.icon-addcomment:before {
    content: '\f74a'
}

.icon-deletecomment:before {
    content: '\f74b'
}

.icon-gender:before {
    content: '\f74c'
}

.icon-callalt:before {
    content: '\f74d'
}

.icon-outgoingcallalt:before {
    content: '\f74e'
}

.icon-incomingcallalt:before {
    content: '\f74f'
}

.icon-missedcallalt:before {
    content: '\f750'
}

.icon-export:before {
    content: '\f751'
}

.icon-import:before {
    content: '\f752'
}

.icon-cherryalt:before {
    content: '\f753'
}

.icon-panties:before {
    content: '\f754'
}

.icon-kimai:before {
    content: '\f755'
}

.icon-livejournal:before {
    content: '\f756'
}

.icon-livejournalalt:before {
    content: '\f757'
}

.icon-tagged:before {
    content: '\f758'
}

.icon-temple:before {
    content: '\f759'
}

.icon-mayanpyramid:before {
    content: '\f75a'
}

.icon-egyptpyramid:before {
    content: '\f75b'
}

.icon-tampermonkey:before {
    content: '\f75c'
}

.icon-pushbullet:before {
    content: '\f75d'
}

.icon-currents:before {
    content: '\f75e'
}

.icon-communitysmall:before {
    content: '\f75f'
}

.icon-squaregithub:before {
    content: '\f760'
}

.icon-projectfork:before {
    content: '\f761'
}

.icon-projectmerge:before {
    content: '\f762'
}

.icon-projectcompare:before {
    content: '\f763'
}

.icon-history:before {
    content: '\f764'
}

.icon-notebook:before {
    content: '\f765'
}

.icon-issue:before {
    content: '\f766'
}

.icon-issueclosed:before {
    content: '\f767'
}

.icon-issuereopened:before {
    content: '\f768'
}

.icon-rubyalt:before {
    content: '\f769'
}

.icon-lighton:before {
    content: '\f76a'
}

.icon-lightoff:before {
    content: '\f76b'
}

.icon-bellalt:before {
    content: '\f76c'
}

.icon-versions:before {
    content: '\f777'
}

.icon-twog:before {
    content: '\f76e'
}

.icon-threeg:before {
    content: '\f76f'
}

.icon-fourg:before {
    content: '\f770'
}

.icon-gpsalt:before {
    content: '\f771'
}

.icon-circleloaderfull:before {
    content: '\f772'
}

.icon-circleloaderseven:before {
    content: '\f773'
}

.icon-circleloadersix:before {
    content: '\f774'
}

.icon-circleloaderfive:before {
    content: '\f775'
}

.icon-circleloaderfour:before {
    content: '\f776'
}

.icon-circleloaderthree:before {
    content: '\f777'
}

.icon-circleloadertwo:before {
    content: '\f778'
}

.icon-circleloaderone:before {
    content: '\f779'
}

.icon-circleloaderempty:before {
    content: '\f77a'
}

.icon-whatsapp:before {
    content: '\f77b'
}

.icon-whatsappalt:before {
    content: '\f77c'
}

.icon-viber:before {
    content: '\f77d'
}

.icon-squareviber:before {
    content: '\f77e'
}

.icon-teamviewer:before {
    content: '\f77f'
}

.icon-tunein:before {
    content: '\f780'
}

.icon-tuneinalt:before {
    content: '\f781'
}

.icon-weightscale:before {
    content: '\f782'
}

.icon-boxing:before {
    content: '\f783'
}

.icon-speedalt:before {
    content: '\f784'
}

.icon-scriptalt:before {
    content: '\f785'
}

.icon-splitthree:before {
    content: '\f786'
}

.icon-mergethree:before {
    content: '\f787'
}

.icon-layersthree:before {
    content: '\f788'
}

.icon-mutemic:before {
    content: '\f789'
}

.icon-zerply:before {
    content: '\f78a'
}

.icon-circlegoogleplus:before {
    content: '\f78b'
}

.icon-circletwitter:before {
    content: '\f78c'
}

.icon-circlefacebook:before {
    content: '\f78d'
}

.icon-circleyahoo:before {
    content: '\f78e'
}

.icon-circlegithub:before {
    content: '\f78f'
}

.icon-forumsalt:before {
    content: '\f790'
}

.icon-circlepath:before {
    content: '\f791'
}

.icon-circlevimeo:before {
    content: '\f792'
}

.icon-circlevine:before {
    content: '\f793'
}

.icon-instagramtwo:before {
    content: '\f794'
}

.icon-instagramthree:before {
    content: '\f795'
}

.icon-flickrthree:before {
    content: '\f796'
}

.icon-quora:before {
    content: '\f797'
}

.icon-squarequora:before {
    content: '\f798'
}

.icon-circlequora:before {
    content: '\f799'
}

.icon-picasa:before {
    content: '\f79a'
}

.icon-branch:before {
    content: '\f79b'
}

.icon-ingress:before {
    content: '\f79c'
}

.icon-squarezerply:before {
    content: '\f79d'
}

.icon-circlezerply:before {
    content: '\f79e'
}

.icon-squarevimeo:before {
    content: '\f79f'
}

.icon-squaretwitter:before {
    content: '\f7a0'
}

.icon-brightnessalt:before {
    content: '\f7a1'
}

.icon-brightnessalthalf:before {
    content: '\f7a2'
}

.icon-brightnessaltfull:before {
    content: '\f7a3'
}

.icon-brightnessaltauto:before {
    content: '\f7a4'
}

.icon-shirtbuttonthree:before {
    content: '\f7a5'
}

.icon-openshare:before {
    content: '\f7a6'
}

.icon-copyapp:before {
    content: '\f7a7'
}

.icon-bowl:before {
    content: '\f7a8'
}

.icon-cloudalt:before {
    content: '\f7a9'
}

.icon-cloudaltdownload:before {
    content: '\f7aa'
}

.icon-cloudaltupload:before {
    content: '\f7ab'
}

.icon-cloudaltsync:before {
    content: '\f7ac'
}

.icon-cloudaltprivate:before {
    content: '\f7ad'
}

.icon-flipboard:before {
    content: '\f7ae'
}

.icon-octoloaderempty:before {
    content: '\f7af'
}

.icon-octoloaderone:before {
    content: '\f7b0'
}

.icon-octoloadertwo:before {
    content: '\f7b1'
}

.icon-octoloaderthree:before {
    content: '\f7b2'
}

.icon-octoloaderfour:before {
    content: '\f7b3'
}

.icon-octoloaderfive:before {
    content: '\f7b4'
}

.icon-octoloadersix:before {
    content: '\f7b5'
}

.icon-octoloaderseven:before {
    content: '\f7b6'
}

.icon-octoloaderfull:before {
    content: '\f7b7'
}

.icon-selectionsymbol:before {
    content: '\f7b8'
}

.icon-infinityalt:before {
    content: '\f7b9'
}

.icon-pullrequest:before {
    content: '\f7ba'
}

.icon-projectforkdelete:before {
    content: '\f7bb'
}

.icon-projectforkprivate:before {
    content: '\f7bc'
}

.icon-commit:before {
    content: '\f7bd'
}

.icon-htmlfile:before {
    content: '\f7be'
}

.icon-pushalt:before {
    content: '\f7bf'
}

.icon-pullalt:before {
    content: '\f7c0'
}

.icon-photonineframes:before {
    content: '\f7c1'
}

.icon-wetfloor:before {
    content: '\f7c2'
}

.icon-instagramfour:before {
    content: '\f7c3'
}

.icon-circleinstagram:before {
    content: '\f7c4'
}

.icon-videocamerathree:before {
    content: '\f7c5'
}

.icon-subtitles:before {
    content: '\f7c6'
}

.icon-subtitlesoff:before {
    content: '\f7c7'
}

.icon-compress:before {
    content: '\f7c8'
}

.icon-baby:before {
    content: '\f7c9'
}

.icon-ducky:before {
    content: '\f7ca'
}

.icon-handswipe:before {
    content: '\f7cb'
}

.icon-swipeup:before {
    content: '\f7cc'
}

.icon-swipedown:before {
    content: '\f7cd'
}

.icon-twofingerswipedown:before {
    content: '\f7ce'
}

.icon-twofingerswipeup:before {
    content: '\f7cf'
}

.icon-doubletap:before {
    content: '\f7d0'
}

.icon-dribbblealt:before {
    content: '\f7d1'
}

.icon-circlecallmissed:before {
    content: '\f7d2'
}

.icon-circlecallincoming:before {
    content: '\f7d3'
}

.icon-circlecalloutgoing:before {
    content: '\f7d4'
}

.icon-circledownload:before {
    content: '\f7d5'
}

.icon-circleupload:before {
    content: '\f7d6'
}

.icon-minismile:before {
    content: '\f7d7'
}

.icon-minisad:before {
    content: '\f7d8'
}

.icon-minilaugh:before {
    content: '\f7d9'
}

.icon-minigrin:before {
    content: '\f7da'
}

.icon-miniangry:before {
    content: '\f7db'
}

.icon-minitongue:before {
    content: '\f7dc'
}

.icon-minitonguealt:before {
    content: '\f7dd'
}

.icon-miniwink:before {
    content: '\f7de'
}

.icon-minitonguewink:before {
    content: '\f7df'
}

.icon-miniconfused:before {
    content: '\f7e0'
}

.icon-soundright:before {
    content: '\f7e1'
}

.icon-soundleft:before {
    content: '\f7e2'
}

.icon-savetodrive:before {
    content: '\f7e3'
}

.icon-layerorderup:before {
    content: '\f7e4'
}

.icon-layerorderdown:before {
    content: '\f7e5'
}

.icon-layerorder:before {
    content: '\f7e6'
}

.icon-circledribbble:before {
    content: '\f7e7'
}

.icon-squaredribbble:before {
    content: '\f7e8'
}

.icon-handexpand:before {
    content: '\f7e9'
}

.icon-handpinch:before {
    content: '\f7ea'
}

.icon-fontserif:before {
    content: '\f7eb'
}

.icon-fontsansserif:before {
    content: '\f7ec'
}

.icon-fontrounded:before {
    content: '\f7ed'
}

.icon-fonthandwriting:before {
    content: '\f7ee'
}

.icon-fonttypewriter:before {
    content: '\f7ef'
}

.icon-fontcomic:before {
    content: '\f7f0'
}

.icon-fontcaligraphy:before {
    content: '\f7f1'
}

.icon-fontgothic:before {
    content: '\f7f2'
}

.icon-fontstencil:before {
    content: '\f7f3'
}

/*! jQuery UI - v1.11.4 - 2015-10-26
* http://jqueryui.com
* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=&fwDefault=normal&fsDefault=&cornerRadius=2px&bgColorHeader=%232d2d2d&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=%232d2d2d&fcHeader=%23222222&iconColorHeader=%23222222&bgColorContent=%23ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=%23fff&fcContent=%23222222&iconColorContent=%23222222&bgColorDefault=%23e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=%23d3d3d3&fcDefault=%23555555&iconColorDefault=%23888888&bgColorHover=%23dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=%23999999&fcHover=%23212121&iconColorHover=%23454545&bgColorActive=%23ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=%23aaaaaa&fcActive=%23212121&iconColorActive=%23454545&bgColorHighlight=%23fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=%23fcefa1&fcHighlight=%23363636&iconColorHighlight=%232e83ff&bgColorError=%23fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=%23cd0a0a&fcError=%23cd0a0a&iconColorError=%23cd0a0a&bgColorOverlay=%23aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=%23aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px&tr%26ffDefault=Helvetica%2CArial%2Csans-serif
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */

.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;min-height:0;font-size:100%}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{overflow:hidden;position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:none}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-button{display:inline-block;overflow:hidden;position:relative;text-decoration:none;cursor:pointer}.ui-selectmenu-button span.ui-icon{right:0.5em;left:auto;margin-top:-8px;position:absolute;top:50%}.ui-selectmenu-button span.ui-selectmenu-text{text-align:left;padding:0.4em 2.1em 0.4em 1em;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px}.ui-widget{font-family:inherit;font-size:}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:inherit;font-size:1em}.ui-widget-content{border:1px solid #fff;background:#fff url("/?a=156977") 50% 50% repeat-x;color:#222}.ui-widget-content a{color:#0066cc}.ui-widget-header{border:1px solid #2d2d2d;background:#2d2d2d url("images/ui-bg_highlight-soft_75_2d2d2d_1x100.png") 50% 50% repeat-x;color:#222;font-weight:bold}.ui-widget-header a{color:#222}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #d3d3d3;background:#e6e6e6 url("/?a=161598") 50% 50% repeat-x;font-weight:normal;color:#555}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#555;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #999;background:#dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#212121;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #aaa;background:#fff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#212121;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;color:#cd0a0a}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#cd0a0a}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#cd0a0a}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-default .ui-icon{background-image:url("images/ui-icons_888888_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("images/ui-icons_454545_256x240.png")}.ui-state-active .ui-icon{background-image:url("images/ui-icons_454545_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("images/ui-icons_2e83ff_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cd0a0a_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:2px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:2px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:2px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:2px}.ui-widget-overlay{background:#aaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;background:#aaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30);border-radius:8px}
/*Table Module Config*/
table {
    --table-header-background:#eee;
}
/**/
table {
    width: 100%;
    clear: both;
    border: 1px solid gray;
    font-feature-settings: "kern" 0, "liga" 1, "calt" 1, "pnum" 0, "tnum" 1, "onum" 0, "lnum" 1, "zero" 1;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 1em;
}

table p {
    margin: 0.2em;
}
table.bordertopbottom{
    margin-bottom: 1.5em;
}

table.bordertopbottom, table.bordertopbottom tbody, table.bordertopbottom th, table.bordertopbottom td {
    border-left: none;
    border-right: none;
    border-top: 2px #e7e7e7 solid;
    border-bottom: 2px #e7e7e7 solid;
}



caption{
    
}

thead{
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "pnum" 1, "tnum" 0, "onum" 1, "lnum" 0, "dlig" 0;
}

tbody{
}

th {
    background: var(--table-header-background);
    color: #000;
    text-align: center;
    padding: 0.4em 0.3em;
    font-weight: 600;
    border: 1px solid gray;
    vertical-align: top;
}


tr {
}

td{
    padding: 0.5em 0.2em;
    border: 1px solid gray;
    vertical-align: top;
    text-align: left;
}


 
  

/*Table Conditionals*/
.table-striped tr:nth-child(even) {
    background: #d9e2ea;
}

.table-striped tr:nth-child(odd)  {
    background: white;
}

td .evenrow, tr.evenrow {
    color: black;
    background: #d9e2ea;
}


td .oddrow, tr.oddrow, .highlightTable tr td {
    color: black;
    background: #ffffff;
}

  
  
  
/*Sitemap table*/
.sitemap tr {
    border-bottom: none;
}
.sitemap td {
    padding: 0;
}
.sitemap table {
    width: initial;
}
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /*TO BE PORTED*/
  /*Jira - JCU SDQLD-1325*/
  table.fancy, 
  table.fancyleftcolumn, 
  table.fancytoprow, 
  table.fancytoprow1, 
  table.fancyleftcolumn1 {
      color: black;
      background: white;
      border-collapse: collapse;
      font-size: 1em;
      padding: 0px;
  }
  
  /*Jira - JCU SDQLD-1325*/
  .fancy th, 
  table.fancytoprow th, 
  .fancyleftcolumn th, 
  .fancytoprow1 th, 
  .fancyleftcolumn1 th, 
  .fancy td .Heading_2 {
      color: white;
      padding: 0.5em;
      margin: 0;
      background: #2E3192;
      text-align: left;
  }
  
  
  .course__table,
  .course__table th,
  .course__table td,
  table.borderless,
  table.borderless th,
  table.borderless td {
     border: none;
  }
  
  
  
  

  
ul.resp-tabs-list {
  margin: 0px;
  padding: 0px;
}

.resp-tabs-list li {
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
  padding: 13px 15px;
  margin: 0;
  list-style: none;
  cursor: pointer;
  float: left;
}

.resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  clear: left;
}

h2.resp-accordion {
  cursor: pointer;
  padding: 5px;
  display: none;
}

.resp-tab-content {
  display: none;
  padding: 15px;
}

.resp-tab-active {
  border-bottom: none;
  background-color: #fff;
}

.resp-content-active,
.resp-accordion-active { display: block; }

.resp-tab-content { border: 1px solid #c1c1c1; }

h2.resp-accordion {
  font-size: 13px;
  border: 1px solid #c1c1c1;
  border-top: 0px solid #c1c1c1;
  margin: 0px;
  padding: 10px 15px;
}

h2.resp-tab-active {
  border-bottom: 0px solid #c1c1c1 !important;
  margin-bottom: 0px !important;
  padding: 10px 15px !important;
}

h2.resp-tab-title:last-child {
  border-bottom: 12px solid #c1c1c1 !important;
  background: blue;
}

/*-----------Vertical tabs-----------*/

.resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 30%;
}

.resp-vtabs .resp-tabs-list li {
  display: block;
  padding: 15px 15px !important;
  margin: 0;
  cursor: pointer;
  float: none;
}

.resp-vtabs .resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  border: 1px solid #c1c1c1;
  float: left;
  width: 68%;
  min-height: 250px;
  border-radius: 4px;
  clear: none;
}

.resp-vtabs .resp-tab-content { border: none; }

.resp-vtabs li.resp-tab-active {
  border: 1px solid #c1c1c1;
  border-right: none;
  background-color: #fff;
  position: relative;
  z-index: 1;
  margin-right: -1px !important;
  padding: 14px 15px 15px 14px !important;
}

.resp-arrow {
  width: 0;
  height: 0;
  float: right;
  margin-top: 3px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid #c1c1c1;
}

h2.resp-tab-active span.resp-arrow {
  border: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid #9B9797;
}

/*-----------Accordion styles-----------*/

h2.resp-tab-active { background: #DBDBDB !important; }

.resp-easy-accordion h2.resp-accordion { display: block; }

.resp-easy-accordion .resp-tab-content { border: 1px solid #c1c1c1; }

.resp-easy-accordion .resp-tab-content:last-child { border-bottom: 1px solid #c1c1c1 !important; }

.resp-jfit {
  width: 100%;
  margin: 0px;
}

.resp-tab-content-active { display: block; }

h2.resp-accordion:first-child { border-top: 1px solid #c1c1c1 !important; }
/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 768px) {

ul.resp-tabs-list { display: none; }

h2.resp-accordion { display: block; }

.resp-vtabs .resp-tab-content { border: 1px solid #C1C1C1; }

.resp-vtabs .resp-tabs-container {
  border: none;
  float: none;
  width: 100%;
  min-height: initial;
  clear: none;
}

.resp-accordion-closed { display: none !important; }

.resp-vtabs .resp-tab-content:last-child { border-bottom: 1px solid #c1c1c1 !important; }
}

/*L4C Button Module*/
/*Settings and Variables*/
    .L4C_button {
        --main-text-colour:#fff;
        --main-bg-colour:#06c;
        
        /*Secondary theme for use on blue backgrounds*/
        --secondary-text-colour:#06c;
        --secondary-bg-colour:#fff;
        
        --font-weight: 600;
    }
/*----------------------------------------------------------*/
    /*Initize*/
    .L4C_button{
        display: flex;
        justify-content: flex-start;
        padding: 0.75rem 1rem !important;
        margin: 0px 0px 1rem;
        max-width:fit-content; 
        font-weight: var(--font-weight);
    }
    /*Link states*/
    /*.L4C_button:link, .L4C_button:visited, .L4C_button:hover, .L4C_button *:link, .L4C_button *:visited, .L4C_button *:hover {*/
    /*    color: var(--main-text-colour);*/
    /*}*/
    
    .L4C_button, .L4C_button *, .jcu-v1__image-content .jcu-v1__image-content__text .L4C_button a, .jcu-v1__image-content .jcu-v1__image-content__text .L4C_button, .jcu-v1__image-content .jcu-v1__image-content__text .L4C_button *, .jcu-v1__page-intro__text .L4C_button, .jcu-v1__page-intro__text .L4C_button:link, .L4C_button:visited, .L4C_button a:visited{
        background-color: var(--main-bg-colour);
        color: var(--main-text-colour) !important;
        text-decoration: none;
    }
    
    /*Secondary*/
    .infobox.blue .L4C_button, .infobox.blue .L4C_button:link, 
    .infoboxblue .L4C_button * ,.infoboxblue .L4C_button *:link, 
    .L4C_button.bg-white, .L4C_button.bg-white *, 
    .jcu-v1__image-content .jcu-v1__image-content__text .L4C_button.bg-white, .jcu-v1__image-content .jcu-v1__image-content__text .L4C_button.bg-white *, 
    .jcu-v1__page-intro__text .L4C_button.bg-white, .jcu-v1__page-intro__text .L4C_button.bg-white:link{
        background-color: var(--secondary-bg-colour) !important;
        color: var(--secondary-text-colour) !important;
        text-decoration: none;
    }
    /*.insidebody .L4C_button {*/
    /*    font-weight: var(--font-weight);*/
    /*}*/
    

    .L4C_button:hover{
        box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.2) !important;
        cursor: pointer;
    }
    .L4C_button:hover, .L4C_button *:hover {
        text-decoration: underline !important; 
    }


     
    
    /*User settings*/
    .L4C_button[style*="text-align: center;"] {
        /* Selecting via text-align so user can use WYSIWYG center alignment button*/
        justify-content: space-around;
        margin:auto;
    }

    
    /*Mobile*/
    @media screen and (max-width: 600px) {
        .L4C_button{
            max-width:100%;
            min-width:100%;
            text-align: center;
            justify-content: center;
        }
    }
    
/*------------TO DEPRECIATE--------------*/
    
    /* Blue button */
    .blue-button, .blue-button-submit {
            background-color: #06c; /* JCU blue */
            border-radius: 2px;
            box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
            border: none;
            color: white;
            padding: 15px 32px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
        }
    a:hover.blue-button-submit {
            background-color: #D3D3D3; /* JCU Grey */
            border-radius: 2px;
            box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
            border: none;
            color: #696969;
}


.actionbutton {
    background-color: #07c;
    color:#eee;
    text-align: center;
    padding: .6em .1em .6em .1em;
    transition: all 0.5s;
    cursor: pointer;
    margin: 0em 0em 0em 0em;
  }
  
  .actionbutton span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    margin: .8em;
  }
  
  .actionbutton span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .actionbutton:hover{
      background-color:#0059b3;
   }
  
  .actionbutton:hover span {
    padding-right: 25px;
  }
  
  .actionbutton:hover span:after {
    opacity: 1;
    right: 0;
  }
/*insidebreadcrumbs 2147754*/
.insidebreadcrumbs {
    display: none;
    position: static;
    margin: 2rem 0 0 0;
}

.insidebreadcrumbs__wrapper {
    height: 48px;
    padding: 10px 0;
}
.insidebody .insidebreadcrumbs__wrapper a {
    text-transform: none;
    height: 35px;
    font-weight: normal;
    font-size: 13.4px;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.8;
    letter-spacing: normal;
    color: #4b4b4b;
}

.insidebody .insidebreadcrumbs__wrapper a, .insidebody .insidebreadcrumbs__wrapper a:hover {
    /*text-decoration: underline;*/
}

.insidebreadcrumbs__divider:after {
    content: ">";
    color: #a8a8a8;
    padding: 0 0.5em;
}


 @media (min-width: 43.75em) {
    .insidebreadcrumbs {
          display: block;
          margin: 0 0 1em;
          height: auto;
          clear: both;
          float: left;
          background: #e7e7e7;
          width: 100%;
    }
    
    .insidebreadcrumbs.hide-breadcrumbs {
        display: none;
    }
    
    .insidebreadcrumbs__wrapper {
        margin: 0;
        padding: 0 0.5em;
        font-size: 0.8em;
        /*text-transform: uppercase; JCUPW-32 */
        line-height: 2.6em;
    }
    
    .insidebreadcrumbs__home-link {
        text-decoration: none;
        color: #0066CC;
    }
    
    .insidebreadcrumbs__path-link {
        text-decoration: none;
        color: #0066CC;
    }
    
    .insidebreadcrumbs__current {
        color: #2d2d2d;
    }
    
    .insidebreadcrumbs__divider:after {
        content: "|";
    }
}
@media (min-width: 60em) {
    .insidebreadcrumbs {
        max-width: 63.425em;
        margin: 0 auto;
        float: none;
    }
}

@media (min-width: 60em) and (max-width: 68em) {
    .insidebreadcrumbs__wrapper {
        margin: 0 3%;
    }
}
/*Homepage Redev CSS*/
.homepage-map-container .slick-slide img {
  width: 100%;
}
@media (max-width: 576px) { 
    .tile-hide-mobile{
        display:none!important;
        visibility: hidden!important;
        width: 0!important;
    }
}
.tile-order-one{
    order: 1;
}
.tile-order-two{
    order: 2;
}
.tile-order-three{
    order: 3;
}
/* Homepage News Cards */
.card-template__wrapper{
  background-color: #F2F2F2;
  padding: 20px 0;
}
.card-template{
  position: relative;
  display: -ms-flexbox;
  color: black;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
a.card-template:hover .card-template-title{
  text-decoration: underline;
}
a.card-template:hover{
  filter: brightness(75%);
  -webkit-filter: brightness(75%);
  -moz-filter: brightness(75%);
  -o-filter: brightness(75%);
  -ms-filter: brightness(75%);
}

.card-template > hr {
  margin-right: 0;
  margin-left: 0;
}

.card-template> .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card-template> .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-template-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
  background-color: #DFDFDF;
}

.card-template-title {
  margin-bottom: 0.75rem;
  /*font-size: ;*/
  font-weight: bold;
  margin-top: 0;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-template-body .card-text{
  font-size: 0.9rem;
}
.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-template-footer {
  padding: 0.75rem 1.25rem;
  background-color: #DFDFDF;
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
}

.card-template-img-top {
  width: 100%;
  height: 380px;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-deck .card-template{
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .card-deck {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card-template{
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 5px;
    margin-bottom: 0;
    margin-left: 5px;
  }
  .card-deck.card-template:first-child {
    margin-left: 0;
  }
  .card-deck.card-template:last-child {
    margin-right: 0;
  }
}

.card-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-group > .card-template{
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .card-group > .card-template{
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card-template+ .card-template{
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-template-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-template-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card-template{
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card-template{
    display: inline-block;
    width: 100%;
  }
}

@media (max-width: 578px) {
    .card-template-img-top {
      height: 230px;
    }
}
/*END Homepage News Cards*/

/* Status Template */
.status-template__wrapper{
  text-align: center;
  padding: 55px 0;
  position: relative;
  background-size: cover;
  background-position: center 90%;
  color: white;
}

.status-template__wrapper.bg-is-light{
  color: white;
}
.status-template__wrapper.bg-is-light:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.4);
  /* opacity: .6; */
}
.status-template__inner{
  
}
.status-template--title{
  position: relative;
  font-size: 35px;
  font-weight: normal;
  /* letter-spacing: 1.2px; */
  margin: 0 0 15px 0;
  font-weight: 100;
}
.status-template--row{
  
}
.status-template--tile{
  
}
.status-template--tile-header{
  font-size: 50px;
  margin: 0;
}
.status-template--tile-text{
  font-size: 17px;
  font-weight: 400;
  margin: 10px 0;
}
.status-template--tile-subtext{
  font-size:15px;
  font-weight: lighter;
  margin: 10px 0;
}

.status-template__wrapper a.status-usp-link * {
    color: #fff;
}

.status-template__wrapper a.status-usp-link:hover * {
    color: #77aee4;
}
.status-template__wrapper a.status-usp-link:hover .status-template--tile-text, .status-template__wrapper a.status-usp-link:hover .status-template--tile-subtext {
    text-decoration: underline;
}

@media screen and (min-width: 1200px){
  .status-template__inner.container{
    max-width: 1240px;
  }
/*  .status-template--tile.col-md {
    padding-left: 85px;
    padding-right: 85px;
  } */
}
@media screen and (max-width: 768px){
  .status-template--title {
    font-size: 20px;
    margin: 0 0 25px;
  }
  .status-template--tile-text {
    font-size: 15px;
  }
  .status-template--tile.col-md {
    margin-bottom: 10px;
  }
}
/* Status Template */
/*Banner Styles*/
.slick-video-slide{
  overflow: hidden;
}
.header__banner-video{
  width: 100%;
  min-height:100%;
}


.header__banner-video{
  /*position:absolute;
  top: -99999px;
  bottom: -99999px;
  left: -99999px;
  right: -99999px;
  margin: auto;
  height: auto;
  min-height:100%;
  min-width:50%;*/
}
.slick-slide video {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.banner-video__container-fallback{
  display: flex!important;
}
@media screen and (min-width: 1200px){
  .banner-video__container{
    display: flex!important;
  }
  .header__banner-video, .header__banner-video[poster]{
    position: absolute;
    /*top: -100px;*/
  }
  .banner-video__container-fallback{
    display: none!important;
  }
  
}

/* PLay/Pause BTN  */
.header__banner-play-pause {
  background-color: rgba(255, 255, 255, .6);
  /*background-image: url('https://www.jcu.edu.au/__data/assets/file/0007/919663/pause-but-blk-25px.svg');  background-image:./?a=919663 */
  background-image: url('https://www.jcu.edu.au/__data/assets/file/0005/998771/pause-noborder-25px.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30px 30px;
    /* border: solid 2px #000; */
    border-radius: 50%;
    position: absolute;
    width: 28px;
    height: 28px;
    z-index: 100;
    right: 50px;
    bottom: 50px;
  /* top: 15px; */
  /* right: 50%; */
  /* opacity: 0.5; */
  cursor: pointer;
  transition: opacity 0.2s;
}
.header__banner-play-pause:hover {
  opacity: 1;
}
.header__banner-play-pause.header__banner-play-paused {
  /* background-image: url('https://www.jcu.edu.au/__data/assets/file/0006/919662/play-but-blk-25px.svg');  background-image:919662 */
  background-image: url('https://www.jcu.edu.au/__data/assets/file/0012/1001172/play-noborder-25px.svg');
}

/*----- JCUPW-49 ------*/
#homepage-carousel .header__banner-play-pause {
  right: 120px;
    bottom: 180px; }
/* mobile specific */
@media screen and (max-width: 768px) {
    #homepage-carousel .header__banner-play-pause {
        right: 20px;
        bottom: 135px;
    }
}

/*END Banner Styles*/

/*Homepage Find a course Template styles*/
.homepage--findacourse-section{
  background-color: #C8C8C8;
}
.homepage--findacourse-group{
  padding: 45px 0;
  max-width: 660px;
  margin: auto;
}
.homepage--findacourse-group form{
  display: flex;
  align-items: center;
}
.homepage--findacourse-group form .form-input{
  width: 100%;
}
.homepage--findacourse-group form .form-input .searchresults__text input{
  margin-bottom: 0;
}
.homepage--findacourse-group .searchresults__textinput{
  width: 100%;
  margin-bottom: 0;
  border: none;
}
.homepage--findacourse-group .searchresults__submit-button{
  background-color: #5AA5E0;
}
@media screen and (max-width: 768px){
  .homepage--findacourse-section{
    display: none!important;
  }
}
/* END Homepage Find a course Template styles*/
/* START Homepage Course Listing styles*/
.homepage--course-listing-template{
  background-color: #F6F6F6;
  padding: 30px 0 50px 0;
}
.homepage--course-listing-template .homepage--course-listing-template-list {
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
  margin:0;
  padding: 0;
}
.homepage--course-listing-template-list .homepage--course-listing-template-list__item a{ 
    color: black;
    width: 100%;
    height: 100%;
    display: block;
    padding: 15px 0 8px 8px;
}
.homepage--course-listing-template-list .homepage--course-listing-template-list__item{
  width: calc(33% - 5px);
  /*     margin-right: 35px; */
  list-style:none;
  /*padding: 15px 0 8px 8px;*/
  border-bottom: 1px solid #C7C7C7;
}
li.homepage--course-listing-template-list__item:hover {
  border-color: #0778CC;
}
li.homepage--course-listing-template-list__item:hover a{
  color: #0778CC;
}
.homepage--course-listing-template-list__item.browse-all-btn{
  display:flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0;
  border-bottom: none;
}
.homepage--course-listing-template-list__item.browse-all-btn a {
    display: flex;
    justify-content: flex-end;
}
.browse-all-btn a{
  display: flex;
  position: relative;
  padding-top: 15px;
  color: black;
}
.browse-all-btn svg{
  margin-left: 15px;
  display: inline-block;
    margin-bottom: -6px;
}
@media screen and (max-width: 576px){
  .homepage--course-listing-template-list__item{
    display:none;
  }
  .homepage--course-listing-template{
    padding: 30px;
  }
  .homepage--course-listing-template-list__item.browse-all-btn{
    display:flex;
    width: 100%;
    justify-content:center;
  }
  .homepage--course-listing-template-list__item.browse-all-btn a{
    padding: 15px 12px;
    text-align: center;
    justify-content: center !important;
  }
}
/* END Homepage Course Listing styles*/
.homepage-content-container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%
}

@media (min-width: 576px) {
  .homepage-content-container {
      max-width:540px
  }
}

@media (min-width: 768px) {
  .homepage-content-container {
      max-width:720px
  }
}

@media (min-width: 992px) {
  .homepage-content-container {
      max-width:960px
  }
}

@media (min-width: 1200px) {
  .homepage-content-container {
      max-width:1050px
  }
}
/* START CTA Buttons Template Styles */
.homepage--cta-buttons-template {
 padding: 40px 0;
}

.homepage-content-container {

}
.homepage--cta-buttons-template .btn.btn-primary {
    border: solid 1.5px #0066CC; /*  #0393D5 */
    padding: 10px 17px;
    color: #0066CC; /*  #0393D5 */
    text-align: center;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.homepage--cta-buttons-template .btn.btn-primary:hover {
    color: white;
    background-color: #0066CC;
    transition: all ease-in 0.105s;
}
.homepage--cta-buttons-template .btn.btn-primary:first-child {
    margin-left: 0;
}
.homepage--cta-buttons-template .btn.btn-primary:last-child {
    margin-right: 0;
}
@media screen and (max-width: 766.97px){
  .homepage--cta-buttons-template .btn.btn-primary {
    margin: 15px 0;
  }
}
/* END CTA Buttons Template Styles */
/* START Events Template Styles */
section.events-template__wrapper {
  padding: 30px 0;
}

ul.events-template--list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.events-template--col.col-md {
  padding: 0;
  margin-right: 15px;
}
.events-template--col.col-md:first-child {
  margin-right: 35px;
}

.events-template--row.row {
  padding: .75rem;
}

li.events-template--list-item {
  padding: 10px 0;
  border-bottom: solid 1px #CACACA;
  
}
span.events-template--date {
  display: inline-block; 
  font-size: 15px;
  color: #0066CC; 
  text-align: center;
  min-width: 110px;
  margin-right: 10px;
  padding: 7px 15px;
  border: solid 1px #0066CC;
}
li.events-template--list-item a{
  color: black;
}
li.events-template--list-item a:hover{
  text-decoration: underline;
  color: #107BC9;
}
li.events-template--list-item a:hover span.events-template--date {
  background-color: #0066CC;  /* #0594D5 */
  color: white;
}

li.events-template--list-item.browse-all-btn a{
  padding: 7px;
}
li.events-template--list-item.browse-all-btn{
  display: flex;
  justify-content: flex-end;
  align-content: center;
  border-bottom: none;
}
li.events-template--list-item.browse-all-btn a {
    justify-content: flex-end;
}

@media screen and (max-width: 768px) {
    li.events-template--list-item {
        font-size: .85rem;
        position: relative;
        display: block;
        min-height: 52px;
    }
    
    li.events-template--list-item a {
        color: #000;
        display: block;
        width: 100%;
        height: 100%;
        padding: 6px 0;
        position: absolute;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
    }
    
    span.events-template--date {
        padding: 7px 5px;
        min-width: 94px;
        margin-right: 5px;
    }
    
}


h3.events-template--tile-header {
  color:#006AC7;
  font-weight: 400;
  font-size: 29px;
  margin: 7px 0;
}
@media screen and (max-width:768px){
  .events-template--col.col-md:first-child {
      margin-right: 0;
  }   
}
/* END Events Template Styles */
/*
 *
 * Global fixes to site wide layout issues
 *
 */ 

/* SDQLD-4964 */

/*
 * Mobile layout
 */
.insidebody .insidebreadcrumbs {
    float: none;
    display: none;
}
.main-column .left-nav__level-2-item > .icon-chevron-down.secondary-navigation__icon:before {
    top: 12px;
}
.main-column .secondary-navigation.active .left-nav__level-2-item > .icon-chevron-down.secondary-navigation__icon:before {
    top: 20px;
}
.reflow__secondarynavmove__tablet.reflow-no-children .secondarynav {
    margin-top: 0;
}

/*html, body {*/
/*  overflow-x: hidden;*/
/*}*/
body {
  position: relative;
}
    
    
/*
 * Tablet layout
 */
@media screen and (min-width: 768px) {
    .insidebody .insidebreadcrumbs {
        display: block;
    }
    body .main-column .insidebody__content {
        padding: 0;
    }
    body .main-column .insidebody__content .insidebody__contentmain.has-left-nav {
        margin: 2em 4% 0;
    }
}

/*
 * Desktop layout
 */
 @media screen and (min-width: 1024px) {
    .insidebodywrapper{
        min-height:60vh;
    } 
    body .main-column .insidebody__content .insidebody__contentmain.has-left-nav {
        margin: 0 0 0 3%;
    }

    /*html, body {*/
    /*    overflow-x: auto;*/
    /*}*/
    body {
        position: relative
    }
}
@media screen and (min-width: 1200px) {


}


/* SDQLD-4964 */


/* Accordion Thick link when using multiple accordions fix SS-110*/
section.accordion-section:nth-of-type(n+2).top-no-margin .accordion-group {
    border-top: 0;
}

/* Accessibility Text Contrast Fixes */
main p.abstract a {
    font-weight: bold;
    text-decoration: underline;

}

main .insidebody__content .newslandinglisting .newslandinglisting__item {
    border-color: #f0f0f0;
    background: #f0f0f0;
}

main .insidebody__content .newslandinglisting .newslandinglisting__item .newslandinglisting__item-title {
    padding-bottom: .5em;
}

main .insidebody__content .newslandinglisting .newslandinglisting__item .newslandinglisting__item-title .newslandinglisting__item-link  {
    font-size: 1.5em;
}
/* Accessibility Text Contrast Fixes END */

/* JP - Grey Div*/
div.greydiv {
    background-color:#EEEEEE;
    padding:.5em .5em .5em .5em;
}
/* JP - profile list with image*/
ul.profile {
    list-style-position: inside
}
/* JP - profile list no image*/
ul.profile-no-image {
    list-style-position: inside;
    margin-left:-1em
}

/* JP - Image widths*/
img.5050 {
    width:50%;
    height:auto;
}
img.2575 {
    width:25%;
    height:auto;
}


/* JP - Image Body 25%  */
img.slipprofileimage {
    width:25%;
    margin: 0em 1em 1em 1em;
    float: left;
} 
@media (max-width: 460px){
    img.slipprofileimage { 
        margin: 0em 0em 1em 0em;
        width: 100%; 
        height:auto; 
        display:inline-block !important;
    }
}

/* JP - Image Body 50%  */
img.slipimage {
    width:50%;
} 
@media (max-width: 460px){
    img.slipimage { 
        width: 100%; 
        height:auto; 
        display:inline-block !important;
    }
}
/* JP - Events YouTube center align*/
div.center-align {
    text-align:center;
}
/*JP - Events YouTube Mobile Responsive*/
@media (max-width: 460px){
    div.center-align iframe { 
        width: 100%; 
        height:auto; 
        display:inline-block !important;
    }
}




/* Responsive HTML5 Raw video */
/* for the outer div */
.video-container-raw {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 35px;
    height: 0;
    overflow: hidden;
}

/* for the <video> tag found inside the div */
.video-container-raw video {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

.oldh1 {
    color: white;
    background-color: rgba(0, 0, 0, 0.72);
    display: inline-block;
    font-size: 1.5625rem;
    padding: 0.4375rem 0.4375rem;
    margin: 0 4% 0 4%;
    }   
    
/* Image Styles */
.wysiwyg-img-center {
    width:100%;
    height:auto;
    display:block;
    margin:0 auto;
    }
    
.wysiwyg-img-left {
    width:100%;
    height:auto;
    display:block;
    }
    
.wysiwyg-profile-img-left {
    width:100%;
    height:auto;
    display:block;
}
    
@media only screen and (min-width: 768px) {
    .wysiwyg-img-center {
        width:80%;
        }
    
    .wysiwyg-img-left {
        width:80%;
        } 
        
    .wysiwyg-profile-img-left {
        width:30%;
    }
}

/*Slip hero Images*/
.slipheroimage {
    width:100%;
    height:auto;
    display:block;
    margin:0 auto;
    }
    
/*Description list*/
dl {
  display: block;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 0;
  margin-right: 0;
}

dt {
    margin-top:.8rem;
    font-weight:600;
}

dd {
    margin-left:3rem;
}

/* Hanging indent for references */

p.hang_indent {
    padding-left: 1.9rem ;
    text-indent: -1.9rem ;
    
}

/*Workshop listing items*/
.cct-summary-cards .summarycard-items {
        padding:0.1875em 0 0.1875em 0 !important;
    } 
    
    
/******** Figure margins *******/
figure.top-sm-margin {
    margin-top: .5rem;
}
figure.top-md-margin {
    margin-top: 1rem;
}
figure.top-lg-margin {
    margin-top: 1.5rem;
}
figure.top-xl-margin {
    margin-top: 2rem;
}

figure.bottom-sm-margin {
    margin-bottom: .5rem;
}
figure.bottom-md-margin {
    margin-bottom: 1rem;
}
figure.bottom-lg-margin {
    margin-bottom: 1.5rem;
}
figure.bottom-xl-margin {
    margin-bottom: 2rem;
}    


/* Homepage Slick Slider - Video */
@media screen and (min-width: 1200px) and (max-width: 1920px) {
    .homepage-carousel__wrapper.homepage-carousel .carousel__item.slick-slideshow__slide.no-mobile .header__banner-video { 
            height: -webkit-max-content; /* Chrome */
            width: -moz-available; /* Firefox */
    }
}
/* Homepage Slick Slider - Video --- END*/
/*GLOBAL*/
    .L4Cv2 a {
        position: relative;
    }
    .L4Cv2 a:active,.L4Cv2 a:hover  {
        text-decoration: underline !important;
    }
    .L4Cv2 .arrow {
        padding-left:1rem;
    }
    
    .L4Cv2 .arrow::before {
        border-right: 2px solid #06c;
        border-top: 2px solid #06c;
        content: "";
        height: 0.5rem;
        position: absolute;
        left: -3px;
        top: .5rem;
        transform: rotate(45deg);
        width: 0.5rem;
    }
    .L4Cv2 .extra-space {
        margin-top:1.75rem;
    }
    .L4Cv2 h2 {margin-bottom:1.25rem;}
    
    .L4Cv2 h3 a {font-weight:bold !important;}
    
    .L4Cv2 h2, .L4Cv2 h3, .L4Cv2 h4, .L4Cv2 h5 {
        margin-top:0rem;
        margin-bottom:1.5rem;
    }
    .L4Cv2 p:not(.panel *), .L4Cv2 ul {
        margin-top:0;
        margin-bottom:1rem;
    }
    
    .L4Cv2 .px-2 {padding-top:2rem; padding-bottom:2.25rem;}
    .L4Cv2 .w-100 {width:100%;}

/*GLOBAL - Margin*/
    .L4Cv2 .mt-0 {margin-top:0;}
    
/*GLOBAL - Border*/
    .L4Cv2 .no-border {
        border: 0 !important;
    }
    .L4Cv2 .border-bottom {
        border-bottom: 1px solid rgba(0,0,0,.125);
    }
    .L4Cv2 .border-thin {
        border: 1px solid rgba(0,0,0,.125);
        border-left: solid 5px #009681;
    }
    .L4Cv2 .border-bottom {
        border-bottom: 1px solid rgba(0,0,0,.125);
    }
    .L4Cv2 .line-x {border-top:solid 1px #000; border-bottom:solid 1px #000;}
    
/*FLEX*/
    .flex {display:flex;}
    .flex-gap {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        border: solid 1px black;
        flex-direction: row;
    }
    .flex-gap > div {
        background-color: grey;
        height: 4rem;
        flex-basis: 100%;
        flex: 1 1 auto;
    }
    
    .flex-item-span2 {
        flex: 2 !important; 
    }
    .flex-center {
        flex-wrap:wrap;
        align-content:center;
        justify-content:center;
        align-items:center;
    }
    .flex-column {flex-direction:column;}

    .flex-center-vert {
        align-items: center;
    }

/*GRID*/
    .grid h3 + p {
        margin-block-start: .5rem;
        margin-block-end: .5rem;

    }
    .grid h3 {
        /*font-size:1rem;*/
    }
  
    .grid a {
        margin-block-end: 1rem;
    }
    
    ul.grid {
        padding-left: 20px;
    }
    
    .grid a:hover {
        text-decoration: underline;
    }
    
    .grid-12 {
        display:grid;
        grid-template-columns:repeat(12, 1fr);
        grid-template-rows: auto;
        gap: 2rem;
    }   
     
    @media screen and (max-width: 600px) {
        .grid-12 {
            gap: 0px;
            grid-column-gap:0px;
            grid-row-gap:2rem;
        }
    }
    
    
    .grid-no_gap {gap:0rem;}
    .grid-gap-row {row-gap: 1rem;}
    
    
    
    
    .span-12 {grid-column: span 12}
    .span-10 {grid-column: span 10;}
    .span-9  {grid-column: span 9;}
    .span-8 {grid-column: span 8;}
    .span-6 {grid-column: span 6;}
    .span-4 {grid-column: span 4;}
    .span-3 {grid-column: span 3;}
    .span-2 {grid-column: span 2;}
    .push-2 {grid-column: span 2;}
    .push-3 {grid-column: span 3;}


/*GRID IMAGE*/

    .grid-image {
        line-height:0;
    }
    .grid-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .grid-no_gap {
        gap:0rem;
    }
    .fixed-height {
        height:150px;
    }
    
    .aspect-16-9 {
        aspect-ratio:16 / 9;
    }
    .aspect-4-3 {
        aspect-ratio:4 / 3;
    }
    .aspect-3-4 {
    aspect-ratio:3 / 4;
    }
    .aspect-3-2 {
        aspect-ratio:3 / 2;
    }
    .aspect-1-1 {
        aspect-ratio:1 / 1;
    }
    
/*GRID - MOBILE*/
    @media screen and (max-width: 600px) {
        .span-10, .span-9, .span-8, .span-6, .span-4, .span-3, .span-2, .push-2, .push-3 {
            grid-column: span 12;
        }
        .display-none {display:none;}
        .grid-image img, .aspect-1-1, .aspect-3-2, .aspect-4-3 {
            aspect-ratio:16 / 9 !important;
        }
    }
    
    
/*TEXT*/
    ul.no-indent {
        padding-left: 20px;
    }
    
    /*ul.no-indent li:last-of-type {*/
    /*    padding-bottom:1rem;*/
    /*}*/
    .fw-b {
        font-weight:bold;
    }
    .pb-2 {
        padding-bottom:2rem !important;
    }
    .mb-2 {
        margin-bottom: 2rem !important;
    }
    .p-1 {
        padding:1rem !important;
    }
    .txt-center {text-align: center;}
    .txt-white {color: white !important;}
    
    
/*BOX IMPORTANT*/
    .box-important {
        padding:2rem 1rem;
        margin-bottom:2rem;
    }
    
    .box-important_border {
            border:solid 1px #06c;
    }
    .box-important_noborder {
        border:0;
    }
    .box-important > h3, .box-important > h2 {margin-top:0;}
    .box-important p:last-of-type {margin-bottom: 0;}
    
    /*LINKS BOXES*/
    .links-boxes h3 {
        margin-left:1rem;
    }


/*LINKS MORE*/
    .links-more > div {
        border-bottom: 1px solid #53565A;
        /*border-bottom: 1px solid #000;*/
    }
    .links-more h3 {
        margin-top:0; 
        margin-bottom:1rem;
        /*margin-bottom:.5rem;*/
    }
    .links-more a {
        display:flex;
        justify-content:space-between;
        flex-wrap:no-wrap;
    }
    .links-more p {
        color:#000; 
        margin-bottom:1.15rem;
    }
    .links-more a:hover p, .links-more a:active p {
        text-decoration: none !important;
    }
    
    
    /*.links-more a:hover .arrow-box, .links-more a:active .arrow-box{*/
    /*    background-color:#06c;*/
    /*}*/
    /* .links-more a:hover .arrow::before, .links-more a:active .arrow::before{*/
    /*    border-right: 2px solid #FFF;*/
    /*    border-top: 2px solid #FFF;*/
    /*}*/
    
    .links-more .pr-full {padding-right: 1rem;}
    
    .links-more .mb-half {margin-bottom:.5rem !important;}

    .links-more .mt-half {margin-top:.5rem !important;}

    .links-more .lrg-2 {font-size:1.25rem;}

    .arrow-box {
        border: none;
        /*width: 20px;*/
        /*height: 20px;*/
        position:relative;
        display:flex;
        justify-content:center;
        align-items:center;
    }
 
    .arrow {
        width:20px;
        height:20px;
    }
    
    .arrow::before {
        border-right: 2px solid #06c;
        border-top: 2px solid #06c;
        content: "";
        height: 0.5rem;
        position: absolute;
        left: 10%;
        transform: rotate(45deg);
        width: 0.5rem;
    }
    
 
/*QUOTE*/
    .quote {position:relative;}
    .quote > div:first-of-type {
        padding:0 0 0 3.5rem;
        border-left: solid 5px #008b4c;
    }

    .quote .quote-mark:before {
        content: "\201C";
        width: 40px;
        height: 40px;
        font-family: Playfair Display;
        font-size: 80px;
        line-height:80%;
        font-weight: bold;
        color: #008b4c;
        position: absolute;
        left: .85rem;
        top: 0;
        margin-top: 0rem;
    }


    .quote p:last-of-type {margin-bottom:0;}
    .quote .info-block {margin-top:1.5rem;}
    .quote .info-block p.position {
        font-size:.8rem;
        margin-bottom:0;
    } 
    .quote .info-block p.name {
        font-weight:bold;
        margin-bottom:0;
        margin-top:0;
    }
    blockquote.quote {
        border-left: 0 !important; 
        margin-left: 0 !important; 
        padding-left:0 !important;
    }
    
/*BUTTONS*/
    .L4Cv2 .btn-block,.L4Cv2 .btn-cta-large{
        font-weight:600;
    }


    .L4Cv2 .btn-block {
        /*padding: 1rem;*/
        background-color:#06c;
        color:#fff;
        display:inline-block;
        padding: .75rem 1rem !important;
        margin-right:1rem;
        margin-bottom:1rem;
    }
    
    .L4Cv2 .btn-block:hover,.L4Cv2 .btn-cta-large:hover {
        box-shadow:0 0.125rem 0.25rem rgba(0,0,0,.2) !important;
    }
    
    .L4Cv2 .btn-block.white {
         background-color:#fff;
         border: solid 1px #06c;
         color:#06c;
    }

    .L4Cv2 .btn-block.dark {
        background-color:#00478E;
        color:#fff;
        border: solid 1px #fff;
    }

    .L4Cv2 p.button {
        margin-top:1.5rem;
        margin-bottom:2.5rem;
    }
    
    .L4Cv2 .btn-cta-large {
        padding: 1.5rem 1rem;
        background-color:#06c;
        color:#fff;
        display:flex;
        justify-content: center;
        align-items: center;
        max-width: 50%;
        text-align:center;
        text-decoration: none;
        font-size: 1.2rem;
        flex: 1;
    }
    
    @media screen and (max-width: 600px) {
        .L4Cv2 .btn-block {
            width: 100%;
            text-align:center;
        }
        .L4Cv2 .btn-cta-large {
            width: 100%;
            /*max-width: 100%;*/
            min-width: 100%;
        }
    }
    
/*Button Themed*/
    .L4Cv2 .bg-blue-mid *:not(.button_content *, .btn-block){
        color: white;
    }
    .L4Cv2 .bg-blue-mid .btn-cta-large {
        background-color: #fff;
        border: solid 1px #06c;
        color: #06c;
    }

/*CARD STYLEA*/
    .card-styleA {
        border: solid .5px #000;
        display:flex;
        border: 1px solid rgba(0,0,0,.125);
        min-height: 170px;
    }
    .card-styleA .grid-image {
        width:40%;
    }
    
    .card-styleA .text-wrapper {
        padding: 1rem;
        width:60%;
        display:flex;
        flex-direction:column;
        justify-content:space-between;
    }
    .card-styleA p, .card-styleA h3 {color:#000;} 
        .card-styleA a:hover > p, .card-styleA a:hover > h3 {text-decoration:none !important;} 

    .card-styleA:hover{
        box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075) !important;

    }
    .card-styleA p.link {color:#06c !important;}

    .card-styleA a:hover p.link {text-decoration: underline !important;}
    
    

/*Card A*/
    .spacing-1 {margin-bottom:2.5rem; margin-top:2rem;}
   
    .card-A .text-wrapper {
        padding:1rem;
    }
    .card-A p:last-of-type {
        margin-bottom: 0rem;
    }
    .card-A a p {
        font-weight:400;
        color:#000;
    }
    .card-A a:hover {
        text-decoration:none !important;
    }
    .card-A a:hover h3{
        text-decoration:underline;
    }
    .card-A a.btn-block {
        margin-top:1rem;
    }
    .card-A.flex {
        display:flex;
    }
    .card-A .text-wrapper.flex {
        display:flex;
        flex-wrap:wrap;
        align-content:space-between;
    }

/*Card text*/
    .card-text.line-left {
        padding: 0 1rem .25rem;
    }
     .card-text p:last-of-type {
        margin-bottom: 0rem;
    }
      .card-text h3 {
        margin-top:0;
    }
    .card-text.border-thin {
        padding:1rem;
    }
    .feature-stat {
        font-size:2rem;
    }


/*SPECIAL CALL OUT BOX*/
    .special-call_out {margin-bottom:2.5rem; }

    .special-call_out .text-wrapper {
        margin:1rem;
        display:flex;
        flex-direction:column;
        justify-content:center ; 
    }
    .grid-image-call_out {
        aspect-ratio: 1 / 1;
        line-height: 0;
    }
    .grid-image-call_out img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         object-position: center;
    }
       .special-call_out h2 {
        margin-top:0;
    }
    .special-call_out a {
        width:fit-content;
    }
        .special-call_out p:first-of-type {
        margin-top:0;
    }
    
    
/*CTA BOXES*/
    .cta-box {
        padding: 1.5rem 1rem;
        margin-bottom:2.5rem; 
    }
    .cta-box.bg-white {
        border: solid 1px #000;
    }
    .cta-box p {margin-bottom:0;}
    
/*BOXES COLORED*/
    .box-col p {margin-top:.5rem; margin-bottom:.5rem;}
    .box-col h3.lrg {
        font-size:1.5em;
        margin-top:0;
        margin-bottom:0;
    }
    .box-col h3 {
        margin-top:0;
        margin-bottom:0;
    }
   
    .box-col .hover-light {
        background-color:rgba(0,0,0,0);
    }
    .box-col a:hover >.hover-light {
        background-color:rgba(0,0,0,.2);
    }
    .box-col .hover-dark {
        background-color:rgba(0,0,0,.3);
    }
    .box-col a:hover > .hover-dark {
        background-color:rgba(0,0,0,.5);
    }
    .box-col .bg-white {
        border:solid 1px black;
    }
    .box-col .bg-white a {
        color: #000 !important;
    }
    .box-col .txt-white p {
        color: #fff !important;
    }
    .bg-img {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
/*EXTRAS*/
    .line-left {
        border-left: solid 5px #009681;;
    }
    .shadow-small {
        box-shadow:0 0.125rem 0.25rem rgba(0,0,0,.075) !important;
    }

    /*.hover:hover h3 {*/
    /*    text-decoration: underline;*/
    /*}*/
    
    /*.hover:hover p, a:hover {*/
    /*    text-decoration: none !important;*/
    /*}*/





/*FEATURE BOX*/

    .feature-box {
        width:100%;
        display:flex;
        align-items:stretch;
        flex-wrap:wrap;
        padding:1rem;
    
    }
    
    .feature-box .text, .feature-box .image  {
        width:50%;
    }
    .feature-box .text {
        padding-right: 1rem; 
        display:flex;
        flex-direction:column;
        justify-content:center;
    }
    .feature-box .grid-image {
        min-height: 400px;
        height:100%;
    }
    
    .feature-box.bg-blue-mid p, .feature-box.bg-blue-mid h2, .feature-box.bg-blue-mid h3 {
        color: white !important;
    }
    
    
    @media screen and (max-width: 600px) {
        .feature-box {
            flex-direction: column-reverse;
        }
        .feature-box .grid-image {
            aspect-ratio:16 / 9 !important;
            min-height:auto !important;
            margin-bottom:1rem;
        }
        .feature-box .text, .feature-box .image  {
            width:100%;
        }
        .feature-box .text {padding-right:0 !important;}
    }
        

/*IMAGE TEXT CARD*/
    .image-text-card:link, .image-text-card:visited {
        color:#000;
    }
    .image-text-card .grid-image {
        margin-bottom:1.5rem;
    }
    .fc-black {color:#000;}
    .fc-blue {color: #06c;}
    .no-hover {
        color: #000 !important;
        text-decoration: none !important;
    }
    a.image-text-card:hover {
            text-decoration: none !important;
    }
    a.image-text-card p {
        font-weight: 500;
    }
    a.image-text-card:hover h3, 
    a.image-text-card:hover h2, 
    a.image-text-card:hover p.hover {
        text-decoration: underline !important;
    }
    
    .L4Cv2 .padding-default{
        padding-bottom:2.5rem;
        
    }
    .L4Cv2 .margin-default{
        margin-bottom:2.5rem
    }

    .call-out-style_centered {
        width: 100%;
        text-align: center;
    }
    
    
/*Boiler plate*/
    .cct-boiler-padding-bottom{
        padding-bottom:2.5rem;
        
    }
    .cct-boiler-padding-top{
        padding-top:2.5rem;
        
    }
    .cct-boiler-margin-bottom{
        margin-bottom:2.5rem
    }
    .cct-boiler-margin-top{
        margin-top:2.5rem;
        
    }
    .cct-boiler-border-bottom{
        margin-bottom:2.5rem;
        border-bottom: 1px solid rgba(0,0,0,.125);
    }
    
    
/* New style mods with existing items     */

    h2,h3,h4,h5,h5,h6,p,.tile-text-section, ul, hr {
        margin-top:0 !important;
        margin-bottom:1.5rem;
    }
    
    .uber-accordion__heading,.tile-text-section > .columns:last-child,.tile-text-section > .columns  {margin:0 !important;}
    table { margin-bottom:1.5rem !important;
    }
    
    /*.tile-text-section,.tile-text-section > .columns, .tile-text-section > .column  {padding: 0!important;}*/
    
    /*.accordion.active + .panel {padding-top:1rem !important;}*/
    
    .insidebreadcrumbs p {margin-bottom:0 !important;}    

/*Typography - Headings*/
/* Typography - List Styles 2147571*/
/* Ordered List styling */
ol.lower-alpha-style {list-style-type: lower-alpha-curve;}
ol.lower-roman-style {list-style-type: lower-roman;}
ol.no-style {list-style-type: none;}

@counter-style lower-alpha {
  system: alphabetic;
  symbols: a b c d e f g h i j k l m n o p q r s t u v w x y z;
  suffix: ". "
}
@counter-style lower-alpha-curve {
  system: extends lower-alpha;
  suffix: ") "
}

ol li {padding-top: 0.75em;}
ol li:first-child {padding-top: 0;}

ol.super-list {counter-reset: list;}  
ol.super-list li {display:block;} /* hide original list counter */
ol.super-list > li:first-child {counter-reset: item;} /* reset counter */
ol.super-list > li {counter-increment: item; position: relative;} /* increment counter */

/* I have added in the fake 1. prefix */
ol.super-list > li:before {content:"1." counters(item, ".") ; position: absolute; margin-right: 100%; right: 10px;} /* print counter */



/**  * version: 0.0.2
 * file:    main.css
 * author:  Squiz Australia

 * Table of Contents
 *
 * - Reset
 * - Utilities
 * - General
 * - Modules
 *    accordions
 *    carousel
 *    courses
 *    footer
 *    globalheader
 *    homepagebox
 *    homepagecourses
 *    insidebackground
 *    insidebody
 *    insidebreadcrumbs
 *    megamenu
 *    secondarynav
 *    tables
 *    tiles
 *    toolbarmenu
 *    accordion (0.0.6)
 *    magnific-popup (0.1.0)
 *    responsive-tables (0.0.1)
 *    skip-links (0.1.0)
 *    slick (0.0.1)
 *    spritesheet (0.1.2)
 */
 /*.martin {*/
 /*    color:#692;*/
 /*}*/
  
  #accordion hr, .accordion hr{
      border-color: #ddd;
      color: #ddd;
      background: #ddd;
  
  
  .sq-form-question-answer {
      margin-top: .3em;
      
  }
  
  
  blockquote {
      border-left: 10px #e7e7e7 solid;
      margin-left: .5em;
      padding-left: 1em;
  }
  
  #accordion blockquote {
           border-left: 10px #ccc solid;
      }
 
  ol li {
      margin-bottom: .6em;
  }
   ol {
    list-style:decimal;
    }
  
  
  ol ol{
      list-style:lower-latin;
  }
  
   ol ol ol{
      list-style:lower-roman;
  }
  
  
   .action_btn {
      color: rgb(230, 230, 230);
      font-size: 16px;
      padding: 5px 15px;
      text-shadow: 0px -1px 0px rgba(30, 30, 30, 0.8);
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      border-radius: 3px;
      background: rgb(0, 102, 204);
      background: -moz-linear-gradient(90deg, rgb(0, 102, 204) 30%, rgb(0, 102, 204) 73%);
      background: -webkit-linear-gradient(90deg, rgb(0, 102, 204) 30%, rgb(0, 102, 204) 73%);
      background: -o-linear-gradient(90deg, rgb(0, 102, 204) 30%, rgb(0, 102, 204) 73%);
      background: -ms-linear-gradient(90deg, rgb(0, 102, 204) 30%, rgb(0, 102, 204) 73%);
      background: linear-gradient(0deg, rgb(0, 102, 204) 30%, rgb(0, 102, 204) 73%);
      -webkit-box-shadow: 0px 1px 1px rgba(50, 50, 50, 0.75);
      -moz-box-shadow:    0px 1px 1px rgba(50, 50, 50, 0.75);
      box-shadow:         0px 1px 1px rgba(50, 50, 50, 0.75);
  }
  
  .action_btn:hover  {
      color: rgb(230, 230, 230);
      font-size: 16px;
      padding: 5px 15px;
      text-shadow: 0px -1px 0px rgba(30, 30, 30, 0.8);
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      border-radius: 3px;
      background: rgb(0, 88, 183);
      background: -moz-linear-gradient(90deg, rgb(0, 88, 183) 30%, rgb(0, 89, 179) 73%);
      background: -webkit-linear-gradient(90deg, rgb(0, 88, 183) 30%, rgb(0, 89, 179) 73%);
      background: -o-linear-gradient(90deg, rgb(0, 88, 183) 30%, rgb(0, 89, 179) 73%);
      background: -ms-linear-gradient(90deg, rgb(0, 88, 183) 30%, rgb(0, 89, 179) 73%);
      background: linear-gradient(0deg, rgb(0, 88, 183) 30%, rgb(0, 89, 179) 73%);
      -webkit-box-shadow: 0px 1px 1px rgba(50, 50, 50, 0.75);
      -moz-box-shadow:    0px 1px 1px rgba(50, 50, 50, 0.75);
      box-shadow:         0px 1px 1px rgba(50, 50, 50, 0.75);
  }
  
  .clearboth {
      clear: both;
  }
  
  .timeline-Body.customisable-border {
      border-top: none !important;
  }
  
  .visuallyhidden, .sr-only, .responsive-table th, .skip-links__link {
      border: 0;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
  }
  
  .visuallyhidden.focusable:active, .focusable.sr-only:active, .visuallyhidden.focusable:focus, .focusable.sr-only:focus, .skip-links__link:focus, .responsive-table th {
      clip: auto;
      height: auto;
      margin: 0;
      overflow: visible;
      position: static;
      width: auto;
  }
  
  .box__heading-list, .popup__list, .skip-links__list, .slick-dots {
      margin: 0;
      padding: 0;
      list-style: none;
  }
  
  .clearfix, .accordion, .insidebodywrapper {
      *zoom: 1;
  }
  
  .clearfix:before, .accordion:before, .insidebodywrapper:before, .clearfix:after, .accordion:after, .insidebodywrapper:after {
      content: '';
      display: table;
      line-height: 0;
  }
  
  .clearfix:after, .accordion:after, .insidebodywrapper:after {
      clear: both;
  }
  
  /*
  --------------------
  Reset (normalize.css)
  --------------------
  */
  /*! normalize.css v2.1.0 | MIT License | git.io/normalize */
  article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
      display: block;
  }
  
  audio, canvas, video {
      display: inline-block;
  }
  
  audio:not([controls]) {
      display: none;
      height: 0;
  }
  

  html {
      font-family: sans-serif;
      -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
  }
  
  body {
      margin: 0;
      color: #000;
  }
  
  a:focus {
      outline: thin dotted;
  }
  
  a:active, a:hover {
      outline: 0;
  }
  
  h1 {
      font-size: 2em;
      margin: 0.67em 0;
  }
  
  abbr[title] {
      border-bottom: 1px dotted;
  }
  
  b, strong {
      font-weight: bold;
  }
  
  dfn {
      font-style: italic;
  }
  
  hr {
      -moz-box-sizing: content-box;
      box-sizing: content-box;
      height: 0;
      border-color: #f2f2f2;
      color: #f2f2f2;
      background: #f2f2f2; 
      border-style: solid;
  }
  
  mark {
      background: #ff0;
      color: #000;
  }
  
  code, kbd, pre, samp {
      font-family: monospace, serif;
      font-size: 1em;
  }
  
  pre {
      white-space: pre-wrap;
  }
  
  q {
      quotes: "\201C" "\201D" "\2018" "\2019";
  }
  
  small {
      font-size: 80%;
  }
  
  img {
      border: 0;
  }
  
  
  svg:not(:root) {
      overflow: hidden;
  }
  
  figure {
      margin: 0;
  }
  
  legend {
      border: 0;
      padding: 0;
  }
  
  button, input, select, textarea {
      font-family: inherit;
      font-size: 100%;
      margin: 0;
  }
  
  button, input {
      line-height: normal;
  }
  
  button, select {
      text-transform: none;
  }
  
  button, html input[type="button"], input[type="reset"], input[type="submit"] {
      -webkit-appearance: button;
      cursor: pointer;
  }
  
  button[disabled], html input[disabled] {
      cursor: default;
  }
  
  input[type="checkbox"], input[type="radio"] {
      box-sizing: border-box;
      padding: 0;
  }
  
  input[type="search"] {
      -webkit-appearance: textfield;
      -moz-box-sizing: content-box;
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
  }
  
  input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
      -webkit-appearance: none;
  }
  
  button::-moz-focus-inner, input::-moz-focus-inner {
      border: 0;
      padding: 0;
  }
  
  textarea {
      overflow: auto;
      vertical-align: top;
  }
  
  table {
      border-collapse: collapse;
      border-spacing: 0;
  }
  
  /*! normalize-opentype v0.2.0 | MIT License | kennethormandy.com/journal/normalize-opentype-css */
  ::selection {
      color: inherit;
      text-shadow: inherit;
  }
  
  html, body {
      font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "pnum" 1, "tnum" 0, "onum" 1, "lnum" 1, "zero" 1, "dlig" 0;
  }
  
  h1, h2, h3 {
      font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "pnum" 1, "tnum" 0, "onum" 1, "lnum" 1, "zero" 1, "dlig" 1;
  }
  
  abbr {
      text-transform: uppercase;
      font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "pnum" 1, "tnum" 0, "onum" 1, "lnum" 1, "zero" 1, "smcp" 1, "c2sc" 1;
  }
  
  /*
   * TODO: Turn on diagonal fractions where appropriate
   */
  time {
      font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "pnum" 1, "tnum" 0, "onum" 1, "lnum" 1, "zero" 1;
  }
  
  pre, kbd, samp, code {
      font-feature-settings: "kern" 0, "liga" 0, "calt" 1, "dlig" 0, "pnum" 0, "tnum" 1, "onum" 0, "lnum" 1, "zero" 1;
  }
  
  sup {
      font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "pnum" 1, "tnum" 0, "onum" 1, "lnum" 0, "dlig" 0, "sups" 1;
  }
  
  sub {
      font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "pnum" 1, "tnum" 0, "onum" 1, "lnum" 0, "dlig" 0, "subs" 1;
  }
  
  input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="number"], input[type="range"], input[type="tel"], input[type="week"] {
      font-feature-settings: "kern" 0, "liga" 1, "calt" 1, "pnum" 1, "tnum" 0, "onum" 0, "lnum" 1, "zero" 0;
  }
  
  table {
      font-feature-settings: "kern" 0, "liga" 1, "calt" 1, "pnum" 0, "tnum" 1, "onum" 0, "lnum" 1, "zero" 1;
  }
  
  table thead, table tfoot {
      font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "pnum" 1, "tnum" 0, "onum" 1, "lnum" 0, "dlig" 0;
  }
  
  *, *:before, *:after {
      -webkit-box-sizing: inherit;
      -moz-box-sizing: inherit;
      box-sizing: inherit;
  }
  
  html {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
  }
  
  /*
  --------------------
  Utilities
  --------------------
  */
  .hidden {
      display: none !important;
      visibility: hidden;
  }
  
  .invisible {
      visibility: hidden;
  }
  
  .video-container {
      position: relative;
      padding-bottom: 56.25%;
      padding-top: 30px;
      height: 0;
      overflow: hidden;
      margin-bottom: 1em;
      clear: both;
  }
  
  .video-container iframe, .video-container object, .video-container embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border:0;
  }
  
  /*
  --------------------
  General
  --------------------
  */
  ::-moz-selection {
      background: #b3d4fc;
      text-shadow: none;
  }
  
  ::selection {
      background: #b3d4fc;
      text-shadow: none;
  }
  
  html, body {
      height: 100%;
      font-family: 'Open Sans', sans-serif;
  }
  
  body {
      margin: 0;
      padding: 0;
      font-size: 1em;
      line-height: 1.5;
  }
  
  body:before {
      content: 'mobile';
      display: none;
  }
  
  img {
      max-width: 100%;
  }
  
  a {
      color: #0066CC;
      text-decoration: none;
  }
  
  input, button, select, textarea {
      font-family: inherit;
      font-size: inherit;
      line-height: inherit;
  }
  
  @-ms-viewport {
      width: device-width;
  }
  
  @page {
      margin: 0.5cm;
  }
  
  #page-wrapper {
      background: #e7e7e7;
  }
  
  .hide-for-mobile {
      display: none !important;
  }
  
  .hide-tablet-down {
      display: none !important;
  }
  
  .hide-tablet-up {
      display: block !important;
  }
  
  /* @media screen and (min-width: 43.625em) and (max-width: 60em) {
  
    .globalsearch__options {
      display: none !important;
    }
     body .sorting__select {
       display: block !important;
    }
  
  } */
  
  .sq-form-question-title {
      font-weight: 700;
      margin-top: 1em;
      display: block;
  }
  
  .sq-form-submit, .sq-form-reset{
      margin-top: 1em;
      
      
  }
  
  select.sq-form-field {
    width:100%;
  }
  
  .button-reset {
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;

    background: transparent;

    /* inherit font & color from ancestor */
    color: inherit;
    font: inherit;

    /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
    line-height: normal;

    /* Corrects font smoothing for webkit */
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;

    /* Corrects inability to style clickable `input` types in iOS */
    -webkit-appearance: none;
  }
  
  /*
  --------------------
  ICT System status
  --------------------
  */
  
  .ict-status {
  
  border: 1px solid orange;
  padding: 0.5em;
  }
  
  .ict-status p {
  
  font-size: 0.8em;
  }
  
  .ict-status h4 {
  
  margin-top: 0.1em;
  }
  
  .system-status-amber {
  background-color:#ffedcc;
  padding: 0.5em;
  
  }
  
  .system-status-amber h5 {
  
  background-color:#ffc200;
  padding:0.5em;
  margin: 0px;
  }
  
  .system-status-green {
  background-color:#e5f2e5;
  padding: 0.5em;
  
  }
  
  .system-status-green h5 {
  
  background-color:green;
  padding:0.5em;
  color:white;
  margin: 0px;
  }
  
  .system-status-red {
  background-color:#ffe5e5;
  padding: 0.5em;
  
  }
  
  .system-status-red h5 {
  
  background-color:red;
  padding:0.5em;
  color:white;
  margin: 0px;
  }
  
  /*
  --------------------
  Search
  --------------------
  */
  .ui-autocomplete {
      position: absolute;
      top: 0;
      left: 0;
      cursor: default;
  }
  
  .ui-menu {
      background: #FFF;
      padding: 0.5em;
      list-style: none;
      border: 1px solid #e3e3e3;
  }
  
  .ui-menu-item {
      padding: 0.2em 0;
  }
  
  .ui-helper-hidden-accessible {
      border: 0;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
  }
  
  .ui-autocomplete-category {
    display:none;
  }
  
  /*
  --------------------
  Modules
  --------------------
  */
  /* Magnific Popup CSS */
  .mfp-bg {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1042;
      overflow: hidden;
      position: fixed;
      background: #0b0b0b;
      opacity: 0.8;
      filter: alpha(opacity=80);
  }
  
  .mfp-wrap {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1043;
      position: fixed;
      outline: none !important;
      -webkit-backface-visibility: hidden;
  }
  
  .mfp-container {
      text-align: center;
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      padding: 0 8px;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
  }
  
  .mfp-container:before {
      content: '';
      display: inline-block;
      height: 100%;
      vertical-align: middle;
  }
  
  .mfp-align-top .mfp-container:before {
      display: none;
  }
  
  .mfp-content {
      position: relative;
      display: inline-block;
      vertical-align: middle;
      margin: 0 auto;
      text-align: left;
      z-index: 1045;
  }
  
  .mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
      width: 100%;
      cursor: auto;
  }
  
  .mfp-ajax-cur {
      cursor: progress;
  }
  
  .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
      cursor: -moz-zoom-out;
      cursor: -webkit-zoom-out;
      cursor: zoom-out;
  }
  
  .mfp-zoom {
      cursor: pointer;
      cursor: -webkit-zoom-in;
      cursor: -moz-zoom-in;
      cursor: zoom-in;
  }
  
  .mfp-auto-cursor .mfp-content {
      cursor: auto;
  }
  
  .mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
      -webkit-user-select: none;
      -moz-user-select: none;
      user-select: none;
  }
  
  .mfp-loading.mfp-figure {
      display: none;
  }
  
  .mfp-hide {
      display: none !important;
  }
  
  .mfp-preloader {
      color: #cccccc;
      position: absolute;
      top: 50%;
      width: auto;
      text-align: center;
      margin-top: -0.8em;
      left: 8px;
      right: 8px;
      z-index: 1044;
  }
  
  .mfp-preloader a {
      color: #cccccc;
  }
  
  .mfp-preloader a:hover {
      color: white;
  }
  
  .mfp-s-ready .mfp-preloader {
      display: none;
  }
  
  .mfp-s-error .mfp-content {
      display: none;
  }
  
  button.mfp-close, button.mfp-arrow {
      overflow: visible;
      cursor: pointer;
      background: transparent;
      border: 0;
      -webkit-appearance: none;
      display: block;
      outline: none;
      padding: 0;
      z-index: 1046;
      -webkit-box-shadow: none;
      box-shadow: none;
  }
  
  button::-moz-focus-inner {
      padding: 0;
      border: 0;
  }
  
  .mfp-close {
      width: 44px;
      height: 44px;
      line-height: 44px;
      position: absolute;
      right: 0;
      top: 0;
      text-decoration: none;
      text-align: center;
      opacity: 0.65;
      padding: 0 0 18px 10px;
      color: white;
      font-style: normal;
      font-size: 28px;
      font-family: Arial, Baskerville, monospace;
  }
  
  .mfp-close:hover, .mfp-close:focus {
      opacity: 1;
  }
  
  .mfp-close:active {
      top: 1px;
  }
  
  .mfp-close-btn-in .mfp-close {
      color: #333333;
  }
  
  .mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
      color: white;
      right: -6px;
      text-align: right;
      padding-right: 6px;
      width: 100%;
  }
  
  .mfp-counter {
      position: absolute;
      top: 0;
      right: 0;
      color: #cccccc;
      font-size: 12px;
      line-height: 18px;
  }
  
  .mfp-arrow {
      position: absolute;
      opacity: 0.65;
      margin: 0;
      top: 50%;
      margin-top: -55px;
      padding: 0;
      width: 90px;
      height: 110px;
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  .mfp-arrow:active {
      margin-top: -54px;
  }
  
  .mfp-arrow:hover, .mfp-arrow:focus {
      opacity: 1;
  }
  
  .mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
      content: '';
      display: block;
      width: 0;
      height: 0;
      position: absolute;
      left: 0;
      top: 0;
      margin-top: 35px;
      margin-left: 35px;
      border: medium inset transparent;
  }
  
  .mfp-arrow:after, .mfp-arrow .mfp-a {
      border-top-width: 13px;
      border-bottom-width: 13px;
      top: 8px;
  }
  
  .mfp-arrow:before, .mfp-arrow .mfp-b {
      border-top-width: 21px;
      border-bottom-width: 21px;
  }
  
  .mfp-arrow-left {
      left: 0;
  }
  
  .mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
      border-right: 17px solid white;
      margin-left: 31px;
  }
  
  .mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
      margin-left: 25px;
      border-right: 27px solid #3f3f3f;
  }
  
  .mfp-arrow-right {
      right: 0;
  }
  
  .mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
      border-left: 17px solid white;
      margin-left: 39px;
  }
  
  .mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
      border-left: 27px solid #3f3f3f;
  }
  
  .mfp-iframe-holder {
      padding-top: 40px;
      padding-bottom: 40px;
  }
  
  .mfp-iframe-holder .mfp-content {
      line-height: 0;
      width: 100%;
      max-width: 900px;
  }
  
  .mfp-iframe-holder .mfp-close {
      top: -40px;
  }
  
  .mfp-iframe-scaler {
      width: 100%;
      height: 0;
      overflow: hidden;
      padding-top: 56.25%;
  }
  
  .mfp-iframe-scaler iframe {
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
      background: black;
  }
  
  /* Main image in popup */
  img.mfp-img {
      width: auto;
      max-width: 100%;
      height: auto;
      display: block;
      line-height: 0;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      padding: 40px 0 40px;
      margin: 0 auto;
  }
  
  /* The shadow behind the image */
  .mfp-figure {
      line-height: 0;
  }
  
  .mfp-figure:after {
      content: '';
      position: absolute;
      left: 0;
      top: 40px;
      bottom: 40px;
      display: block;
      right: 0;
      width: auto;
      height: auto;
      z-index: -1;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
      background: #444444;
  }
  
  .mfp-figure small {
      color: #bdbdbd;
      display: block;
      font-size: 12px;
      line-height: 14px;
  }
  
  .mfp-bottom-bar {
      margin-top: -36px;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      cursor: auto;
  }
  
  .mfp-title {
      text-align: left;
      line-height: 18px;
      color: #f3f3f3;
      word-wrap: break-word;
      padding-right: 36px;
  }
  
  .mfp-image-holder .mfp-content {
      max-width: 100%;
  }
  
  .mfp-gallery .mfp-image-holder .mfp-figure {
      cursor: pointer;
  }
  
  @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
         * Remove all paddings around the image on small screen
         */
      .mfp-img-mobile .mfp-image-holder {
          padding-left: 0;
          padding-right: 0;
      }
  
      .mfp-img-mobile img.mfp-img {
          padding: 0;
      }
  
      .mfp-img-mobile .mfp-figure:after {
          top: 0;
          bottom: 0;
      }
  
      .mfp-img-mobile .mfp-figure small {
          display: inline;
          margin-left: 5px;
      }
  
      .mfp-img-mobile .mfp-bottom-bar {
          background: rgba(0, 0, 0, 0.6);
          bottom: 0;
          margin: 0;
          top: auto;
          padding: 3px 5px;
          position: fixed;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
      }
  
      .mfp-img-mobile .mfp-bottom-bar:empty {
          padding: 0;
      }
  
      .mfp-img-mobile .mfp-counter {
          right: 5px;
          top: 3px;
      }
  
      .mfp-img-mobile .mfp-close {
          top: 0;
          right: 0;
          width: 35px;
          height: 35px;
          line-height: 35px;
          background: rgba(0, 0, 0, 0.6);
          position: fixed;
          text-align: center;
          padding: 0;
      }
  }
  
  @media all and (max-width: 900px) {
      .mfp-arrow {
          -webkit-transform: scale(0.75);
          transform: scale(0.75);
      }
  
      .mfp-arrow-left {
          -webkit-transform-origin: 0;
          transform-origin: 0;
      }
  
      .mfp-arrow-right {
          -webkit-transform-origin: 100%;
          transform-origin: 100%;
      }
  
      .mfp-container {
          padding-left: 6px;
          padding-right: 6px;
      }
  }
  
  .mfp-ie7 .mfp-img {
      padding: 0;
  }
  
  .mfp-ie7 .mfp-bottom-bar {
      width: 600px;
      left: 50%;
      margin-left: -300px;
      margin-top: 5px;
      padding-bottom: 5px;
  }
  
  .mfp-ie7 .mfp-container {
      padding: 0;
  }
  
  .mfp-ie7 .mfp-content {
      padding-top: 44px;
  }
  
  .mfp-ie7 .mfp-close {
      top: 0;
      right: 0;
      padding-top: 0;
  }
  
  /*-- module:accordions --*/
  
  
  /*-- what is page --*/
  
      #accordion2 .accordion__link:before, #accordion3 .accordion__link:before  {
      display:none;
  }
      #accordion2 .accordion__item h3, #accordion2 .accordion__item  h2, #accordion2 .accordion__item  h1,#accordion3 .accordion__item h3, #accordion3 .accordion__item  h2, #accordion3 .accordion__item  h1  {
      height: auto;
      line-height: 1.2em;
  }
      #accordion2 .accordion__link, #accordion2 .uber-accordion__button-active, #accordion3 .accordion__link, #accordion3 .uber-accordion__button-active {
      padding-top: 4px;   
      padding-bottom: 4px;
      padding-right:4px;
  }
      #accordion2 .accordion__target.uber-accordion__target-active, #accordion3 .accordion__target.uber-accordion__target-active {
      padding-top:0;
      padding-bottom:0;
  }
  
  /*-- end what is page --*/
  
  .accordion__link:after {
      content: '+';
      display: inline-block;
      *display: inline;
      zoom: 1;
      margin-left: 1em;
      width: 1em;
      text-align: center;
  }
  
  .accordion__link.uber-accordion__button-active:after {
      content: '-';
  }
  
  .js-enabled .accordion__target {
      max-height: 0;
      overflow: hidden;
      -webkit-transition: padding 0.3s ease;
      -moz-transition: padding 0.3s ease;
      transition: padding 0.3s ease;
  }
  
  .js-enabled .accordion__target.uber-accordion__target-active {
      max-height: 1000em;
  }
  
  .accordion {
      overflow: hidden;
      float: left;
      margin-bottom: 1em;
      width: 100%;
  }
  
  .accordion__item {
      background: #e9e9e9;
      margin: 0em 0em .4em 0em;
  }
  
  .accordion__item > h1,
  .accordion__item > h2,
  .accordion__item > h3 {
      width: 100%;
      background-color: #eee;
      padding: 0;
      margin: 0;
      height: 2em;
      line-height: 2em;
      font-size:1.5em
  
  }
  
  .accordion__item .accordion__target h1,
  .accordion__item .accordion__target h2, 
  .accordion__item .accordion__target h3 {
      background: none;
  }
  
  .accordion .accordion__link {
      color: #FFF;
      font-size: 0.6em;
      font-weight: normal;
      padding-left: 1em;
      height: 100%;
      width: 100%;
      position: relative;
      display: block;
  
  }
  
  .accordion__link:before {
      content: 'Show';
      font-size: 0.7em;
      position: absolute;
      right: 4em;
  }
  
  .accordion__link:after {
      font-family: 'WebHostingHub-Glyphs';
      src: url('/__data/assets/file/0012/3405/webhostinghub-glyphs.eot?v=0.2.3');
      src: url('/__data/assets/file/0012/3405/webhostinghub-glyphs.eot?v=0.2.3?#iefix') format('embedded-opentype'), url('/__data/assets/file/0009/3402/webhostinghub-glyphs.ttf?v=0.2.3') format('truetype');
      font-weight: normal;
      font-style: normal;
      font-display: auto;
      -moz-font-feature-settings: "calt=0,liga=0";
      content: '\f48b';
      float: right;
      margin-right: 1em;
  }
  
  .accordion__link.uber-accordion__button-active:after {
      content: '\f48a';
  }
  
  .accordion__link.uber-accordion__button-active:before {
      content: 'Hide';
  }
  
  .accordion__target {
      padding: 0 4%;
  }
  
  .accordion__target.uber-accordion__target-active {
      padding: 1em 4%;
  }
  
  .accordion .accordion__link.uber-accordion__button-active {
      background: #0066CC;
  }
  
  @media only screen and (max-device-width: 480px) {
      .accordion__item h1, .accordion__item h2, .accordion__item h3 {
          line-height:1em;
          padding:.5em;
          height:100%;
      }    
      .accordion__link:before {
          display:none;
      }
      .accordion__link:after {
          padding:0;
          margin:0 .3em 0 0;        
      }
  }
  
  .warning {
      border: 3px solid #cc0000;
      padding:1.3%;
      color : #2d2d2d;
      display: inline-block;
      background : #f6e6e3;
      margin-bottom:2%;
  }
  
  .infobox {
      border: 3px solid #06c;
      padding: 1.3%;
      color: #666;
      display: inline-block;
      margin-bottom: 2%;
  }
  
  
  /*-- module:carousel --*/
  .carousel {
      position: relative;
      display: block;
      margin-top: 8.5em;
      
  }
  
  .carousel .slick-dots, .carousel .slick-prev, .carousel .slick-next {
      position: absolute;
      left: -9999px;
      visibility: hidden;
  }
  
  .carousel__title {
      background-color: rgba(22, 94, 0, 0.7);
      position: absolute;
      top: 30%;
      left: 0;
      color: white;
      font-size: 1.2em;
      width: 40%;
      padding: 1em;
      font-weight: 300;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      -webkit-transform: translateZ(0); 
      transform: translateZ(0);
  }
  
  .carousel__subtext {
      font-size: 0.6em;
      float: left;
      clear: both;
  }
  
  .carousel__titletext {
      clear: both;
      float: left;
      line-height: 1em;
      margin-bottom: 0.2em;
  }
  
  .carousel__title.position-top {
      top: 0;
  }
  
  .carousel__title.position-right {
      right: 0;
      left: inherit;
  }
  
  .carousel__title.position-bottom {
      bottom: 1.6em;
      top: inherit;
  }
  
  .backgroundcarousel {
      display: none;
  }
  
  /*-- module:courses --*/
  .coursestitle_wrapper {
      position: relative;
  }
  
  .pagetitle.coursetitle {
      color: #FFF;
      font-weight: 400;
      font-size: 1.2em;
      bottom: 0;
      margin-right: 5%;
      top: inherit;
  }
  
  .courses__applynow {
      text-align: center;
      background: #3a8700;
      border: none;
      width: 49%;
      margin: 0 0 0.5em 0;
      float: left;
      padding: 0.4em 0;
      font-size: 1.2em;
      font-weight: bold;
      color: #FFFFFF;
  }
  
  .courses__enquirenow {
      text-align: center;
      background: #0066CC;
      border: none;
      float: right;
      width: 49%;
      margin: 0 0 0.5em 0;
      padding: 0.4em 0;
      font-size: 1.2em;
      font-weight: bold;
      color: #FFF;
  }
  
  .courses__studyarea-option {
      margin-bottom: 1em;
  }
  
  .courses__studyarea-option i {
      margin-right: 0.4em;
  }
  
  
  
  .box.coursebox {
      display: block;
      float: left;
      background: #e9e9e9;
      margin: 0 0 1em;
      width: 100%;
      clear: both;
  }
  
  
  .box .box__heading-link {
      font-weight: normal;
  }
  
  .coursebox .box__heading-list {
      padding: 0.8em 2% 0 2%;
  }
  
  .coursebox__content {
      padding: 1em 4%;
  }
  
  .coursedetails__intro {
      color: #424242;
      font-weight: 400;
      line-height: 1.2em;
      margin-bottom: 0.5em;
  }
  
  .coursebox__at-a-glance-item {
      border-bottom: 1px dotted #797979;
      overflow: hidden;
      min-height: 4.5em;
      padding: 0.5em 0;
  }
  
  .coursebox__at-a-glance-item:last-child {
      border-bottom: none;
  }
  
  .coursebox__at-a-glance-icon {
      width: 20%;
      float: left;
      display: block;
      text-align: center;
  }
  
  .coursebox__at-a-glance-icon i {
      color: #0066CC;
      font-size: 2em;
      float: left;
      padding-left: 50%;
      margin-left: -25%;
  }
  
  .coursebox__at-a-glance-text {
      width: 80%;
      float: left;
      display: block;
  }
  
  .coursebox__at-a-glance-title {
      font-size: 0.8em;
      font-weight: bold;
      color: #0066CC;
  }
  
  .coursebox__at-a-glance-info {
      font-size: 0.9em;
      font-weight: bold;
  }
  
  .coursecontacts {
      padding: 1em 4%;
      background: #e7e7e7;
      clear: both;
      margin-bottom: 1em;
      overflow: hidden;
  }
  
  .coursecontacts__icon {
      width: 25%;
      float: left;
  }
  
  .coursecontacts__icon i {
      color: #0066CC;
      font-size: 2.5em;
      padding-left: 50%;
      margin-left: -25%;
  }
  
  .coursecontacts__text {
      width: 75%;
      float: left;
  }
  
  .coursecontacts__heading {
      color: #2d2d2d;
      font-size: 1.4em;
      width: 100%;
  }
  
  .coursecontacts__subtext {
      color: #2d2d2d;
      font-size: 1em;
      font-weight: bold;
      width: 100%;
      clear: both;
      float: left;
  }
  
  .coursecontacts__buttonwrapper {
      clear: left;
      text-align: center;
  }
  
  .coursecontacts__button {
      display: inline-block;
      background: #0066CC;
      border: none;
      color: #FFF;
      padding: 0.4em 0.8em;
      font-size: 0.8em;
      font-weight: bold;
      height: 3em;
      text-align: center;
      margin: 1em 0.5em 0 0;
  }
  
  .coursecontacts__button i {
      font-size: 1.6em;
      vertical-align: middle;
      margin: 0 0.4em;
  }
  
  .coursecontacts__social {
      margin-top: 1em;    
      text-align: center;
  }
  
  .coursecontacts__social-link {
      color: #4b4c4e;
      font-size: 2em;
      margin-right: 0.5em;
  }
  
  .courses__disclaimer {
        font-size: 0.7em;
        color: #666;
    }
  
  
  .courses__exception-message {
        font-size: 0.75em;
        color: #666;
    }
  
  .course__mode, .course__duration {
        font-size: 0.8em;
        
    }
  
  
  /*-- module:footer --*/
  .footer {
      clear: both;
      float: left;
      background: #e7e7e7;
      width: 100%;
      padding: 0 4%;
  }
  
  .footer__heading {
      font-size: 1em;
      font-weight: normal;
      color: #2d2d2d;
      border-top: 1px dotted #2d2d2d;
      border-bottom: 1px dotted #2d2d2d;
      padding: 0.5em 0;
      margin: 1.5em 0 0 0;
      clear: both;
      float: left;
      width: 100%;
  }
  
  .footer__heading:before {
  content:none;
  
  }
  
  .footer__explore-list {
  /*    width: 50%;  */
      margin: 0;
      padding: 0;
      list-style: none;
      float: left;
      margin-top: 0.5em;
  }
  
  .footer__explore-list-item {
      line-height: 1.5em;
  }
  
  .footer__explore-list-link {
  /*    font-size: 0.8em;
      font-weight: bold;
      text-decoration: none;
      color: #0066CC; */
      color: #2d2d2d;
      text-decoration: none;
      font-size: 0.8em;
      font-weight: normal;
  }
  
  .footer__explore-list-wrapper {
      width: 49%;
      float: left;
      clear:left;
  }
  
  .footer__explore-list-wrapper:nth-of-type(2n + 2) {
      margin-left: 2%;
      clear:none;
  }
  
  .footer__tradition-text {
      width: 77%;
      display: block;
      float: left;
      margin-right: 3%;
      font-size: 0.8em;
      color: #2d2d2d;
  }
  
  .footer__tradition-flags {
      width: 20%;
      float: left;
      margin-top: 0.8em;
  }
  
  .footer__social {
      width: 100%;
      border-top: 1px dotted #2d2d2d;
      border-bottom: 1px dotted #2d2d2d;
      float: left;
      clear: both;
      margin-top: 1em;
  }
  
  .footer__social-list {
      float: left;
      display: block;
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
  }
  
  .singapore .footer__social-list-item {
    width:25%;
  }
  
  
  .footer__social-list-item {
      float: left;
      width: 20%;
      text-align: center;
  }
  
  .footer__social-list-item a {
      text-align: center;
      text-decoration: none;
      color: #4b4c4e;
      width: 100%;
      float: left;
      font-size: 3em;
      display: block;
  }
  
  .footer__legals {
      width: 100%;
      border-bottom: 1px dotted #2d2d2d;
      float: left;
      clear: both;
      margin-top: 1em;
      padding-bottom: 1em;
  }
  
  .footer__legals-list {
      list-style: none;
      margin: 0 auto;
      width: 100%;
      display: block;
      clear: both;
      float: left;
      padding: 0;
  }
  
  .footer__legals-item {
      float: left;
      line-height: 1em;
  }
  
  .footer__legals-link {
      font-size: 0.8em;
      font-weight: bold;
      text-decoration: none;
      color: #0066CC;
  }
  
  .footer__legals-item:first-child :after {
      content: "|";
      color: #2d2d2d;
      margin: 0 0 0 5%;
  }
  
  .footer__legals-item:first-child {
      width: 50%;
      text-align: right;
  }
  
  .footer__legals-item:nth-of-type(2) {
      width: 48%;
      text-align: left;
      float: right;
  }
  
  .footer__legals-item--rti {
      text-align: center;
      width: 100%;
  }
  
  .footer__legals-item--cricos,
  .footer__legals-item--emergency {
    font-size:0.8em;
    clear:both;
    text-align: center;
    width: 100%;
    margin: 0.2em 0;
  }
  
  .footer__copyright {
      width: 100%;
      float: left;
      clear: both;
      margin-top: 0;
      padding-top: 1em;
  }
  
  .footer__copyright-text {
      font-size: 0.6em;
      font-size: 0.8em;
      color: #2d2d2d;
      text-align: center;
      margin: 0;
  }
  
  .footer__copyright-text.footer__print-url {
      display: none;
  }
  
  .footer__campuslist-list {
      clear: both;
      list-style: none;
      padding: 0;
      display: block;
      margin: 0;
      padding-top: 1em;
  
  }
  
      .footer__campuslist-item {
          border-top: 1px solid #2d2d2d;
          width: 40%;
          padding: 0.1em 0;
      }
  
      .footer__campuslist-item:last-child {
          border-bottom: 1px solid #2d2d2d;
      }
  
  
  
  
  /*-- module:globalheader --*/
  
  .homepage .globalheader {
      display: block;
  }
  
  
  .globalheader {
      width: 100%;
      height: 3em;
      background: #2d2d2d;
      position: fixed;
      top: 0;
  }
  
  .globalheader__toolbar {
      padding: 0 2%;
  }
  
  .globalheader__toolbar-nav {
      overflow: hidden;
      float: left;
      text-align: center;
      padding: 0;
      list-style: none;
      width: 50%;
      display: block;
      margin: 0;
  }
  
  .globalheader__toolbar-links {
      padding: 0;
      overflow: hidden;
      float: left;
      width: 50%;
      margin: 0;
  }
  
  .globalheader__toolbar-link {
      color: #FFF;
      text-decoration: none;
      padding: 1em 0;
      display: block;
      font-size: 0.9em;
  }
  
  .globalheader__toolbar-item {
      display: block;
      float: left;
      margin: 0;
      text-align: center;
      width: 33%;
  }
  
  .globalheader__nav, .globalsearch, .globalheader__toolbar-link i, .globalheader__toolbar-link span[class^="icon-"]  .globalsearch__options-list {
      display: none;
  }
  
  
  /*-- module:homepagebox --*/
  .box__heading-item {
      display: inline-block;
      *display: inline;
      zoom: 1;
  }
  
  .box__heading-link {
      padding: 0.5em;
      border: 1px solid;
      border-bottom: 0;
      background: #eee;
  }
  
  .box__heading-link.uber-accordion__button-active {
      background: #fff;
  }
  
  .js-enabled .box__target {
      display: none;
  }
  
  .js-enabled .box__target.uber-accordion__target-active {
      display: block;
  }
  
  .homecontent {
      float: left;
      display: block;
      width: 100%;
      position: relative;
      z-index: 8;
  }
  
  .box {
      width: 92%;
      margin: 1em 4% 0;
      clear: both;
      float: left;
  }
  
  .socialbox {
      display: none;
  }
  
  .box__heading {
      background: #2d2d2d;
  }
  
  .box__heading-list {
      height: 3em;
      padding: 12px 2% 0 2%;
      overflow: hidden;
  }
  
  .box__heading-item {
      margin: 0 0.4em 0 0;
  }
  
  .box__heading-item:last-child {
      margin-right: 0;
  }
  
  .box__content {
      background: #FFF;
  }
  
  .box .box__heading-link {
      background: #06c;
      border: none;
      color: #fff;
      text-decoration: none;
      padding: 7px .6em;
      display: block;
      border-radius: 0 10px 0 0;
  
  }
  
  .box .box__heading-link:hover {
      background: #06c;
      background-image: -webkit-linear-gradient(top, #06c, #3498db);
      background-image: -moz-linear-gradient(top, #06c, #3498db);
      background-image: -ms-linear-gradient(top, #06c, #3498db);
      background-image: -o-linear-gradient(top, #06c, #3498db);
      background-image: linear-gradient(to bottom, #06c, #3498db);
      text-decoration: none;
  }
  
  .box__target {
      clear: both;
      float: left;
      width: 100%;
  }
  
  .box .box__heading-link.uber-accordion__button-active {
      background: #e9e9e9;
      color: #2d2d2d;
      border-radius: 0 10px 0 0;
  }
  
  .boxlist {
      list-style: none;
      padding: 0;
      margin: 0;
  }
  
  .boxlist__item {
      padding: 0.6em 0;
      border-bottom: 1px solid #aaa;
  }
  
  .boxlist__item:last-child {
      border-bottom: none;
  }
  
  .boxlist__link {
      color: #0066b3;
      text-decoration: none;
  }
  
  .box__title {
      color: #FFF;
      font-weight: normal;
      font-size: 1.2em;
      margin: 0 4% 0 4%;
      display: block;
      padding-top: 0.4em;
  }
  
  
  
  .eventlist {
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
  }
  
  .eventlist__item {
      padding: 0.9em 0;
      border-bottom: 1px solid #aaa;
      width: 100%;
      overflow: auto;
  }
  
  .eventlist__item:last-of-type{
      border-bottom: none;
  }
  
  .eventlist__link {
      color: #0066b3;
      text-decoration: none;
  }
  
  .eventlist_time {
      color: #2d2d2d;
      font-weight: bold;
      width: 20%;
      display: block;
      float: left;
      text-align: center;
  }
  
  .eventlist_event-title {
      width: 75%;
      display: block;
      margin-left: 25%;
  }
  
  .eventlist__location {
      display: block;
      float: left;
      clear: both;
      width: 100%;
      background: #e3e3e3;
      padding: 0 4% 1em;
  }
  
  .eventslandinglisting__item-city {
      text-transform: capitalize;
  }
  
  .eventlist__location-title {
      color: #2d2d2d;
      font-size: 1em;
      padding: 0;
      font-weight: normal;
      margin: 0.6em;
  }
  
  .eventlist__location-options {
      width: 100%;
      font-size: 1em;
      height: 2em;
  }
  
  .event__registration {
    clear:both;
  }
  
  .newslisting {
      width: 92%;
      margin: 1em 4% 0;
      clear: both;
      float: left;
  }
  
  .newslisting__title {
      background: #2d2d2d;
      color: #FFF;
      font-weight: normal;
      font-size: 1.2em;
      display: block;
      padding: 0.4em 4%;
      margin-bottom: 0;
  }
  
  .newslisting__title a {
      color: #FFF;
      font-weight: normal;
      font-size: 1.2em;
  }
  
  .newslisting__item {
      display: block;
      width: 100%;
      float: left;
      clear: both;
      
      padding: 0.8em 0;
  }
  
  .newslisting__item:last-child {
      border-bottom: none;
  }
  
  .newslisting__item-link {
      color: #0066b3;
      font-size: 1em;
      padding: 0;
      font-weight: normal;
      text-decoration: none;
  }
  
  .newslisting__item-description {
      color: #2d2d2d;
  }
  
  .insidebody__contentright .socialbox {
      display: block;
      margin-top: 0;
      margin-bottom: 1em;
  }
  
  /*-- module:homepagecourses --*/
  .homepagecourses {
      display: block;
      position: relative;
      float: left;
      background: #2d2d2d;
      margin-top: -2em;
      padding: 0.5em 4% 0.6em;
      width: 100%;
      z-index: 9;
  }
  
  .homepagecourses__title {
      display: block;
      color: #FFF;
      font-size: 1em;
      margin: 0.2em 0;
      padding: 0;
      font-weight: normal;
      width: 100%;
  }
  
  /* removed from below , .homepagecourses__search-submit-button mmcerlain */
  .homepagecourses__title, .homepagecourse__or-wrapper, .homepagecourses__browse-title, .homepagecourses__browse-studyarea-button, .homepagecourses__browse-delivery-button, .homepagecourses__search-submit-button {
      display: none;
  }
  
  .homepagecourses__search-mobile, .homepagecourses__browse-delivery-mobile, .homepagecourses__browse-campus-mobile {
      width: 31%;
      background: #0066CC;
      border: none;
      color: #FFF;
      height: 42px;
      float: left;
      margin-left: 3.5%;
      padding: 0.2em;
      text-align: center;
      overflow: hidden;
  }
  
  .homepagecourses__search-mobile {
      margin-left: 0;
  }
  
  .homepagecourses__search-mobile.active, .homepagecourses__browse-delivery-mobile.active, .homepagecourses__browse-campus-mobile.active {
      background: #FFF;
      color: #0066CC;
  }
  
  .homepagecourses__search-mobile i {
      font-size: 1.2em;
  }
  
  .homepagecourses__browse-delivery-mobile {
      font-size: 0.7em;
  }
  
  .homepagecourses__browse-campus-mobile {
      font-size: 0.7em;
      line-height: 1.1em;
  }
  
  .homepagecourses__browse-studyarea-options {
      display: block;
      visibility: hidden;
      height: 0;
      -webkit-transition: padding 0.2s ease;
      -moz-transition: padding 0.2s ease;
      transition: padding 0.2s ease;
      margin: 0;
      overflow: auto;
      position: absolute;
  }
  
  .homepagecourses__browse-delivery-options {
      display: block;
      visibility: hidden;
      height: 0;
      -webkit-transition: height 0.2s ease;
      -moz-transition: height 0.2s ease;
      transition: height 0.2s ease;
      margin: 0;
      overflow: auto;
      position: absolute;
  }
  
  
  
  .homepagecourses__browse-studyarea-options.open {
      display: block;
      position: absolute;
      top: 3.7em;
      right: 0;
      background: #1668bf;
      width: 100%;
      height: auto;
      padding: 1.2em 2% 0 2%;
      margin: 0;
      list-style: none;
      z-index: 10;
      overflow: hidden;
      visibility: visible;
  }
  
  .homepagecourses__browse-delivery-options.open {
    overflow: hidden;
    display: block;
    position: absolute;
    top: 3.7em;
    right: 0;
    background: #1668bf;
    height: 8em;
    z-index: 50;
    width: 100%;
    margin: 0;
    list-style: none;
    visibility: visible;
    padding: 0;
  }
  
  .homepagecourses__browse-delivery-option {
    line-height: 2.66em;
  }
  
  .homepagecourses__browse-studyarea-option a,
  .homepagecourses__browse-delivery-option a {
      color: #FFF;
  }
  
  .homepagecourses__browse-delivery-option a {
    width: 100%;
    height: 100%;
    display: block;
    padding-left:1em;
  }
  
  .homepagecourses__browse-delivery-option-title {
    margin: 0;
  }
  
  .homepagecourses__browse-studyarea-option {
      width: 25%;
      float: left;
      color: #FFF;
      text-align: center;
      /*margin-bottom: 0.4em;*/
      min-height: 5.6em;
  }
  
  .homepagecourses__browse-studyarea-option i {
      width: 100%;
      clear: both;
      float: left;
      display: block;
      font-size: 1.8em;
      font-weight: normal;
  }
  
  .homepagecourses__browse-studyarea-option-title {
      font-size: 0.7em;
      line-height: 1.1em;
  }
  
  .homepagecourses__search-form {
      visibility: hidden;
      height: 0;
      -webkit-transition: padding 0.2s ease;
      -moz-transition: padding 0.2s ease;
      transition: padding 0.2s ease;
  }
  
  .homepagecourses__search-form.open {
      display: block;
      background: #0066CC;
      width: 100%;
      position: absolute;
      top: 3.1em;
      left: 0;
      padding: 1em 4%;
      font-size: 1.2em;
      visibility: visible;
      height: auto;
  }
  
  .homepagecourses__search-text-input {
      width: 100%;
      font-size: 0.8em;
      padding: 0.2em 0.5em;
  }
  
  .homepagecourses__search-form label {
      color: #FFF;
  }
  
  /*-- module:insidebackground --*/
  .insidebackground__main-image-wrapper {
      position: relative;
      display: block;
      height: 16em;
  }
  
  .insidebackground__background-image-wrapper {
      display: none;
  }
  
  .print-logo {
      display: none;
  }
  
  /*-- module:insidebody --*/
  .colour-theme-blue .insidebody__contentmain h2, .colour-theme-blue .insidebody__contentmain h3, .colour-theme-blue .insidebody__contentmain h4, .colour-theme-blue .insidebody__contentmain h5, .colour-theme-blue .insidebody__contentmain h6 {
      color: #333399;
  }
  
  .colour-theme-orange .insidebody__contentmain h2, .colour-theme-orange .insidebody__contentmain h3, .colour-theme-orange .insidebody__contentmain h4, .colour-theme-orange .insidebody__contentmain h5, .colour-theme-orange .insidebody__contentmain h6 {
      color: #FF3333;
  }
  
  .colour-theme-green .insidebody__contentmain h2, .colour-theme-green .insidebody__contentmain h3, .colour-theme-green .insidebody__contentmain h4, .colour-theme-green .insidebody__contentmain h5, .colour-theme-green .insidebody__contentmain h6 {
      color: #009966;
  }
  
  .colour-theme-red .insidebody__contentmain h2, .colour-theme-red .insidebody__contentmain h3, .colour-theme-red .insidebody__contentmain h4, .colour-theme-red .insidebody__contentmain h5, .colour-theme-red .insidebody__contentmain h6 {
      color: #990000;
  }
  
  .pagetitle {
      color:#FFF;
      font-size: 1.2em;
      margin-left: 5%;
      position: absolute;
      top: -3.5em;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 0.2em;
      font-weight: 600;
  }
  
  .pagetitle.longpagetitle {
      top: -6em;
      max-width: 92%;
  }
  
  .homepage .insidebodywrapper {
      display: none;
  }
  
  .insidebodywrapper {
      float: left;
      display: block;
      width: 100%;
      position: relative;
  }
  
  .insidebody {
      clear: both;
      width: 92%;
      margin: 0 4%;
  }
  
  .insidebody__content {
      margin: 1em 0;
  }
  
  .insidebody__contentmain #disqus_thread {
     clear: both;
  }
  
  .insidebody a {
      font-weight: 500;
  }
  
  .abstract {
      clear: both;
      margin: 0 0 1.5em 0;
      color: #777;
      font-size: 1.1em;
      line-height: 1.5em;
  }
  
  
  .greenback {
      clear: both;
      margin: 0;
      padding: 1em;
      color: white;
      background-color: green;
      font-size: 1.2em;
      line-height: 2.4em;
     
  }
  
  
  
  .insidebody__contentmain .tiles {
      clear: both;
      float: left;
      width: 100%;
      margin-bottom: 1.5em
  }
  
  .insidebody__contentmain .tiles__item {
      height: 7em;
  }
  
  .newsdetails__date {
      background: #2d2d2d;
      color: white;
      font-size: 0.9em;
      font-weight: bold;
      position: absolute;
      left: 0;
      padding: 0.4em 0.8em 0.4em 4%;
  }
  
  .newsdetails__title {
      color: #0066CC;
      font-size: 1.6em;
      line-height: 1.3em;
      padding-top: 2em;
      padding-bottom: 1em;
      font-weight: 600;
      border-bottom: 1px dotted #797979;
  }
  
  .newsdetails__image {
      width: 100%;
      margin-top: 1em;
  }
  
  .newsdetails__summary {
      color: #0066CC;
      font-size: 1.1em;
      font-weight: 600;
  }
  
  .newsdetails__contactinfo {
      padding: 1em 0;
      border-bottom: 1px dotted #797979;
      border-top: 1px dotted #797979;
  }
  
  .newslandinglisting__item {
      background: #e3e3e3;
      padding: 1em 2%;
      margin-bottom: 0.5em;
  }
  
  .newslandinglisting__header {
      padding-bottom: 0.5em;
      border-bottom: 1px dotted #797979;
      margin-bottom: 0.5em;
      overflow: hidden;
  }
  
  .newslandinglisting__title {
      margin: 0;
      padding: 0;
      font-size: 1.4em;
      font-weight: 600;
      float: left;
  }
  
  .newslandinglisting__button {
      background: #0066CC;
      color: #FFF;
      padding: 0.2em 0.4em;
      margin: 0 0 0.4em;
      width: auto;
      float: right;
  }
  
  .newslandinglisting__item-image {
      margin: 0 0 0.5em 0;
  }
  
  .newslandinglisting__item-date {
      font-weight: 700;
      font-size: 0.9em;
      margin-bottom: 0.5em;
  }
  
  a.newslandinglisting__item-link {
      font-size: 1.6em;
      font-weight: 400;
      line-height: 1.2em;
  }
  
  .link {
    font-weight: 500;
    color: #06c;
    text-decoration: none;
  }
  
  .inthenews {
      clear: both;
      overflow: hidden;
  }
  
  .inthenews__title {
      margin: 0;
      padding: 0;
      font-size: 1.4em;
      font-weight: 600;
      float: left;
  }
  
  .inthenews__morebutton {
      background: #0066CC;
      color: #FFF;
      padding: 0.2em 0.4em;
      margin: 0 0 0.4em;
      width: auto;
      float: right;
  }
  
  .inthenews__header, .inthenews__item {
      clear: both;
      float: left;
      width: 100%;
      margin-top: 1em;
  }
  
  .inthenews__header {
      border-bottom: 1px dotted #797979;
      padding-bottom: 0.5em;
  }
  
  .inthenews__description {
      font-size: 0.9em;
  }
  
  .inthenews__date-source {
      font-weight: 600;
      font-size: 0.9em;
  }
  
  .landingbox {
      margin: 0 0 1em;
      clear: both;
      float: left;
      overflow: hidden;
      width: 100%;
      background: #e3e3e3;
  }
  
  .blacklandingbox {
      background: #2d2d2d;
  }
  
  .findstaff, .studentlogin {
      background: #e3e3e3;
      width: 100%;
      margin-left: 0;
      margin-right: 0;
  }
  
  .findstaff .box__target {
      padding: 0.4em 4%;
  }
  
  .findstaff__search-text-input {
      margin: 0.5em 0;
      float: left;
      width: 100%;
      clear: both;
      padding: 0.2em;
  }
  
  .findstaff__field-options {
      float: left;
      clear: both;
      margin-bottom: 0.5em;
  }
  
  .findstaff__search-submit-button {
      float: left;
      clear: both;
      width: 2.5em;
      height: 2.5em;
      background: #1668bf;
      color: #FFF;
      border: none;
      position: relative;
      padding: 0;
  }
  
  .findstaff__search-submit-button i {
      font-size: 1.4em;
  }
  
  .findstaff .selector {
      display: none;
  }
  
  .actionlinks {
      margin-bottom: 1em;
      display: block;
      overflow: hidden;
  }
  
  .actionlinks__item {
      display: block;
      float: left;
      height: 3em;
      background: #0066CC;
      width: 100%;
      overflow: hidden;
      margin-bottom: 0.5em;
  }
  
  .actionlinks__icon-wrapper {
      height: 3em;
      width: 3em;
      background: #2d2d2d;
      position: relative;
      display: block;
      float: left;
  }
  
  .actionlinks__icon-wrapper i {
      color: #FFF;
      position: absolute;
      top: 8px;
      left: 15px;
      font-weight: normal;
      font-size: 1.4em;
  }
  
  .actionlinks__text {
      color: #FFF;
      float: left;
      line-height: 3em;
      margin-left: 2em;
      font-weight: normal;
  }
  
  .landingcarousel {
      margin-top: 0;
      display: block;
      overflow: hidden;
      width: 100%;
      margin-bottom: 1em;
      clear:both;
  }
  
  .landingcarousel .carousel__image {
      width: 100%;
      height: auto;
      float: left;
  }
  
  .studentlogin form,
  .librarysearchbox form {
      padding: 1em 2% 0.5em 2%;
  }
  
  .studentlogin input {
      margin-bottom: 0.5em;
  }
  
  .studentlogin__text-input {
      border: 1px solid #000;
      padding: 0.4em;
      width: 100%;
  }
  
  .studentlogin__submit-wrapper {
      position: relative;
      float: left;
  }
  
  .studentlogin__submit {
      background-color: #0066CC;
      color: #FFF;
      border: none;
      height: 2em;
      line-height: 1.5em;
      width: 5em;
      text-align: right;
      padding-right: 0.5em;
  }
  
  .studentlogin__submit-wrapper i {
      color: #FFF;
      position: absolute;
      line-height: 2.2em;
      left: 10px;
      font-size: 0.9em;
  }
  
  .studentlogin__forgot-link {
      font-size: 0.9em;
      line-height: 2.2em;
      padding-left: 0.5em;
      color: #0063c7;
  }
  
  .landingbox .boxlist {
      margin: 0.5em 4%;
  }
  
  .landingbox.faqsbox .box__title {
      padding: 0.8em 0;
      font-size: 1em;
  }
  
  .landingbox.faqsbox .boxlist__link {
      font-weight: normal;
  }
  
  .landingbox .eventlist {
      margin: 0.5em 0;
  }
  
  .landingbox .eventlist__item {
      /*width: 92%;*/
  }
  
  .landingbox .eventlist__link {
      font-weight: normal;
  }
  
  .eventsfiltering__fieldset {
      border: none;
      padding: 0;
      margin: 0 0 1em 0;
      background: #e3e3e3;
  }
  
  .eventsfiltering__legend {
      padding: 0.4em;
      margin: 0;
      font-size: 1.1em;
      font-weight: 600;
      background: #2d2d2d;
      color: #FFF;
      width: 100%;
  }
  
  .eventsfiltering__item {
      margin-left: 4%;
      margin-top: 0.2em;
  }
  
  .eventsfiltering__item:nth-of-type(1) {
      margin-top: 0.5em;
  }
  
  .eventsfiltering__item:last-child {
      margin-bottom: 0.5em;
  }
  
  .eventsfiltering__button {
      background-color: #0066CC;
      color: #FFF;
      border: none;
      height: 2em;
      line-height: 1.5em;
      width: 7em;
      padding: 0 0.5em;
      margin-bottom: 0.5em;
  }
  
  .eventdetails {
      display: block;
      float: left;
      overflow: hidden;
  }
  
  .eventsdetails__whenwhere {
      background-color: #e7e7e7;
      padding: 10px 10px 5px 10px;
      margin-bottom: 20px;
      clear:both;
      overflow:auto;
      
  }
  
  .eventsdetails__label {
      font-weight: bold;
      clear: both;
      float: left;
      display: block;
      margin-right: 0.5em;
      margin-bottom: 0.5em;
  }
  
  .eventsdetails__date, .eventsdetails__location, .eventdetails__moreinfo, .newsdetails__contactdetails {
      display: block;
      float: left;
  }
  
  .eventdetails__description {
      clear: both;
      float: left;
      margin-bottom: 20px;
  }
  
  .eventsdetails__contactinfo {
      border-bottom: 1px dotted #797979;
      border-top: 1px dotted #797979;
      display: block;
      float: left;
      width: 100%;
      padding: 1em 0;
      margin: 1em 0 2em;
      overflow: hidden;
  }
  
  
  .eventdetails__contactdetails p {
    margin: 0 0 0.5em;
    clear: both;
  }
  
  
  .eventsdetails__building:after,
  .eventsdetails__generallocation:after {
    content: '';
    display: block;
    margin-bottom: 1em;
  }
  /*
  .eventsdetails__location {
      clear: both;
  }
   */
   
  .eventsdetails__cityonly {
      font-size: 0.8em;
      font-style: italic;
      text-transform: capitalize;
      
  }
  
  .eventdetails__moreinfo {
      margin-bottom: 10px;
  }
  
  .newsdetails__contactdetails p {
      margin: 0;
  }
  
  .landing__listitem {
     width:100%;
     clear:both; 
  }
  
  .landing__listitem_thumb {
     width:30%;
     float:left;
     padding:10px;
  }
  
  .landing__listitem_thumb img {
    display: block;
    width: 100% !important;
    height: auto !important; 
  }
  
  .landing__listitem_title {
     width:70%;
     float:left;
     padding-top:10px;
  }
  
  .landing__listitem_description {
     float:left; 
     font-size:0.9em;
  }
  
  .searchresults__searchagainform {
      overflow: hidden;
      float: left;
      width: 100%;
  }
  
  .searchresults__textinput {
      padding: 0 0.5em;
      margin-bottom: 1em;
      width: 80%;
      float: left;
      display: block;
      height: 2.6em;
  }
  
  .searchresults__submit-button {
      background: #3b3b3b;
      height: 2.6em;
      width: 2.6em;
      border: 0;
      float: left;
      display: block;
  }
  
  .searchresults__submit-button i, .searchresults__submit-button span {
      color: #FFF;
      font-weight: 600;
      font-size: 1.4em;
  }
  
  .searchresults__count {
      font-size: 0.8em;
  }
  
  .searchresults__results-heading {
      display: none;
  }
  
  .searchresults__results ol {
      list-style: none;
      padding: 0;
  }
  
  .result__title {
      margin-bottom: 0;
      font-size: 1.2em;
  }
  .result__title a{
      word-wrap: break-word;
  }
  .result__summary {
      margin-top: 0.5em;
  }
  
  .result__url {
      color: #009933;
      font-size: 0.9em;
      word-wrap: break-word;
  }
  
  .searchpagination__list {
      list-style: none;
      padding: 0;
  }
  
  .searchpagination {
      float: left;
      clear: both;
  }
  
  .searchpagination__item, .searchpagination__next {
      display: block;
      float: left;
      width: auto;
      padding: 0 0.5em;
  }
  
  .searchfacets, .contextualnav {
      float: left;
      clear: both;
      width: 100%;
  }
  
  .facet, .contextualnav__item {
      border: none;
      padding: 0;
      margin: 0 0 1em 0;
      background: #e3e3e3;
      display: block;
      width: 100%;
  }
  
  .searchfacets__heading h3, .contextualnav__item-heading {
      padding: 0.4em;
      margin: 0;
      font-size: 1.1em;
      font-weight: 600;
      background: #2d2d2d;
      color: #FFF;
      width: 100%;
  }
  
  .contextualnav__item-heading {
      color: #FFF;
  }
  
  .searchfacets__heading h3 a {
      text-transform: capitalize;
      color: #FFF;
  }
  
  .searchfacets__content, .contextualnav__content {
      padding: 0.5em 1em;
  }
  
  .searchfacets__list, .contextualnav__item-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: block;
  }
  
  .searchfacets__list .category {
      padding: 0.2em 0;
  }
  
  .contextualnav__item-list li {
      padding: 0.4em 0;
  }
  
  .searchfacet__item {
      text-transform: capitalize;
  }
  
  .searchfacet__item a {
      font-weight: 600;
      font-size: 0.9em;
  }
  
  .results__partial-heading {
      border-top: 2px dotted #e3e3e3;
  }
  
  .searchpagination {
      border-top: 2px dotted #e3e3e3;
      width: 100%;
  }
  
  .searchcourse__title {
    font-size: 1.3em;
    display: block;
    margin-bottom: 0.2em;
    clear:both;
  }
  
  
  .searchcourse__summary {
    font-size: 0.8em;
    margin-bottom: 0.4em;
    display: block;
  }
  
  .searchcourse__extras {
    display: block;
    overflow: hidden;
    padding-bottom: 1em;
    border-bottom: 2px dotted #e3e3e3;
    margin-bottom: 1em;
  }
  
  .searchcourse__extras-container {
    display: block;
    float: left;
    width: 50%;
  }
  
  .searchcourse__extras-container_int-available{
      padding-top:10px;
  }
  
  .searchcourse__extras-label {
    display: block;
    font-weight: bold;
    font-size: 0.8em;
  }
  
  .searchcourse__extras-data {
    font-size: 0.8em;
  }
  
  .searchcourse__extras:nth-last-of-type(2) {
    border-bottom: 0;
  }
  
  .search__best-bet {
      background: #e3e3e3;
      padding: 1em 1em 1em 0;
      overflow: hidden;
      margin-top: 1em;
  }
  
  .search__best-best-wrapper {
      overflow:hidden;
      margin-bottom:1em;  
  }
  
  .search__best-best-wrapper:last-child {
    margin-bottom:0;
  }
  
  .search__best-bet .result__title {
      margin: 0;
  }
  
  .search__best-bet-item {
      width: 80%;
      float: right;
  }
  
  .search__best-bet .icon-wrapper {
      width: 20%;
      float: left;
  }
  
  .search__best-bet i {
      color: #fab714;
      font-size: 3em;
      margin: 0 auto;
      display: block;
      width: 1em;
      line-height: 1em;
  }
  
  .search__best-bet .result__summary {
      margin-bottom: 0;
  }
  
  .imagemetadata {
      padding-bottom: 25px;
      }
 
  
  /*-- module:megamenu --*/
  .globalheader {
      z-index: 100;
      display:none;
  }
  
  .homepage .megamenu {
      top: 3em !important;
  }
  
  .megamenu {
      position: fixed;
      height: 5.5em;
      top: 0em;
      background: #0066CC;
      width: 100%;
      z-index: 10;
      -webkit-transition: height 0.2s ease;
      -moz-transition: height 0.2s ease;
      transition: height 0.2s ease;
  }
  
  .megamenu__menu {
      background: #0066CC;
  }
  
  .megamenu__home-icon {
      height: auto;
      width: auto;
      margin: 0.2em 0 0 5%;
      max-height: 4.5em;
  }
  
  .megamenu__mobileicons {
      float: right;
      color: white;
      position: absolute;
      right: 3%;
      top: 0.4em;
      font-size: 2.4em;
      cursor: pointer;
  }
  
  .singapore .megamenu__mobileicons {
      top: 1.2em;
      font-size: 1.5em;
  }
  
  .singapore .megamenu__mobileicons--close i {
      font-size: 1.5em;
      top: 1em;
      right: 3%;
  }
  
  .megamenu__mobileicons i.icon-search {
      padding-right: 7px;
  }
  
  .megamenu__inner, .megamenu__inner-footer, .megamenu__static, .megamenu__tagline {
      display: none;
  }
  
  .megamenu.show {
      position: fixed;
      height: auto;
      height: calc(100% - 3em);
      overflow-y: auto;
  }
  
  .megamenu.show .megamenu__inner {
      display: block;
      margin: 1.4em 0 0;
      overflow: hidden;
  }
  
  .megamenu.show .megamenu__inner-footer {
      display: block;
  }
  
  .megamenu.show .megamenu__home-icon, .megamenu.show .megamenu__mobileicons {
      display: none;
  }
  
  .megamenusearch {
      width: 100%;
      overflow: hidden;
  }
  
  .megamenusearch__form {
      position: relative;
      width: 80%;
      float: left;
      margin-left: 5%;
  }
  
  .megamenusearch__text-input {
      width: 100%;
      font-size: 1.4em;
      padding: 0.2em;
  }
  
  .megamenusearch__submit-button {
      float: right;
      position: absolute;
      background: #3b3b3b;
      top: 0;
      right: 0;
      height: 100%;
      width: 16%;
      border: 2px solid white;
      padding: 0;
      text-align: center;
  }
  
  .megamenusearch__submit-button i {
      color: #FFF;
      font-size: 1.6em;
  }
  
  .megamenu__mobileicons--close {
      float: right;
      width: 18%;
      display: block;
      margin: 0 1%;
  }
  
  .megamenu__mobileicons--close i {
      color: #FFF;
      font-size: 2.4em;
      position: absolute;
      top: 0.4em;
      right: 3%;
  }
  
  .megamenu-promo {display:none;}
  .megamenu-promo a {display:none;}
  
  .megamenu__level-1-menu, .megamenu__inner-footer-menu {
      list-style: none;
      padding: 0;
      margin: 1em 0;
      display: block;
      float: left;
      width: 100%;
  }
  
  .megamenu__level-1-item {
      margin: 0;
  }
  
  /****** JCUPW-34 ******/
 .megamenu__level-1-item:nth-child(n+7), .megamenu__level-1-item.asset-4054 {
    display: none;
}
  
  .megamenu__level-1-link {
      color: #FFF;
      text-decoration: none;
      font-size: 1.4em;
      padding: 0.4em 5%;
      border-bottom: 1px solid #FFF;
      display: block;
  }
  
  .megamenu__level-1-item:last-child .megamenu__level-1-link, .megamenu__inner-footer-item:last-child .megamenu__level-1-link {
      border-bottom: none;
  }
  
  .megamenu__inner-footer {
      background: #3b3b3b;
      padding: 0 5%;
  }
  
  .megamenu__inner-footer {
      background: #3b3b3b;
      overflow: hidden;
      float: left;
      height: 100%;
      width: 100%;
  }
  
  .megamenu__level-1-item.open .megamenu__level-1-link {
      border-bottom: none;
  }
  
  .megamenu__level-2 {
      position: relative;
  }
  
  .megamenu__level-2-menu {
      width: 100%;
      background: #3b3b3b;
      padding: 0 5%;
      top: 0;
      left: 0;
      list-style: none;
      overflow: hidden;
  }
  
  .reflow__secondarynavmove__mobile .megamenu__level-2-menu {
    background: #D4CFCF;
  }
  
  .megamenu__level-2-item {
      margin-left: 1em;
      border-bottom: 1px solid #797979;
      overflow: hidden;
  }
  
  .megamenu__level-2-item:last-child, .megamenu__level-3-item:last-child, .megamenu__level-4-item:last-child {
      border-bottom: none;
  }
  
  .megamenu__level-2-item.open .megamenu__level-2-link {
      border-bottom: none;
  }
  
  .megamenu__level-2-link {
      color: #FFF;
      text-decoration: none;
      font-size: 1.4em;
      padding: 0.4em 0;
      display: block;
      width: 90%;
      float: left;
  }
  
  .reflow__secondarynavmove__mobile .megamenu__level-2-menu .megamenu__level-2-link {
    color: #0066CC;
  }
  
  .megamenu__level-toggle {
      display: block;
      float: right;
      width: 10%;
      height: 3em;
      position: relative;
      cursor: pointer;
  }
  
  .megamenu__level-toggle i, .megamenu__level-toggle span {
      color: #FFF;
      text-decoration: none;
      height: auto;
      font-style: normal;
      font-size: 1.2em;
      position: absolute;
      top: 10px;
      right: 30%;
  }
  
  .reflow__secondarynavmove__mobile .megamenu__level-2-menu .icon-chevron-down {
    color: #0066CC;
  }
  
  .megamenu__level-2-item:last-child .megamenu__level-2-link {
      border-bottom: none;
  }
  
  .megamenu__level-3-menu {
      width: 100%;
      padding: 0 0 0 5%;
      top: 0;
      left: 0;
      list-style: none;
      clear: both;
  }
  
  .megamenu__level-3-item.open .megamenu__level-3-link {
      border-bottom: none;
  }
  
  .megamenu__level-3-item {
      border-bottom: 1px solid #797979;
      overflow: hidden;
  }
  
  .megamenu__level-3-link {
      color: #FFF;
      text-decoration: none;
      padding: 0.4em 0;
      display: block;
      font-size: 1.2em;
      width: 90%;
      float: left;
      overflow: hidden;
  }
  
  .megamenu__level-4-menu {
      width: 100%;
      padding: 0 0 0 5%;
      top: 0;
      left: 0;
      list-style: none;
      clear: both;
  }
  
  .megamenu__level-4-item {
      border-bottom: 1px solid #797979;
  }
  
  .megamenu__level-4-link {
      color: #FFF;
      text-decoration: none;
      padding: 0.4em 0;
      display: block;
      font-size: 1em;
      overflow: hidden;
  }
  .reflow__secondarynavmove__mobile .megamenu__level-4-link {
      color: #0066CC;
  }
  
  .megamenu__level-3-menu {
      display: none;
  }
  
  .megamenu__level-2-item.open .megamenu__level-3-menu {
      display: block;
  }
  
  .megamenu__level-4-menu {
      display: none;
  }
  
  .megamenu__level-3-item.open .megamenu__level-4-menu {
      display: block;
  }
  
  /*-- module:secondarynav --*/
  .secondarynav {
      display: none;
  }
  
  .secondarynav__icon {
      display: none;
  }
  
  .coursespage .secondarynav {
      display: none;
  }
  
  .reflow__secondarynavmove__mobile{
    clear: both;
  }
  
  @media (min-width: 700px) {
      .reflow__secondarynavmove__mobile{
          clear: none;
      }  
  }
  .reflow__secondarynavmove__mobile .secondarynav {
    display: block;
  }
  
  .reflow__secondarynavmove__mobile .megamenu__level-2-menu .megamenu__level-2-link, .reflow__secondarynavmove__mobile .megamenu__level-3-menu .megamenu__level-3-link {
     color: #0066CC; 
  }
  
  .reflow__secondarynavmove__mobile .secondarynav__title .secondarynav__title-link {
    color: #0066CC;
    text-decoration: none;
    font-size: 1.4em;
    font-weight: bold;
    padding: 0.4em 5%;
    display: block;
  }
  
  .reflow__secondarynavmove__mobile .secondarynav__title {
    background: #D4CFCF;
  }
  
  .reflow__secondarynavmove__mobile .megamenu__level-2-menu {
    background: #D4CFCF;
    margin: 0;
  }
   
  
  /*-- module:tables --*/
  table {
      width: 100%;
      clear: both;
      border: 1px solid gray;
  }
  
  table p {
      margin: 0.2em;
  }
  
  .table-striped tr:nth-child(even) {
     background: #d9e2ea;
  }
  
  .table-striped tr:nth-child(odd)  {
     background: white;}
  
  /*Jira - JCU SDQLD-1325*/
  table.fancy, 
  table.fancyleftcolumn, 
  table.fancytoprow, 
  table.fancytoprow1, 
  table.fancyleftcolumn1 {
      color: black;
      background: white;
      border-collapse: collapse;
      font-size: 1em;
      padding: 0px;
  }
  
  /*Jira - JCU SDQLD-1325*/
  th {
      background: #eee;
      color: #000;
      text-align: left;
      padding: 0.4em 0.3em;
      font-weight: 600;
      border: 1px solid gray;
      vertical-align: top;
      text-align: left;
  }
  
  
  .fancy th, 
  table.fancytoprow th, 
  .fancyleftcolumn th, 
  .fancytoprow1 th, 
  .fancyleftcolumn1 th, 
  .fancy td .Heading_2 {
      color: white;
      padding: 0.5em;
      margin: 0;
      background: #2E3192;
      text-align: left;
  }
  
  
  tbody tr:last-child {
      /*border-bottom: 1px solid #000;*/
  }
  
  form table,
  form table tr,
  form table td,
  form table th {
  
  }
  
  
  td {
      padding: 0.5em 0.2em;
      border: 1px solid gray;    
      vertical-align: top;
      text-align: left;
  }
  
  .course__table,
  .course__table th,
  .course__table td,
  table.borderless,
  table.borderless th,
  table.borderless td {
     border: none;
  }
  
  .sitemap tr {
      border-bottom: none;
  }
  .sitemap td {
      padding: 0;
  }
  .sitemap table {
      width: initial;
  }
  
  td .evenrow, 
  tr.evenrow {
      color: black;
      background: #d9e2ea;
  }
  
  
  td .oddrow, 
  tr.oddrow, 
  .highlightTable tr td {
      color: black;
      background: #ffffff;
  }
  
  /*-- module:tiles --*/
  
  .tiles__item {
    width: 49%;
    margin: 0 2% 0.5em 0;
    float: left;
    position: relative
  }
  
  @media screen and (max-width: 699px) {
  
    .tiles__item {
      height: auto !important;
    }
  
  }
  
  .tiles__item.tiles__item--subtext,
  .tiles__item.tiles__item--subtext ~ .tiles__item {
      margin-bottom: 3em;
  }
  
  .tiles__item:nth-of-type(2n+2) {
      margin-right: 0%;
  }
  
  .tiles__link, 
  .tiles__image {
      display: block;
  }
  
  .tiles__link {
      height: 100%;
  }
  
  .tiles__overlay {
    min-height: 250px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  @media screen and (min-width: 420px) {
    .tiles__overlay {
      min-height: 180px;
    }
  }
  
  @media screen and (min-width: 580px) {
    .tiles__overlay {
      min-height: 140px;
    }
  }
  
  .tiles__title {
    padding: 0.4em 4%;
    font-weight: normal;
  }
  
  .tiles__description {
    padding: 0.4em 4%;
    border-top: 1px dotted #fff;
    font-weight: 300;
    font-size: 0.9em;
  }
  
 /* @media screen and (min-width: 700px) { JCUPW-67*/
  
    .tiles__overlay {
      width: 100%;
      height: auto;
      /*min-height: auto !important;*/
      min-height: 60px;
      overflow: hidden;
      position: absolute;
      bottom: 0;
      border-radius: 0 10px 0 0;
      -webkit-transition: height 0.5s ease-in;
      -moz-transition: height 0.5s ease-in;
      transition: height 0.5s ease-in;
    }
  
    .tiles__description {
      display: none;
    }
  
    .tiles__item:hover .tiles__overlay {
      height: 100%;
    }
  
    .tiles__item:hover .tiles__title{
      height: auto;
    }
  
    .tiles__item:hover .tiles__description {
      display: block;
    }
  
  /*} JCUPW-67*/
  
  
  .bluebox {
      background: #0066b3;
      margin-bottom: 1em;
      clear: both;
  }
  
  .blackbox {
      background: #2d2d2d;
      margin-bottom: 1em;
      clear: both;
  }
  
  .blackbox__title {
      color: #FFF;
      font-weight: 600;
      font-size: 1em;
      padding: 0.4em 4%;
      border-bottom: 1px dotted #FFF;
      margin: 0;
  }
  
  .blackbox__stories-wrapper {
      list-style: none;
      padding: 0 4% 0;
      margin: 0;
  }
  
  .blackbox__item {
      border-bottom: 1px dotted #818181;
      width: 100%;
      padding: 0.4em 0;
  }
  
  .blackbox__item:last-child {
      border-bottom: 0;
  }
  
  .blackbox__stories-wrapper .blackbox__item-link {
      color: #FFF;
      font-size: 0.8em;
      font-weight: 500;
  }
  
  /*-- module:toolbarmenu --*/
  /*-- module:squiz-module-accordion --*/
  /*.tabs__tab-list {
      @extend %list-reset; 
  }
  
  .tabs__item {
      @include sq-inline-block;
  }
  */
  .tabs__link {
      padding: .5em;
      border: 1px solid;
      border-bottom: 0;
      background: #eee;
      &.uber-accordion__button-active {
          background: #fff;
      }
  }
  
  .js-enabled .tabs__target {
      display: none;
      &.uber-accordion__target-active {
          display: block;
      }
  }
  .no-js .uber-accordion__target {
      display: none;
  }
  
  .no-js .uber-accordion__target:target {
      display: block;
  }
  
  /*-- module:squiz-module-magnific-popup --*/
  /*-- module:squiz-module-responsive-tables --*/
  .responsive-table td:before {
      text-transform: uppercase;
      content: attr(data-th);
      font-weight: bold;
      display: block;
  }
  
  /*-- module:squiz-module-skip-links --*/
  .skip-links__link {
      background: #ffffff;
      color: #0000ff;
  }
  
  .skip-links__link:focus {
      position: absolute;
      top: 0;
      z-index: 1000;
  }
  
  /*-- module:squiz-module-slick --*/
  .slick-list {
      position: relative;
      overflow: hidden;
  }
  
  .slick-list:focus {
      outline: none;
  }
  
  .slick-list.dragging {
      cursor: pointer;
      cursor: hand;
  }
  
  .slick-list, .slick-track, .slick-slide, .slick-slide img {
      -webkit-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
      -o-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
  }
  
  .slick-track {
      position: relative;
      left: 0;
      top: 0;
      display: block;
      zoom: 1;
  }
  
  .slick-track:before, .slick-track:after {
      content: "";
      display: table;
  }
  
  .slick-track:after {
      clear: both;
  }
  
  .slick-loading .slick-track {
      visibility: hidden;
  }
  
  .slick-slide {
      float: left;
      height: 100%;
      min-height: 1px;
      display: none;
  }
  
  [dir="rtl"] .slick-slide {
      float: right;
  }
  
  .slick-slide img {
      display: block;
  }
  
  .slick-slide.slick-loading img {
      display: none;
  }
  
  .slick-slide.dragging img {
      pointer-events: none;
  }
  
  .slick-initialized .slick-slide {
      display: block;
      max-height: 42em;
      position:relative;
  }
  
  .backgroundcarousel.slick-initialized .slick-slide {
      max-height: none;
  }
  
  .slick-loading .slick-slide {
      visibility: hidden;
  }
  
  .slick-vertical .slick-slide {
      display: block;
      height: auto;
      border: 1px solid transparent;
  }
  
  .slick-slideshow__slide img {
      margin: 0 auto;
  }
  
  .slick-next {
      position: absolute;
      top: 50%;
      margin-top: -20px;
      right: 0;
  }
  
  .slick-prev {
      position: absolute;
      top: 50%;
      margin-top: -10px;
      left: 0;
  }
  
  .slick-dots {
      margin-top: 1em;
      text-align: center;
  }
  
  .slick-dots li {
      display: inline-block;
      *display: inline;
      zoom: 1;
  }
  
  .slick-dots li + li {
      margin-left: 1em;
  }
  
  /*-- module:squiz-module-spritesheet --*/
  .sq-icon__carouselpause {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -0px -0px;
      width: 18px;
      height: 18px;
  }
  
  .no-svg .sq-icon__carouselpause {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  .sq-icon__dotactive {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -50px -0px;
      width: 18px;
      height: 18px;
  }
  
  .no-svg .sq-icon__dotactive {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  .sq-icon__dot {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -100px -0px;
      width: 18px;
      height: 18px;
  }
  
  .no-svg .sq-icon__dot {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  .sq-icon__pause {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -150px -0px;
      width: 18px;
      height: 18px;
  }
  
  .no-svg .sq-icon__pause {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  .sq-icon__prev {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -200px -0px;
      width: 25px;
      height: 46px;
  }
  
  .no-svg .sq-icon__prev {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  .sq-icon__next {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -250px -0px;
      width: 25px;
      height: 46px;
  }
  
  .no-svg .sq-icon__next {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  .sq-icon__secondarynavarrow {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -300px -0px;
      width: 16px;
      height: 32px;
  }
  
  .no-svg .sq-icon__secondarynavarrow {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  .sq-icon__burger {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -350px -0px;
      width: 31px;
      height: 24px;
  }
  
  .no-svg .sq-icon__burger {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  .sq-icon__youtube {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -0px -50px;
      width: 41px;
      height: 41px;
  }
  
  .no-svg .sq-icon__youtube {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  .sq-icon__facebook {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -50px -50px;
      width: 41px;
      height: 41px;
  }
  
  .no-svg .sq-icon__facebook {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  .sq-icon__twitter {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -100px -50px;
      width: 41px;
      height: 41px;
  }
  
  .no-svg .sq-icon__twitter {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  .sq-icon__linkedin {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -150px -50px;
      width: 41px;
      height: 41px;
  }
  
  .no-svg .sq-icon__linkedin {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  .sq-icon__map-marker {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -200px -50px;
      width: 13px;
      height: 17px;
  }
  
  .no-svg .sq-icon__map-marker {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  .sq-icon__external-link {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -250px -50px;
      width: 16px;
      height: 17px;
  }
  
  .no-svg .sq-icon__external-link {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  .sq-icon__pdf {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -0px -100px;
      width: 29px;
      height: 31px;
  }
  
  .no-svg .sq-icon__pdf {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  .sq-icon__doc {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -50px -100px;
      width: 29px;
      height: 31px;
  }
  
  .no-svg .sq-icon__doc {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  .sq-icon__xls {
      display: inline-block;
      background: transparent no-repeat;
      background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
      background-position: -100px -100px;
      width: 29px;
      height: 31px;
  }
  
  .no-svg .sq-icon__xls {
      background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
  }
  
  /* tables within accordions - added by Andrea */
  .accordion__table tr {
      border-bottom:1px solid #aaaaaa;
  }
  
  .accordion__table th {
      background-color:#dddddd;
  }
  
  .accordion__table td {
  padding:6px;
  }
  
  /*
  --------------------
  Forms styling
  --------------------
  */
  
  .sq-form-error,
  .sq-form-errors-message {
    position: relative;
    background: #F9EAEA;
    color: #BC3531;
    border: solid 2px #BC3531;
    padding: 0.5em 1em;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
  }
  
  .sq-form-error i {
    font-size: 2em;
    margin-top: 0.5em;
    width: 15%;
    margin-left: 2%;
    display: block;
    float: left;
  }
  
  .sq-form-errors-message {
  /*  width: 80%; */
    float: right;
  }
  
  .sq-form-question {
    margin: 1em 0;
  }
  
  .sq-form-question-datetime input[type="text"], .sq-form-question-datetime label, .sq-form-question-datetime select {
    display: block;
    width: 100%;
    margin-top: 0.5em;
  }
  
  .sq-form-question input,
  .sq-form-question textarea {
    width: 100%;
  }
  
  .sq-form-question-note {
    font-size: 0.9em;
  }
  
  .sq-form-question-option-list input,
  .sq-form-question-tickbox-list input {
    width: auto;
    margin-right:0.5em;
  }
  
  .sq-form-question-option-list ul,
  .sq-form-question-tickbox-list ul {
    list-style: none;
    padding: 0;
  }
  
  .sq-form-submit{
  
    float: left;
    display: block;
    background-color: #0066CC;
    color: #FFF;
    border: none;
    height: 2em;
    line-height: 1.5em;
    width: 5em;
    margin: 0 1em 1em 0;
  }
   
   .sq-form-reset{
  
    float: left;
    display: block;
    border: none;
    height: 2em;
    line-height: 1.5em;
    width: 5em;
    margin: 0 1em 1em 0;   
  }
  
  .sq-form-section-title {
    font-size:1.4em;
    font-weight:bold;
  }
  
    /*
  --------------------
  Library page
  --------------------
  */
  
  .library__search-input {
    width: 100%;
    margin-bottom: 1em;
  }
  
  .library__search-submit {
    clear: both;
    float: left;
    display: block;
    background-color: #0066CC;
    color: #FFF;
    border: none;
    height: 2em;
    line-height: 1.5em;
    width: 5em;
    margin: 0 1em 1em 0;
  }
  
  .librarysearchbox .library__search-more-link {
    padding-top: 0.2em;
    display: block;
    font-weight: normal;
  }
  
  .librarysearchbox .library__search-about-link {
    padding-top: 0.2em;
    display: block;
    font-weight: normal;
    margin-left:1em;
  }
  
  .library__chat {
    float:left;
  }
  
  .library__icons-social {
    font-size:2em;
    float:right;
  }
  
  
  .library-widget-group .tab > a, .library-widget-group .tab form a {
    display: inline-block;
    margin-top: 10px;
  }
  
  /*
  --------------------
  Courses landing page
  --------------------
  */
  
  .landingpagecourses {
      background: #2d2d2d;
      padding: 0.5em 4% 0.6em;
      width: 100%;
  }
  
  .landingpagecourses__search-wrapper {
     display:block;
     margin:0 auto;
     overflow:hidden;
     padding:1em 2%;;
  }
  
  .landingpagecourses__title {
      display: block;
      color: #FFF;
      font-size: 1em;
      margin: 0.2em 0;
      padding: 0;
      font-weight: normal;
      float:left;
      width:30%;
  }
  
  .landingpagecourses__search-form {
      display:block;
      float:left;
      width:70%;
  }
  
  .landingpagecourses__search-text-input {
      width: 80%;
      float: left;
      font-size: 1em;
      height: 2em;
      line-height: 2em;
      padding: 0 0.5em;
  }
  
  .landingpagecourses__search-submit-button {
      width: 2em;
      margin-left: 2%;
      float: left;
      height: 2em;
      background: #1668bf;
      color: #FFF;
      border: none;
      position: relative;
  }
  
  .landingpagecourses__search-submit-button i {
      position: absolute;
      top: 5px;
      left: 7px;
      width: 18px;
  }
  
  
  /*
  --------------------
  Services page
  --------------------
  */
  
  .services__searchform {
    margin-bottom:1em;
  }
  
  .footer__membership-wrapper .footer__heading {
    margin-bottom: 0.5em;
  }
  
  .footer__membership-wrapper a {
    display: inline-block;
    width: 49%;
  }
  
  .scholarships__search {
    overflow:hidden;
    clear:both;
  }
  
  .scholarships__search-main-input input {
    width: 100%;
    margin-bottom:1em;
  }
  
  .scholarships__search .scholarships__search-main-input label {
    margin:0;
    font-weight:bold;
  }
  
  .scholarships__search ul {
    padding-left: 0.2em;  
    list-style:none;
  }
  
  .scholarships__search legend {
    font-size:1.2em;
    font-weight:bold;
  }
  
  .scholarships__search label {
    margin-left:0.5em;
  }
  
  .scholarships__search-submit input {
      background-color: #0066CC;
      color: #FFF;
      border: none;
      height: 2em;
      line-height: 1.5em;
      width: 8em;
      float: right;
      padding-right: 0.5em;
      clear: both;
  }
  
  
  
  .footer__campuslist-item {
      width: 40%;
      padding: 0.1em 0;
  }
  
  .footer__campuslist-item a {
       color: #2d2d2d;
       text-decoration: none;
       font-size: 0.8em;
  }
  
  /*
  --------------------
  JCU Existing styles recreated
  --------------------
  */
  
  .IconOnly {
      width: 100%;
      float: left;
      text-align: center;
      margin-bottom: 2em;
  }
  
  .IconOnly small {
      clear: both;
      display: block;
  }
  
  
  .library-col-third {
    overflow: hidden;
  }
  
  .homepagecourses__apply-wrapper {
      display: none;
  }
  
  @media (min-width: 43.75em) {
    /*
  --------------------
  Modules
  --------------------
  */
    /*-- module:accordions --*/
    /*-- module:carousel --*/
    /*-- module:courses --*/
    /*-- module:footer --*/
    /*-- module:globalheader --*/
    /*-- module:homepagebox --*/
    /*-- module:homepagecourses --*/
    /*-- module:insidebackground --*/
    /*-- module:insidebody --*/
    /*-- module:insidebreadcrumbs --*/
    /*-- module:megamenu --*/
    /*-- module:secondarynav --*/
    /*-- module:tables --*/
    /*-- module:tiles --*/
    /*-- module:toolbarmenu --*/
    /*-- module:squiz-module-responsive-tables --*/
      body:before {
          content: 'tablet';
      }
  
      .hide-for-mobile {
          display: block !important;
      }
  
      .hide-tablet-up {
          display: none !important;
      }
  
      select.sq-form-field {
        width:auto;
      }
  
      .carousel {
          margin: 1.8em 0 0;
          z-index: 5;
      }
  
      .backgroundcarousel {
          z-index: 3;
      }
  
      .carousel__item {
          position: relative;
      }
  
      .carousel__image {
          width: 100%;
      }
  
      .carousel__title {
          top: 44%;
          font-size: 1.6em;
          padding-left: 3em;
          width: 50%;
      }
  
      .carousel__title.position-top {
          top: 4.8em;
      }
  
      .carousel__title.position-bottom {
          bottom: 0;
      }
  
      .carousel .slick-dots, .carousel .slick-prev, .carousel .slick-next {
          visibility: inherit;
      }
  
      .carousel .slick-dots {
          position: absolute;
          bottom: 0;
          right: 0;
          z-index: 20;
          left: inherit;
      }
  
      .carousel .slick-pause {
        bottom: 1em;
        right: 0.5em;
        margin-bottom: 0.6em;
        z-index: 1000;
        position: absolute;
        content: '';
        background: transparent no-repeat;
        background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
        background-position: 0px -0px;
        width: 18px;
        height: 18px;
        border: none;
        text-indent: -9999px;
      }
  
      .carousel .slick-pause.paused {
        bottom: 1em;
        right: 0.5em;
        margin-bottom: 0.6em;
        z-index: 1000;
        position: absolute;
        content: '';
        background: #0066CC no-repeat;
        background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
        background-position: 0px -0px;
        width: 18px;
        height: 18px;
        border: none;
        text-indent: -9999px;
      }
  
      /*.carousel .slick-prev, .carousel .slick-next {
          position: absolute;
          top: 50%;
          left: inherit;
      }*/
  
      .slick-prev:before {
          position: absolute;
          content: '';
          top: 0.6em;
          left: 0.5em;
          background: transparent no-repeat;
          background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
          background-position: -200px -0px;
          width: 25px;
          height: 46px;
      }
  
      .no-svg .slick-prev:before {
          background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
      }
  
      .slick-next:after {
          position: absolute;
          content: '';
          top: 0.6em;
          right: 0.5em;
          background: transparent no-repeat;
          background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
          background-position: -250px -0px;
          width: 25px;
          height: 46px;
      }
  
      .no-svg .slick-next:after {
          background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
      }
  
      .carousel .slick-prev, .carousel .slick-next {
          border: none;
          text-indent: -9999px;
          background-color: rgba(0, 0, 0, 0.7);
          color: #000;
          height: 4em;
          width: 3em;
      }
  
      .carousel .slick-dots {
          background-color: rgba(0, 0, 0, 0.7);
          padding: 0.5em;
          bottom: 1em;
          padding-right:1.8em;
      }
  
      .carousel .slick-dots li {
          width: 18px;
          height: 18px;
          margin: 0;
          padding: 0;
          position: relative;
          margin-left: 0.2em;
      }
  
      .slick-dots button {
          border: none;
          text-indent: -9999px;
          background: none;
      }
  
      .slick-dots li.slick-active:before {
          position: absolute;
          content: '';
          left: 0;
          top: 3px;
          background: transparent no-repeat;
          background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
          background-position: -50px -0px;
          width: 18px;
          height: 18px;
      }
  
      .no-svg .slick-dots li.slick-active:before {
          background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
      }
  
      .slick-dots li button {
          position: absolute;
          content: '';
          left: 0;
          top: 3px;
          background: transparent no-repeat;
          background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
          background-position: -100px -0px;
          width: 18px;
          height: 18px;
      }
  
      .no-svg .slick-dots li button {
          background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
      }
  
      .coursestitle_wrapper {
          margin: 0 4% 0 4%;
          width: auto;
          display: block;
          position: relative;
      }
  
      .pagetitle.coursetitle {
          margin: 0;
          max-width: 58%;
          font-size: 1.4em;
          top: -4.5em;
          bottom: inherit;
      }
  
      .pagetitle.longpagetitle {
        font-size: 1.4em;
        top: -4.5em;
      }
  
      .courses__nowbuttonwrapper {
          width: 40%;
          position: absolute;
          top: -6.3em;
          right: 0;
      }
  
      .courses__applynow, .courses__enquirenow {
          font-size: 1em;
      }
  
      .box.coursebox .box__title {
        padding: 0.4em 0;
        margin-left: 0.7em;
      }
  
      .coursebox__at-a-glance-item {
          width: 49%;
          margin-right: 2%;
          float: left;
          min-height: 5.5em;
      }
  
      .coursebox__at-a-glance-item:nth-of-type(2n) {
          margin-right: 0;
      }
  
      .coursebox__at-a-glance-item:nth-last-child(2), .coursebox__at-a-glance-item:last-child {
          border-bottom: none;
      }
  
      .coursecontacts {
          padding: 1em;
      }
  
      .coursecontacts__icon {
          width: 12%;
          float: left;
      }
  
      .coursecontacts__text {
          width: 38%;
          float: left;
          clear: none;
      }
  
      .coursecontacts__buttonwrapper {
          width: 50%;
          float: left;
          clear: none;
      }
  
      .coursecontacts__button {
          float: left;
          height: 4em;
          margin: 0 1% 0 0;
          font-size: 0.9em;
          padding-top: 0.9em;
      }
  
  
      .coursecontacts__social {
          padding-top: 2em;
          overflow: hidden;
          width: 100%;
      }
  
  
      .footer {
          position: relative;
          padding-bottom: 1em;
      }
  
      .footer__explore-wrapper {
          width: 49%;
          margin-right: 2%;
      }
  
      .footer__explore-lists {
        display: block;
        clear: both;
        overflow: hidden;
        margin-bottom: 1em;
      }
  
      .footer__tradition {
          width: 45%;
          position: absolute;
          top: 0;
          left: 51%;
      }
  
      .footer__heading {
          border-top: 0;
      }
  
      .footer__membership-wrapper .footer__heading {
          /*border-bottom: 0;*/
          float: left;
          width: 45%;
      }
  
  
  
      .footer__membership-wrapper {
          /*border-top: 1px dotted #2d2d2d;*/
          width: 48%;
          float: left;
          clear: both;        
      }
  
      .footer__logos {
          width: 50%;
          float: left;
      }
  
      .footer__social-and-legals {
          width: 88%;
          clear: both;
          float: left;
          display: block;
          padding: 0.5em 0;
          border-top: 1px dotted #2d2d2d;
          border-bottom: 1px dotted #2d2d2d;
      }
  
      .footer__social {
          border-bottom: none;
          border-top: none;
          width: 25%;
          float: left;
          display: block;
          margin: 0;
      }
  
      .footer__social-list {
          width: 100%;
      }
  
      .footer__social-list-item a {
          font-size: 1.4em;
      }
  
      .footer__legals {
          float: left;
          width: 75%;
          display: block;
          clear: none;
          border-bottom: none;
          padding: 0;
          margin: 0;
      }
  
      .footer__legals-list {
          margin-left: 5%;       
          width: 95%;
      }
  
      .footer__legals-item, .footer__legals-item:first-child, .footer__legals-item:nth-of-type(2), .footer__legals-item:last-child {
          float: left;
          display: block;
          width: auto;
      }
  
      .footer__legals-item .footer__legals-link:after {
          content: "|";
          color: #2d2d2d;
          margin: 0 0.5em 0 0.5em;
      }
  
      .footer__legals-item--rti .footer__legals-link:after {
          content: "";
      }
  
      .footer__copyright {
          padding: 0.5em 0;
          width: 88%;
          float: left;
          display: block;
          clear: none;
      }
  
      .footer__copyright-text {
          display: block;
          float: left;
          font-size: 0.7em;
          margin-right: 1em;
      }
  
      .footer__copyright-text--break-for-tablet {
          clear: left;
      }
  
      .footer__campuslist {
          display: block;
          /*float: right;*/
          /*width: 10%;*/
          padding-top:1em;
          padding-left:1em;
      }
  
      .footer__campuslist-list {
          list-style: none;
          padding: 0;
          margin: 0;
          padding-top:1em;
      }
  
      .footer__campuslist-item {
          border-top: 1px solid #2d2d2d;
          width: 40%;
          padding: 0.1em 0;
      }
  
      .footer__campuslist-item:last-child {
          border-bottom: 1px solid #2d2d2d;
      }
  
      .footer__campuslist-item a {
          color: #2d2d2d;
          text-decoration: none;
          font-size: 0.8em;
      }
  
      .footer__singapore-logo {
          margin: 0 auto 1em;
          width: 40%;
          display: block;
          float: left;
      }
  
      .footer__singapore-tagline {
          padding-left: 3%;
          font-size: 1em;
          text-align: left;
          float: left;
          width: 60%;
      }
  
      .footer__singapore-tagline-sub {
          font-size: 0.7em;
          width: 60%;
          float: left;
          text-align: left;
          padding-left: 3%;
      }
  
  
      .footer__singapore-tagline-wrapper {
          margin-top:0.25em;
      }
  
      .singapore .footer__heading {
          text-align: left;
          margin-top: 0;
          padding-top: 0;
      }
  
      .singapore .footer__social {
          border-top: 0;
          margin-top: 0;
      }
  
      .singapore .footer__social-and-legals {
          width: 100%;
      }
  
      .singapore .footer__social {
          margin-top: 0.5em;
      }
  
      .singapore .footer__legals-item {
          width: auto;
          text-align: center;
          float: left;
      }
  
      .singapore .footer__copyright {
          width: 100%;
      }
  
      .singapore .footer__copyright-text {
          font-size: 0.8em;
          float: left;
          clear: both;
          width: 100%;
          text-align: center;
      }
  
      .homepage .megamenu {
          top: 1.875em !important;
      }
  
      .globalheader {
          display:block;
          height: 1.875em;
      }
  
      .globalheader__inner {
          padding: 0;
          height: 1.875em;
      }
  
      .globalheader__toolbar {
          float: left;
          width: 60%;
          padding: 0;
      }
  
      .globalheader__toolbar-nav {
          float: left;
          margin: 0;
          width: auto;
          padding: 0;
      }
  
      .globalheader__toolbar-link {
          font-size: 0.9em;
          position: relative;
          padding: 0.2em 0;
          display: block;
      }
  
      .globalheader__toolbar-links {
          float: right;
          margin: 0.2em 0;
          width: auto;        
          padding: 0;
          display: block;
      }
  
      .globalheader__toolbar-link i ,.globalheader__toolbar-link span[class^="icon-"]{
      /*font-size: 0.8em;
    position: absolute;
    top: 0.4em;
    right: 0.5em;
    display: block;*/
          font-size: 0.8em;
          float: right;
          padding-top: 0.3em;
          padding-left: 0.5em;
          display: block;
          margin-right: 0.5em;
      }
  
      .globalheader__toolbar-links .globalheader__toolbar-item {
          padding: 0 0.5em 0 0;
          width: auto;
      }
  
      .globalheader__toolbar-nav .globalheader__toolbar-item {
      /*width:33%;*/
          width: auto;
          padding: 0.2em 0.3em 0 0;
          height: 1.875em;
      }
  
      .globalheader__toolbar-item-no-dropdown {
        float: left;
        padding: 0.2em 0.3em 0 0;
        height: 1.875em;
      }
  
      .globalheader__toolbar-nav .globalheader__toolbar-link {
          text-align: left;
          padding-left: 0.5em;
      }
  
      .globalsearch {
          display: block;
          float: right;
          width: 40%;
          background: #565656;
          height: 1.875em;
      }
  
      .globalsearch__text-label {
          display: none;
      }
  
      .globalsearch__text-input {
          margin: 0.2em 2%;
          width: 54%;
          font-size: 0.8em;
          float: left;
      }
  
      .globalsearch__options-label {
          float: left;
          width: 30%;
          height: 1.9em;
          line-height: 2em;
          color: #FFF;
          text-align: center;
      }
  
      .globalsearch__options-label i {
          font-size: 0.7em;
          line-height: 1.9em;
          margin-left: 1em;
      }
  
      .globalsearch__submit-button-wrapper {
          width: 10%;
          margin-right: 2%;
          float: left;
          display: block;
      }
  
      .globalsearch__submit-button {
          background: #0066CC;
          height: 1.5em;
          border: none;
          margin: 0.2em auto;
      }
  
      .globalsearch__submit-button i, .globalsearch__submit-button span {
          color: #FFF;
      }
  
      .globalheader__toolbar-nav .globalheader__toolbar-item:hover, .globalheader__toolbar-nav .globalheader__toolbar-item.open {
          background: #3f3f3f;
          height: 2em;
      }
  
      .globalheader__toolbar-nav .globalheader__toolbar-item:hover .globalheader__nav, .globalheader__toolbar-nav .globalheader__toolbar-item.open .globalheader__nav {
          text-align: left;
          display: block;
          width: 102%;
          position: fixed;
          left: -1%;
          top: 2em;
          height: auto;
          padding: 2em;
          margin: 0;
          background: #3f3f3f;
          z-index: 10;
      }
  
      .globalheader__toolbar-nav .globalheader__toolbar-item:hover .globalheader__nav.tiles-only, .globalheader__toolbar-nav .globalheader__toolbar-item.open .globalheader__nav.tiles-only {
          width: 30%;
      }
  
      .globalsearch .selector {
          display: none;
      }
  
      .globalsearch .sorting__select {
          display: block;
          float: left;
          width: 30%;
          margin-top: 2px;
      }
  
      .globalheader__languages-item {
          width: 33%;
          float: left;
          text-align: right;
      }
  
      .globalheader__languages-link {
          color: #FFF;
          font-weight: normal;
      }
  
      .globalheader__languages-link .icon-chevron-down {
          font-size: 0.8em;
      }
  
      .globalheader__languages-list {
          display: none;
      }
  
      .globalheader__languages-item:hover .globalheader__languages-list, .globalheader__languages-item.open .globalheader__languages-list {
          display: block;
          background: #2d2d2d;
          list-style: none;
          overflow: hidden;
          padding: 0.2em;
          width: auto;
      }
  
      .globalheader__languages-list-item {
          display: block;
          float: left;
          padding: 0.2em 0.5em;
      }
  
      .globalheader__languages-list-link {
          color: #FFF;
      }
  
      .faqsbox, .eventsbox {
          width: 44%;
          float: left;
          clear: none;
      }
  
      .faqsbox {
          margin: 1em 2% 0 4%;
      }
  
      .eventsbox {
          margin: 1em 2% 0 4%;
      }
  
      .eventsbox .box__title {
          float: left;
          width: auto;
          padding-top: 1em;
          margin-left: 0.5em;
          margin-right: 0.5em;
          font-size: 1em;
      }
  
      .eventsbox .box__heading-list {
          padding-left: 0;
      }
  
      .box__target {
          background: #e9e9e9;
          padding: 0 4%;
      }
  
      .eventlist__location {
          background: #d1d1d1;
          width: 108%;
          margin-left:-4%;
      }
  
      .eventlist__location-title {
          margin: 0.4em 0;
      }
  
      .eventlist_time {
          width: 25%;
      }
  
      .newslisting__title {
          margin: 0;
          padding-left: 0;
          background: none;
          color: #333333;
          border-top: 2px solid #7a7a7a;
          border-bottom: 1px solid #7a7a7a;
      }
  
      .newslisting__title a {        
          color: #333333;
      }
  
      .homepagecourses {
          position: relative;
          display: block;
          clear: both;
          float: left;
          margin: 0;
          min-height: 5em;
          overflow: visible;
      }
  
      .homepagecourse__mobile-wrapper {
          display: none;
      }
  
      .homepagecourse__search-wrapper, .homepagecourse__or-wrapper, .homepagecourses__browse-wrapper, .homepagecourses__title, .homepagecourses__search-form, .homepagecourse__or-wrapper, .homepagecourses__browse-studyarea-button, .homepagecourses__browse-delivery-button, .homepagecourses__browse-studyarea-options, .homepagecourses__browse-delivery-options, .homepagecourses__search-submit-button {
          display: block;
          float: left;
      }
  
      .homepagecourses__browse-title {
          display: block;
      }
  
      .homepagecourse__search-wrapper {
          width: 30%;
          margin-right: 1%;
      }
  
      .homepagecourse__or-wrapper {
          width: 5%;
          margin-right: 5%;
          margin-top: 1em;
      }
  
      .homepagecourses__browse-wrapper {
          width: 50%;
          position: relative;
      }
  
      .homepagecourses__search-form {
          width: 100%;
          visibility: visible;
      }
  
      .homepagecourses__search-text-input {
          width: 80%;
          float: left;
          font-size: 1em;
          height: 2em;
          line-height: 2em;
          padding: 0 0.5em;
      }
  
      .homepagecourses__search-submit-button {
          width: 2em;
          margin-left: 2%;
          float: left;
          height: 2em;
          background: #1668bf;
          color: #FFF;
          border: none;
          position: relative;
      }
  
      .homepagecourses__search-submit-button i {
          position: absolute;
          top: 5px;
          left: 7px;
          width: 18px;
      }
  
      .homepagecourse__or-text {
          font-size: 2em;
          color: #767676;
      }
  
      .homepagecourses__browse-title {
          display: block;
          color: #FFF;
          font-size: 1em;
          margin: 0.2em 0;
          padding: 0;
          font-weight: normal;
      }
  
      .homepagecourses__browse-studyarea-options {
          visibility: hidden;
          height: 0;
          -webkit-transition: padding 0.2s ease;
          -moz-transition: padding 0.2s ease;
          transition: padding 0.2s ease;
          margin:0;
      }
  
      .homepagecourses__browse-delivery-options {
          visibility: hidden;
          height: 0;
          -webkit-transition: height 0.2s ease;
          -moz-transition: height 0.2s ease;
          transition: height 0.2s ease;
          margin:0;
      }
  
      .homepagecourses__browse-studyarea-button {
          width: 40%;
          margin-right: 4%;
      }
  
      .homepagecourses__apply-wrapper {
          position: relative;
  
      }
  
      .homepagecourses__browse-delivery-button {
          width: 52%;
      }
  
      .homepagecourses__browse-studyarea-text, .homepagecourses__browse-delivery-text {
          width: 75%;
          float: left;
          padding: 0;
          font-size: 0.8em;
          line-height: 2.5em;
      }
  
      .homepagecourses__browse-studyarea-button, .homepagecourses__browse-delivery-button {
          background: #0066CC;
          padding: 0;
          border: none;
          color: #FFF;
          font-weight: bold;
          float: left;
          height: 2em;
          outline:none;
      }
  
      .homepagecourses__browse-studyarea-button.active, .homepagecourses__browse-delivery-button.active {
          background: #FFF;
          color: #1668bf;
          overflow: visible;
      }
  
      .homepagecourses__browse-studyarea-button.active i, .homepagecourses__browse-delivery-button.active i {
          color: #FFF;
      }
  
      .homepagecourses__browse-wrapper .active .homepagecourses__browse-dropdown {
          height: 2.4em;
      }
  
      .homepagecourses__browse-dropdown {
          width: 25%;
          max-width: 32px;
          background: #1668bf;
          float: right;
          height: 2em;
          position: relative;
      }
  
      .homepagecourses__browse-dropdown i {
          font-size: 0.8em;
          position: absolute;
          top: 8px;
          left: 8px;
          width: 17px;
      }
  
      .homepagecourses__browse-studyarea-options.open {
          display: block;
          position: absolute;
          top: 4.1em;
          right: 0;
          background: #1668bf;
          width: 120%;
          height: auto;
          z-index: 50;
          padding: 1.2em 10% 0 10%;
          margin: 0;
          list-style: none;
          visibility: visible;
      }
  
      .homepagecourses__browse-delivery-options.open {
         top: 4.1em;
         width: 52%;
      }
  
      .homepagecourses__browse-studyarea-option {
          width: 25%;
          float: left;
          color: #FFF;
          text-align: center;
          /*margin-bottom: 0.4em;*/
      }
  
      .homepagecourses__browse-studyarea-option i {
          width: 100%;
          clear: both;
          float: left;
          display: block;
          font-size: 1.8em;
          font-weight: normal;
      }
  
      .homepagecourses__browse-studyarea-option-title {
          font-size: 0.7em;
          line-height: 1.1em;
      }
  
      .homepagecourses__apply-wrapper {
          display: block;
          float: left;
          width: 19%;
      }
      .homepagecourses__apply-button {
          padding: .55em 0;
          background-color: #419B40;
          color: #ffffff;
          position: relative;
          top: 2.3em;
          font-size: .8em;
          font-weight: bold;
          width: 100%;
          text-align: center;
          display: block;
      }
  
      .singapore .homepagecourses__browse-wrapper {
          margin-top: 1.2em;
      }
  
      .singapore .homepagecourses__browse-title {
          float: left;
          width: 50%;
      }
  
      .insidebackground__main-image-wrapper {
          height: 14em;
          margin-top: 1.8em;
      }
  
      .insidebody {
          display: block;
          margin: 0 4% 1em;
          clear: both;
          float: left;
          width: 92%;
      }
  
      .pagetitle {
          top: -4em;
          margin-left: 4%;
          font-size: 1.8em;
          max-width: 92%;
      }
  
      .pagetitle.longpagetitle {
        font-size: 1.4em;
        top: -5.5em;
      }
  
      .newsdetails {
          margin-top: 4em;
      }
  
      .newslandinglisting {
          float: left;
          clear: both;
          display: block;
      }
  
      .newslandinglisting__title {
          font-weight: 700;
          font-size: 1.3em;
      }
  
      .newslandinglisting__button {
          margin-bottom: 0;
      }
  
      .newslandinglisting__header {
          float: left;
          clear: both;
          display: block;
          width: 100%;
          margin-bottom: 1em;
      }
  
      .newslandinglisting__item-image {
          width: 100%;
      }
  
      .newslandinglisting__item:first-child {
          width: 100%;
          height: auto;
      }
  
      .newslandinglisting__item {
          width: 49%;
          float: left;
          display: block;
          height: 18em;
          margin-bottom: 0.75em;
      }
  
      .newslandinglisting__item:nth-of-type(2n+2) {
          margin-right: 2%;
      }
  
      .newslandinglisting__item .newslandinglisting__item-link {
          font-size: 1.2em;
          line-height: 1em;
      }
  
      .newslandinglisting__item:first-child .newslandinglisting__item-link {
          font-size: 1.6em;
          font-weight: 400;
          line-height: 1.2em;
      }
  
      .landingbox:first-child {
          width: 49%;
          margin: 0 2% 1em 0;
          float: left;
          clear: none;
      }
  
      .landingbox {
          width: 49%;
          margin: 0 0 1em 0;
          float: left;
          clear: none;
      }
  
      .landingbox {
          /* min-height: 12em; */
          margin-bottom: 1em;
      }
  
      .landingcarousel {
          margin: 0 2% 1em 0;
          width: 49%;
          display: block;
          float: left;
      }
  
      .landingcarousel.landingcarousel--student {
          margin: 0 auto 1em;
          float: none;
      }
  
      .actionlinks {
          width: 49%;
          display: block;
          float: left;
      }
  
      .landingcarousel .slick-prev, .landingcarousel .slick-next {
          position: absolute;
          left: -9999px;
          visibility: hidden;
      }
  
      .landingcarousel .slick-dots {
          bottom: 0;
      }
  
      .landingbox.faqsbox {
          width: 49%;
          margin-right: 2%;
      }
  
      .landingbox.eventbox {
          width: 49%;
      }
  
      .landingbox .boxlist, .landingbox .eventlist {
          padding: 0;
          margin: 0;
      }
  
      .eventsfiltering__fieldset {
          width: 49%;
          float: left;
          display: block;
      }
  
      .eventsfiltering__fieldset:first-child {
          margin-right: 2%;
      }
  
      .eventsfiltering__legend {
          padding-left: 1em;
      }
  
      .eventsfiltering__item {
          margin-left: 1em;
      }
  
      .eventsfiltering__item:nth-of-type(1) {
          margin-top: 1em;
      }
  
      .eventsfiltering__item:last-child {
          margin-bottom: 1em;
      }
  
      .search__best-bet .icon-wrapper {
          width: 15%;
      }
  
      .search__best-bet-item {
          width: 85%;
      }
  
      .megamenu, .megamenu.show {
          position: absolute;
          left: 0;
          right: 0;
          display: block;
          margin: 0;
          width: 100%;
          height: 5.2em;
          background: #2e3192;
      /* Old browsers */
      /* IE9 SVG, needs conditional override of 'filter' to 'none' */
          background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzJlMzE5MiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDY2YjMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
          background: -moz-linear-gradient(left, #2e3192 0%, #0066b3 100%);
      /* FF3.6+ */
          background: -webkit-gradient(linear, left top, right top, color-stop(0%, #2e3192), color-stop(100%, #0066b3));
      /* Chrome,Safari4+ */
          background: -webkit-linear-gradient(left, #2e3192 0%, #0066b3 100%);
      /* Chrome10+,Safari5.1+ */
          background: -o-linear-gradient(left, #2e3192 0%, #0066b3 100%);
      /* Opera 11.10+ */
          background: -ms-linear-gradient(left, #2e3192 0%, #0066b3 100%);
      /* IE10+ */
          background: linear-gradient(to right, #2e3192 0%, #0066b3 100%);
      /* W3C */
          top: 1.875em;
          z-index: 20;
      }
  
      .megamenu__home-icon {
          display: block;
          height: auto;
          float: left;
          padding: 0.3em 0 0.3em 1em;
          margin: 0;
          max-height: 4.8em;
      }
  
      .megamenu__mobileicons, .megamenusearch {
          display: none;
      }
  
      .megamenu__inner {
          display: block;
      }
  
      .megamenu__level-1-menu {
          margin: 0;
          width: 70%;
          float: right;
          margin-right: 2%;
      }
  
      .megamenu__level-1-item {
          float: left;
          width: 16%;
          margin: 0;
      }
  
      .megamenu__level-1-item:nth-child(1) {
          width: 20%;
      }
  
      .megamenu__level-1-item:nth-child(2) {
          width: 31%;
          padding-left: 1%;
      }
  
      .singapore .megamenu__level-1-item:nth-of-type(1),
      .singapore .megamenu__level-1-item.megamenu__level-1-item--wide {
          float: left;
          width: 31%;
      }
  
      .megamenu__level-1-link {
          font-size: .9em;
          border: none;
          margin-top: 1em;
          padding: 0.9em 0 1.9em 0;
          text-align: center;
      }
  
      .megamenu__level-1-item.open .megamenu__level-1-link:after {
          content: '';
      }
  
      .megamenu__level-1-item:hover .megamenu__level-1-link, .megamenu__level-1-item:active .megamenu__level-1-link, .megamenu__level-1-item:focus .megamenu__level-1-link, .megamenu__level-1-item.open .megamenu__level-1-link {
          background: #FFF;
          border-radius: 0 20px 0 0;
      }
  
      .megamenu__level-1-item:hover .megamenu__level-1-link, .megamenu__level-1-item:active .megamenu__level-1-link, .megamenu__level-1-item:focus .megamenu__level-1-link, .megamenu__level-1-item.open .megamenu__level-1-link {
          color: #0066CC;
      }
  
      .megamenu__level-1-item:hover .megamenu__static, .megamenu__level-1-item:active .megamenu__static, .megamenu__level-1-item:focus .megamenu__static, .megamenu__level-1-item.open .megamenu__static {
          display: block;
      }
  
      .megamenu__level-1-item:hover .megamenu__static, .megamenu__level-1-item:hover .megamenu__tagline, .megamenu__level-1-item:active .megamenu__static, .megamenu__level-1-item:active .megamenu__tagline, .megamenu__level-1-item:focus .megamenu__static, .megamenu__level-1-item:focus .megamenu__tagline, .megamenu__level-1-item.open .megamenu__static, .megamenu__level-1-item.open .megamenu__tagline {
          display: block;
      }
  
      .megamenu__level-1-item:hover .megamenu__level-2, .megamenu__level-1-item:active .megamenu__level-2, .megamenu__level-1-item:focus .megamenu__level-2, .megamenu__level-1-item.open .megamenu__level-2 {
          margin: 0;
          width: 100%;
          display: block;
          position: absolute;
          left: 0;
          height: auto;
          overflow: hidden;
          background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzJlMzE5MiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDY2YjMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
          background: -moz-linear-gradient(left, #2e3192 0%, #0066b3 100%);
      /* FF3.6+ */
          background: -webkit-gradient(linear, left top, right top, color-stop(0%, #2e3192), color-stop(100%, #0066b3));
      /* Chrome,Safari4+ */
          background: -webkit-linear-gradient(left, #2e3192 0%, #0066b3 100%);
      /* Chrome10+,Safari5.1+ */
          background: -o-linear-gradient(left, #2e3192 0%, #0066b3 100%);
      /* Opera 11.10+ */
          background: -ms-linear-gradient(left, #2e3192 0%, #0066b3 100%);
      /* IE10+ */
          background: linear-gradient(to right, #2e3192 0%, #0066b3 100%);
      /* W3C */
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e3192', endColorstr='#0066b3',GradientType=1 );
      /* IE6-8 */
      }
  
      .megamenu__static {
          background: #FFF;
          width: 96%;
          margin: 0 2%;
          overflow: hidden;
      }
  /** moved to 48em break
      .megamenu__column {
          width: 21%;
          height: 100%;
          display: block;
          float: left;
          margin: 1em 2%;
      }
  **/
      .megamenu__column-search {
          margin: 0.4em 0;
          display: block;
          overflow: hidden;
      }
  
      .megamenu__column-search-text-input {
          width: 80%;
          font-size: 0.6em;
          float: left;
          padding: 0.65em;
          background: #cccccc;
          color: #6d6d6d;
          border: none;
      }
  
      .megamenu__column-search-submit-button {
          float: left;
          height: 1.7em;
          width: 1.7em;
          margin-left: 1%;
          border: none;
          background: #0066CC;
          position: relative;
          max-width: 19%;
      }
  
      .megamenu__column-search-submit-button i {
          color: #FFF;
          position: absolute;
          top: 0.2em;
          left: 20%;
      }
  
      .megamenu__column-search-options {
          margin: 1.2em 0;
          font-size: 0.8em;
          display: block;
      }
  
      .megamenu__column-search-option-button {
          border: none;
          background: #0066CC;
          color: #FFF;
          font-size: 1.1em;
      }
  
      .megamenu__column-list {
          list-style: none;
          margin: 0;
          width: 100%;
          padding: 0;
      }
  
      .megamenu__column-list li {
          width: 100%;
          border-top: 1px solid #919090;
          padding: 0 0 0.1em 0;
      }
  
      .megamenu__column-list li:first-child {
          border-top: none;
      }
  
      .megamenu__column-link {
          color: #0066CC;
          text-decoration: none;
          font-size: 0.9em;
      }
  
      .megamenu__column .promo__wrapper {
          height: 115px;
          overflow: hidden;
      }
  
      .promo__wrapper {
          position: relative;
      }
  
      .promo__overlay {
          position: absolute;
          bottom: 0;
          width: 100%;
          background-color: rgba(0, 0, 0, 0.7);
      }
  
      .promo__title {
          color: #FFF;
          text-align: center;
          font-size: 0.9em;
          padding: 0.3em 0;
      }
  
      .megamenu__tagline {
          font-size: 0.9em;
          color: #FFF;
          margin: 0.4em auto;
          width: 100%;
          text-align: center;
      }
  
      .megamenu__tagline a {
          color: #FFF;
          font-weight: bold;
          text-decoration: none;
      }
        
        /* Mega-Menu update: https://jira.squiz.net/browse/SDQLD-2295 */
      .megamenu__level-2-menu {
          /*display: none;*/
      }
  
      .secondarynav {
          display: block;
          background: #2d2d2d;
          margin: -2em 4% 0;
          height: 2em;
      }
  
      .secondarynav__title {
          background: #4a4a4a;
          float: left;
          width: auto;
          position: relative;
      }
  
      .secondarynav__title:after {
          content: '';
          background: transparent no-repeat;
          background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
          background-position: -300px -0px;
          width: 16px;
          height: 32px;
          position: absolute;
          right: -16px;
          top: 0;
      }
  
      .no-svg .secondarynav__title:after {
          background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
      }
  
      .secondarynav .megamenu__level-2-menu:before {
          background: transparent no-repeat;
          background-image: url(/__data/assets/file/0006/24594/sprites.svg?v=0.1.4);
          background-position: -300px -0px;
          width: 16px;
          height: 32px;
          position: absolute;
          left: -4px;
          top: 0;
      }
  
      .no-svg .secondarynav .megamenu__level-2-menu:before {
          background-image: url(/__data/assets/file/0011/3404/sprites.png?v=0.2.1);
      }
  
      .secondarynav__title-link {
          color: #FFF;
          text-decoration: none;
          line-height: 2.9em;
          margin: 0 0 0 0.4em;
          font-size: 0.7em;
          font-weight: bold;
      }
  
      .secondarynav .megamenu__level-2-menu {
          padding-left: 16px;
          display: block;
          float: left;
          height: 2em;
          margin: 0;
          padding: 0;
          width: auto;
          background: none;
          position: relative;
          overflow: visible;
      }
  
      .megamenu__level-2-item:first-child {
          margin-left: 1em;
      }
  
      .megamenu__level-2-item {
          float: left;
          width: auto;
          padding: 0 0 0.2em 0;
          width: auto;
          margin: 0;
          height: 1.8em;
          
          height: 2em;
          margin-top: 0.2em;
          position: relative;
          overflow: visible;
          border-bottom: 0;
      }
  
      .megamenu__level-2-link {
          font-weight: normal;
          float: left;
          width: auto;
          padding: 0 0.4em 0.6em;
          border-radius: 0 5px 0 0;
          margin: 0;
          font-size: 0.7em;
          line-height: 2.2em;
      }
  
      .megamenu__level-2-item:hover .megamenu__level-2-link, .megamenu__level-2-item.open .megamenu__level-2-link {
          background: #FFF;
          color: #2d2d2d;
      }
  
      .megamenu__level-2-item:hover .megamenu__level-3-menu, .megamenu__level-2-item.open .megamenu__level-3-menu {
          display: block;
          position: absolute;
          top: 2em;
          left: 0;
          background: #2d2d2d;
          padding: 0.7em 0;
          width: 10em;
          top: 1.8em;
          z-index: 50;
      }
  
      .megamenu__level-3-item {
          width: 100%;
          position: relative;
          *zoom: 1;
          border-bottom: none;
          overflow: visible;
      }
  
      .megamenu__level-3-item:before, .megamenu__level-3-item:after {
          content: '';
          display: table;
          line-height: 0;
      }
  
      .megamenu__level-3-item:after {
          clear: both;
      }
  
      .megamenu__level-3-link {
          font-weight: normal;
          color: #c7c7c7;
          font-size: 0.8em;
          padding: 0.4em 0;
          margin: 0 8%;
          border-bottom: 1px solid #797979;
          width: 75%;
      }
  
      .megamenu__level-3-item:last-child .megamenu__level-3-link {
          border-bottom: 0;
      }
  
      .megamenu__level-toggle {
          display: none;
      }
  
      .megamenu__level-4-menu {
          display: none;
      }
  
      .secondarynav__icon {
          display: block;
          float: right;
          color: #FFF;
          position: absolute;
          font-size: 0.7em;
          right: 0.7em;
          top: 0.7em;
      }
  
      .megamenu__level-3-item:hover .megamenu__level-3-link, .megamenu__level-3-item.open .megamenu__level-3-link {
          color: #FFF;
      }
  
      .megamenu__level-3-item:hover .megamenu__level-4-menu, .megamenu__level-3-item.open .megamenu__level-4-menu {
          display: block;
      }
  
      .megamenu__level-4-menu {
          position: absolute;
          right: -100%;
          top: -0.5em;
          background: #4e4e4e;
          left: inherit;
          padding: 0.5em 0.7em;
      }
  
      .megamenu__level-4-link {
          font-weight: normal;
          color: #c7c7c7;
          font-size: 0.8em;
          padding: 0.4em 0;
      }
  
      .secondarynav {
          height: auto;
      }
  
      .secondarynav:before {
          content: '';
          display: table;
          line-height: 0;
      }
  
      .secondarynav .megamenu__level-2-menu {
          float: none;
          height: auto;
      }
  
      .secondarynav .megamenu__level-2-menu:before {
          content: '';
          background: none;
      }
  
      .tiles__item {
          width: 32%;
          margin: 0 2% 0.5em 0;
          float: left;
          display: block;
          position: relative;
      }
  
      .tiles__item:nth-of-type(2n+2) {
          margin-right: 2%;
      }
  
      .tiles__item:nth-of-type(3n+3) {
          margin-right: 0%;
      }
  
      .blackbox__title {
          padding: 0.6em 1em;
      }
  
      .blackbox__stories-wrapper {
          padding: 0.5em 1em;
      }
  
      .toolbarmenu__tile-menu {
          list-style: none;
          margin: 0;
          padding: 0;
          width: 24%;
          min-width: 9em;
          float: left;
      }
  
      .toolbarmenu__tile-item {
          height: 4.5em;
          background: #747474;
          margin: 0 0 0.4em 0;
          overflow: hidden;
          position: relative;
      }
  
      .toolbarmenu__tile-link {
          padding: 1em 1% 0.8em 30%;
          display: block;
          height: 100%;
      }
  
      .toolbarmenu__tile-item:last-child {
          margin-bottom: 0;
      }
  
      .toolbarmenu__tile-item i, .toolbarmenu__tile-item span[class^="icon-"]{
          color: #2d2d2d;
          position: absolute;
          top: 1em;
          left: 7%;
          font-size: 1.6em;
      }
  
      .toolbarmenu__tile-item-title {
          color: #FFF;
          font-size: 0.9em;
          text-decoration: none;
          font-weight: 400;
          white-space: nowrap;
          text-overflow: ellipsis;
          display: block;
          overflow: hidden;
      }
  
      .toolbarmenu__tile-item-description {
          color: #c8c8c8;
          font-size: 0.6em;
          display: block;
      }
  
      .toolbarmenu__links-menu {
          float: left;
          width: 76%;
          height: 100%;
          list-style: none;
          /*max-height: 21em;*/
          padding-left: 1.4em;
      }
  
      .toolbarmenu__links-item {
          width: 32%;
          height: 8em;
          float: left;
          margin-right: 2%;
          /*margin-bottom:1em;*/
          overflow: hidden;
          position: relative;
      }
  
      .toolbarmenu__links-item:nth-of-type(3n+3) {
          margin-right: 0;
      }
  
      .toolbarmenu__links-link {
          color: #ababab;
          text-decoration: none;
          font-size: 0.8em;
          text-decoration: none;
          font-weight: bold;
          height: 2em;
      }
  
      .toolbarmenu__sublinks-menu {
          border-top: 1px solid #707070;
          margin-top: 0.4em;
          padding-top: 0.2em;
          list-style: none;
          padding-left: 1px;
          position: absolute; 
          width: 98%;
      }
  
      .toolbarmenu__sublinks-item {
          line-height: 1.2em;
      }
  
      .toolbarmenu__sublinks-link {
          color: #FFF;
          text-decoration: none;
          font-size: 0.8em;
      }
  
      .singapore .toolbarmenu__sublinks-menu {
          display: none;
      }
  
      .singapore .toolbarmenu__links-item {
          width: 48%;
          height: 2em;
          margin-top: 2em;
          border-bottom: 1px solid #707070;
      }
  
      .singapore .toolbarmenu__links-item:nth-of-type(3n+3) {
          margin-right: 2%;
      }
  
      .singapore .toolbarmenu__links-item:nth-of-type(2n+2) {
          margin-right: 0%;
      }
  
      .singapore .toolbarmenu__links-item:nth-of-type(1), .singapore .toolbarmenu__links-item:nth-of-type(2) {
          margin-top: 0;
      }
  
      .responsive-table td:before {
          display: none;
      }
  
      .globalsearch .sorting__select {
          width: 18%;
          margin-top: 0;
          margin-right: 2%;
      }
  
      .globalsearch .sorting__select-title {
          margin: 0 auto;
          width: 100%;
      }
  
      .globalsearch .sorting__select-title a {
          height: 1.9em;
          display: block;
          line-height: 2em;
      }
  
      .globalsearch .sorting__text {
          color: #FFF;
      }
  
      .globalsearch .sorting__chevron {
          color: #FFF;      
          padding-left: 0.4em;
          font-size: 0.9em;
      }
  
      .globalsearch .sorting__chevron i {
          font-size: 0.8em;
          font-weight: normal;
      }
  
      .globalsearch .selector.active {
          display: block;
          background: #565656;
          list-style: none;
          margin: 0;
          padding: 0.5em 0.4em;
          min-width: 5em;
      }
  
      .globalsearch .selector.active a {
          color: #FFF;
      }
  
      .insidebody__contentright .socialbox {
        width: 33%;
      }
  
  
  
      .col_2 {
        width: 49%;
        margin-right: 1%;
        display: block;
        float: left;
      }
  
  /*
  --------------------
  Tablet Forms styling
  --------------------
  */
  
  .sq-form-question-datetime input[type="text"], .sq-form-question-datetime label, .sq-form-question-datetime select {
    display: inline-block;
    width: auto;
  }
  
  .sq-form-question-option-list input, .sq-form-question-tickbox-list input {
    margin-left:0.5em;
  }
  
  .sq-form-question input, .sq-form-question textarea {
    width: auto;
  }
  
  .sq-form-submit, .sq-form-reset{
    width: auto;
    padding: 0 3em;
  }
  
  .sq-form-error i {
    margin-left: 5%;
  }
  
  
  
  .library-col-third {
    width: 49%;
    float: left;
    margin-right: 1%;
  }
  
  .insidebody .library-col-third .librarysearchbox {
    width:100%;
    margin-right:0;
  }
  
  .footer__membership-wrapper .footer__heading {
    width:100%;
  }
  
  .footer__membership-wrapper a {
    padding-bottom:1em;
  }
  
  .scholarships__search-options-wrapper {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
  }
  
  
  .scholarships__search-options-wrapper fieldset {
      flex: 1 auto;
      width: 50%;
  }
  
  .no-flexbox .scholarships__search-options-wrapper fieldset {
    float:left;
  }
  
  
  .IconOnly {
      width: 49%;
      margin-right:1%;
      float: left;
  }
  
  
  .globalheader__nav-footer {
    display: block;
    float: left;
    width: 100%;
    color: #FFF;
    padding-top: 0.6em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  } /*--- end 43.75 media query ---*/
  
  
  @media (min-width: 48em) {
      .megamenu__column {
          width: 21%;
          height: 100%;
          display: block;
          float: left;
          margin: 1em 2%;
      }
      
  }
  
  @media (min-width: 60em) {
    /*
  --------------------
  Modules
  --------------------
  */
    /*-- module:accordions --*/
    /*-- module:carousel --*/
    /*-- module:courses --*/
    /*-- module:footer --*/
    /*-- module:globalheader --*/
    /*-- module:homepagebox --*/
    /*-- module:homepagecourses --*/
    /*-- module:insidebackground --*/
    /*-- module:insidebody --*/
    /*-- module:insidebreadcrumbs --*/
    /*-- module:megamenu --*/
    /*-- module:secondarynav --*/
    /*-- module:tables --*/
    /*-- module:tiles --*/
    /*-- module:toolbarmenu --*/
      body:before {
          content: 'desktop';
      }
  
      .studentlogin .box__heading-list {
          font-size: 0.8em;
          height: 3.2em;
      }
  
      .carousel .slick-prev, .carousel .slick-next {
          position: absolute;
          top: 50%;
          left: inherit;
      }
  
      .main {
          background: #e7e7e7;
      }
  
      .hide-for-desktop {
          display: none !important;
      }
  
      .hide-tablet-down {
          display: block !important;
      }
  
      .carousel {
          margin: 1.8em auto 0;
          height: 42em;
          max-width: 65.625em;
      }
  
      .homepagecarousel .carousel__item {
          height: 50em;
          position: relative;
          display: block;
      }
  
      .homepagecarousel .slick-slideshow__slide .carousel__image {
          height: 50em;
          max-width: 65.625em;
          position: absolute;
          top: 0;
      }
  
      .homepagecarousel .carousel__title {
          width: 45%;
          top: 43%;
          font-size: 2.4em;
          line-height: 1em;
      }
  
      .carousel__title.position-top {
          top: 4.5em;
      }
  
      .carousel__title.position-bottom {
          bottom: 7.5em;
          /*bottom: 0;*/
      }
  
      .carousel .slick-dots {
          bottom: 12em;
      }
  
      .carousel .slick-pause, .carousel .slick-pause.paused {
        bottom: 12em;
      }
  
      .backgroundcarousel {
          width: 100%;
          position: absolute;
          display: block;
          background-color: #000;
          max-height: 672px;
          overflow: hidden;
      }
  
      .backgroundcarousel__image {
          width: 100%;
          height: auto;
          opacity: 0.2;
      }
  
      .backgroundcarousel .slick-prev, .backgroundcarousel .slick-next, .backgroundcarousel .slick-dots {
          position: absolute;
          left: -9999px;
      }
  
      .coursespage .insidebody__content.two-col .insidebody__contentmain {
          max-width: 42em;
      }
  
      .is-sticky .coursestitle_wrapper {
          height: 3em;
          width: 100% !important;
          margin: 0 auto;
          background: #2d2d2d;
          z-index: 1000;
          left: 0;
      }
  
      .coursetitle.pagetitle {
          -webkit-transition: top 0.3s ease-in-out;
          -moz-transition: top 0.3s ease-in-out;
          transition: top 0.3s ease-in-out;
      }
  
      .is-sticky .coursetitle.pagetitle {
          top: 0;
          background: none;
          line-height: 2em;
      }
  
      .is-sticky .courses__nowbuttonwrapper {
          top: 0;
          margin-top: 0.4em;
          -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
      }
  
      .is-sticky .coursetitle__stickywrapper {
          margin: 0 auto;
          width: 65.625em;
          overflow: hidden;
          display: block;
          clear: both;
          height: 3em;
          position: relative;
      }
  
      .coursestitle_wrapper {
          margin: 0 6% 0 6%;
          -webkit-transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
      }
  
      .coursecontacts__text {
          width: 29%;
      }
  
      .coursecontacts__icon {
          width:10%;
      }
  
      .coursecontacts__buttonwrapper {
          width: 37%;
      }
  
      .coursecontacts__social {
          display: block;
          float: right;
          margin-top: 0.6em;
          width:22%;
          padding-top:0;
      }
  
      .coursecontacts__social-link {
          color: #4b4c4e;
          font-size: 1.8em;
          margin-right: 0.2em;
      }
  
      .footer {
          max-width: 65.625em;
          margin: 0 auto;
          padding-bottom: 1em;
          float: none;
          display: block;
          padding: 0;
          height: auto;
          overflow: hidden;
      }
  
      .footer__explore-wrapper, .footer__membership-wrapper, .footer__tradition {
          display: block;
          position: inherit;
          float: left;
          width: 38%;
          clear: none;
      }
  
      .footer__explore-wrapper {
          margin-bottom: 1em;
      }
  
      .footer__explore-wrapper {
          width: 20%;
          margin-right: 0;
      }
  
      .footer__membership-wrapper, .footer__tradition  {
          margin-right:1%;
      }
  
      .footer__membership-wrapper {
          margin-top: 0;
          border-top: none;
      }
  
      .footer__membership-wrapper .footer__heading {
          width: 100%;
          border-bottom: 1px dotted #2d2d2d;
          margin-top: 0;
          font-size: 1em;
          font-weight: normal;
          padding: 0.5em 0;
          margin: 1.5em 0 0 0;
          clear: both;
          float: left;
      }
  
      .footer__campuslist {
          float:left;
          width:100%;
          /*margin-top:1em;*/
          padding-top:0;
      }
  
      .footer__membership-wrapper a {
        padding: 1em 0;
      }
  
      .footer__logos {
          width: auto;
      }
  
      .footer__copyright-text--break-for-tablet {
        clear:none;
      }
  
  
      .footer__explore-list-wrapper {
        width:15%;
        margin-right:2%;
        clear:none;
      }
  
      .footer__explore-list-wrapper:nth-of-type(2n + 2) {
          margin-left: 0%;
          clear:none;
      }
  
      .footer__explore-list-wrapper:last-child {
        margin-right:0;
      }
  
      .footer__social-and-legals {
        width:100%;
      }
  
      .globalheader__toolbar-nav .globalheader__toolbar-item:hover .globalheader__nav, .globalheader__toolbar-nav .globalheader__toolbar-item.open .globalheader__nav {
          left: inherit;
          /*width: 75%;*/
          max-width: 65.625em;
          padding: 1em;
          height: auto;
      }
  
      .globalheader__toolbar-nav .globalheader__toolbar-item:hover .globalheader__nav.tiles-only, .globalheader__toolbar-nav .globalheader__toolbar-item.open .globalheader__nav.tiles-only {
          width: 20%;
      }
  
  
  
  
      .toolbarmenu__tile-menu {
          width: 28%;
      }
  
      .toolbarmenu__links-menu {
          width: 72%;
          padding-left: 2.4em;
      }
  
      .globalheader__toolbar-links {
          width: auto;
      }
  
      .toolbarmenu__links-link {
          font-size: 0.9em;
      }
  
      .globalheader__toolbar-nav {
          width: 55%;
      }
  
      .globalheader__toolbar-nav .globalheader__toolbar-item {
          text-align: left;
      }
  
      .globalheader__toolbar-nav .globalheader__toolbar-link {
          padding-left: 1em;
          text-align: left;
          display: inline;
          line-height: 1.4em;
      }
  
      .globalheader__toolbar-links .globalheader__toolbar-item {
          padding: 0 1em 0 0;
          float: left;
      }
  
      .globalheader__inner {
          max-width: 65.625em;
          margin: 0 auto;
      }
  
      .globalheader__toolbar-link i {
          right: 1em;
      }
  
      .globalsearch__text-input {
          width: 64%;
      }
  
      .globalsearch__options-label {
          float: left;
          width: 20%;
      }
  
      .singapore .globalheader__toolbar-nav {
          width: 55%;
      }
  
      .singapore .globalheader__toolbar-links {
          width: 40%;
          margin-right: 1%;
      }
  
      .singapore .globalheader__toolbar-links .globalheader__toolbar-item {
          width: 30%;
      }
  
      .singapore .globalheader__toolbar-links .globalheader__languages-item {
          width: 40%;
      }
  
  /* remove if passes uat
      .globalsearch .sorting__select {
          width: 18%;
          margin-top: 0;
          margin-right: 2%;
      }
  
      .globalsearch .sorting__select-title {
          margin: 0 auto;
          width: 100%;
      }
  
      .globalsearch .sorting__select-title a {
          height: 1.9em;
          display: block;
          line-height: 2em;
      }
  
      .globalsearch .sorting__text {
          color: #FFF;
      }
  
      .globalsearch .sorting__chevron {
          color: #FFF;
          float: right;
      }
  
      .globalsearch .sorting__chevron i {
          font-size: 0.8em;
          font-weight: normal;
      }
  
      .globalsearch .selector.active {
          display: block;
          background: #565656;
          list-style: none;
          margin: 0;
          padding: 0.5em 0.4em;
      }
  
      .globalsearch .selector.active a {
          color: #FFF;
      }
  */
      .homecontent {
          position: relative;
          z-index: 8;
          max-width: 65.625em;
          margin: 0 auto;
          float: none;
          background: #FFF;
          padding-bottom: 10px
      }
  
      .homecontent__inner {
          max-width: 63.425em;
          display: block;
          margin: 0 auto;
          min-height: 43em;
          /*overflow:hidden;*/
      }
  
      .desktop__column1 {
          width: 65%;
          display: block;
          float: left;
          margin-top: -4em;
      }
  
      .faqsbox, .eventsbox {
          width: 48%;
      }
  
      .faqsbox {
          margin-left: 0;
          margin-right: 4%;
      }
  
      .eventsbox {
          margin-right: 0;
          margin-left: 0;
      }
  
      .socialbox {
          display: block;
          margin-left: 0;
          margin-right: 0;
          float: right;
          width: 100%;
      }
  
      .socialbox .tabs__target.box__target.uber-accordion__target {
        display:block;
        height:0px;
        overflow:hidden;
      }
  
      .socialbox .tabs__target.box__target.uber-accordion__target.uber-accordion__target-active {
        height:auto;
      }
  
      .newslisting {
          width: 100%;
          float: left;
          margin: 1em 0 0 0;
      }
  
      .desktop__column2 {
          width: 32%;
          margin-left: 2%;
          float: right;
          margin-top: -4em;
      }
  
      .homepagecourses {
          max-width: 63.425em;
          margin: -10.5em auto 4.5em;
          position: relative;
          display: block;
          float: inherit;
          padding: 1em 2em;
          min-height: 6em;
      }
  
      .homepagecourse__or-text {
          font-size: 1.6em;
      }
  
      .homepagecourse__search-wrapper {
          margin-right: 1.5%;
          width: 30%;
      }
  
      .homepagecourses__search-text-input {
          width: 86%;
      }
  
      .homepagecourse__or-wrapper {
          margin-right: 1.5%;
      }
  
      .homepagecourses__browse-wrapper {
          width: 46%;
          position: relative;
      }
  
      .homepagecourses__apply-wrapper {
          width: 22%;
      }
  
      .homepagecourses__browse-delivery-text, .homepagecourses__browse-studyarea-text {
          width: calc(100% - 32px);
      }
  
      .homepagecourses__browse-studyarea-button {
          width: 42%;
          margin-right: 3%;
      }
  
      .homepagecourses__browse-studyarea-options.open {
          width: 100%;
      }
  
      .insidebackground__main-image-wrapper {
          margin: 1.8em auto 0;
          max-height: 800px;
          max-width: 65.625em;
          height: 17em;
      }
  
      .insidebackground__main-image {
          margin-top: -15%;
      }
  
      .insidebackground__background-image-wrapper {
          top: 0;
          left: 0;
          width: 100%;
          position: absolute;
          display: block;
          background-color: #000;
          max-height: 800px;
          overflow: hidden;
      }
  
      .insidebackground__background-image {
          width: 100%;
          height: auto;
          opacity: 0.2;
      }
  
      .insidebodywrapper {
          position: relative;
          z-index: 1;
          max-width: 65.625em;
          margin: 0 auto;
          float: none;
          background: none;
      }
  
      .insidebody {
          background: #FFF;
          width: 100%;
          max-width: 65.625em;
          margin: 0 auto;
          float: left;
          overflow: hidden;
      }
  
      .insidebody__content.two-col .insidebody__contentmain {
          max-width: 39.625em;
          float: left;
          width: 100%;
      }
  
      .insidebody__content.two-col.column-swapped .insidebody__contentmain {
          float: right;
      }
  
      .insidebody__content.two-col.column-swapped .insidebody__contentright {
          float: left;
      }
  
      .insidebody__contentright {
          display: none;
      }
  
      .insidebody__content.two-col .insidebody__contentright {
          display: block;
      }
  
      .insidebody__content {
          max-width: 57.7em;
          margin: 2em auto 2em;
          overflow: hidden;
          width: 100%;
          min-height: 26em;
      }
  
      .insidebody__content.two-col .insidebody__contentright {
          float: right;
          width: 14.375em;
      }
  
      .insidebody__contentmain .tiles__item {
          width: 32%;
          margin-right: 2%;
      }
  
      .insidebody__contentmain .tiles__item {
          width: 32%;
          margin-right: 2%;
      }
  
      .insidebody__contentmain .tiles .tiles__item:nth-of-type(3n+3) {
          margin-right: 0;
      }
  
      .insidebody__contentmain .tiles__item:nth-of-type(2n+2) {
          margin-right: 2%;
      }
  
      .newsdetails {
          margin-top: 0;
      }
  
      .newsdetails__date {
          padding-left: 6%;
      }
  
      .landingbox:first-child {
          width: 31%;
          margin-right: 3.5%;
      }
  
      .landingbox {
          width: 31%;
          margin-right: 3.5%;
          /* min-height: 14em; */
          overflow: inherit;
      }
  
      .landingcarousel.carousel {
          width: 31%;
          margin: 0;
          height: auto;
          clear: none;
      }
  
      .landingcarousel .carousel__image {
          height: auto;
      }
  
      .landingcarousel.carousel .slick-prev {
          position: absolute;
          left: 0;
          visibility: visible;
          margin-top: 0;
          top: 37%;
      }
  
      .landingcarousel.carousel .slick-next {
          position: absolute;
          left: 85%;
          visibility: visible;
          margin-top: 0;
          top: 37%;
      }
  
      .landingcarousel.carousel .slick-dots {
          bottom: 0;
      }
  
      .actionlinks {
          width: 100%;
          margin-top: 1em;
          margin-bottom: 2em;
      }
  
      .actionlinks__item {
          width: 31%;
          margin: 0;
          margin-right: 3.5%;
      }
  
      .actionlinks__text {
          margin-left: 0.5em;
      }
  
      .actionlinks__item:nth-of-type(3) {
          margin-right: 0;
      }
  
      .fullwidth.tiles .tiles__item {
          width: 23.5%;
          margin-right: 2%;
      }
  
      .fullwidth.tiles .tiles__item:nth-of-type(3n+3) {
          margin-right: 2%;
      }
  
      .fullwidth.tiles .tiles__item:nth-of-type(4n+4) {
          margin-right: 0;
      }
  
      .findstaff .sorting__select {
          position: relative;
          margin-bottom: 1em;
          display: block;
          float: left;
      }
  
      .findstaff .sorting__select-title {
          background: #c1c1c1;
          height: 2em;
          float: left;
          display: block;
          margin-bottom: 0.5em;
          width: 9em;
      }
  
      .findstaff .sorting__text {
          color: #2d2d2d;
          font-weight: normal;
          line-height: 2em;
          padding: 0 0.5em;
          height: 2em;
          display: block;
          float: left;
      }
  
      .findstaff .sorting__chevron {
          background: #2d2d2d;
          color: #FFF;
          height: 2em;
          display: block;
          float: right;
          width: 2em;
          position: relative;
      }
  
      .findstaff .sorting__chevron i, .findstaff .sorting__chevron span.icon-chevron-down {
          position: absolute;
          top: 5px;
          left: 8px;
      }
  
      .findstaff .selector {
          display: none;
      }
  
      .findstaff .selector.active {
          display: block;
          position: absolute;
          background: #FFF;
          margin: 0;
          padding: 0.4em 1em;
          list-style: none;
          top: 2em;
          z-index: 5;
          width: 7em;
      }
  
      .findstaff .selector.active a {
          font-weight: normal;
      }
  
      .findstaff__search-text-input {
          margin-bottom: 1em;
      }
  
      .halfwidth.tiles {
          width: 48.5%;
          margin-right: 3%;
          float: left;
      }
  
      .halfwidth.tiles .tiles__item {
          width: 49%;
          margin-right: 2%;
      }
  
      .insidebody__contentmain .halfwidth.tiles .tiles__item:nth-of-type(2n+2) {
          margin-right: 0px;
      }
  
      .halfwidth.tiles .tiles__item:nth-of-type(3n+3) {
          margin-right: 2%;
      }
  
  
  
      .twoperrow.tiles {
          width: 95%;
          margin-right: 3%;
          float: none;
      }
  
      .twoperrow.tiles .tiles__item {
          width: 48% !important;
          margin-right: 2% !important;
      }
      .twoperrow.tiles .card-img-top{
          height: 250px;
      }
  
  
      .faqsbox.landingbox {
          width: 48.5%;
          float: right;
          margin: 0 0 2em;
      }
  
      .eventsbox.landingbox {
          width: 48.5%;
          float: right;
          margin: 0;
          clear: right;
      }
  
      .eventsbox.landingbox .eventlist__item {
          width: 100%;
      }
  
      .eventsbox.landingbox.library__events {
          width: 31%;
      }
  
      .eventsfiltering__fieldset {
          width: 100%;
          float: left;
          display: block;
      }
  
      .eventsfiltering__fieldset:first-child {
          margin-right: 0;
      }
  
      .eventsfiltering__title {
          margin-top: 0;
      }
  
      .insidebody__contentright .socialbox {
          width: 100%;
      }
  
      .searchresults__results {
          width: 75%;
          float: right;
          display: block;
      }
  
      .searchresults__results.full-width {
          width: 100%;
      }
  
      .contextualnav {
          margin-top: 1em;
      }
  
      .searchfacets, .contextualnav {
          width: 20%;
          float: left;
          display: block;
          clear: none;
      }
  
      .searchresults__searchagainform form {
          width: 75%;
          float: right;
      }
  
      .searchfacets__title, .contextualnav__title {
          margin-top: 0;
          font-size: 1.2em;
      }
  
      .megamenu {
          max-width: 65.625em;
          margin: 0 auto;
          width: 100%;
      }
  
  .megamenu-promo {
  display: block;
  margin: -0.1em 0px 0px 80px;
      float: left;
  }
  
  .megamenu-promo a {
  display: block;
  color: white;
  text-decoration: none;
  margin-top: 1em;
  font-size: 1em;
  padding: 1em;
  background-color: #05a84f;
  }
  
      .megamenu__level-1-menu {
          margin: 0;
          width: 55%;
          float: right;
          margin-right: 2%;
      }
  
      .megamenu__level-1-link {
          font-size: 1em;
      }
  
      .megamenu__home-icon {
          padding: 0.3em 0 0.3em 1em;
          margin: 0;
          max-height: 4.8em;
      }
  
      .megamenu__level-1-item:hover .megamenu__level-2-menu, .megamenu__level-1-item.open .megamenu__level-2-menu {
          max-width: 63.425em;
          width: 100%;
          margin: 0 auto;
      }
  
      .secondarynav {
          margin: -2em auto 0;
          max-width: 63.425em;
          width: 100%;
          float: none;
      }
  
      .megamenu__level-2-link {
          padding: 0 1.4em 0.6em;
      }
  
      .tiles__item {
          width: 100%;
          margin: 0;
          margin-bottom: 0.5em;
      }
  
      .tiles__item.tiles__item--subtext {
        margin-bottom:0.5em;
      }
  
      .tiles__item.tiles__item--subtext ~ .tiles__item {
        margin-bottom: 0.5em;
      }
  
      .tiles__item:nth-of-type(2) {
          margin-right: 0;
      }
  
      .tiles__item:nth-of-type(3) {
          margin-right: 0;
      }
  
      .toolbarmenu {
          max-width: 65.625em;
          margin: 0 auto;
      }
  
      .toolbarmenu__tile-item i, .toolbarmenu__tile-item span[class^="icon-"]  {
          left: 10%;
          font-size: 1.9em;
          top: 0.4em;
      }
  
      .library-col-third {
        width: 31%;
        margin-right: 3.5%;
      }
  
      .eventsbox.library__events .box__heading-list {
          font-size: 0.9em;
      }
  
  
      .footer__legals-item--cricos {
        clear: none;
      }
  
      .footer__legals-item--emergency {
        margin-top:0.4em;
      }
  
      .footer__legals-item--rti .footer__legals-link:after {
          content: "|";
      }
  
      .IconOnly {
        width: 32%;
        margin-right:2%;
        float: left;
      }
  
      .IconOnly:nth-child(3n+3) {      
        margin-right:0%;      
      }
  
  }
  
  @media (min-width: 75em) {
    /*-- module:accordions --*/
    /*-- module:carousel --*/
    /*-- module:courses --*/
    /*-- module:footer --*/
    /*-- module:homepagebox --*/
    /*-- module:homepagecourses --*/
    /*-- module:insidebackground --*/
    /*-- module:insidebody --*/
    /*-- module:insidebreadcrumbs --*/
    /*-- module:megamenu --*/
    /*-- module:secondarynav --*/
    /*-- module:tables --*/
    /*-- module:tiles --*/
    /*-- module:toolbarmenu --*/
      .carousel__title {
          width: 45%;
          top: 44%;
          padding-left: 2em;
      }
  
      .slick-prev:before {
          left: 0.5em;
      }
  
      .slick-next:after {
          right: 0.5em;
      }
  
      .carousel .slick-prev {
          left: -3em;
          background: none;
      }
  
      .carousel .slick-next {
          right: -3em;
          background: none;
      }
  
   
  
  
  }
  
  @media print {
    /*-- module:accordions --*/
    /*-- module:carousel --*/
    /*-- module:courses --*/
    /*-- module:footer --*/
    /*-- module:homepagebox --*/
    /*-- module:homepagecourses --*/
    /*-- module:insidebackground --*/
    /*-- module:insidebody --*/
    /*-- module:insidebreadcrumbs --*/
    /*-- module:megamenu --*/
    /*-- module:secondarynav --*/
    /*-- module:tables --*/
    /*-- module:tiles --*/
    /*-- module:toolbarmenu --*/
      * {
          background: transparent !important;
          color: #000 !important;
          box-shadow: none !important;
          text-shadow: none !important;
      }
  
      a, a:visited {
          text-decoration: underline;
      }
  
      a[href]:after {
          content: " (" attr(href) ")";
      }
  
      abbr[title]:after {
          content: " (" attr(title) ")";
      }
  
      .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
          content: "";
      }
  
      pre, blockquote {
          border: 1px solid #999;
          page-break-inside: avoid;
      }
  
  
      thead {
          display: table-header-group;
      }
  
      tr, img {
          page-break-inside: avoid;
      }
  
      img {
          max-width: 100% !important;
      }
  
      p, h2, h3 {
          orphans: 3;
          widows: 3;
      }
  
      h2, h3 {
          page-break-after: avoid;
      }
  }
  
  
  div.header_transparent-divider{
      width: 100%;
      height: 1.2em;
      position: absolute;
      z-index: 10;
  }
  
  img.search-profile-img {
      width: 7em;
      float: left;
      padding: 3px 5px;
  }
  
  li.funnelback-result {
      clear: both;
      margin-bottom: 2em;
  }
  
  div.fb-img-landing .facet {
      background: #fff;
  }
  
  .exchange-search-wrapper{
      background: #eee;
      padding: 1em;
  }
  .exchange-search-wrapper input,
  .exchange-search-wrapper select{
      margin: 0 .5rem;
      border: none;
      background: #fff;
  }
  .exchange-search-wrapper .exchange-submit{
      background: #1668bf;
      color: #fff;
      border: none;
  }
  .exchange-item{
      padding: 1em;
      border-bottom:1px solid #f2f2f2;
  }
  .exchange-item h3{
      margin: 0 0 0.2em 0;
  }
  /*Jira - New Tiles - SDQLD-1340*/
  .row {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-right: -15px;
      margin-left: -15px;
      padding: 0 20px 0 20px;
  }
  /* all cols */
  .fullwidth .card-container{
      position: relative;
      width: 100%;
      min-height: 1px;
      padding-right: 15px;
      padding-left: 15px;
  }
  /* =col-md-4 */
  @media (min-width: 768px){
      .fullwidth .card-container {
          -ms-flex: 0 0 33.333333%;
          flex: 0 0 33.333333%;
          max-width: 33.333333%;
      }
  }
  /* col-sm-6 */
  @media (min-width: 576px){
      .fullwidth .card-container {
          -ms-flex: 0 0 50%;
          flex: 0 0 50%;
          max-width: 50%;
      }
  }
  .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: none;
      border-radius: 2px;
      margin: 30px 0 0 0;
      box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
      color: #0066CC;
  }
  
  .card:hover {
      background-color: #0066CC;
      color: #ffffff;
  }
  .card-img-top {
    width: 100%;
    height: 160px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    object-fit: cover;
  }
  .fullwidth .card-img-top, .halfwidth .card-img-top {
    width: 100%;
    height: 135px!important;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    object-fit: cover;
  }
  
  .card-block {
      padding: 0 5px 0 5px;
      text-align: center;
      height:65px;
  }
  
  .card-title {
      font-weight:400;
      font-size: 16px;
      vertical-align: middle;
  }
  
  a.card:hover {
      text-decoration: none !important;
  }
  
  @media only screen and (max-width: 959px) {
      .card-block {
      padding: 0 10px 0 10px;
      text-align: center;
      height: 85px;
  }
  }
  
  @media only screen and (max-width: 767px) and  (min-width: 668px){
      .card-block {
      padding: 0 5px 0 5px;
      text-align: center;
      height: 65px;
  }
  }
  
  @media only screen and (max-width: 575px) {
      .card {
          margin: 20px 0 0 0;
      }
      .card-img-top {
          display:none;
      }
      .card-block {
      padding: 0 10px 0 10px;
      text-align: center;
      height: 65px;
  }
  }
  /* JCU Mods */
  .card-wrapper:hover {
      border: 2px solid #0066CC;
  }
  /*Removes image border radius on hover*/
  /*.card-wrapper:hover .card-img{*/
  /*    border-radius: 0;*/
  /*}*/
  .card-margin:hover .card-block{
      background-color: white;
      color: #0066CC;
  }
  .card-block{
      border-bottom-left-radius: 2px;
      border-bottom-right-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .card-wrapper{
      height:100%;
      border: 2px solid transparent;
  }
  .card{
      margin:0!important;
  }
  .card-wrapper{
      border-radius:2px;
  }
  .card-margin{
      margin: 30px 0 0 0;
  }
  .halfwidth .card-margin {
      margin: 0 0 30px 0;
  }
  .halfwidth .row{
      padding: 0;
  }
  .tiles .row{
      padding: 0;
  }
  .tiles.side-nav-tiles{
      margin-bottom: 2.5em;
  }
  .tiles.side-nav-tiles .col-md-12 {
      padding-left:0;
      padding-right:0;
  }
  .box.tilesbox {
      width: 100%;
      padding: 0;
      margin: 0;
      background-color: #fff;
  }
  .box.tilesbox .card-margin:first-child{
      margin: 0;
  }
  .box.tilesbox .card-img-top{
      height:100%
  }
 
/*  SDQLD-4030 - Library Search Styling */
section.library-search-section {
    background: #fff;
    padding: 1.2rem;
    overflow: hidden;
    border: 2px solid #e7e7e7;
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1);
}

/**
 * Tabs
 */
.library-widget-group .tabs {
    display: flex;
    text-align:center;
    flex-wrap: wrap; 
}
.library-widget-group .tabs label {
    order: 1;
    display: block;
    padding: 0.8rem;
    margin-right: 1.4%;
    cursor: pointer;
    background: #e7e7e7;
    font-size: 14px;
    font-weight: bold;
    transition: background ease 0.2s;
    width: calc(93%/6);
}

.library-widget-group .tabs .tab {
  order: 99; 
  flex-grow: 1;
    width: 80%;
    display: none;
    padding: 0.8rem;
    background: #fff;
    height: 8rem;
    text-align: left;
}

.library-widget-group .tabs.uber-accordion label:last-of-type {
    margin-right: 0;
}

.library-widget-group .tabs input[type="radio"] {
    display: none;
}
.library-widget-group .tabs input[type="radio"]:checked + label {
    background: #fff;
    border: 2px solid #d5d5d5;
    border-bottom: 2px solid #fff;
    z-index: 1;
}
.library-widget-group .tabs input[type="radio"]:checked + label + .tab {
    display: block;
    border-top: 2px solid #d5d5d5;
    margin-top: -2px;
}


@media (max-width: 45em) {
  .library-widget-group .tabs .tab,
  .library-widget-group .tabs label {
    order: initial;
  }
  .library-widget-group .tabs label {
    width: 80%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}

.library-widget-group form {
    display: block;
    overflow: hidden;
}

.library-widget-group .summon-search-field {
    padding: 0 .5em;
    width: 92%;
    float: left;
    display: inline-block;
    height: 2.6em;
}

.library-widget-group .summon-search-submit {
    border: 0;
    float: left;
    display: inline-block;
    height: 2.6em;
    width: 3em;
    background: #06c;
    color: transparent;
    margin-left: 1rem;
    background-image: url('/__data/assets/file/0007/798478/search-bg-copy.svg?v=0.0.2');
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 38px;
    background-position: center 5px;
}

.library-widget-group select {
    margin: .8em 0;
    min-width: 420px;
}

.library-widget-group a:hover {
    text-decoration: underline;
}

.library-widget-group p.alphabet {
    margin-top: 0;
}

.summon-search-box i.icon-search {
    position: absolute;
    top: 1rem;
    right: 8.2rem;
    color: #fff;
    font-size: 1.4rem;
    padding: .5rem 0;
    cursor: pointer;
}
/*Typography - Intro 2147598*/
.introtext{
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}
.intro {
    font-size:20px;
    color:var(--forground-light);
    margin-bottom: 2.25rem;
}
/*Typography - Sub & Sup*/
    sub, sup {
      font-size: 75%;
      line-height: 0;
      position: relative;
      vertical-align: baseline;
    }
    
    sup {
        top: -0.5em;
    }
    
    sub {
        bottom: -0.25em;
    }
/*Typography - Sizing 2147601*/
.one-em {font-size: 1em;}

small {
    font-size: 80%;
    display:block !important;
}
/*Hide*/
[hidden] {display: none;}
.hidden {
      display: none !important;
      visibility: hidden;
}
.invisible , hr.invisible {
  visibility: hidden;
}
@media only screen and (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }
}

.clearboth {clear: both;}

/*Max Width*/
.max-width-75 {
    max-width: 75%;
}
.max-width-50 {
    max-width: 50%;
}
.max-width-33 {
   max-width: 33.33%;
}
.max-width-25 {
    max-width: 25%;
}

/*Aspect Ratios*/
.aspect-16-9 {
    aspect-ratio: 16 / 9;
}
.aspect-4-3 {
    aspect-ratio: 4 / 3;
}
.aspect-3-4 {
aspect-ratio: 3 / 4;
}
.aspect-3-2 {
    aspect-ratio: 3 / 2;
}
.aspect-1-1 {
    aspect-ratio: 1 / 1;
}


ol.legal {
  counter-reset: section;               
  list-style-type: none;
}
ol.legal li::before {
  counter-increment: section;    
  content: counters(section,".") " ";   
}

.thumblist {
clear:both;
padding-bottom: 20px;
}

.thumblist img {
float:left;
margin: 0 10px 10px 0;
}

.thumblist p {
font-size: 80%;


}

@media screen and (min-width: 43.75em)
{
	.mobilewebemail
	{
		display: none;
	}
}
.mobilewebemail
{
	border-style: solid;
	border-width: 2px;
	clear: both;
	margin: 1em 0 1em 0;
	padding: 20px;
	width: 100%;
text-align: center;
}
.mobilewebemail a
{
	display: block;
}

/* Increase Mega Menu to index 3*/
@media screen and (min-width: 768px) {
    body #page-wrapper.sticky .jcu_megamenu__wrapper {
        z-index: 10;
    }    
}



/* Footer updates for Mobile */
@media screen and (max-width: 767px) {
    
    footer.footer .jcu_footer__wrapper .footer__column-links {
        width: 100%;    
    }
    
    footer.footer .jcu_footer__wrapper .jcu_footer__inner .footer__links-wrapper .footer_nav_category-header {
        width: 100%;
        padding-bottom: 4px;
        margin-bottom: 4px;
        border-bottom: 1px solid white;
    }
    
    
    .footer__column-links ul li a {
        padding: 1rem 0 !important;
    }
        
    .footer__legal .footer_university-logos li a {
        padding: 1rem 0 !important;
    }
    .footer__legal .footer_indigenous li a:nth-child(-n + 2) {
        padding: 1rem 0 !important;
    }
        
        
}

/* Footer updates for Mobile --- END*/

/* Footer Tablet Adjustments */
@media screen and (max-width: 767px) and (min-width: 460px) {
    footer.footer .jcu_footer__wrapper .footer__column-links {
        width: 48%;    
    }
    
    footer .jcu_footer__inner .footer__links-wrapper {
        justify-content: space-between;
    }
    
    footer.footer .jcu_footer__wrapper .footer__column-links.contact {
        width: 100%;
    }
}
/* Footer Tablet Adjustments --- END*/


/* Footer width updates for Desktop */
footer .footer__column-links.contact .footer_contact_email span {
    font-weight: 400 !important;
}

@media screen and (min-width: 768px) {
    
    footer .jcu_footer__inner .footer__links-wrapper {
        justify-content: space-between;
    }
    
    footer .jcu_footer__inner .footer__links-wrapper .footer__column-links {
        width: 21.5%;
        padding-left: 2rem;
        border-left: 1px solid #949393;
    }
    
    footer .jcu_footer__inner .footer__links-wrapper .footer__column-links:first-of-type {
        padding-left: 0;
        border-left: 0;
        width: calc(21.5% - 2rem);
    }
    
    footer .jcu_footer__inner .footer__links-wrapper .footer__column-links.contact {
        width: 14%;
    }
    
    footer .jcu_footer__inner .footer__links-wrapper .footer__column-links.contact .footer_contact-container {
        flex-wrap: wrap;    
    }
    
    footer .jcu_footer__inner .footer__links-wrapper .footer__column-links.contact .footer_contact-container ul {
        width: 100%;
    }
    
    
    /* Break email appropriately */
    footer .footer__column-links.contact .footer_contact-general {
        padding-right: 0 !important;    
    }
    
    footer .footer__column-links.contact .footer_contact-general .footer_contact_email {
        display: flex;
        flex-wrap: wrap;
    }
    
}
/* End Footer Updates */




/* External / Login link icons */
.jcu-v1__link-external, .jcu-v1__link-login {
    display: inline-flex;   
}

.jcu-v1__link-external:after, .jcu-v1__link-login:after {
    content: '';
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 14px;
    height: 14px;
    margin-left: 2px;
}

.jcu-v1__link-login:after {
    background-image: url('https://www.jcu.edu.au/__data/assets/file/0005/1147955/icons8-lock.svg');   
}

.jcu-v1__link-external:after {
    background-image: url('https://www.jcu.edu.au/__data/assets/file/0004/1147954/icons8-external-link.svg');   
}
/* External / Login link icons --- END*/




@media screen and (min-width: 768px) {
    
    .hidden--desktop {
        display: none !important;
        visibility: hidden;
    }
    
}


/*START Ben added / short term logo shield vanishing fix */
/*.jcu-v1__menu .jcu-v1__menu__logo .jcu-v1__menu__logo__link {*/
/*    border: .1px solid rgba(255,255,255,0);*/
/*}*/
/*END*/
@media not print {
    .print-logo{
        display: none;
    }
}
@media print {
    .globalheader, .megamenu, .megamenu__menu, .secondarynav, .insidebreadcrumbs, .footer, .footer__social-and-legals, .footer__singapore-tagline-wrapper, .html5-video-player, .tiles, img.insidebackground__background-image, .insidebackground__main-image-wrapper, .coursebox .box__heading-list, .courses__nowbuttonwrapper {
        display: none;
    }
    
    .insidebody__content.two-col iframe {
        display: none;
    }
    
    .accordion .accordion__target {
        max-height: 300em;
    }
    
    .footer__copyright-text.footer__print-url {
        display: block;
    }
    
    .megamenu__home-icon {
        position: absolute;
        top: 0;
        background: #e7e7e7;
    }
    
    .insidebackground {
        height: 5em;
        width: 100%;
    }
    
    .insidebodywrapper.page-title {
        top: 5em;
        position: fixed;
        display: block;
    }
    
    .print-logo {
        display: block;
        width: 25%;
        position: absolute;
        /*top: -4em;*/
        /*right: 2em;*/
    }
}
.resp-tabs-list li {
    margin-right: 5px;
}

.resp-tab-item {
    text-transform: uppercase;
    color: #06c;
    border: 1px solid #a2a5a7;
    border-bottom: none;
    font-size: 14px;
}

.resp-tab-active {
    background-color: #06c;
    color: #fff;
    border: 1px solid #06c;
    /* border: 1px solid #8c8c8c; */
    /* border: none;*/
    border-bottom: none;
}

h2.resp-accordion {
    position: relative;
    padding: 15px 15px!important;
    padding-right: 0!important;
    color: #06c;
    margin-bottom: 6px;
    border: 1px solid #c1c1c1;
}

h2.resp-accordion.resp-tab-active {
    padding-right: 0!important;
    color: #fff;
    background-color: #06c!important;
    border: none;
}

.resp-arrow {
    display: none;
}

.resp-accordion.resp-tab-active:before {
    content: 'Hide';
}

.resp-accordion:before {
    content: 'Show';
    font-size: .7em;
    position: absolute;
    right: 4em;
    top: 1.95em;
}

.resp-accordion:after {
    content: '+';
    display: inline-block;
    zoom: 1;
    margin-left: 1em;
    width: 1em;
    text-align: center;
}

.resp-accordion:after {
    font-family: 'WebHostingHub-Glyphs';
    src: url(./?a=3405?v=0.2.1);
    src: url(./?a=3405?v=0.2.1?#iefix) format('embedded-opentype'),url(./?a=3402?v=0.2.1) format('truetype');
    font-weight: normal;
    font-style: normal;
    -moz-font-feature-settings: "calt=0,liga=0";
    content: '\f48b';
    float: right;
    margin-right: 1em;
}

.resp-accordion.resp-tab-active:after {
    content: '-';
}

.resp-accordion.resp-tab-active:after {
    content: '\f48a';
}

.resp-tab-content {
    background-color: #fafafa;
    border: none; /*2px solid #8c8c8c;*/
    border: 1px solid #06c;
    margin-left: 0!important;
}

.resp-tab-content hr {
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #a2a5a7;
    color: #a2a5a7;
    background: #a2a5a7;
}

.margin-btm-sm {
    margin-bottom: 15px;
}

.resp-tab-content-course-name {
    font-size: 0.85em;
    color: #707070;
}

.resp-tab-content-course-title {
    display: block;
}

@media (max-width: 768px) {
    .resp-tab-content {
        border: 1px solid #06c;
        margin-bottom: 6px;
    }
}

/* accordion-styles.css */
/* https://jira.squiz.net/browse/QLDSR-3281#add-comment */


@-ms-viewport {
  width: device-width;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-positive: 1;
      flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
      flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
      flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
}

.order-1 {
  -ms-flex-order: 1;
      order: 1;
}

.order-2 {
  -ms-flex-order: 2;
      order: 2;
}

.order-3 {
  -ms-flex-order: 3;
      order: 3;
}

.order-4 {
  -ms-flex-order: 4;
      order: 4;
}

.order-5 {
  -ms-flex-order: 5;
      order: 5;
}

.order-6 {
  -ms-flex-order: 6;
      order: 6;
}

.order-7 {
  -ms-flex-order: 7;
      order: 7;
}

.order-8 {
  -ms-flex-order: 8;
      order: 8;
}

.order-9 {
  -ms-flex-order: 9;
      order: 9;
}

.order-10 {
  -ms-flex-order: 10;
      order: 10;
}

.order-11 {
  -ms-flex-order: 11;
      order: 11;
}

.order-12 {
  -ms-flex-order: 12;
      order: 12;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
        order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
        order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
        order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
        order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
        order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
        order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
        order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
        order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
        order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
        order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
        order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
        order: 12;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-1 {
    -ms-flex-order: 1;
        order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
        order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
        order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
        order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
        order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
        order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
        order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
        order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
        order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
        order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
        order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
        order: 12;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
        order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
        order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
        order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
        order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
        order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
        order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
        order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
        order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
        order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
        order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
        order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
        order: 12;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
        order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
        order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
        order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
        order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
        order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
        order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
        order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
        order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
        order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
        order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
        order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
        order: 12;
  }
}

.flex-row {
  -ms-flex-direction: row !important;
      flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
      flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
      flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
      flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
      justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
      justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
      justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
      justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
      align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
      align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
      align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
      align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
      align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
        flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
        flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
        justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
        justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
        justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
        justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
        align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
        align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
        align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
        align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
        align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
        flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
        flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
        justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
        justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
        justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
        justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
        align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
        align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
        align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
        align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
        align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
        flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
        flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
        justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
        justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
        justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
        justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
        align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
        align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
        align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
        align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
        align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
        flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
        flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
        justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
        justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
        justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
        justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
        align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
        align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
        align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
        align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
        align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
/*# sourceMappingURL=bootstrap-grid.css.map */

.usp {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: none;
    border-radius: 2px;
    margin: 30px 0 -20px 0;
    text-align: center;
}


.usp-img-top {
    height: 64px;
    width: auto;
}

.usp-block {
    padding: 20px 20px 40px 20px;
    font-size: 16px;
    color: #707070;
}

.usp-title {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #202020;
    margin-bottom: 20px;
}


/*
------------------
Megamenu 2147802
------------------
*/
  .globalheader {
      z-index: 100;
      display:none;
  }
  
  .homepage .megamenu {
      top: 3em !important;
  }
  
  .megamenu {
      position: fixed;
      height: 5.5em;
      top: 0em;
      background: #0066CC;
      width: 100%;
      z-index: 10;
      -webkit-transition: height 0.2s ease;
      -moz-transition: height 0.2s ease;
      transition: height 0.2s ease;
  }
  
  .megamenu__menu {
      background: #0066CC;
  }
  
  .megamenu__home-icon {
      height: auto;
      width: auto;
      margin: 0.2em 0 0 5%;
      max-height: 4.5em;
  }
  
  .megamenu__mobileicons {
      float: right;
      color: white;
      position: absolute;
      right: 3%;
      top: 0.4em;
      font-size: 2.4em;
      cursor: pointer;
  }
  
  .singapore .megamenu__mobileicons {
      top: 1.2em;
      font-size: 1.5em;
  }
  
  .singapore .megamenu__mobileicons--close i {
      font-size: 1.5em;
      top: 1em;
      right: 3%;
  }
  
  .megamenu__mobileicons i.icon-search {
      padding-right: 7px;
  }
  
  .megamenu__inner, .megamenu__inner-footer, .megamenu__static, .megamenu__tagline {
      display: none;
  }
  
  .megamenu.show {
      position: fixed;
      height: auto;
      height: calc(100% - 3em);
      overflow-y: auto;
  }
  
  .megamenu.show .megamenu__inner {
      display: block;
      margin: 1.4em 0 0;
      overflow: hidden;
  }
  
  .megamenu.show .megamenu__inner-footer {
      display: block;
  }
  
  .megamenu.show .megamenu__home-icon, .megamenu.show .megamenu__mobileicons {
      display: none;
  }
  
  .megamenusearch {
      width: 100%;
      overflow: hidden;
  }
  
  .megamenusearch__form {
      position: relative;
      width: 80%;
      float: left;
      margin-left: 5%;
  }
  
  .megamenusearch__text-input {
      width: 100%;
      font-size: 1.4em;
      padding: 0.2em;
  }
  
  .megamenusearch__submit-button {
      float: right;
      position: absolute;
      background: #3b3b3b;
      top: 0;
      right: 0;
      height: 100%;
      width: 16%;
      border: 2px solid white;
      padding: 0;
      text-align: center;
  }
  
  .megamenusearch__submit-button i {
      color: #FFF;
      font-size: 1.6em;
  }
  
  .megamenu__mobileicons--close {
      float: right;
      width: 18%;
      display: block;
      margin: 0 1%;
  }
  
  .megamenu__mobileicons--close i {
      color: #FFF;
      font-size: 2.4em;
      position: absolute;
      top: 0.4em;
      right: 3%;
  }
  
  .megamenu-promo {display:none;}
  .megamenu-promo a {display:none;}
  
  .megamenu__level-1-menu, .megamenu__inner-footer-menu {
      list-style: none;
      padding: 0;
      margin: 1em 0;
      display: block;
      float: left;
      width: 100%;
  }
  
  .megamenu__level-1-item {
      margin: 0;
  }
  
  /****** JCUPW-34 ******/
 .megamenu__level-1-item:nth-child(n+7), .megamenu__level-1-item.asset-4054 {
    display: none;
}
  
  .megamenu__level-1-link {
      color: #FFF;
      text-decoration: none;
      font-size: 1.4em;
      padding: 0.4em 5%;
      border-bottom: 1px solid #FFF;
      display: block;
  }
  
  .megamenu__level-1-item:last-child .megamenu__level-1-link, .megamenu__inner-footer-item:last-child .megamenu__level-1-link {
      border-bottom: none;
  }
  
  .megamenu__inner-footer {
      background: #3b3b3b;
      padding: 0 5%;
  }
  
  .megamenu__inner-footer {
      background: #3b3b3b;
      overflow: hidden;
      float: left;
      height: 100%;
      width: 100%;
  }
  
  .megamenu__level-1-item.open .megamenu__level-1-link {
      border-bottom: none;
  }
  
  .megamenu__level-2 {
      position: relative;
  }
  
  .megamenu__level-2-menu {
      width: 100%;
      background: #3b3b3b;
      padding: 0 5%;
      top: 0;
      left: 0;
      list-style: none;
      overflow: hidden;
  }
  
  .reflow__secondarynavmove__mobile .megamenu__level-2-menu {
    background: #D4CFCF;
  }
  
  .megamenu__level-2-item {
      margin-left: 1em;
      border-bottom: 1px solid #797979;
      overflow: hidden;
  }
  
  .megamenu__level-2-item:last-child, .megamenu__level-3-item:last-child, .megamenu__level-4-item:last-child {
      border-bottom: none;
  }
  
  .megamenu__level-2-item.open .megamenu__level-2-link {
      border-bottom: none;
  }
  
  .megamenu__level-2-link {
      color: #FFF;
      text-decoration: none;
      font-size: 1.4em;
      padding: 0.4em 0;
      display: block;
      width: 90%;
      float: left;
  }
  
  .reflow__secondarynavmove__mobile .megamenu__level-2-menu .megamenu__level-2-link {
    color: #0066CC;
  }
  
  .megamenu__level-toggle {
      display: block;
      float: right;
      width: 10%;
      height: 3em;
      position: relative;
      cursor: pointer;
  }
  
  .megamenu__level-toggle i, .megamenu__level-toggle span {
      color: #FFF;
      text-decoration: none;
      height: auto;
      font-style: normal;
      font-size: 1.2em;
      position: absolute;
      top: 10px;
      right: 30%;
  }
  
  .reflow__secondarynavmove__mobile .megamenu__level-2-menu .icon-chevron-down {
    color: #0066CC;
  }
  
  .megamenu__level-2-item:last-child .megamenu__level-2-link {
      border-bottom: none;
  }
  
  .megamenu__level-3-menu {
      width: 100%;
      padding: 0 0 0 5%;
      top: 0;
      left: 0;
      list-style: none;
      clear: both;
  }
  
  .megamenu__level-3-item.open .megamenu__level-3-link {
      border-bottom: none;
  }
  
  .megamenu__level-3-item {
      border-bottom: 1px solid #797979;
      overflow: hidden;
  }
  
  .megamenu__level-3-link {
      color: #FFF;
      text-decoration: none;
      padding: 0.4em 0;
      display: block;
      font-size: 1.2em;
      width: 90%;
      float: left;
      overflow: hidden;
  }
  
  .megamenu__level-4-menu {
      width: 100%;
      padding: 0 0 0 5%;
      top: 0;
      left: 0;
      list-style: none;
      clear: both;
  }
  
  .megamenu__level-4-item {
      border-bottom: 1px solid #797979;
  }
  
  .megamenu__level-4-link {
      color: #FFF;
      text-decoration: none;
      padding: 0.4em 0;
      display: block;
      font-size: 1em;
      overflow: hidden;
  }
  .reflow__secondarynavmove__mobile .megamenu__level-4-link {
      color: #0066CC;
  }
  
  .megamenu__level-3-menu {
      display: none;
  }
  
  .megamenu__level-2-item.open .megamenu__level-3-menu {
      display: block;
  }
  
  .megamenu__level-4-menu {
      display: none;
  }
  
  .megamenu__level-3-item.open .megamenu__level-4-menu {
      display: block;
  }
  .reflow__secondarynavmove__mobile .megamenu__level-2-menu .megamenu__level-2-link, .reflow__secondarynavmove__mobile .megamenu__level-3-menu .megamenu__level-3-link {
     color: #0066CC; 
  }
   .reflow__secondarynavmove__mobile .megamenu__level-2-menu {
    background: #D4CFCF;
    margin: 0;
  }
  .homepage .megamenu {
          top: 1.875em !important;
    }
  .megamenu, .megamenu.show {
          position: absolute;
          left: 0;
          right: 0;
          display: block;
          margin: 0;
          width: 100%;
          height: 5.2em;
          background: #2e3192;
      /* Old browsers */
      /* IE9 SVG, needs conditional override of 'filter' to 'none' */
          background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzJlMzE5MiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDY2YjMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
          background: -moz-linear-gradient(left, #2e3192 0%, #0066b3 100%);
      /* FF3.6+ */
          background: -webkit-gradient(linear, left top, right top, color-stop(0%, #2e3192), color-stop(100%, #0066b3));
      /* Chrome,Safari4+ */
          background: -webkit-linear-gradient(left, #2e3192 0%, #0066b3 100%);
      /* Chrome10+,Safari5.1+ */
          background: -o-linear-gradient(left, #2e3192 0%, #0066b3 100%);
      /* Opera 11.10+ */
          background: -ms-linear-gradient(left, #2e3192 0%, #0066b3 100%);
      /* IE10+ */
          background: linear-gradient(to right, #2e3192 0%, #0066b3 100%);
      /* W3C */
          top: 1.875em;
          z-index: 20;
      }
      
       .megamenu__home-icon {
          display: block;
          height: auto;
          float: left;
          padding: 0.3em 0 0.3em 1em;
          margin: 0;
          max-height: 4.8em;
      }
  
      .megamenu__mobileicons, .megamenusearch {
          display: none;
      }
  
      .megamenu__inner {
          display: block;
      }
  
      .megamenu__level-1-menu {
          margin: 0;
          width: 70%;
          float: right;
          margin-right: 2%;
      }
  
      .megamenu__level-1-item {
          float: left;
          width: 16%;
          margin: 0;
      }
  
      .megamenu__level-1-item:nth-child(1) {
          width: 20%;
      }
  
      .megamenu__level-1-item:nth-child(2) {
          width: 31%;
          padding-left: 1%;
      }
  
      .singapore .megamenu__level-1-item:nth-of-type(1),
      .singapore .megamenu__level-1-item.megamenu__level-1-item--wide {
          float: left;
          width: 31%;
      }
  
      .megamenu__level-1-link {
          font-size: .9em;
          border: none;
          margin-top: 1em;
          padding: 0.9em 0 1.9em 0;
          text-align: center;
      }
  
      .megamenu__level-1-item.open .megamenu__level-1-link:after {
          content: '';
      }
  
      .megamenu__level-1-item:hover .megamenu__level-1-link, .megamenu__level-1-item:active .megamenu__level-1-link, .megamenu__level-1-item:focus .megamenu__level-1-link, .megamenu__level-1-item.open .megamenu__level-1-link {
          background: #FFF;
          border-radius: 0 20px 0 0;
      }
  
      .megamenu__level-1-item:hover .megamenu__level-1-link, .megamenu__level-1-item:active .megamenu__level-1-link, .megamenu__level-1-item:focus .megamenu__level-1-link, .megamenu__level-1-item.open .megamenu__level-1-link {
          color: #0066CC;
      }
  
      .megamenu__level-1-item:hover .megamenu__static, .megamenu__level-1-item:active .megamenu__static, .megamenu__level-1-item:focus .megamenu__static, .megamenu__level-1-item.open .megamenu__static {
          display: block;
      }
  
      .megamenu__level-1-item:hover .megamenu__static, .megamenu__level-1-item:hover .megamenu__tagline, .megamenu__level-1-item:active .megamenu__static, .megamenu__level-1-item:active .megamenu__tagline, .megamenu__level-1-item:focus .megamenu__static, .megamenu__level-1-item:focus .megamenu__tagline, .megamenu__level-1-item.open .megamenu__static, .megamenu__level-1-item.open .megamenu__tagline {
          display: block;
      }
  
      .megamenu__level-1-item:hover .megamenu__level-2, .megamenu__level-1-item:active .megamenu__level-2, .megamenu__level-1-item:focus .megamenu__level-2, .megamenu__level-1-item.open .megamenu__level-2 {
          margin: 0;
          width: 100%;
          display: block;
          position: absolute;
          left: 0;
          height: auto;
          overflow: hidden;
          background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzJlMzE5MiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDY2YjMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
          background: -moz-linear-gradient(left, #2e3192 0%, #0066b3 100%);
      /* FF3.6+ */
          background: -webkit-gradient(linear, left top, right top, color-stop(0%, #2e3192), color-stop(100%, #0066b3));
      /* Chrome,Safari4+ */
          background: -webkit-linear-gradient(left, #2e3192 0%, #0066b3 100%);
      /* Chrome10+,Safari5.1+ */
          background: -o-linear-gradient(left, #2e3192 0%, #0066b3 100%);
      /* Opera 11.10+ */
          background: -ms-linear-gradient(left, #2e3192 0%, #0066b3 100%);
      /* IE10+ */
          background: linear-gradient(to right, #2e3192 0%, #0066b3 100%);
      /* W3C */
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e3192', endColorstr='#0066b3',GradientType=1 );
      /* IE6-8 */
      }
  
      .megamenu__static {
          background: #FFF;
          width: 96%;
          margin: 0 2%;
          overflow: hidden;
      }
  /** moved to 48em break
      .megamenu__column {
          width: 21%;
          height: 100%;
          display: block;
          float: left;
          margin: 1em 2%;
      }
  **/
      .megamenu__column-search {
          margin: 0.4em 0;
          display: block;
          overflow: hidden;
      }
  
      .megamenu__column-search-text-input {
          width: 80%;
          font-size: 0.6em;
          float: left;
          padding: 0.65em;
          background: #cccccc;
          color: #6d6d6d;
          border: none;
      }
  
      .megamenu__column-search-submit-button {
          float: left;
          height: 1.7em;
          width: 1.7em;
          margin-left: 1%;
          border: none;
          background: #0066CC;
          position: relative;
          max-width: 19%;
      }
  
      .megamenu__column-search-submit-button i {
          color: #FFF;
          position: absolute;
          top: 0.2em;
          left: 20%;
      }
  
      .megamenu__column-search-options {
          margin: 1.2em 0;
          font-size: 0.8em;
          display: block;
      }
  
      .megamenu__column-search-option-button {
          border: none;
          background: #0066CC;
          color: #FFF;
          font-size: 1.1em;
      }
  
      .megamenu__column-list {
          list-style: none;
          margin: 0;
          width: 100%;
          padding: 0;
      }
  
      .megamenu__column-list li {
          width: 100%;
          border-top: 1px solid #919090;
          padding: 0 0 0.1em 0;
      }
  
      .megamenu__column-list li:first-child {
          border-top: none;
      }
  
      .megamenu__column-link {
          color: #0066CC;
          text-decoration: none;
          font-size: 0.9em;
      }
  
      .megamenu__column .promo__wrapper {
          height: 115px;
          overflow: hidden;
      }
  
      .promo__wrapper {
          position: relative;
      }
  
      .promo__overlay {
          position: absolute;
          bottom: 0;
          width: 100%;
          background-color: rgba(0, 0, 0, 0.7);
      }
  
      .promo__title {
          color: #FFF;
          text-align: center;
          font-size: 0.9em;
          padding: 0.3em 0;
      }
  
      .megamenu__tagline {
          font-size: 0.9em;
          color: #FFF;
          margin: 0.4em auto;
          width: 100%;
          text-align: center;
      }
  
      .megamenu__tagline a {
          color: #FFF;
          font-weight: bold;
          text-decoration: none;
      }
        
        /* Mega-Menu update: https://jira.squiz.net/browse/SDQLD-2295 */
      .megamenu__level-2-menu {
          /*display: none;*/
      }
  
      .secondarynav {
          display: block;
          background: #2d2d2d;
          margin: -2em 4% 0;
          height: 2em;
      }
  
      .secondarynav__title {
          background: #4a4a4a;
          float: left;
          width: auto;
          position: relative;
      }
  
      .secondarynav__title:after {
          content: '';
          background: transparent no-repeat;
          background-image: url(mysource_files/sprites.svg);
          background-position: -300px -0px;
          width: 16px;
          height: 32px;
          position: absolute;
          right: -16px;
          top: 0;
      }
  
      .no-svg .secondarynav__title:after {
          background-image: url(mysource_files/sprites.png);
      }
  
      .secondarynav .megamenu__level-2-menu:before {
          background: transparent no-repeat;
          background-image: url(mysource_files/sprites.svg);
          background-position: -300px -0px;
          width: 16px;
          height: 32px;
          position: absolute;
          left: -4px;
          top: 0;
      }
  
      .no-svg .secondarynav .megamenu__level-2-menu:before {
          background-image: url(mysource_files/sprites.png);
      }
  
      .secondarynav__title-link {
          color: #FFF;
          text-decoration: none;
          line-height: 2.9em;
          margin: 0 0 0 0.4em;
          font-size: 0.7em;
          font-weight: bold;
      }
  
      .secondarynav .megamenu__level-2-menu {
          padding-left: 16px;
          display: block;
          float: left;
          height: 2em;
          margin: 0;
          padding: 0;
          width: auto;
          background: none;
          position: relative;
          overflow: visible;
      }
  
      .megamenu__level-2-item:first-child {
          margin-left: 1em;
      }
  
      .megamenu__level-2-item {
          float: left;
          width: auto;
          padding: 0 0 0.2em 0;
          width: auto;
          margin: 0;
          height: 1.8em;
          
          height: 2em;
          margin-top: 0.2em;
          position: relative;
          overflow: visible;
          border-bottom: 0;
      }
  
      .megamenu__level-2-link {
          font-weight: normal;
          float: left;
          width: auto;
          padding: 0 0.4em 0.6em;
          border-radius: 0 5px 0 0;
          margin: 0;
          font-size: 0.7em;
          line-height: 2.2em;
      }
  
      .megamenu__level-2-item:hover .megamenu__level-2-link, .megamenu__level-2-item.open .megamenu__level-2-link {
          background: #FFF;
          color: #2d2d2d;
      }
  
      .megamenu__level-2-item:hover .megamenu__level-3-menu, .megamenu__level-2-item.open .megamenu__level-3-menu {
          display: block;
          position: absolute;
          top: 2em;
          left: 0;
          background: #2d2d2d;
          padding: 0.7em 0;
          width: 10em;
          top: 1.8em;
          z-index: 50;
      }
  
      .megamenu__level-3-item {
          width: 100%;
          position: relative;
          *zoom: 1;
          border-bottom: none;
          overflow: visible;
      }
  
      .megamenu__level-3-item:before, .megamenu__level-3-item:after {
          content: '';
          display: table;
          line-height: 0;
      }
  
      .megamenu__level-3-item:after {
          clear: both;
      }
  
      .megamenu__level-3-link {
          font-weight: normal;
          color: #c7c7c7;
          font-size: 0.8em;
          padding: 0.4em 0;
          margin: 0 8%;
          border-bottom: 1px solid #797979;
          width: 75%;
      }
  
      .megamenu__level-3-item:last-child .megamenu__level-3-link {
          border-bottom: 0;
      }
  
      .megamenu__level-toggle {
          display: none;
      }
  
      .megamenu__level-4-menu {
          display: none;
      }
  
      .secondarynav__icon {
          display: block;
          float: right;
          color: #FFF;
          position: absolute;
          font-size: 0.7em;
          right: 0.7em;
          top: 0.7em;
      }
  
      .megamenu__level-3-item:hover .megamenu__level-3-link, .megamenu__level-3-item.open .megamenu__level-3-link {
          color: #FFF;
      }
  
      .megamenu__level-3-item:hover .megamenu__level-4-menu, .megamenu__level-3-item.open .megamenu__level-4-menu {
          display: block;
      }
  
      .megamenu__level-4-menu {
          position: absolute;
          right: -100%;
          top: -0.5em;
          background: #4e4e4e;
          left: inherit;
          padding: 0.5em 0.7em;
      }
  
      .megamenu__level-4-link {
          font-weight: normal;
          color: #c7c7c7;
          font-size: 0.8em;
          padding: 0.4em 0;
      }
  
      .secondarynav {
          height: auto;
      }
  
      .secondarynav:before {
          content: '';
          display: table;
          line-height: 0;
      }
  
      .secondarynav .megamenu__level-2-menu {
          float: none;
          height: auto;
      }
  
      .secondarynav .megamenu__level-2-menu:before {
          content: '';
          background: none;
      }
      
      @media (min-width: 48em) {
      .megamenu__column {
          width: 21%;
          height: 100%;
          display: block;
          float: left;
          margin: 1em 2%;
      }
      
  }
  .megamenu {
          max-width: 65.625em;
          margin: 0 auto;
          width: 100%;
      }
  
  .megamenu-promo {
  display: block;
  margin: -0.1em 0px 0px 80px;
      float: left;
  }
  
  .megamenu-promo a {
  display: block;
  color: white;
  text-decoration: none;
  margin-top: 1em;
  font-size: 1em;
  padding: 1em;
  background-color: #05a84f;
  }
  
      .megamenu__level-1-menu {
          margin: 0;
          width: 55%;
          float: right;
          margin-right: 2%;
      }
  
      .megamenu__level-1-link {
          font-size: 1em;
      }
  
      .megamenu__home-icon {
          padding: 0.3em 0 0.3em 1em;
          margin: 0;
          max-height: 4.8em;
      }
  
      .megamenu__level-1-item:hover .megamenu__level-2-menu, .megamenu__level-1-item.open .megamenu__level-2-menu {
          max-width: 63.425em;
          width: 100%;
          margin: 0 auto;
      }
  
      .secondarynav {
          margin: -2em auto 0;
          max-width: 63.425em;
          width: 100%;
          float: none;
      }
  
      .megamenu__level-2-link {
          padding: 0 1.4em 0.6em;
      }
/*Images 2147739*/
/*@media (max-width: 460px){
    img.slipimage { 
        width: 100%; 
        height:auto; 
        display:inline-block !important;
    }
}*/
.slipheroimage, img.slipimage {
    width:100%;
    height:auto;
    display:block;
    margin:0 auto;
}

/* L4C-IMAGES-ROW / IN-LINE STYLYING 2 OR 3 IMAGES IN ROW */
.L4C-images-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.L4C-images-row img {
    aspect-ratio: 16/9;
    height: auto;
    width: calc(50% - 1rem);
    object-fit: cover;
}

.L4C-images-row:has(> :last-child:nth-child(3)) img {
    width: calc(33% - 1.15rem);
    aspect-ratio: 1/1;
}

@media only screen and (max-width: 768px) {
    .L4C-images-row img {
        width: calc(50% - 0.5555rem);
    }

    .L4C-images-row:has(> :last-child:nth-child(3)) img {
        width: calc(33% - 0.6666rem);
    }
}
/* END L4C-IMAGES-ROW */


.wysiwyg-img-left{
	max-width:80%;
	height: auto;
}
.wysiwyg-profile-img-left{
	max-width:30%;	
	height: auto;
	display: inline;
}


img.float {
    display: block;
    padding-bottom: 1.5rem;
}

img.float-right {
    display: block;
    padding-bottom: 1.5rem;
    float: right;
    padding-left: 2rem;
}

img.float-left {
    display: block;
    padding-bottom: 1.5rem;
    float: left;
    padding-right: 2rem;
}

img.float::after, img.float-right::after, img.float-left::after  {
  content: "";
  clear: both;
  display: table;
}

img.aspect-16-9, img.aspect-4-3, img.aspect-3-4, img.aspect-3-2, img.aspect-3-2, img.aspect-1-1{
    object-fit: cover;
    object-position: center;
}

@media only screen and (max-width: 768px) {
    img.float-right, img.float-left {
        aspect-ratio: 16 / 9;
        object-fit: cover;
        object-position: center;
        padding: 0rem;
        margin-bottom: 1.5rem;
        max-width: 100% !important;
    }
    
    img.aspect-1-1, img.aspect-3-2, img.aspect-4-3 {
            aspect-ratio:16 / 9 !important;
    }
}
.panel > div:first-child {
	padding-top: 1.5rem !important;
}

.accordion__link:after {
    content: '\002B';
    color: #0066b3;
    font-weight: bold;
    float: right;
    margin-left: .5em;
    font-size: 0.8em;
}
.accordion__link.uber-accordion__button-active:after {
    content: "\2212";
}

.js-enabled .accordion__target.uber-accordion__target-active {
    max-height: 1000em;
}

.accordion {
    overflow: hidden;
    float: left;
    margin-bottom: 1em;
    width: 100%;
}

.accordion__item {
    background: #FFF;
    margin: 0em 0em .4em 0em;
}
.accordion .accordion__link {
    color: #444;
    background-color: #eee;
    font-size: 0.6em;
    font-weight: normal;
    padding-left: 1em;
    height: 100%;
    width: 100%;
    position: relative;
    display: block;

}

.accordion__link:before {
    content: '';
    font-size: 0.7em;
    position: absolute;
    right: 4em;
}

.accordion__link:after {
    font-family: 'WebHostingHub-Glyphs';
    src: url('mysource_files/webhostinghub-glyphs.eot');
    src: url('mysource_files/webhostinghub-glyphs.eot?#iefix') format('embedded-opentype'), url('mysource_files/webhostinghub-glyphs.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    -moz-font-feature-settings: "calt=0,liga=0";
    /*content: '\f48b';*/
    float: right;
    margin-right: 1em;
}


.accordion__link.uber-accordion__button-active:before {
    content: '';
}

.accordion .accordion__link.uber-accordion__button-active {
    background-color: #eee;
}

.accordion__item th {
    background-color: #FFF;
}


a {
    color: #0000EE;
}
a:link{
    color: #0000EE;
}
a:hover{
    color: #FF0000;
    text-decoration: underline;
}
a:focus{
    outline-style: solid;
    outline-width: 2px;
    outline-color: #e3a800;
}
/* DARCY ADDED 9/10/24 */
/* Used in staff listing profiles CCT, also used in the staff listing google sheet CCT */

/* Contact card design CSS*/
.contact-card-container {
    display: flex;
    flex-direction: row;
}

.contact-card-image-flex {
    width: 50%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.image-column {
    width: 20%;
}

.contact-card-image {
    width: 5rem;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.contact-card-image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    min-width: 5rem;
    max-width: 5rem;
    min-height: 5rem;
    max-height: 5rem;
}

.contact-card-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card-title h3 {
    margin: 0;
}

.contact-card-title strong {
    font-weight: 600;
}

.contact-card-container hr {
    margin: 0 2rem;
}

.contact-card-hr {
    margin: 1.5rem 0 !important;
}

.contact-card-email {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.contact-card-phone {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.contact-card-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card-portfolio a {
    font-size: 0.8rem;
}

@media only screen and (max-width: 762px) {
    .contact-card-container {
        flex-direction: column;
    }
    
    .contact-card-image-flex {
        width: 100%;
    }
    
    .contact-card-container hr {
        display: none;
    }
    
    .contact-card-contact-info {
        align-items: flex-start;
        margin-left: 7rem;
    }
    
    .contact-card-title {
        justify-content: flex-start;
    }
}

/* Staff Listing Icon */
.staff-listing-icon {
    width: 1rem;
    height: auto;
}

/* Description card design CSS */
