﻿/* Main */
body 
{
   width: 100%;
   padding: 0;
   margin: 0;
}
form
{
    padding: 0;
}
.mainDiv
{
    width: 100%;
    margin: 0 auto;
}

/* Standard */
.clear
{
    clear: both;
}
.floatLeft
{
    float: left;
}
.floatRight
{
    float: right;
}
.marginTop
{
    margin-top: 15px;
}
.marginLeft
{
    margin-left: 10px;
}
.marginRight
{
    margin-right: 10px;
}
.marginBottom
{
    margin-bottom: 15px;
    padding-bottom: 10px;
}
.bold
{
    font-weight: bold;
}
.textRight
{
    text-align: right;
}
.textSmall, .fontSmall{
    font-size: 80%;
}

/* Sections */
.bodyHeader
{
    /*background-color: #ccc;*/
    height: 180px;
    position: relative;
    box-sizing: border-box;
}
.bodyHeader.day
{
    background-image: url('/App_Themes/Default/Images/header-day.jpg');
    background-position: 0px -150px;
}
.bodyHeader.evening
{
    background-image: url('/App_Themes/Default/Images/header-evening.jpg');
    background-position: 0px -300px;
}
.bodyHeader.night
{
    background-image: url('/App_Themes/Default/Images/header-night.jpg');
    background-position: 0px -150px;
}
.bodyHeader .headerLogo
{
    padding: 15px 0 15px 30px;
    float: left;
}
.bodyHeader .headerLogo img
{
    max-height: 100px;
}
.bodyHeader .headerLogin
{
    float: right;
    padding: 15px 15px 0 0;
}
.bodyHeader .mainMenu
{
    background-color: rgb(48,49,54);
    height: 40px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    color: #FFFAFF;
}
.mainMenu ul
{
    list-style: none;
    margin: 0;
}
.mainMenu li, mainMenu a
{
    padding: 10px 10px;
}
.mainMenu ul li
{
    display: inline-block;
    height: 40px;
    font-size: 120%;
    font-weight: normal;
}
.mainMenu ul li a
{
    color: #FFFAFF;
    text-decoration: none;  
    padding: 0px;  
}
.mainMenu ul li a i
{
    /*font-size: 150%;*/
}

/* Second Level */
.mainMenu ul ul
{
    position: absolute;
    display: none;
    z-index: 1000;
    background-color: rgba(12,126,160,0.9);
    border: rgba(12,126,160,0.9) 0px;
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 0px 0px 10px 10px;
}
.mainMenu ul ul li
{
    display: list-item;
    font-size: inherit;    
    /*color: rgb(5,4,1);*/
}
.mainMenu ul ul a
{
    /*color: rgb(5,4,1);*/
}
.mainMenu ul li:hover ul
{
    display: block;
}
/* END Header */


/* Begin Content */
.bodyContent
{
    /*border-left: #ccc 2px solid;*/
    /*border-right: #ccc 2px solid;*/
    padding: 50px 15px;
    overflow: auto;
}
.bodyContent ol
{
}
.bodyContent ol li
{
    margin-bottom: 20px;
}

.bodyContent .counter
{
    font-size: 200%;
}

/* END Content */

/* Begin Time Card */
.punchCard
{
    border: #000 1px solid; margin: 0 auto; width: 350px; padding: 20px; text-align: center;
}
/* END Time Card */

/* BEGIN Modal 
.modal
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(150,150,150,0.8)
}
.modalBox
{
    margin: 0 auto;
    width: 300px;
    height: 250px;
    background-color: rgba(255,255,255,1);
}
 END Modal */

/* Update Status */
.updateStatus {
    /*background-color: rgba(150,150,150,0.8);*/
    border: 2px solid rgb(150,150,150);
    background-color: rgba(255,255,255,1);
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -100px;
    width: 350px;
    height: 160px;
    border-radius: 10px;
    text-align: center;
    z-index: 100000;
}
.updateStatusContent
{
    /*margin-top: 60px;*/
}
.updateStatusContent img
{
    height: 150px;

}
/* End Update Status */

