﻿/* General Styles 
---------------------------------------------------- */
html {
    margin: 0;
    padding: 0;
    background: #8F979E;
}

body {
    background-color: #fff;
    color: #6a737b;
    font-size: 14px;
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

a {
    color: #5793d6;
    outline: none;
    text-decoration: none;
    border: none;
}

    a:link {
        text-decoration: none;
    }

    a:active, a:hover {
        color: #5793d6;
        text-decoration: underline;
    }

*:focus {
    outline: none;
}

header, footer, hgroup,
nav, section {
    display: block;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear-fix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

h1, h2, h3,
h4, h5, h6 {
    -webkit-margin-before: 0;
    -webkit-margin-start: 0;
    -webkit-margin-after: 0;
    -webkit-margin-end: 0;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 18px;
}

h2 {
    font-size: 17px;
}

h3 {
    font-size: 16px;
}

h4 {
    font-size: 15px;
}

h5, h6 {
    font-size: 14px;
}

img {
    border: none;
    outline: none;
}

ul, ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
    -webkit-margin-start: 0;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-padding-start: 0;
}

p {
    margin: 0;
    padding: 0;
    -webkit-margin-start: 0;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-padding-start: 0;
}

.clear {
    clear: both;
}

.spacing {
    clear: both;
    padding: 10px 0px;
}




/* page titles */
hgroup.title {
    margin-bottom: 10px;
}

    hgroup.title h1, hgroup.title h2 {
        display: inline;
    }

    hgroup.title h2 {
        font-weight: normal;
        color: #79A8CC;
    }




/* forms */
fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

    fieldset legend {
        display: none;
    }

    fieldset ol {
        padding: 0;
        list-style: none;
    }

        fieldset ol li {
            padding-bottom: 5px;
        }

label {
    display: block;
    font-size: 15px;
}

.registercheck {
    display: inline;
}

label.checkbox {
    display: inline;
}

select {
    -webkit-appearance: none;
}

input, textarea {
    border: 1px solid #e2e2e2;
    background: #fff;
    font-size: 15px;
    margin: 5px 0 6px 0;
    padding: 5px;
    width: 300px;
}

textarea {
    font-family: inherit;
    width: 500px;
}

    input:focus, textarea:focus {
        border: 1px solid #7ac0da;
    }

input[type="checkbox"] {
    background: transparent;
    border: inherit;
    width: auto;
}

input[type="image"] {
    width: auto;
    padding: 0;
    margin: 0;
    border: 0;
    vertical-align: middle;
}

/*input[type="submit"],*/
input[type="button"],
button {
    text-decoration: none;
    display: inline-block;
    padding: 6px 13px 5px;
    font-weight: bold;
    border: none;
    color: #fff !important;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    background: #5793d6;
    background: -webkit-gradient(linear, left top, left bottom, from(#5793d6), to(#5793d6));
    background: -webkit-linear-gradient(#5793d6, #5793d6);
    background: -moz-linear-gradient(center top, #5793d6 0%, #5793d6 100%);
    background: -moz-gradient(center top, #5793d6 0%, #5793d6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#5793d6,endColorstr=#5793d6);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#5793d6, endColorstr=#5793d6)";
    width: auto;
}

    /*input[type="submit"]:hover,*/
    input[type="button"]:hover,
    button:hover {
        text-decoration: none;
        display: inline-block;
        padding: 6px 13px 5px;
        font-weight: bold;
        border: none;
        color: #fff !important;
        text-align: center;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        background: #35a0d0;
        background: -webkit-gradient(linear, left top, left bottom, from(#35a0d0), to(#35a0d0));
        background: -webkit-linear-gradient(#35a0d0, #35a0d0);
        background: -moz-linear-gradient(center top, #35a0d0 0%, #35a0d0 100%);
        background: -moz-gradient(center top, #35a0d0 0%, #35a0d0 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#35a0d0,endColorstr=#35a0d0);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#35a0d0, endColorstr=#35a0d0)";
        width: auto;
    }

/*td input[type="submit"],*/
td input[type="button"],
td button {
    font-size: 15px;
    padding: 4px;
    margin-right: 4px;
}

td input[type="radio"] {
    min-width: 20px;
    width: auto;
    border: 0;
    margin: 0;
}

td label {
    display: inline;
}

input, select, textarea {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}




/* info and errors */
.message-info {
    border: 1px solid;
    clear: both;
    padding: 10px 20px;
}

.message-error {
    clear: both;
    color: #e80c4d;
    font-size: 15px;
    font-weight: normal;
}

.message-success {
    color: #339E35;
    font-size: 15px;
    font-weight: normal;
}




/* styles for validation helpers */
.field-validation-error {
    color: #e80c4d;
    font-weight: normal;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #e80c4d;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #e80c4d;
    font-weight: normal;
    font-size: 16px;
}

.validation-summary-valid {
    display: none;
}




/* tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
    margin-top: 0.75em;
    border: 0 none;
    width: 100%;
}

th {
    font-size: 16px;
    text-align: left;
    border: none 0px;
    padding-left: 5px;
    color: #fff;
}

    th a {
        display: block;
        position: relative;
    }

        th a:link, th a:visited, th a:active, th a:hover {
            font-weight: 600;
            text-decoration: none;
            padding: 0;
            color: #fff;
        }

        th a:hover {
            text-decoration: underline;
        }

    th.asc a, th.desc a {
        margin-right: 12px;
    }

        th.asc a:after, th.desc a:after {
            display: block;
            position: absolute;
            right: 0;
            top: 0;
            font-size: 12px;
        }

        th.asc a:after {
            content: '▲';
        }

        th.desc a:after {
            content: '▼';
        }

td {
    padding: 0.25em 2em 0.25em 0em;
    border: 0 none;
}

tr.pager td {
    padding: 0 0.25em 0 0;
}




/* main layout
----------------------------------------------------------*/
.maintenance {
    border: 1px solid #8F979E;
    min-height: 25px;
    height: auto;
    color: #f00;
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
    background: #eee;
}

.content-wrapper {
    margin: 0 auto;
    max-width: 960px;
}

#body {
    clear: both;
    padding-bottom: 15px;
}

.main-content {
    padding-top: 30px;
}

header {
    background: #fff;
    border-bottom: 1px solid #8F979D;
    width: 100%;
    margin: 0 auto;
    padding-top: 24px;
    padding-bottom: 0;
}

footer {
    clear: both;
    background-color: #8F979E;
    min-height: 50px;
    height: auto;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
}

#footerbucket p {
    padding-top: 10px;
    padding-bottom: 10px;
}

#footerbucket ul {
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: 60px;
    height: auto;
}

    #footerbucket ul li {
        width: 33%;
        float: left;
        height: auto;
    }

        #footerbucket ul li a {
            color: #fff;
            text-decoration: none;
        }

            #footerbucket ul li a img {
                width: 50px;
            }

            #footerbucket ul li a:hover {
                color: #c8c8c8;
                text-decoration: underline;
            }

.terms-link {
    clear: both;
    padding: 0px;
}

    .terms-link a {
        text-decoration: none;
        display: inline-block;
        padding: 2px 10px 2px;
        font-weight: bold;
        border: none;
        color: #fff !important;
        text-align: center;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        background: #5793d6;
        background: -webkit-gradient(linear, left top, left bottom, from(#5793d6), to(#5793d6));
        background: -webkit-linear-gradient(#5793d6, #5793d6);
        background: -moz-linear-gradient(center top, #5793d6 0%, #5793d6 100%);
        background: -moz-gradient(center top, #5793d6 0%, #5793d6 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#5793d6,endColorstr=#5793d6);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#5793d6, endColorstr=#5793d6)";
    }

        .terms-link a:hover {
            text-decoration: underline;
            background: #35a0d0;
        }


/* site title
----------------------------------------------------------*/
.site-title {
    float: left;
    margin: 0;
    color: #5793D6;
    font-size: 20px;
    font-weight: normal;
    width: 100%;
}

    .site-title a, .site-title a:hover, .site-title a:active {
        background: none;
        color: #5793D6;
        outline: none;
        text-decoration: none;
    }

.header-logo {
    display: inline;
}

    .header-logo img {
        height: 28px;
        width: 232px;
    }




/* menu
----------------------------------------------------------*/
.slicknav_menu {
    display: none;
}

.nav {
    font-size: 13px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    z-index: 4000;
    width: 100%;
}

    .nav ul {
        margin-top: 9px;
        float: right;
    }

ul .nav-item {
    float: left;
    *display: inline;
    zoom: 1;
    position: relative;
}

.nav-item a {
    display: block;
    color: #6a737b;
    padding: 7px 10px;
    text-decoration: none;
    border-radius: 3px;
}

.nav-item > a:hover {
    background: #35a0d0;
    color: #fff;
}

.nav-item:hover .nav-submenu {
    display: block;
}

#menu ul .nav-item:hover > a {
    background: #72aad3;
    color: #fff;
}




/* submenu */
.nav ul ul {
    margin-top: -3px;
}

.nav-submenu {
    font-size: 12px;
    border-radius: 3px;
    display: none;
    position: absolute;
    left: 0;
    min-width: 175px;
}

ul li .nav-submenu a {
    border-radius: 0;
    padding: 7px 16px;
}

.nav-submenu-item a {
    background: #72aad3;
    display: block;
    padding: 15px;
    color: #fff;
}

    .nav-submenu-item a:hover {
        background: #72aad3;
        color: #fff;
        text-decoration: underline;
    }

/* page elements
----------------------------------------------------------*/

/* home page */
#contentbucket {
    border: 1px solid #eee;
    -moz-box-shadow: 5px 5px 5px 0 #CCCCCC;
    -webkit-box-shadow: 5px 5px 5px 0 #CCCCCC;
    box-shadow: 5px 5px 5px 0 #CCCCCC;
    min-height: 150px;
    height: auto;
    overflow: hidden;
    margin-top: 10px;
}

    #contentbucket ul {
        padding: 15px;
    }

        #contentbucket ul li {
            width: 33%;
            float: left;
            height: auto;
            margin: 0 0 16px;
        }

            #contentbucket ul li a.bucketlinks {
                text-decoration: none;
                display: inline-block;
                padding: 6px 13px 5px;
                font-weight: bold;
                border: none;
                color: #fff !important;
                text-align: center;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                border-radius: 5px;
                box-shadow: none;
                -moz-box-shadow: none;
                -webkit-box-shadow: none;
                background: #5793d6;
                background: -webkit-gradient(linear, left top, left bottom, from(#5793d6), to(#5793d6));
                background: -webkit-linear-gradient(#5793d6, #5793d6);
                background: -moz-linear-gradient(center top, #5793d6 0%, #5793d6 100%);
                background: -moz-gradient(center top, #5793d6 0%, #5793d6 100%);
                filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#5793d6,endColorstr=#5793d6);
                -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#5793d6, endColorstr=#5793d6)";
            }

                #contentbucket ul li a.bucketlinks:hover {
                    text-decoration: none;
                    background: #35a0d0;
                }

    #contentbucket .features-content {
        clear: both;
        width: 85%;
        float: left;
        min-height: 60px;
    }

    #contentbucket ul li img {
        float: left;
        margin: 10px 10px 10px 0;
        border: 1px solid #CCC;
    }

.idi {
    text-align: right;
}

    .idi p {
        padding-top: 15px;
    }

        .idi p img {
            height: 60px;
            width: 200px;
        }


/* login page */
.logintype {
    width: 340px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid #c8c8c8;
    border-radius: 6px;
    min-height: 210px;
    padding: 20px;
    height: auto;
}

.student-login-box {
    float: left;
}

.skincentre-login-box {
    float: right;
}

#studentloginForm,
.skincentreloginForm {
    float: left;
    width: 40%;
}

    .skincentreloginForm,
    #studentloginForm .validation-error {
        display: block;
        margin-left: 1px;
    }

.connectLoginForm {
    border-left: solid 1px #c8c8c8;
    margin-left: 40px;
    float: left;
    width: 50%;
    padding-left: 25px;
}




/* register page */
.accountdetails select {
    border: 1px solid #e2e2e2;
    background: #fff;
    margin: 5px 0 6px 0;
    padding: 5px;
    width: 300px;
}

.personaldetails select {
    border: 1px solid #e2e2e2;
    background: #fff;
    margin: 5px 0 6px 0;
    padding: 5px;
    width: 300px;
}




/* online learning page & classroom learning page */
.pagecontentwrapper {
    width: 100%;
    height: auto;
}

    .pagecontentwrapper .categories
     {
        float: left;
        width: 210px;
    }

.categories .left-menu {
    padding: 5px 2px;
    background: none repeat scroll #8D959B;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -khtml-border-radius: 10px;
}

.categories .sidebar {
    width: 80%;
    margin: 20px auto;
    overflow: hidden;
    border: 0;
}

.sidebar-link {
    padding: 6px 0px 6px 20px;
    border-bottom: 1px solid #fff;
}

    .sidebar-link:last-child {
        border: 0;
    }

    .sidebar-link a {
        color: #fff;
        text-decoration: none;
    }

        .sidebar-link a:hover {
            color: #fff;
            text-decoration: underline;
        }

.categories .legend-workshop {
    margin: 20px auto;
    width: 80%;
}

.legend-workshop img {
    height: 8px;
    width: 10px;
}

.pagecontentwrapper .topics {
    float: right;
    width: 700px;
    padding-left: 30px;
}

.topics .topicsbanner {
    height: 275px;
    overflow: hidden;
}

.topicname {
    color: #79A8CC;
    font-size: 18px;
    margin-top: 5px;
    border-bottom: 1px solid #EEE;
}

.topicdescription {
    clear: both;
    width: auto;
    padding: 10px 0 0 0;
}

#topicscontent {
    clear: both;
    margin-top: 30px;
    width: auto;
}

    #topicscontent li {
        width: 50%;
        float: left;
        margin-left: 0;
        padding: 0 0 20px 0;
    }

    #topicscontent .faq-list {
        clear: both;
        width: auto;
        height: auto;
        float: left;
        margin-left: 0;
    }

    #topicscontent .topicimg {
        float: left;
        width: 80px;
    }

        #topicscontent .topicimg img {
            height: 80px;
            width: 80px;
        }

    #topicscontent .topictext {
        float: left;
        margin-left: 10px;
        width: 250px;
    }

    #topicscontent .treatment-protocol-text {
        float: left;
        width: 97%;
    }

        #topicscontent.treatment-protocol-text span {
            font-size: 12px;
        }

    #topicscontent .topictext span {
        font-size: 12px;
    }

    #topicscontent .topictext a {
        text-decoration: none;
        font-weight: bold;
    }

        #topicscontent .topictext a:hover {
            text-decoration: underline;
            color: #248fbf;
        }

    #topicscontent .treatment-menu-list li {
        width: 100%;
        clear: both;
        height: auto;
        border-bottom: 1px solid #EEE;
        padding-top: 5px;
    }

    #topicscontent .treatment-menu-list-link:last-child {
        border: 0;
    }

    #topicscontent .treatmentstext {
        width: 100%;
    }

        #topicscontent .treatmentstext a {
            text-decoration: none;
            font-weight: bold;
        }

            #topicscontent .treatmentstext a:hover {
                text-decoration: underline;
                color: #248fbf;
            }

    #topicscontent #MainContent_divdermlive li {
        list-style-type: disc;
        width: 100%;
        clear: both;
        height: auto;
    }

    #topicscontent .dermlive {
        width: auto;
    }

    #topicscontent .testimonials-list li {
        width: 100%;
        clear: both;
        height: auto;
        padding-bottom: 25px;
    }

    #topicscontent .testimonailsheader {
        font-weight: bold;
    }

    #topicscontent .testimonialsimg {
        float: left;
        width: 33px;
    }

        #topicscontent .testimonialsimg img {
            height: 25px;
            width: 33px;
        }

    #topicscontent .testimonialstext {
        padding-left: 50px;
        width: auto;
    }

    #topicscontent #expert-content {
        font-size: 12px;
    }

        #topicscontent #expert-content p {
            clear: both;
        }

    #topicscontent #expert-how li {
        margin-left: 30px;
        padding-top: 2px;
        list-style-type: disc;
        height: auto;
        width: auto;
    }

    #topicscontent #expert-tiers ul {
        list-style-image: url("/Content/Images/expert_check_box.png");
        padding-bottom: 15px;
        color: #fff;
    }

    #topicscontent #expert-tiers .certified {
        background: #005695;
    }

    #topicscontent #expert-tiers .specialist {
        background: #5c8727;
    }

    #topicscontent #expert-tiers .expert {
        background: #f26649;
    }

    #topicscontent #expert-tiers ul li {
        float: none;
        height: auto;
        width: auto;
        margin-left: 30px;
        padding-top: 10px;
    }

    #topicscontent .list-item {
        min-height: 200px;
        height: auto;
    }

    #topicscontent .protocols-list-item {
        min-height: 100px;
        height: auto;
    }

    #topicscontent .list-item .locationname {
        font-weight: bold;
        font-size: 16px;
    }

