﻿html {
    background-color: #1797c0;
    margin: 0;
    padding: 0;
}
body {
    background: #1797c0 url('/Images/MastheadBg.png') repeat-x;
    color: #222;
    font-size: 10pt;
    font-family: arial, verdana, helvetica;
    margin: 0;
    padding: 0;
}
a {
    color: #333;
    outline: none;
    padding-left: 3px;
    padding-right: 3px;
    text-decoration: underline;
}
    a:link, a:visited,
    a:active, a:hover {
        color: #333;
    }
    a:hover {
        background-color: #c7d1d6;
    }
header, footer, hgroup,
nav, section {
    display: block;
}
mark {
    background-color: #a6dbed;
    padding-left: 5px;
    padding-right: 5px;
}
.float-left {
    float: left;
}
.float-right {
    float: right;
}
.float-left-header {
    float: left;
    margin-left: 10px;
}
.float-right-header {
    float: right;
    margin-right: 10px;
}
.clear-fix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}
h1, h2, h3,
h4, h5, h6 {
    color: #000;
    margin-bottom: 0;
    padding-bottom: 0;
}
h1 {
    font-size: 2em;
}
h2 {
    font-size: 1.75em;
}
h3 {
    font-size: 1.2em;
}
h4 {
    font-size: 1.1em;
}
h5, h6 {
    font-size: 1em;
}
    h5 a:link, h5 a:visited, h5 a:active {
        padding: 0;
        text-decoration: none;
    }

/* main layout
----------------------------------------------------------*/
.content-wrapper {
    margin: 0 auto;
    width: 100%;
}
#nav {
    clear: both;
    margin-left: 10px;
    margin-right: 10px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background: -moz-linear-gradient(#E5F2F6,#CDE8F0);
    background: -webkit-linear-gradient(#E5F2F6,#CDE8F0);
    background: linear-gradient(#E5F2F6,#CDE8F0);
    -moz-box-shadow: 0 3px 10px hsla(100, 0%, 0%, .3);
    -webkit-box-shadow: 0 3px 10px hsla(100, 0%, 0%, .3);
    box-shadow: 0px 3px 10px hsla(0, 0%, 0%, 0.3);
    position: relative;
    height: 25px;
}
#body {
    background-color: #fff;
    clear: both;
    margin-left: 10px;
    margin-right: 10px;
    border-top: 3px solid #1797c0;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    -moz-box-shadow: 0 8px 10px hsla(0, 0%, 0%, .25);
    -webkit-box-shadow: 0 8px 10px hsla(0, 0%, 0%, .25);
    box-shadow: 0px 8px 10px hsla(0, 0%, 0%, 0.25);
    position: relative;
    height: 100%
}
    .main-content {
        padding-left: 10px;
        padding-top: 30px;
        min-height: 400px;
    }
header .content-wrapper {
    padding: 20px 0px 10px 0px;
    margin-bottom: 30px;
}    
footer {
    text-align: center;
    color: #fff;
    font-weight: bold;
    background-color: transparent;
    font-size: 1.0em;
    height: 40px;
    padding-top: 15px;
}

/* site title
----------------------------------------------------------*/
.site-title {
    color: #3B6E8F;
    font-family: arial, verdana, helvetica;
    font-size: 2.0em;
    margin: 0;
}
.site-title a, .site-title a:hover, .site-title a:active {
    background: none;
    color: #c8c8c8;
    outline: none;
    text-decoration: none;
}

/* menu
----------------------------------------------------------*/
ul#menu {
    font-size: 1.1em;
    font-weight: bold;
    margin: 0px 0px 0px 10px;
    padding: 5px 0px 5px 0px;
    text-align: left;
    height: 25px;
}
    ul#menu li {
        display: inline;
        list-style: none;
        padding: 0px 15px 0px 15px;
        height: 25px;
        vertical-align: middle;
    }
    ul#menu li:hover {
        color: #1468b6;
        cursor: pointer;
    }
    .Active {
        -moz-border-radius-topleft: 5px;
        -moz-border-radius-topright: 5px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        background-color: #1797c0;
        color: #ffffff;
        padding: 5px 15px !important;
    }
    .Active:hover {
        color: #fff !important;
    }
        ul#menu li a {
            background: none;
            color: #999;
            text-decoration: none;
        }
        ul#menu li a:hover {
            color: #333;
            text-decoration: none;
        }