/* Chart Data */
.filter-wrap
{
    padding: 3px 5px;
    border-bottom: #e98722 1px solid;
    margin-bottom: 10px;
    overflow: auto;
}

.card-text
{
    
}
/* END Chart Data */


/* FieldSet */
fieldset
{
    margin-top: 15px;
    margin-bottom: 15px;
}
fieldset legend
{
    margin-bottom: 0px;
}
/* End FieldSet */

/* Forms */
.formObject
{
    box-sizing: border-box;
    /*border: 1px solid orange;*/
}
.formObject .header
{
    /*background-color: Orange;*/
    padding: 3px 7px;
    font-weight: bold;
}
.formObject .content
{
    padding: 15px;
}
.formObject .content .formItem
{
    margin-left: 10px;
    margin-bottom: 10px;
}
.formObject .content .formItem.first
{
    margin-left: 0px;
}
.formObject .content label
{
    font-size: small;
    font-weight: bold;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.formObject .content input
{
    font-size: large;
}
.formObject .content select
{
    font-size: large;
    padding: 4px;
}
/* END Forms */

/* Tool Tip */
.tooltips + .tooltip > .tooltip-inner {
    background-color: #73AD21; 
    color: #FFFFFF; 
    border: 1px solid green; 
    padding: 15px;
    font-size: 20px;
}
/* Tooltip on top */
.tooltips + .tooltip.top > .tooltip-arrow {
    border-top: 5px solid green;
}
/* Tooltip on bottom */
.tooltips + .tooltip.bottom > .tooltip-arrow {
    border-bottom: 5px solid blue;
}
/* Tooltip on left */
.tooltips + .tooltip.left > .tooltip-arrow {
    border-left: 5px solid red;
}
/* Tooltip on right */
.tooltips + .tooltip.right > .tooltip-arrow {
    border-right: 5px solid black;
}

/* End Tool tip */

/* Table */
.gridTable
{
    width: 100%;
    border-spacing: 0;
}
.gridTable tr
{
}
.gridTable tr td
{
    padding: 3px 5px;
}
.gridTable tr.header, .gridTable tr.header td
{
    font-weight: bold;
    border-bottom: #666 1px solid;
}
.gridTable tr.content, .gridTable tr.content td
{
    border-bottom: #666 1px dashed;
}
.gridTable tr.content:hover, .gridTable tr.content:hover td
{
    background-color: #e98722;
}
.gridTable tr.content.highlight, .gridTable td.content.highlight td
{
    background-color: #5ccbfa;
}
.gridTable tr.footer, .gridTable tr.footer td
{
    background-color: rgb(120,120,120);
    font-weight: bold;
}

/* END Table */


/* Begin Footer */
.bodyFooter
{
    border-top: rgb(12,126,160) 20px solid;
    background-color: rgb(48,49,54);
    min-height: 100px;
    color: rgb(255,250,255);
    padding: 20px;
}
.bodyFooter.day
{
    background-image: url('/App_Themes/Default/Images/header-day.jpg');
    background-position: 0px 150px;
}
.bodyFooter.evening
{
    background-image: url('/App_Themes/Default/Images/header-evening.jpg');
    background-position: 0px 150px;
}
.bodyFooter.night
{
    background-image: url('/App_Themes/Default/Images/header-night.jpg');
    background-position: 0px 150px;
}

.absFooter
{
    text-align: right;
    padding: 5px;
}

@media Print
{
    .noPrint
    {
        display: none;
        visibility: hidden;
    } 

    .bodyHeader
    {
        height: 50px;
    }
    .bodyHeader .mainMenu
    {
        display: none;
        visibility: hidden;
    }
    .bodyHeader .headerLogo 
    {
        padding: 0;   
    }
    .bodyHeader .headerLogo img
    {
        max-height: 50px;
    }
    .bodyContent
    {
        /*border-left: #ccc 2px solid;*/
        /*border-right: #ccc 2px solid;*/
        padding: 0;
        clear: both;
    }
    .bodyContent .form-control
    {
        border: none;
        border-bottom: rgb(0,0,0) 1px solid;
    }
}