﻿/* Speech Bubbles*/
span.speech {
    float: right;
    margin-right: 300px;
    z-index: 10000;
    position: relative;
    width: 200px;
    height: 55px;
    text-align: center;
    line-height: 50px;
    background-color: #fff;
    border: 8px solid red;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 2px 2px 4px #888;
    -moz-box-shadow: 2px 2px 4px #888;
    box-shadow: 2px 2px 4px #888;
    color: black;
    font-weight: bold;
    
    -webkit-animation-name: Floatingx;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: Floating;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 35px;
}
.floating{
    float: left;
}

@-webkit-keyframes Floatingx{
    from {-webkit-transform:translate(0, 0px);}
    65% {-webkit-transform:translate(0, 15px);}
    to {-webkit-transform: translate(0, -0px);    }    
}
    
@-moz-keyframes Floating{
    from {-moz-transform:translate(0, 0px);}
    65% {-moz-transform:translate(0, 15px);}
    to {-moz-transform: translate(0, -0px);}    
}


.scaling{
    float: right;
    -webkit-animation-name: scalex;
    -webkit-animation-duration:3s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:ease-in-out;
    -moz-animation-name: scale;
    -moz-animation-duration:3s;
    -moz-animation-iteration-count:infinite;
    -moz-animation-timing-function:ease-in-out;
}
    
    @-webkit-keyframes scalex{
        from {-webkit-transform: scale(0.9);}
        65% {-webkit-transform: scale(1.0);}
        to {-webkit-transform: scale(0.9);}    
    }
        
    @-moz-keyframes scale{
        from {-moz-transform: scale(0.9);}
        65% {-moz-transform: scale(1.0);}
        to {-moz-transform: scale(0.9);}    
    }

    span.speech:before {
        content: ' ';
        position: absolute;
        width: 0;
        height: 0;
        left: 200px;
        top: 5px;
        border: 25px solid;
        border-color: transparent transparent transparent red; 
        
       
    }

    span.speech:after {
        content: ' ';
        position: absolute;
        width: 0;
        height: 0;
        left: 197px;
        top: 14px;
        border: 15px solid;
        border-color: transparent transparent transparent #fff;     
    }

/*  */

html {
    min-width: 1000px;
}

html, body {
    background: rgb(215,215,215) !Important;
    color: white;
}

html, body, #form1 {
    width: 100%;
    min-height: 100%;
    padding: 0;
    margin: 0;
    font-family: Verdana, Geneva, sans-serif;
}

#PageFrame {
    min-height: 100%;
    position: relative;
    /*background: url('../Images/TDC_background.jpg') no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;*/
}

.frame {
    width: 100%;
}

.narrow {
    width: 1000px;
    margin: 0px auto;
}

#TopFrame {
    background-color: white;
    margin-top: 50px;
}

#MobileMenuToggle {
    display: none;
    position: absolute;
    top: 25px;
    right: 0px;
    height: 70px;
    width: 70px;
    text-align: center;
    color: #194191;
    font-size: 50px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 200ms;
}

    #MobileMenuToggle:hover {
        border: 1px solid #194191;
        border-radius: 3px;
    }

#DropDownMenu {
    display: none;
    background-color: #194191;
}

#DropDownMenuContent {
    padding: 20px;
    overflow: auto;
}

    #DropDownMenuContent > div {
        float: left;
    }

#MobileMenuWrapper {
    border-right: 2px solid white;
    margin-right: 20px;
    padding-right: 20px;
}

#MobileMenu {
    list-style: none;
    margin: 0px;
    padding: 0px;
    width: 380px;
}

#MobileLoginBar {
    width: 370px;
    height: 200px;
}

#AlertFrame {
    background-color: #F3CB40;
}

#AlertPane {
    min-height: 30px;
    width: 1000px;
    margin: 15px auto 0px auto;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    display: none;
}

#AlertText {
    padding: 0px 15px;
    line-height: 30px;
    font-weight: bold;
    color: #3C80ED;
}

#ContentFrame {
    min-height: 600px;
    /*background-color:rgba(41,110,211,0.7);*/
    background: url("../Images/content_bg.jpg") no-repeat fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#AdminContentPane {
    width: 1000px;
    min-height: 500px;
    margin: 0px auto;
    padding: 30px 0px;
}

#FooterFrame {
    position: relative;
    bottom: 0px;
    color: rgb(130,130,130);
    padding: 20px 0px;
}

#FooterRow1 > div, #FooterRow2 > div {
    float: left;
}

#FooterRow1, #FooterRow2, #FooterRow3 {
    clear: both;
}

