/*
 * 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: #000000;
font-weight: bold;
font-size: 12px;
text-align: right;
}

/* Catch all style for form elements that have been not been assigned a class */
input
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px; 
color: #000000;
font-weight: normal;
}

/* Style used on all form fields */
input.field
{
font-size: 12px; 
color: #000000;
font-weight: normal;
}

/* Style used on standard form buttons */
input.button
{ 
font-size: 12px;
color: #000000;
font-weight: normal;
}

/* Style used for small form buttons that are used within tables e.g. Delete/Remove buttons */
input.buttonsmall
{ 
font-size: 9px;
color: #000000;
font-weight: normal;
}

/* Style used on all form drop down lists */
select
{
font-weight: normal; 
color: #000000;
}

/* Style used on all form text areas */
textarea
{
font-weight: normal;
font-size: 12px; 
color: #000000;
}

/* Style used to indicate required field */
.requiredfield
{
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; 
font-size: medium; 
font-weight: bold;
color: #CC0033;	
}

/* Style used to indicate required field on registration page for an individual */
.requiredindividual
{ 
font-size: 12px; 
font-weight: bold;
color: #CC0033;	
}

/* Style used to indicate required field on registration page for a business user */
.requiredbusiness
{
font-size: 12px; 
font-weight: bold;
color: #003399;	
}

/* general style used to indicate required field */
.requiredfield
{
font-size: 12px; 
font-weight: bold;
color: #CC0033;	
}