#MainContent_divexpertprogram {
    width: auto;
}

.normalRow {
}

.alternateRow {
    background: #f5f5f5;
}

.topics table th {
    padding: 6px 0 3px 0;
    background: #eee;
    border: 1px solid #e1e1e1;
    box-shadow: inset 0 0 1px 0 #ffffff 3px 3px 3px #888888;
    -webkit-box-shadow: inset 0 0 1px 0 #ffffff 3px 3px 3px #888888;
    -moz-box-shadow: inset 0 0 1px 0 #ffffff 3px 3px 3px #888888;
    -o-box-shadow: inset 0 0 1px 0 #ffffff 3px 3px 3px #888888;
    text-align: left;
    padding-left: 5px;
}

.topics table td {
    padding: 0.25em 0.5em 0.25em 0.5em;
}

.topics select {
    border: 1px solid #e2e2e2;
    background: #fff;
    margin: 5px 0 6px 0;
    padding: 5px;
}

.join-waiting-list {
    text-decoration: none;
    display: inline-block;
    padding: 3px 8px;
    border: none;
    color: #fff !important;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    background: #a30046;
    width: auto;
}

.book-now {
    text-decoration: none;
    display: inline-block;
    padding: 3px 8px;
    border: none;
    color: #fff !important;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    background: #5793d6;
    width: auto;
}

