/*
 * Web Access Module (WAM)
 * Style sheet for formatting form elements
 * 
 * Author: david.gibson@i-documentsystems.com
 * 
 */



/* Style used form text labels situated to the left of form fields */
.formlabel
{
color: #0F238C;
font-weight: bold;
text-align: left;
}

form
{
margin-bottom: 0;
}

/* Catch all style for form elements that have been not been assigned a class */
input
{
color: #000;
font-weight: normal;
}

/* Style used on all form fields */
input.field
{ 
color: #000;
font-weight: normal;
}

/* Style used on standard form buttons */
input.button
{ 
color: #000;
font-weight: normal;
}

/* Style used for small form buttons that are used within tables e.g. Delete/Remove buttons */
input.buttonsmall
{ 
font-size: xx-small;
color: #000;
font-weight: normal;
}

/* Style used on all form drop down lists */
select
{
font-weight: normal; 
color: #000;
}

/* Style used on all form text areas */
textarea
{
font-family: Arial, Helvetica, sans-serif;
font-weight: normal;
font-size: 80%; 
color: #000;
}

/*Radio button label text in comment form*/
.greytext
{
font-size: 81%;
}

/* Style used to indicate required field on registration page for an individual */
.requiredindividual
{
font-size: 150%; 
font-weight: bold;
color: blue;	
}

/* Style used to indicate required field on registration page for a business user */
.requiredbusiness
{ 
font-size: 150%; 
font-weight: bold;
color: red;	
}

/* general style used to indicate required field */
.requiredfield
{
font-size: 150%; 
font-weight: bold;
color: blue;	
}

/* The following group of styles allow tables containing form elements to be styled */
.formheader
{
color: #000;
font-weight: bold;
}

.formfooter
{
background-color: #fff;
}

.formtr1
{
background-color: #fff;
}

.formtr2
{
background-color: #fff;
}

.formtablewidth
{
width: 520px;
padding: 0px;
margin: 0px;
}