﻿/** 
This handles the basic layout of all the screens.  Styles specific to a
certain page or control will not be included here.
**/

html
{
    /* Force vertical scroll */
    min-height: 100%;
    margin-bottom: 1px;
    padding-bottom: 1px;
}

* {
    box-sizing: border-box;
}

body
{
    /*background-color: #999*/;
}

div#layoutContainer
{
    position: relative;
    width: 950px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    border: 1px #000 solid;
}
div#layoutHeader {
    float: left;
    width: 950px;
    color: #fff;
    background-color: #000;
    text-align: center;
}
div#layoutContent {
    float: left;
    width: 745px;
    background-color: #fff;
    color: #000;
    min-height: 500px;
}
div#layoutContentWrapper
{
    float: left;
}
div#layoutNavigation {
    clear: both;
    float: left;
    width: 205px;
    color: #0D6C81;
    background-color: #fff;
    border-bottom: solid 2px #C1C1C1;    
    border-right: solid 2px #C1C1C1;    
    border-left: solid 2px #C1C1C1;    
}
div#layoutExtra
{
    background-color: #fff;
    clear: both;
}

div#layoutFooter
{
    clear: both;
    float: left;
    width: 950px;
    text-align: right;
    color: #fff;
    background-color: #000;
}

div.layoutPaddingDiv
{
    padding: 8px;
    position: relative;
    width: 100%;
}

.watermarkCss
{
    color:Gray;
}

#ctl00_ctl00_ContentPlaceHolderContent_ContentPlaceHolderContent_LinkButtonCidHelp, #ctl00_ctl00_ContentPlaceHolderContent_ContentPlaceHolderContent_LinkButtonCidHelp a, #ctl00_ctl00_ContentPlaceHolderContent_ContentPlaceHolderContent_LinkButtonCidHelp a:visited
{
    font-size:10px;
    position:relative;
    top:-5px;
    text-decoration:none; 
}