﻿/* Notes
width = div width
fullwidth = div width + div padding width (make sure to count padding on left and right)
padding = div padding (usually the referring to the width portion)
*/

/* Main Containers */
body {
	text-align: center;	
	background-color: White;
}
#body-div {
    text-align: left;
    min-width: 900px;           /* 2 x #left fullwidth */
    width: 900px;
    margin: 0 auto;
}
@media screen, projection, tv {
    #container {
	    padding-left: 200px;      /* #left fullwidth */
	    height: 100%;
	    overflow: hidden;
	    position: relative;
	    z-index: 15 !important;
    }
    #container .column {
	    position: relative;
	    float: left;
	    height: 100%;
	    padding-bottom: 20010px;
	    margin-bottom: -20000px;
    }
    #center {
	    width: 100%;
	    padding: 10px 0px;        /* #center padding */
	    min-height: 400px;          /* min height for #center and #left - make same as IE min-height hack */
	    overflow: hidden;          /* stops the left column from jumping about upon resizing of window */
	    z-index: 24 !important;
	    background: #CCC;
    }
    #left {
	    width: 180px;             /* #left width */
	    padding: 0 10px;          /* #left padding */
	    right: 200px;             /* #left fullwidth + #center padding */
	    margin-left: -100%;
	    z-index: 22 !important; 
	    background: green url('/images/MG-bkgdLeftNav.png') repeat-y;
	    /* left nav image fades from #0067ac to #013557 */
    }
    #footer {
	    clear: both;
	    position: static;
	    height: 40px;
	    z-index: 10 !important;
	    font-size: x-small;
	    text-align: center;
	    background: white;
    }
    #header {
	    height: 180px;
	    font-size: large;
	    text-align: center;
	    padding: 0;
	    background-color: White;
	    background-image: url('/images/tempheader1.png');
	    background-repeat: no-repeat;
	    background-position: right bottom;
	    z-index: 10 !important;
    }
    #center-paddingfix {
        padding: 0 10px;
    }
    #PrintHeader {
        display: none;
    }
    #HeaderLogoWrapper {
        display: block;
    }
    /*** IE6 Fix ***/
    * html #left {
        left: 0px;        /* Right Column (non-existant) fullwidth */
    }
    #container > #left { 
        Left: -200px;       /* Negative of Left fullwidth + Center padding */
    }
    /*.IE6LeftNavLinks {
        color: #999;
        text-decoration: none;
    }
    .IE6LeftNavLinks:hover {
        text-decoration: underline;
    }*/
}
@media print {
    #container {
    }
    #container .column {
    }
    #center {
	    width: 100%;
	    padding: 10px 0px;        /* #center padding */
	    z-index: 24 !important;
    }
    #left {
        display: none;
    }
    #footer {
        display: none;
    }
    #header {
        display: none;
    }
    #center-paddingfix {
        padding: 0 10px;
    }
    #PrintHeader {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    #HeaderLogoWrapper {
        display: none;
    }
}
/* Misc Styles */
.visible { 
    visibility: visible;
    display: block;
}
.invisible { 
    display: none;
}
.SectionHeader { 
    background-color: #0067ac;
    font-family: Arial;
    font-size: large;
    font-style: normal;
    font-weight: 500;
    color: White;
    font-variant: small-caps;
    padding-left: 10px;
}
#LoginHeader {
    margin-top: 130px;
    border-bottom: dotted 12px #0067ac;
    font-weight: bold;
    font-size: xx-large;
    font-variant: small-caps;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}
.MasterPageImages {
    float:left;
}
#LoginHeader-text {
    
}
#FooterLeftNavJoin {
    float: left;
}
#StandardHeader {
    margin-top: 130px;
    border-bottom: dotted 12px #0067ac;
    font-weight: bold;
    font-size: xx-large;
    font-variant: small-caps;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}
#StandardHeader-text {
    
}
.thumbnails-right {
    float: right;
    border: solid 2px black;
}
@media screen, projection, tv {
    #divWelcomeBanner {
        text-align: right;
        font-size: small;
        font-weight: bold;
        font-variant: small-caps;
        padding: 5px;
    }
}
@media print {
    #divWelcomeBanner {
        display:none;
    }
}
.simpleHyperlink {
    color: #0067ac;
    text-decoration: none;
}
.simpleHyperlink:hover {
    text-decoration: underline;
}
.FeedbackContents {
    font-size: medium;
    font-variant: small-caps;
    border-top: dotted 12px #0067ac;
    padding: 10px;
}
.FeedbackHeader {
    font-size: x-large;
    font-variant: small-caps;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
}
.FeedbackThankYou {
    font-size: x-large;
    font-variant: small-caps;
    font-weight: bold;
    margin-top: 180px;
}