.on-waiting-list {
    text-decoration: none;
    display: inline-block;
    padding: 3px 8px;
    border: none;
    color: #fff !important;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    background: #f26649;
    width: auto;
}

.already-booked {
    text-decoration: none;
    display: inline-block;
    padding: 3px 8px;
    border: none;
    color: #fff !important;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    background: #5c8727;
    width: auto;
}

.short-notice,
.aspNetDisabled {
    text-decoration: none;
    display: inline-block;
    padding: 3px 8px;
    border: none;
    color: #fff !important;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    background: #666D70;
    width: auto;
}

.bookings-container {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 6px;
}

.bookingheader,
.employees-container .employeeheader {
    color: #79A8CC;
    font-size: 14px;
}

.emploeyees-container {
    margin-bottom: 10px;
}

.employees-list {
    padding: 2px 10px;
    height: 135px;
    width: 40%;
}

    .employees-list table {
        margin-top: 2px;
    }

        .employees-list table tr {
            background: #8D959B;
        }

    .employees-list td label {
        padding: 0 4px;
        font-size: 14px;
        color: #fff;
    }

.workshops-view {
    float: right;
    padding: 8px 0 2px 0;
}

.question {
    color: #5793d6;
    font-weight: bold;
}

.answer {
    display: none;
    cursor: pointer;
}

