/*
 * 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: #000;
font-weight: bold;
text-align: left;
}

/* Catch all style for form elements that have been not been assigned a class */
input
{
}

/* Style used on all form fields */
input.field
{
color: #000;
font-weight: normal;
}

/* Style used on standard form buttons */
input.button
{ 
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: 75%;
color: #000000;
font-weight: normal;
}


/* Style used to indicate required field on registration page for an individual */
.requiredindividual
{
font-size: 120%;
color: red;	
}

/* Style used to indicate required field on registration page for a business user */
.requiredbusiness
{
font-size: 120%;
color: blue;	
}

/* general style used to indicate required field */
.requiredfield
{
font-size: 120%;
color: red;	
}