/* Styles used for the Modal Popups */
.modalWindowWrapper {
    background-color: Transparent;
    padding: 1em 6px;
    z-index: 1010 !important;
}
.modalWindow{
  background-color: Silver;
  vertical-align: top;
  z-index: 1012 !important;
}
.modalBackground{
	background-color: White;
	filter: alpha(opacity=70);  /* IE opacity */
	opacity: 0.7;  /* Safari, Opera opacity */
	-moz-opacity: 0.70; /* Firefox opacity */
	z-index: 1000 !important;
}
.divPopupTitle {
    padding: 15px 0;
    text-align: center;
    background-color: #0067ac;
    font-weight: bold;
    font-variant: small-caps;
    font-size: large;
    border-bottom: solid 2px black;
    border-top: solid 2px black;
}
.divWorkHistoryContent {
    height: 400px;
    overflow: auto;
    border-bottom: solid 1px black;
}
.divTimecardTermsOfUse {
    height: 270px;
    overflow: auto;
    border-bottom: solid 1px black;
    text-align: left;
    font-size: small;
    padding-left: 5px;
    padding-right: 5px;
}
.modalButtonFooter {
    padding: 10px 0;
}
.modalPopupFooter {
    text-align: center;
}
.padModalWindowContents {
    padding-top:5px;
    padding-left:10px;
    padding-right:10px;
}
.modalCloseButton {
    float: right;
    margin-right: 10px;
    margin-top: 7px;
}
@media screen, projection, tv {
    .helpButton {
        float: right;
        margin-right: 10px;
        margin-top: 7px;
    }
}
@media print {
    .helpButton {
        display: none;
    }
}
.AlwaysVisibleCloseButton {
    float: right;
    margin-right: 10px;
    margin-top: 12px;
}
.AlwaysVisibleTitle {
    background-color: #0067ac; 
    width: 100%;
    height: 22px;
    text-align:center;
    margin-top: 10px;
    margin-bottom: 0;
    padding-top: 2px;
    font-weight: bold;
    font-variant: small-caps;
}

/*** IE min height hack ***/
.prop {
    height: 400px;
    float: right;
    width: 1px;
}
.min400px {
    height: 400px;
}
.min200px {
    height: 200px;
}
.clear {
    clear: both;
    height: 1px;
    overflow: hidden;
}

/*** Left Navigation ***/
#left ul {
    list-style: none;
    margin: 2px;
    padding: 2px;
}
#left li {
    border-left: solid 2px #0067ac;     /* same as background color to prevent shifting on hover */
    border-bottom: dotted 3px #0067ac;  /* same as background color to prevent shifting on hover */
    padding: 4px 10px;
    font-weight: bold;
    font-variant: small-caps;
}
#left li:hover {
    border-left: solid 2px #ccc;
    border-bottom: dotted 3px #ccc;
}
#left li a {
    text-decoration: none;
    color: #ccc;
}

/*** Quotation in Header ***/
@media screen, projection, tv {
    #headerquotes {
        margin-right: 150px;
        margin-top: 30px;
    }
}
@media print {
    #headerquotes {
        display: none;
    }
}
blockquote {
    font: 0.6em/0.8em Georgia, "Times New Roman", Times, serif;
    padding-left: 18px;
    text-indent: -18px;
}
blockquote:first-letter {
    background: url('/images/MG-openquote.png') no-repeat left top;
    padding-left: 36px;
    padding-bottom: 20px;
    padding-top: 15px;
    font: italic 1.8em Georgia, "Times New Roman", Times, serif;
}

/*** Mission Statement in Header ***/
@media screen, projection, tv {
    #MissionStatement {
        margin-right: 200px;
        margin-top: 30px;
    }
}
@media print {
    #MissionStatement {
        display: none;
    }
}
#MissionStatementTitle {
    color: #0067ac;
    font-weight: bolder;
    font-size: xx-large;
    text-align: left;
}
#MissionStatementContents {
    font: 0.8em/1.0em Georgia, "Times New Roman", Times, serif;
}