.slidingDiv {
    height: auto;
    background-color: #f5f5f5;
    padding: 20px;
    margin-top: 10px;
    border-radius: 6px;
}

.spacer {
    clear: both;
    padding: 5px 0;
}

.join-waiting-list-button {
    text-decoration: none;
    display: inline-block;
    padding: 6px 13px 5px;
    font-weight: bold;
    border: none;
    color: #fff !important;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    background: #a30046 !important;
    background: -webkit-gradient(linear, left top, left bottom, from(#5793d6), to(#5793d6));
    background: -webkit-linear-gradient(#5793d6, #5793d6);
    background: -moz-linear-gradient(center top, #5793d6 0%, #5793d6 100%);
    background: -moz-gradient(center top, #5793d6 0%, #5793d6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#5793d6,endColorstr=#5793d6);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#5793d6, endColorstr=#5793d6)";
    width: auto;
}

.icon-list {
    display: inline-block;
    background: url('/Content/Images/bookings-list.png') no-repeat;
    height: 32px;
    width: 32px;
    vertical-align: middle;
}

.icon-calendar {
    display: inline-block;
    background: url('/Content/Images/bookings-calendar.png') no-repeat;
    height: 32px;
    width: 32px;
    vertical-align: middle;
}

.legend-workshop li{
    width:auto !important;
    padding:5px !important;
    clear:none !important;
}




/* workshop calendar */
#MainContent_workshopCalendar td {
    padding: 0;
}

.divworkshops table th {
    background: #8D959B;
    color: #fff;
    font-weight: normal;
    text-shadow: none;
}

.calendar-head {
    font-size: 16px;
    background: #8D959B;
    margin: 0;
    border: none;
    height: 35px;
    padding: 10px;
    color: #fff;
}

.calendar-day-style,
.day-other-month {
    text-align: left;
    vertical-align: top;
    border: 1px solid #e2e2e2;
    color: #79A8CC;
}

.calendar-day-header-style {
    color: #6a737b;
    height: 39px;
    border: 0;
    text-align: left;
}

.calendar-other-month-day-style {
    width: 115px;
    height: 115px;
    vertical-align: top;
    border: 1px solid #e2e2e2;
}

.calendar-weekend-day-style {
    width: 115px;
    vertical-align: top;
    height: 115px;
    background: #eceeef;
    text-align: left;
    border: 1px solid #e2e2e2;
}

.calendar-other-month-weekend {
    width: 115px;
    vertical-align: top;
    height: 115px;
    background: #eceeef;
    text-align: left;
    border: 1px solid #e2e2e2;
}

.calendar-date {
    display: none;
}

.day-workshop {
    padding: 5px;
}

.day-number {
    color: #79A8CC;
    font-weight: bold;
}

.day-time {
    color: #5793d6;
    font-weight: bold;
}

.cce-can-book {
    color: #356baa;
}

.cce-already-booked {
    color: #5c8727;
}

.cce-fully-booked {
    color: #a30046;
}

.cce-waiting-list {
    color: #f26649;
}

.cce-notice-required {
    color: #356baa;
}

.cce-past {
    color: #6a737b;
}




/* workshop details page */
.workshop-view-label {
    font-weight: bold;
}

.workshop-section {
    padding: 10px;
}

    .workshop-section table {
        margin-top: 2px;
    }

    .workshop-section td label {
        padding: 0 4px;
        font-size: 14px;
    }

.workshop-left {
    width: 50%;
    padding-left: 3%;
    border: 1px solid #ddd;
}

.workshop-right {
    width: 50%;
    padding-left: 10px;
    border: 1px solid #ddd;
}

.workshop-table-button {
    width: 50%;
    padding-left: 15px;
    padding-top: 15px;
    padding-bottom: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.workshop-button-view-map {
    background: #5793d6;
    color: #fff !important;
    padding: 6px 13px 5px;
    font-weight: bold;
    text-align: center;
    font-family: inherit;
    border-radius: 5px;
}

.workshop-section li {
    padding: 2px 0px;
}

.workshop-img {
    height: 200px;
    width: auto;
    max-width: 90%;
    border-radius: 6px;
}

.workshop-video {
    width: auto;
    max-width: 90%;
    height: 250px;
}

    .workshop-video object {
        width: 90%;
        height: 250px;
    }

    .workshop-video embed {
        width: 90%;
        height: 250px;
    }

.workshop-logo {
    max-width: 100%;
    width: 500px;
}

.workshop-info-header {
    font-weight: bold;
    font-size: 15px;
}

.workshop-info-label {
    font-weight: bold;
    font-size: 13px;
}

.workshop-booking-success-message {
    font-weight: normal;
    font-size: 15px;
    color: #339E35;
    padding: 7px 0px;
}

.workshop-booking-failure-message {
    font-weight: normal;
    font-size: 15px;
    color: #e80c4d;
    padding: 7px 0px;
}

.workshop-booking-waitinglist-message {
    font-weight: normal;
    font-size: 15px;
    color: #f26649;
    padding: 7px 0px;
}

.workshop-description {
    padding: 5px;
}

.workshop-prerequisites-message {
    font-weight: normal;
    font-size: 14px;
    color: #5793D6;
    padding: 7px 0px;
}

.prerequisites-box {
    padding: 5px;
    border: 1px solid #e2e2e2;
}

.prerequisites-list {
    padding: 5px 0px;
}

    .prerequisites-list li {
        padding-left: 5px;
        font-size: 14px;
    }

.prerequisite-notice {
    font-weight: normal;
    font-size: 12px;
    color: #e80c4d;
}

.calendar-download {
    clear: both;
    border: 1px solid #ccc;
    background: #eee;
    border-radius: 6px;
    margin-bottom: 5px;
    height: auto;
}

    .calendar-download .close_box {
        background: #5793d6;
        color: #fff;
        margin-top: 2px;
        padding: 0px 5px;
        display: inline;
        position: absolute;
        right: 28px;
        border-radius: 3px;
        cursor: pointer;
    }

    .calendar-download img {
        vertical-align: middle;
        height: 24px;
        width: 24px;
    }

    .calendar-download h3 {
    }

    .calendar-download span {
        padding-left: 5px;
    }

    .calendar-download ul {
        padding: 5px;
        background: #fff;
    }

        .calendar-download ul li {
            width: auto;
            padding: 5px;
        }

            .calendar-download ul li a {
                font-weight: normal;
            }

                .calendar-download ul li a:hover {
                    text-decoration: none;
                    font-weight: bold;
                }

.calendar-info {
    list-style-type: disc;
    margin-left: 25px;
}


/* contact us page
----------------------------------------------------------*/
.contact-header {
    color: #79A8CC;
    font-size: 18px;
}

.contact-text {
    color: #79A8CC;
}

#divcontact p {
    margin-top: 5px;
}

#divcontact label {
    font-weight: normal;
}

#divcontact select {
    border: 1px solid #e2e2e2;
    background: #fff;
    margin: 5px 0 6px 0;
    padding: 5px;
    width: 300px;
}




/* my education page
----------------------------------------------------------*/
.student-workshop-history {
}

    .student-workshop-history h3 {
        font-size: 19px;
        padding: 0px;
    }

.employee-workshop-history {
}

.collapse {
    width: 0px;
    height: 0px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #5793d6;
    margin: 10px;
    float: right;
}

.open {
    width: 0px;
    height: 0px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #5793d6;
    margin: 10px;
    float: right;
}

.employee-workshop-history h3 {
    width: auto;
    background: #eee;
    padding: 5px;
    color: #5793D6;
    font-size: 19px;
}

.employee-workshop-history .history {
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 5px;
}

.employee-workshop-history .content {
    padding: 4px;
}

.employee-workshop-history h4 {
    font-size: 17px;
}

.future {
    color: #5c8727;
}

.waiting {
    color: #f26649 !important;
}

.past {
    color: #6a737b;
}

.booked {
    color: #5c8727 !important;
}

.workshop {
    width: 60%;
}

.date {
    width: 20%;
}

.time {
    width: 20%;
}

.view-employee-booking {
    color: #79A8CC;
    font-size: 18px;
    padding-bottom: 15px;
}




/* profile page*/
.profile-header {
    color: #79A8CC;
    font-size: 18px;
}

#divpersonaldetails {
    float: left;
    width: 55%;
}

#divcontactdetails {
    float: right;
    width: 45%;
}

