﻿html, body, input {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    background-color: #FFFFFF !important;
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-user-select: none;
    -webkit-highlight: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

img, object, embed, video {
    max-width: 100%;
    border: 0;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
    width: 100%;
}

.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

.clickable {
    cursor: pointer;
}

.link {
    color: #0000EE;
    text-decoration: underline;
}

    .link:hover {
        cursor: pointer;
    }

.copyrightText {
    font-size: 0.8em;
}

.fontsmall {
    font-size: 0.8em;
}

.loginBox {
    margin: 0 auto;
    background-color: #f5f5f5;
    border: 1px solid #e5e5e5;
    padding: 50px;
    width: 320px;
    text-align: center;
    line-height: 25px;
    border-radius: 3px;
}

    .loginBox input[type=text], .loginBox input[type=password] {
        width: 80%;
    }

.loginBoxPaddingTop {
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
}

.loginFormContainer {
    margin: 0 auto;
    margin-top: 25px;
}

.loginAppHeader {
    color: #5c5c5c;
}

.loginFormIcon {
    padding: 8px 10px;
    color: #666666;
    background-color: #c2c2c2;
    border: 1px solid #f5f5f5;
    margin-right: -1px;
}

h2 {
    margin: 8px 0;
}

.red {
    color: red;
}

.logoContainer {
    margin: 0 auto;
    text-align: center;
}

.logoimg {
    max-width: 190px;
    vertical-align: middle;
}

.loginScreenMsg {
    background-color: #ffffff;
    text-align: left;
    padding: 15px;
    margin: 10px 0;
    font-size: 12px;
    border: 1px solid #999;
}

.adminLoginFormContainer {
    line-height: 16px;
    font-size: 12px;
}

div#divAdminLogin {
    background: white;
    opacity: 0.9;
    width: 80px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    padding: 2px 3px;
    text-align: center;
    border-bottom-left-radius: 12px;
}

    div#divAdminLogin a {
        text-decoration: none;
        color: #333;
    }

        div#divAdminLogin a:hover {
            color: orange
        }

.adminLoginFormPanel {
    min-width: 130px !important;
}

.outputmsg {
    color: red;
}

.vspacer {
    margin-top: 1em;
}

.inputBox {
    padding: 0.3125em;
}

.bold {
    font-weight: bold;
}

.gray {
    color: #666;
}

.largeText {
    font-size: 120%;
}

.spin {
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.loginButton {
    padding: 8px 15px;
    border: 1px solid;
    border-radius: 2px;
    background-color: rgb(40, 80, 146);
    color: white;
}

.blueButton {
    Height: 2.5em;
    width: 5em;
    background-image: -webkit-linear-gradient(top, rgb(77, 144, 254), rgb(71, 135, 237));
    background-color: #4286f4;
    border: 1px solid rgb(48, 121, 237);
    border-radius: 2px;
    color: white;
    -webkit-margin-end: 0.4em;
    -webkit-margin-start: 0;
    -webkit-transition: all 218ms;
    -webkit-user-select: none;
}

    .blueButton:hover {
        cursor: pointer;
        background-image: -webkit-linear-gradient(top, rgb(40, 80, 146), rgb(26, 54, 98));
        background-color: #285092;
        border: 1px solid rgb(26, 54, 98);
    }

.blueButton2 {
    background-image: -webkit-linear-gradient(top, rgb(77, 144, 254), rgb(71, 135, 237));
    background-color: #4286f4;
    border: 1px solid rgb(48, 121, 237);
    border-radius: 2px;
    color: white;
    -webkit-transition: all 218ms;
    -webkit-user-select: none;
}

.modern {
    display: inline-block;
    margin: 10px;
    padding: 8px 15px;
    background: #B8ED01;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 4px;
    transition: all 0.3s ease-out;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 2px 2px rgba(0,0,0,0.3), 0 0 4px 1px rgba(0,0,0,0.2);
    /* Font styles */
    text-decoration: none;
}

    .modern:hover {
        background: #9fcb01;
    }


.transparent {
    background: rgba(255,255,255,0.9);
}


div#WaitIndicator {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(89,89,89,0.6);
}

    div#WaitIndicator .textBlock {
        position: relative;
        top: 50%;
        left: 50%;
        line-height: 50px;
        font-size: 25px;
        transform: translateY(-50%) translateX(-50%);
        padding: 15px;
        background-color: #fff;
        width: 250px;
        text-align: center;
        box-shadow: 10px 10px 18px -5px rgba(0,0,0,0.75);
    }

div#copyright {
    margin: 0 auto;
    text-align: center;
    font-size: 70%;
}

div#poweredBy {
    font-size: 70%;
}

    div#poweredBy img {
        width: 80px;
        vertical-align: middle;
    }

div#AppList > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    div#AppList > ul > li {
        list-style-type: none;
        display: inline-block;
        padding: 9px;
    }

div#AppList img {
    max-width: 38px;
}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 320px) {
    .loginBox {
        width: 80%;
        padding: 0.5em;
        line-height: 1.25em;
    }

    .loginBoxPaddingTop {
        padding-top: 5px;
    }

    .logoimg {
        width: 150px;
    }
}

/* Windows surface snap mode */
@media only screen and (max-width: 400px) {
    @-ms-viewport {
        width: device-width;
    }
}
