﻿/* 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;
}

/* Sections */
.bodyHeader
{
    background-color: #ccc;
    height: 200px;
    position: relative;
}
.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 .mainMenu
{
    background-color: rgba(102,102,102,0.8);
    height: 50px;
    position: relative;
    top: 150px;
}
.mainMenu ul
{
    list-style: none;
    margin: 0;
}
.mainMenu ul li
{
    display: inline-block;
    height: 40px;
    padding: 10px 0px;
}
.mainMenu ul li a
{
    color: #fff;
    text-decoration: none;  
    padding: 0 10px;  
}
.mainMenu ul li a i
{
    font-size: 150%;
}
/* END Header */


/* Begin Content */
.bodyContent
{
    /*border-left: #ccc 2px solid;*/
    /*border-right: #ccc 2px solid;*/
    padding: 50px 15px;
}
/* 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 */


/* 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
{
    background-color: #666;
    height: 150px;
}
.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: 0px;
    }
    .bodyContent
    {
        /*border-left: #ccc 2px solid;*/
        /*border-right: #ccc 2px solid;*/
        padding: 0;
    }
   
}