/* page elements
----------------------------------------------------------*/
/* featured */
.featured {
    background-color: #fff;
}
    .featured .content-wrapper {
        background-color: #7ac0da;
        background-image: -ms-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
        background-image: -o-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
        background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #7ac0da), color-stop(1, #a4d4e6));
        background-image: -webkit-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
        background-image: linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
        color: #3e5667;
        padding: 20px 40px 30px 40px;
    }
        .featured hgroup.title h1, .featured hgroup.title h2 {
            color: #fff;
        }
        .featured p {
            font-size: 1.1em;
        }
/* page titles */
hgroup.title {
    margin-bottom: 10px;
}
hgroup.title h1, hgroup.title h2 {
    display: inline;
}
hgroup.title h2 {
    font-weight: normal;
    margin-left: 3px;
}
/* features */
section.feature {
    width: 300px;
    float: left;
    padding: 10px;
}
/* content */
article {
    float: left;
    width: 70%;
}
aside {
    float: right;
    width: 25%;
}
    aside ul {
        list-style: none;
        padding: 0;
    }
        aside ul li {
            background: url("../Images/bullet.png") no-repeat 0 50%;
            padding: 2px 0 2px 20px;
        }
.label {
    font-weight: 700;
}
.AreaContainer {
    clear: both;
    float: left;
width: 100%
}
.AreaTitle {
    clear: left;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    font-size: 14pt;
    font-weight: bold;
    position: relative;
    padding: 0px 0px 10px 10px;
    text-decoration: none;
    color: #1797c0;
}
.ThreeColumn {
    clear: both;
    display: inline-block;
    vertical-align: top;
    max-width: 800px;
    min-width: 300px;
    position: relative;
}
.Table {
    display: table;
    max-width: 800px;
    min-width: 300px;
    border: none;
    border-spacing: 1px;
    font-size: 9pt;
    clear: left;
}
.TableSub {
    display: table;
    max-width: 800px;
    min-width: 300px;
    border: none;
    border-spacing: 1px;
    font-size: 9pt;
    clear: left;
    margin-left: 20px;
}
.Row {
    display: table-row;
    clear: both;
}
.CellPlain {
    float: left;
    display: table-column;
    vertical-align: top;     
}
.CellLabel {
    float: left;
    display: table-column;         
    max-width: 300px;
    min-width: 150px;
    padding: 3px 7px;
    font-weight: bold;
}
.CellData {
    float: left;
    display: table-column;         
    max-width: 500px;
    min-width: 150px;        
    padding: 3px 7px;
    font-weight: normal;
}
.MultiContainer {
    clear: both;
    display: inline-block;
    vertical-align: top;
    /*max-width: 800px;*/
    width: 300px;
    position: relative;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: #f8f8f8;
    border:  #1797c0 1px solid;   
    min-height: 40px;
    padding: 10px 10px 10px 10px;
    margin-left: 10px;
    margin-bottom: 5px;
    font-size: 9pt;
    font-weight: normal;
}
.MultiContainer:hover {
    background-color: #DDEFF4;
}
.MultiContainerMain {
    
}
.MultiContainerMainToggle {
    float: left;
    display: table-column;
    vertical-align: top;
    width: 20px;
}
.MultiContainerMainContent {
    float: left;
    display: table-column;
    vertical-align: top;
    min-width: 275px;
}
.MultiContainerTitle {
    font-size: 10pt;
    font-weight: bold;
}
.MultiContainerLabel {
    font-weight: bold;
}
.MultiContainerSub {
    float: left;
    display: table-column;
    vertical-align: top;
    column-span: all; /* W3C */
    -webkit-column-span: all; /* Safari & Chrome */
    -moz-column-span: all; /* Firefox */
    -ms-column-span: all; /* Internet Explorer */
    -o-column-span: all; /* Opera */
    min-width: 275px;
    margin-left: 20px;
    padding-top: 8px;
    clear: left;
}
.MultiContainerSubToggle {
    float: left;
    display: table-column;
    vertical-align: top;
    width: 10px;
}
.MultiContainerSubContentHeader {
    float: left;
    display: table-column;
    vertical-align: top;
    min-width: 275px;
    font-weight: bold;
}
.MultiContainerSubTitle {
    font-size: 9pt;
    font-weight: bold;
    color: #1797c0;
}
.MultiContainerSubContentDetails {
    float: left;
    display: table-column;
    vertical-align: top;
    column-span: all; /* W3C */
    -webkit-column-span: all; /* Safari & Chrome */
    -moz-column-span: all; /* Firefox */
    -ms-column-span: all; /* Internet Explorer */
    -o-column-span: all; /* Opera */
    min-width: 275px;
    margin-left: 12px;
}
.SubLabel {
    font-weight: bold;
}
.Export {
    display: inline-block;
    float: left;
    margin-left: 10px;
    font-weight: bold;
    font-size: 8pt;
    clear: left;
    position: relative;
}
/* login page */
#loginForm {
    border-right: solid 2px #c8c8c8;
    float: left;
    width: 55%;
}
    #loginForm .validation-error {
        display: block;
        margin-left: 15px;
    }
