/* BACKGROUND */

/* "Loan Application" at the top of the page  */
.HeadBg {
    background-color: #E1AF00;
}

/* Page Header  */
.SubHeadBg {
    background-color: #E1AF00;
}

/* Page Body */
Body
{
    background-color: #E1AF00;
}



/* PAGE TEXT */

/* "Loan Application" Text */
.Head   {
    font-family: Tahoma, Arial, Helvetica;
    font-size:  20px;
    font-weight:    bold;
    color: purple;
}

/* Page Header Text */
.ItemTitle    {
    text-align: center;
    font-family: Tahoma, Arial, Helvetica;
    font-size:  14px;
    font-weight:    bold;
    color: black;
    text-indent: 4px;
}

/* Question Text */
.SubHead    {
    font-family: Tahoma, Arial, Helvetica;
    font-size:  12px;
    font-weight:    bold;
    color: purple;
    text-indent: 8px;
}

/* Text Boxes */
.NormalTextBox
{
    font-family: Tahoma, Arial, Helvetica;
    font-size: 12px;
    font-weight: normal;
    color: black;
	/* There is bug in Microsoft that will not allow it change the border of the dropdowns, so it is not recommended adding
	border: 1px solid plum; */
}


/* VALIDATOR */

/* Validator Text */
.NormalRed
{
    font-family: Tahoma, Arial, Helvetica;
    font-size: 12px;
    font-weight: bold;
    color: red;
}



/* Previous and Next Buttons */

A:link  {
    text-decoration:    none;
    color:  purple;
}

A:visited   {
    text-decoration:    none;
    color:  darkviolet;
}

A:active    {
    text-decoration:    none;
    color:  purple;
}

A:hover {
    text-decoration:    underline;
    color:  plum;
}