#ContactInfoBox {
    width: 55%;
    margin-left: 20px;
    border-left: 2px solid rgb(120,120,120);
}

#ContactInfoContent {
    padding: 20px;
}

    #ContactInfoContent > p {
        padding-left: 20px;
    }

#ContactInfoHeader {
    font-size: 18px;
    width: 75%;
    padding: 0px 0px 5px 20px;
}

.contactInfoContactDetail {
    padding: 0px 0px 5px 20px;
    font-size: 14px;
}

#FooterNavBox {
    width: 40%;
}

#FooterNav {
    list-style: none;
    font-size: 14px;
    column-count: 2;
}

    #FooterNav > li {
        padding: 10px 0px;
    }

#DisclaimerBox {
}

#DisclaimerContent {
    padding: 20px;
    font-size: 14px;
    text-align: justify;
}

    #DisclaimerContent > p {
        margin-top: 0px;
    }

#Copyright {
    padding: 20px;
    font-size: 12px;
}

#HeaderFrame {
    height: 115px;
    transition: all 200ms;
}

#HeaderBackground {
    background-color: rgba(255,255,255,0.8);
    height: 100%;
}

#HeaderPane {
    position: relative;
    height: 100%;
    color: rgb(80,80,80);
    margin: 0px auto;
    /*background:white url("../Images/header_bg.jpg") no-repeat center;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#CoatOfArmsBar {
    position: absolute;
    bottom: 16px;
    left: 10px;
}

#MinistryTitle {
    position: absolute;
    left: 100px;
    bottom: 20px;
    line-height: 25px;
    font-weight: bold;
    text-transform: uppercase;
}

#SiteTitle {
    width: 800px;
    height: 115px;
    position: absolute;
    top: 0px;
    left: 50%;
    margin: 0px 0px 0px -400px;
    background: url("../Images/SiteTitle.png?t=1") no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#Title {
    line-height: 70px;
    font-size: 50px;
    color: black;
    text-shadow: 0px 0px 5px #F3CB40;
}

#Description {
    color: white;
    text-shadow: 0px 0px 5px rgb(0,0,0);
}

#Flag {
    position: absolute;
    bottom: 0px;
    right: 10px;
    width: 203px;
    height: 115px;
    z-index: 5;
    background: url("../Images/Barbados-Flag.png") no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#LogoBar {
    /*margin: 20px 0px 0px 432px;*/
    display: none;
}

    #LogoBar img {
        border: 0;
    }

#LoginBar {
    position: absolute;
    bottom: 15px;
    right: 10px;
}

#NavigationFrame {
    position: fixed;
    top: 0px;
    z-index: 100;
    background: #194191;
}

#MainTimeWrapper {
    position: fixed;
    top: 0px;
    left: 12px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
}

#MobileTimeWrapper {
    display: none;
    position: absolute;
    left: 0px;
    bottom: 5px;
    color: rgb(80,80,80);
}

#NavigationPane {
    color: white;
    position: relative;
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
}

ul.navigation {
    white-space: nowrap;
    font-size: 0px;
    padding: 0px;
    margin: 0;
    list-style: none;
}

a:hover {
    /*text-decoration:underline;*/
}

ul.navigation > li {
    display: inline-block;
    padding: 0px 20px;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 200ms;
}

    ul.navigation > li > a {
        transition: all 200ms;
        display: block;
        height: 50px;
        line-height: 50px;
        width: 100%;
    }

#MobileMenu > li {
    font-size: 0.8rem;
    text-align: center;
    width: 100%;
    font-weight: bold;
    color: white;
    transition: all 200ms;
}

    #MobileMenu > li > a {
        transition: all 200ms;
        display: block;
        height: 40px;
        line-height: 40px;
        font-size: 17px;
        width: 100%;
    }

    ul.navigation > li:hover, ul.navigation > li.selected, #MobileMenu > li:hover, #MobileMenu > li.selected {
        background: white /*#F3CB40*/;
        color: black;
    }

#SearchNavItem {
    padding: 0px 5px;
    background-color: #5D8DD4;
}

.navSearchSummary {
    font-size: 11px;
    color: #F3CB40;
}

ul.navigation > li:hover .navSearchSummary, ul.navigation > li.selected .navSearchSummary {
    color: #3c80ed;
}



input[type="text"], input[type="password"], textarea {
    border: 1px solid rgb(180,180,180);
}

    input[type="text"].regular, input[type="password"].regular {
        width: 250px;
        padding: 2px 5px;
    }

input[type="submit"], input[type="button"] {
    border: 1px;
    padding: 5px 25px;
    cursor: pointer;
}

.errorMessage {
    color: Red;
    font-weight: bold;
}

