﻿/*****************************************************************/
/********************** Office CSS library ***********************/
/********************** Version: 1.0.2.0 *************************/
/*****************************************************************/

/******************************************************************
Base
******************************************************************/
body {
    margin: 0;
    padding: 0;
    border: 0;
    height: 100%;
    max-height: 100%;
}

/******************************************************************
Typography
******************************************************************/
body {
    font-family: "Segoe WP", "Segoe UI", "Arial", sans-serif;
    font-size: 12px;
    color: #262626;
}

h1 {
    font-family: "Segoe WP Light", "Segoe UI", "Arial", sans-serif;
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
}

h2, h3, h4, h5, h6, th {
    font-family: "Segoe WP Semibold", "Segoe UI", "Arial", sans-serif;
}

h2 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}

h3, h4, h5, h6 {
    font-size: 13px;
    line-height: 16px;
}

h3 {
    font-weight: 600;
}

h4, h5, h6 {
    font-weight: normal;
}

form, input, select, button, textarea {
    font-family: "Segoe WP", "Segoe UI", "Arial", sans-serif;
    font-size: 12px;
    line-height: 16px;
}

/******************************************************************
General
******************************************************************/
a {
    /*color: #336699;*/
    color:white;
    text-decoration: none;
}

    a:focus, a:hover, a:active {
        text-decoration: underline;
    }

ul {
    margin-left: 1.4em;
    padding: 0;
}

hr {
    border: none;
    height: 1px;
    color: #ebebeb;
    background-color: #ebebeb;
    clear: both;
}

img {
    border: none;
}

blockquote {
    margin-left: 1.4em;
}

/******************************************************************
Forms
******************************************************************/
form {
    clear: both;
}

label {
    margin-right: 3px;
}

input, textarea, select, button {
    margin: 0 0 5px 0;
    padding: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    input[type="checkbox"], input[type="radio"] {
        margin-right: 4px;
    }

    input[type="checkbox"], input[type="radio"],
    input[type="file"], input[type="image"] {
        padding: 0;
    }

    button, textarea, select,
    input:not([type]),
    input[type="button"],
    input[type="color"],
    input[type="date"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="email"],
    input[type="month"],
    input[type="number"],
    input[type="password"],
    input[type="reset"],
    input[type="search"],
    input[type="submit"],
    input[type="tel"],
    input[type="text"],
    input[type="time"],
    input[type="url"],
    input[type="week"] {
        border: 1px solid #cccccc;
        background-color: white;
    }

    button, input[type="button"],
    input[type="submit"], input[type="reset"] {
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
    }

        button:hover:enabled,
        input[type="button"]:hover:enabled,
        input[type="submit"]:hover:enabled,
        input[type="reset"]:hover:enabled {
            border-color: #7eB4ea;
            background-color: #e5f1fc;
        }

        button:active:enabled,
        input[type="button"]:active:enabled,
        input[type="submit"]:active:enabled,
        input[type="reset"]:active:enabled {
            border-color: #569de5;
            background-color: #cee5fc;
        }

/******************************************************************
Scrollbars
******************************************************************/
body {
    scrollbar-base-color: white;
    scrollbar-arrow-color: #ababab;
    scrollbar-highlight-color: #ababab;
    scrollbar-darkshadow-color: white;
    scrollbar-track-color: white;
    scrollbar-face-color: white;
}


/*=====================================================================*/
/*=====================================================================*/
/*=====================================================================*/
/*=====================================================================*/

/* Common app styling */

#content-header {
    /*background: #2a8dd4;*/
    background: SeaGreen;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px; /* Fixed header height */
    overflow: hidden; /* Disable scrollbars for header */
}

#content-main {
    background: #fff;
    position: fixed;
    top: 45px; /* Same value as #content-header's height */
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto; /* Enable scrollbars within main content section */
}

.padding {
    padding: 15px;
}

#notification-message {
    background-color: #818285;
    color: #fff;
    position: absolute;
    width: 100%;
    min-height: 80px;
    right: 0;
    z-index: 100;
    bottom: 0;
    display: none; /* Hidden until invoked */
}

    #notification-message #notification-message-header {
        font-size: medium;
        margin-bottom: 10px;
    }

    #notification-message #notification-message-close {
        /*background-image: url("../Images/Close.png");*/
        background-repeat: no-repeat;
        width: 24px;
        height: 24px;
        position: absolute;
        right: 5px;
        top: 5px;
        cursor: pointer;
    }

#nav {
    width: 100%;
}

.navItem {
    width: 50%;
    text-align: center;
    float: left;
    font-size: 16px;
    padding-top: 3px;
    padding-bottom: 3px;
    cursor: pointer;
    background-color: #217346;
    color: #fff;
}

    .navItem.selected {
        background-color: #fff;
        color: inherit;
        cursor: default;
    }

#content {
    width: 100%;
}

.content {
    display: none;
    padding: 10px;
}

    .content.selected {
        display: block;
    }

h3 {
    margin-bottom: 2px;
    margin-top: 5px;
}

.buttonRow {
    text-align: center;
    margin-top: 10px;
}

#message {
    display: none;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding: 5px;
    font-size: 16px;
    background-color: #CCCCCC;
}


/*=====================================================================*/
/*=====================================================================*/
/*=====================================================================*/
/*=====================================================================*/


