﻿/* CSS Document */

/*
I style a div element that surrounds the entire form
*/
.genericForm{
}

/*
I style a div tag that wraps a set of content that is supposed to be stacked vertically.
I can contain other vertical groups.
*/
.genericVerticalGroup{

}

/*
I style a blick of text in a span that appears at the top of all vertical from groups.
*/
.genericVerticalHeader{

}

/*
I am a div element that wraps each input field.
*/
.genericField{
	margin-bottom: 8px;
}

.genericField div.content{
	padding-top: 3px;
}

/*
I style a label that appears with each field.
*/
.genericFieldLabel{
	display: block;
	float: left;
	width: 125px;
	text-align: right;
	padding-top: 5px;
	padding-right: 3px;
	margin-top: -2px;
}

/*
I am a style applied to the lable of required fields.
*/
.genericRequiredFieldLabel{
	font-weight: bold;
}

/*
I am a style applied to required input tags
*/
.genericRequiredInput{

}

/*
I am a style applied to required checkbox or radio buton fields
*/
.genericRequiredIndicator{

}

/*
I am a style applied to generic select lists
*/
.genericRequiredSelect{

}

/*
I am a style applied to generic textareas
*/
.genericRequiredTextarea{
	
}

/*
I style a span element which contains an "*" that appears inside require field labels.
*/
.genericRequiredFieldMarker{
	color: red;
}


/*
I am an additional style added to genericField divs when there is an error argument passed in. 
*/
.genericFieldError{
	background-color: #FFEEEE;
	padding-top: 2px;
	padding-bottom: 2px;
}

/*
I style a div element that appears above the field containing an error message.
*/
.genericFieldErrorText{
	margin-left: 115px;
	color: red;
}

/*
I am a style applied to "comments".  Comments are a custom attibute added to the cfinput tag.  
I am a div element.
*/
.genericFieldComment{
	margin-left: 125px;
	font-size: 10px;
}

/*
I am a div element that contains either a set of checkbox or radio button elements.
*/
.genericIndicatorSetContainer{

}

/*
I style checkbox and raidobutton elements
*/
.genericCheckbox, .genericRadio{
	
}

/*
I am a container which holds checkbox and radio button elements and their labels 
*/
.genericIndicatorContainer{
	display: block;
	float: left;
	width: 33%;
}

/*
I am the style applied to text form groups.  I am applied to a div element.
*/
.genericText{
	
}

/*
I am styles applied to all textual input tags (text, password, file)
*/
.genericInput{

}

/*
I am styles applied to all button input types (submit|button|image|reset)
*/
.genericButton{
}

/*
I am a style applied to a div that wraps buttons.
*/
.genericButtonSet{
	margin-left: 125px;
	margin-top: 15px;
	white-space: nowrap;
}

/*
I style a select list
*/
.genericSelect{
	
}

/*
I style a textarea
*/
.genericTextarea{
	width: 375px;
	height: 80px;
}

/*
I style a fieldset element
*/
.genericFieldset{
	border: 1px solid lightgray;
	margin-top: 10px;
	padding: 10px;
	margin-bottom: 10px;
}

/*
I style the label on a fieldset
*/
.genericFieldsetLabel{
	font-size: larger;
}

/*
I style a vbox formgroup
*/
.genericVerticalBox{

}