.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#LoginIcon {
    background-image: url("../Images/key_icon.png");
}

#RegistrationLinkWrapper, #LogoutButtonWrapper, #MobileRegistrationLinkWrapper, #MobileLogoutButtonWrapper {
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    padding: 0px 30px 0px 10px;
    background-color: #F3CB40;
    color: black;
}

#LoginLinkWrapper, #ManageProfileWrapper, #MobileLoginLinkWrapper, #MobileManageProfileWrapper {
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    padding: 0px 30px 0px 10px;
    background-color: #194191;
    color: white;
}

#MobileLoginViewButtonWrapper {
}

#MobileLoginLinkWrapper, #MobileManageProfileWrapper {
    background-color: white;
    color: #194191;
}

#RegisterIcon {
    background-image: url("../Images/pen_icon.png");
}

.contentHeader {
    margin: 0;
    padding: 20px 0px 30px 10px;
    /*background: #3C80ED;*/
    color: white;
}

.contentBody {
    overflow: auto;
    padding: 0px;
}

#Search {
    width: 150px;
    font-size: 15px;
    padding: 9px 5px;
    height: 32px;
    border: 0px;
    color: white;
    background-color: transparent;
    background: url("../Images/Search_bg.png") no-repeat center;
}

    #Search:hover {
        background-image: url("../Images/Search_bg.png");
    }

    #Search.inUse {
        background-image: url("../Images/Search_bg_focus.png");
    }

#ButtonRow {
    clear: both;
    margin-top: 50px;
    overflow: auto;
}

    #ButtonRow > input {
        float: right;
        margin-left: 30px;
    }

.deleteButton {
    background: rgb(246, 153, 153);
}

.helpInfo {
    cursor: pointer;
    padding: 3px;
}

    .helpInfo.light {
        background-color: rgb(80,80,80);
        color: rgb(220,220,220);
    }

    .helpInfo.dark {
        background-color: rgb(220,220,220);
        color: rgb(80,80,80);
    }

.definition, #ClassificationHelpInfo {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 200px;
    background-color: white;
    border: 1px solid rgb(80,80,80);
    box-shadow: 10px 10px 5px rgba(20,20,20,0.6);
    color: rgb(80,80,80);
}

    .definition > div, #ClassificationHelpInfo > div {
        padding: 10px 20px;
    }

    .definition > .definitionTitle, #ClassificationTitle {
        background-color: #3C80ED;
        color: white;
    }

#ClassificationHelpInfo {
    position: absolute;
    background-color: white;
}

.socialIcon {
    display: block;
    border-radius: 2px;
    background: no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

i.facebook {
    background-image: url("../Images/facebook.jpg");
}

i.twitter {
    background-image: url("../Images/twitter.jpg");
}

i.pinterest {
    background-image: url("../Images/pinterest.jpg");
}

i.instagram {
    background-image: url("../Images/instagram.jpg");
}

i.linkedIn {
    background-image: url("../Images/linkedIn.jpg");
}

i.youtube {
    background-image: url("../Images/youtube.jpg");
}

@media screen and (max-width: 1400px) {
    #Flag {
        display: none;
    }

    #MinistryTitle {
        font-size: 10px;
    }

    #LoginLinkWrapper, #ManageProfileWrapper {
        font-size: 14px;
        padding: 0px 10px;
    }
}

@media screen and (max-width: 1250px) {
    #TopFrame {
        margin-top: 0px;
    }

    #HeaderPane {
        width: 800px;
    }

    #SiteTitle {
        top: 5px;
        width: 650px;
        height: 94px;
        margin-left: -325px;
    }

    #CoatOfArmsBar {
        bottom: auto;
        top: 8px;
        left: 0px;
    }

    #MobileTimeWrapper {
        display: block;
    }

    #MinistryTitle {
        display: none;
    }

    #LoginBar {
        display: none;
    }

    #MobileMenuToggle {
        display: block;
    }

    #NavigationFrame {
        display: none;
    }

    .narrow {
        width: 800px;
    }
}

/* Kendo UI Grid Widget */
.k-grid {
    border: none !important;
    font-size: 11pt;
}

    .k-grid .k-alt {
        background-color: rgb(230,230,230) !important;
    }

    .k-grid th.k-header,
    .k-grid-header {
        background-color: white;
        border-bottom: 1px solid #FFA500 !Important;
    }

        .k-grid th.k-header,
        .k-grid th.k-header .k-link {
            color: #5289D6;
            font-weight: bold !important;
            font-size: 11pt;
        }

    .k-grid .k-state-selected {
        background-color: #5289D6;
        border-color: #5289D6;
    }