#socialLoginForm {
    margin-left: 40px;
    float: left;
    width: 40%;
}
    #socialLoginForm h2 {
        margin-bottom:  5px;
    }
fieldset.open-auth-providers {
    margin-top: 15px;
}
    fieldset.open-auth-providers button {
        margin-bottom: 12px;
    }
    
/* contact */
.contact h3 {
    font-size: 1.2em;
}
.contact p {
    margin: 5px 0 0 10px;
}
.contact iframe {
    border: 1px solid #333;
    margin: 5px 0 0 10px;
}
/* forms */
fieldset {
    border: none;
    margin: 0;
    padding: 0;
}
    fieldset legend {
        display: none;
    }   
    label {
        display: block;
        font-size: 1.2em;
        font-weight: 600;
    }
    label.checkbox {
        display: inline;
    }
    input, textarea {
        border: 1px solid #e2e2e2;
        background: #fff;
        color: #333;
        font-size: 1.2em;
        margin: 5px 0 6px 0;
        padding: 5px;
        width: 300px;
    }
    textarea {
        font-family: inherit;
        width: 500px;
    }
        input:focus, textarea:focus {
            border: 1px solid #7ac0da;
        }

        input[type="checkbox"] {
            background: transparent;
            border: inherit;
            width: auto;
        }   
    input[type="submit"],
    input[type="button"],
    button {
        background-color: #d3dce0;
        border: 1px solid #787878;
        cursor: pointer;
        font-size: 1.2em;
        font-weight: 600;
        padding: 7px;
        margin-right: 8px;
        width: auto;
    }
    td input[type="submit"],
    td input[type="button"],
    td button {
        font-size: 1em;
        padding: 4px;
        margin-right: 4px;
    }
/* info and errors */
.message-info {
    border: 1px solid;
    clear: both;
    padding: 10px 20px;
}
.message-error {
    clear: both;
    color: #e80c4d;
    font-size: 1.1em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}
.message-success {
    color: #7ac0da;
    font-size: 1.3em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}
.error {
    color: #e80c4d;
}
/* styles for validation helpers */
.field-validation-error {
    color: #e80c4d;
    font-weight: bold;
}
.field-validation-valid {
    display: none;
}
input.input-validation-error {
    border: 1px solid #e80c4d;
}
input[type="checkbox"].input-validation-error {
    border: 0 none;
}
.validation-summary-errors {
    color: #e80c4d;
    font-weight: bold;
    font-size: 1.1em;
}
.validation-summary-valid {
    display: none;
}
/* tables
----------------------------------------------------------*/
table {
    border-collapse: collapse;
    border-spacing: 0;
    margin-top: 0.75em;
    border: 0 none;
}
th {
	font-size: 1.2em;
    text-align: left;
    border: none 0px;
    padding-left: 0;
}
    th a {
        display: block;
        position: relative;       
    }
	th a:link, th a:visited, th a:active, th a:hover {
		color: #333;
		font-weight: 600;
		text-decoration: none;
        padding: 0;
	}
	th a:hover {
		color: #000;
	}
    th.asc a, th.desc a {
        margin-right: .75em;
    }
    th.asc a:after, th.desc a:after {
		display: block;
        position: absolute;
        right: 0em;
        top: 0;
        font-size: 0.75em;
	}
	th.asc a:after {
		content: '▲';
	}
	th.desc a:after {
		content: '▼';
	}