/*** Time Entry Application ***/
#TimeEntryTitle {
    font-size: xx-large;
    color: white;
    font-variant: small-caps;
    font-weight: bold;
    background-color: #0067ac;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
}
#Verbiage-div {
    border-style: groove;
    border-width: 2px;
    border-color: white;
    font-size: small;
    text-align:justify;
    padding: 15px;
    margin-left: 50px;
    margin-right: 50px;
}
.EmployeeName {
    text-align: center;
    font-size: x-large;
    font-weight: bolder;
    font-variant: small-caps;
    margin-top: 20px;
    margin-bottom: 10px;
}
#tblHeaderWrapper {
    text-align: center;
}
.TimeEntryHeaderTable {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
#TimeEntryApprovalAccept {
    text-align: center;
    margin-top: 10px;
}
@media print {
    #panSaveButtonsWrapper {
        display: none;
        visibility: hidden;
    }
    #CalculateHoursWrapper {
        display: none;
    }
    #TimeEntryApprovalAccept {
        display: none;
    }
    #pnlButtons {
        display: none;
        visibility: hidden;
    }
    .PrintViewWrapper {
        display: none;
    }
}
#TimeCardEditButtons {
    margin-top: 5px;
    text-align: center;
    z-index: 9000;
}

/*** ASP Control Styles ***/
/* These styles must be refrenced from the theme's .skin file */
.aspButtonStyle {
    border-top: solid 1px black;
    border-bottom: solid 1px black;
    border-left: none;
    border-right: none;
    font-size: small;
    font-weight: bold;
    font-variant: small-caps;
    background-color: #0067ac;
}
.aspButtonStyle:hover {
    background-color: #0399fe;
}
.aspGridViewStyle {
    border: none;
}
.aspGridView-AlternatingRow {
    padding: 5px;
    background-color: #9dd6fc;
}
.aspGridView-HeaderStyle {
    border-bottom: solid 1px black;
    font-weight: bold;
    font-variant: small-caps;
    font-size: small;
}
.aspGridView-RowStyle {
    padding: 5px;
}
.aspGridView-SelectedRowStyle {
    
}
.aspGridView-RowStyle:hover {
    background-color: White;
}
.aspGridView-AlternatingRow:hover {
    background-color: White;
}
.aspGridView-LinkButton {
    text-decoration: none;
    font-weight: bold;
    color: #406181;
}
.aspGridView-LinkButton-Delete {
    text-decoration: none;
    font-weight: bold;
    color: ThreeDDarkShadow;
}
.aspGridView-LinkButton:hover {
    text-decoration: underline;
}
.aspGridView-LinkButton-Delete:hover {
    text-decoration: underline;
    color: Red;
}

.aspGridView-ItemStyle-Small {
    font-weight: normal;
    font-variant: normal;
    font-size: small;
}

.aspGridView-ItemStyle-Medium {
    font-weight: normal;
    font-variant: normal;
    font-size: medium;
}

.MaskedEditError{
    background-color:#FF0000; /*Red*/
    color:White
}

.MaskedEditFocus{
    background-color:#FFFF00; /*Yellow*/
    color:Black;
}
.TimeEntryStatus-Red {
    color: Red;
    font-weight: bold;
}
.TimeEntryStatus-Yellow {
    color: Yellow;
    font-weight: bold;
}
.TimeEntryStatus-Blue {
    color: Blue;
    font-weight: bold;
}
.TimeEntryStatus-Green {
    color: Green;
    font-weight: bold;
}
.TimeEntryStatus-Black {
    color: Black;
    font-weight: bold;
}
.radioBtnList {
    width:50%;
    text-align:left;
}
.gvTimeCard-Header {
    border-bottom: solid 1px black;
}
.psWeak {
    Color: Red;
    font-weight: bold;
    font-size: larger;
    z-index: 10000;
}
.psFair {
    Color: Yellow;
    font-weight: bold;
    font-size: larger;
    z-index: 10000;
}
.psGood {
    Color: Green;
    font-weight: bold;
    font-size: larger;
    z-index: 10000;
}
.jsCheckPass {
    Color: Green;
    font-weight: bold;
    font-size: small;
}
.jsCheckFail {
    Color: Red;
    font-weight: bold;
    font-size: small;
}
.RequiredField {
    color:Black;
    /*background-color:Yellow;*/
    background-color:#FFFF99; /*Pale Canary Yellow */
}
.NonRequiredField {
    color:Black;
    background-color:White;
}
.ReadOnlyDataShownInLabel {
    color:White;
    font-weight: bold;
}