#divchangepassword input[type="password"] {
    width: 175px;
}

.profile-content {
    font-weight: bold;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 6px;
}




/* programme status page */
.imgstatus {
    width: auto;
    max-width: 100%;
}

.workshoplist {
    padding-left: 4px;
    padding-top: 10px;
    padding-bottom: 5px;
    margin-top: -18px;
    border: 1px solid #ccc;
    height: auto;
}

.completed {
    color: #ffffff;
    padding: 5px 2px;
}

.not-completed {
    color: #ffff00;
    padding: 5px 2px;
}




/* experts page */
.expert-header {
    height: 87px;
}

.expert-footer {
    padding: 30px 0;
    min-height: 50px;
    height: auto;
}

.experts-intro {
    border: 1px solid #e8e8e8;
    padding: 10px 10px;
    border-radius: 6px;
    font-style: italic;
}

    .experts-intro .experts-banner {
        width: 100%;
    }

.experts-filter {
    margin-top: 10px;
    padding: 10px;
    min-height: 100px;
    height: auto;
    border-radius: 6px;
    background: #e6e6e6;
    position: relative;
}

.experts-total {
    font-size: 16px;
    font-weight: bold;
    color: #F26649;
}

.experts-view-grid {
    vertical-align: middle;
    background-image: url("/Content/Images/grid.png");
    background-repeat: no-repeat;
    display: inline-block;
    height: 30px;
    width: 30px;
}