td {
    padding: 0.25em 2em 0.25em 0em;
    border: 0 none;
}
tr.pager td {
    padding: 0 0.25em 0 0;
}

/********************
*   Mobile Styles   *
********************/
@media only screen and (max-width: 850px) {
    /* header
    ----------------------------------------------------------*/
    header .float-left,
    header .float-right {
        float: none;
    }
    /* logo */
    header .site-title {
        margin: 10px;
        text-align: center;
    }
    /* menu */
    nav {
        height: 25px;
    }
    ul#menu {
        margin: 0;
        padding: 0;
        text-align: center;
    }
        ul#menu li {
            margin: 0;
            padding: 0;
        }
    /* main layout
    ----------------------------------------------------------*/
    .main-content {
        background-position: 10px 0;
    }
    .content-wrapper {
        padding-right: 10px;
        padding-left: 10px;
    }
    /* page content */
    article, aside {
        float: none;
        width: 100%;
    }
     /* features */
     section.feature {
        float: none;
        padding: 10px;
        width: auto;
     }
        section.feature img {
            color: #999;
            content: attr(alt);
            font-size: 1.5em;
            font-weight: 600;
        }
    /* forms */
    input {
        width: 90%;
    }
    /* footer
    ----------------------------------------------------------*/
    footer .float-left,
    footer .float-right {
        float: none;
    }
    footer {
        text-align: center;
        height: auto;
        padding: 10px 0;
        width: 100%;
    }
        footer p {
            margin: 0;
        }
}

/* END: Mobile Styles */
div.infoBar
{
    background-color: #465c71;
    width: 99%;
    color: #ffffff;
    white-space: nowrap;
    float: left;
}
div.loanInfo
{
    background-color: #465c71;
    width: 20%;
    text-align: left;
    white-space: nowrap;
    position: relative;
    float: left;
    margin-left: 5px;
    padding: 5px 0px 5px 0px;
}
div.docClassInfo
{
    background-color:#465c71;
    width:40%;
    text-align:left;
    white-space: nowrap;
    position:relative;
    float:left;
    margin-left: 5px;
    padding: 5px 0px 5px 0px;
}
div.docTypeInfo
{
    background-color:#465c71;
    width:35%;
    text-align:left;
    white-space: nowrap;
    position:relative;
    float:left;
    margin-left: 5px;
    padding: 5px 0px 5px 0px;
}
div.progress
{
    background-color:#ffffff;
    width: 100%;
    white-space: nowrap;
    float: left;
    padding: 5px 0px 5px 0px;
}
div.main
{
    background-color: #ffffff;
    width: 100%;
    float: left;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    min-height: 420px;
}
div.dStatus
{
    background-color:#ffffff;
    width: 100%;
    white-space: nowrap;
    float: left;
    padding: 1px 5px 1px 5px;
    max-height: 25px;
}
div.dFilter
{
    background-color: #ffffff;
    width: 23%;    
    text-align: left;
    white-space: nowrap;
    position: relative;
   float: left;
    margin-left: 5px;
    padding: 6px 0px;
    min-height: 100px;
    max-height: 600px;
    overflow-y: auto;
}
div.dDocuments
{
    background-color: #ffffff;
    width: 76%;
    text-align: left;
    white-space: nowrap;
     position: relative;
   float: left;
    padding: 6px 0px;
    margin-left: 5px;
    min-height: 100px;
    /*max-height: 600px;*/
    overflow-y: auto;
}

.fieldLabel
{
    font-weight: 600;
}
.gridHeader
{
    background: #3a4f63;
    color: #ffffff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
}

.gridHeader:link,
.gridHeader:active,
.gridHeader:visited,
.gridHeader A:link,
.gridHeader A:active,
.gridHeader A:visited,
A.gridHeader:link,
A.gridHeader:active,
A.gridHeader:visited
{
    background: #3a4f63;
    color: #ffffff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}
.gridHeader A:hover,
A.gridHeader:hover
{
    background: #3a4f63;
    color: #ffffff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
}