﻿

body 
{
    background-color: #e1e5f0;
    color: #000000;
    font-family: Arial;
    font-size: 10pt;
    text-align: justify;
}

/******
* Links
******/
/* All links. */
a
{
    color: #cc9933;
    font-weight: bold;
}

/* The link pseudo-classes must be specified in this order. */
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: underline; }
a:active { text-decoration: none; }

/*************
* Text Classes
*************/
/* Text Colors */
.text-black
{
    color: #000000;
}

.text-dark-grey
{
    color: #565656;
} 

.text-white
{
    color: #ffffff;
}

/* Text Sizes */
.text-very-small
{
    font-size: 7.5pt;
}

.text-small
{
    font-size: 9pt;
}

.text-normal
{
    font-size: 10pt;
}

.text-large
{
    font-size: 11pt;
}

.text-very-large
{
    font-size: 12pt;
}

.text-largest
{
    font-size: 15pt;
}

/* Text Decorations */
.text-bold
{
    font-weight: bold;
}

.text-normal
{
    font-weight: normal;
}

/*********
    Colors
**********/
.table-color
{
    color: #ffffff;
}

.main-background-color
{
    color: #e1e5f0;
}

.blue1
{
    color: #9baecf;
}

.blue2
{
    color: #5474ad;
}

.blue3
{
    color: #3d5577;
}

.light-tan
{
    color: #e7e7d6;
}

.light-grey
{
    color: #eeeeee;
}

.medium-grey
{
    color: #8e8c8d;
}

.dark-grey
{
    color: #3d3d3d;
}

.accent-color
{
    color: #cc9933;
}

/*********************************************************************************
* Styles to be used with validation controls.                                    *
* These must be placed below the text classes so they override the text classes. *
*********************************************************************************/
.validator-text
{
    color: #ff0000;
    margin-left: 1em;
    
}

.validator-indicator
{            
    color: #ff0000;      
    font-size: 12pt;
    margin-left: .5em;
}

.validator-box
{
    background-color: #e1e5f0;
    border: solid 1px #8e8c8d;
    margin-bottom: 1em;
    padding: .5em .5em .5em .5em;
}

/*******************************************************************
* Styles used specifically with the InternetApplication.Master page. 
*
* Note: These styles need to be located in a stylesheet in order for the relative
*       image paths to be resolved by client browsers.
*******************************************************************/

/* Entire header area. */
#intranet-header
{
    background-image: url("../images/banner-repeater.png");
    background-repeat: repeat-x;
    border-left: 1px solid #8e8c8d;
    border-right: 1px solid #8e8c8d;
    border-top: 1px solid #8e8c8d;
    margin-left: auto;
    margin-right: auto;
    width: 960px;
}

#intranet-header a
{
    display: block;
    height: 52px;
}

/* Image containing the text for the application name. */
#intranet-header-application-name
{
    border-width: 0;
    float: left;
}

/* Image containing the Dutchess County, NY text. */
#intranet-header-county-name
{
    border-width: 0;
    float: right;
}

/* Entire content body. */
#intranet-body
{
    background: #ffffff;
    border-left: solid 1px #8e8c8d;
    border-right: solid 1px #8e8c8d;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    padding: 10px 10px 10px 10px;
    width: 940px;
}

/* Entire footer. */
#intranet-footer
{
    background-image: url("../images/footer-repeater.jpg");
    background-repeat: repeat-x;
    border-bottom: solid 1px #8e8c8d;
    border-left: solid 1px #8e8c8d;
    border-right: solid 1px #8e8c8d;
    height: 25px;
    line-height: 25px; /* Necessary to vertically align text. */
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    width: 940px;
}

/* Text for copyright information in footer. */
#intranet-footer-copyright
{
    display: block;
    float: left;
    text-align: left;
    width: 33.5%;
}

/* Link for terms and conditions of use. */
#intranet-footer a
{
    display: block;
    float: left;
    text-align: center;
    width: 33%;
}

/* Text for application name in footer. */
#intranet-footer-application-name
{
    display: block;
    float: right;
    text-align: right;
    width: 33.5%;
}