.experts-view-list {
    vertical-align: middle;
    background-image: url("/Content/Images/list.png");
    background-repeat: no-repeat;
    display: inline-block;
    height: 30px;
    width: 30px;
}

.experts-view-select {
    padding: 15px 0;
    height: 30px;
}

    .experts-view-select .show {
        padding-left: 10px;
    }

/* list view */
.experts-list {
    width: 960px;
}

.experts-table-list {
    border: 1px solid #eee;
    border-radius: 6px;
    border-collapse: separate !important;
    width: 960px;
    margin: 0;
    padding: 2px;
}

    .experts-table-list tr td {
        padding-left: 5px;
    }

        .experts-table-list tr td img {
            height: 100px;
            width: 100px;
        }

.experts-listbutton {
    display: block;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #666;
    border: none;
    -webkit-appearance: none;
    width: 100% !important;
}

/* grid view */
.experts-grid {
    width: 958px;
    border: 1px solid #eee;
    border-radius: 6px;
    height: auto;
    min-height: 400px;
    padding-top: 10px;
}

.experts-photos {
    float: left;
    padding: 5px 5px;
    width: 560px;
}

.experts-grid input[type="image"] {
    border: 2px solid #e8e8e8;
    height: 100px;
    width: 100px;
}

.experts-details {
    width: 355px;
    float: right;
    padding: 5px 5px;
    margin-right: 5px;
    overflow-y: scroll;
    font-size: 14px;
    height: 350px;
}

