
	
/***** Form Data CSS *****/
/**  Form Tags
Tag Description 
<form> Defines a form for user input 
<input> Defines an input field 
<textarea> Defines a text-area (a multi-line text input control) 
<label> Defines a label to a control 
<fieldset> Defines a fieldset 
<legend> Defines a caption for a fieldset 
<select> Defines a selectable list (a drop-down box) 
<optgroup> Defines an option group 
<option> Defines an option in the drop-down box 
<button> Defines a push button 
<isindex> Deprecated. Use <input> instead 
**/


	fieldset { 
		font-family: Verdana, Arial, helvtica, san-serif;
		font-size: 12pt;
		background: transparent; 
		border: solid #e5e5e5 ; 
		padding: 0em 1em 0em 1em; 
	}
	
	legend { 
		
		font-weight: bold;   
		text-transform: capitalize;
		color: #000;
		padding: .25em; 
	}
	
					  
	label {
		font-family: Verdana, Arial, helvtica, san-serif;
		font-size: 12pt;
		font-weight: bold;  
		border-collapse: collapse; 
		color: #069;}

	input {   
		font-family: Verdana, Arial, helvtica, san-serif;
		font-size: 10pt; 
		font-weight: normal;
		color: #069;
		border-width: 1px; 
		border-style: solid; 
		border-color: #069;  
		background: #fff;  
		
				   }
	

	
	.graphicbuttons { 
		border: solid; 
		border-color: transparent; 
		background-color: transparent; 
				 
				}
	
	.graphicbuttons:active { 
		border: inset; 
		border-color: #069; 
		border-width: 1px;
		background-color: #ececec;}
	
	
	