.expert-data {
    font-weight: bold;
    color: #F26649;
}

.experts-gridbutton {
    display: block;
    height: 50px;
    width: 515px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #666;
    border: none;
    -webkit-appearance: none;
    width: 100% !important;
}




/* update panel
----------------------------------------------------------*/
.loadingProgress {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background-color: #000;
    filter: alpha(opacity=50);
    opacity: 0.5;
    z-index: 1000;
}

.loadingMessage {
    position: fixed;
    top: 30%;
    left: 43%;
    padding: 10px;
    width: 10%;
    z-index: 1001;
    background-color: #fff;
    border: solid 1px #000;
    font-size: 14px;
    text-align: center;
}

/* scroll to top
----------------------------------------------------------*/
.scrollup {
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    opacity: 0.3;
    z-index: 3000;
    position: fixed;
    bottom: 50px;
    right: 100px;
    display: none;
    background: url("/Content/Images/icon_top.png") no-repeat;
}

/* Css for new footer list - Unilever update - BW 09-12-15 */

.footer-list-container {
    width: 960px;
    margin: auto;
}

.footer-list {
    list-style: none;
    text-align: center;
    padding-top: 20px;
}

    .footer-list > li {
        display: inline-block;
        font-size: 12px;
        padding: 0 8px 0 8px;
    }

    .footer-list > li a {
        color: #FFF;
        text-decoration: none;
    }

    .footer-list > li a:hover {
        color: rgba(0,0,0,0.3);
        text-decoration: underline;
    }
    .inactive-expert {
    filter: grayscale(100%);
}

.postcode-dropdown {
    border: 1px solid #ccc;
    max-height: 220px;
    overflow-y: auto;
    background: #fff;
    position: absolute;
    z-index: 1000;
    width: 300px;
    left: 283px;
    top: 45px;
    display: none;
}

.postcode-item {
    padding: 8px;
    cursor: pointer;
}

.postcode-item:hover {
    background: #f2f2f2;
}

#postcodebutton {
    cursor: pointer;
}

#postcodebutton:hover {
    opacity: 0.85;
}