@charset "utf-8";
/* Tyler Scott Gundberg, GIS Analyst, Clark County, Washington. August 8th, 2008 */
/* form.css cascading style sheet used for the Application's FORMS  */

/*::  FORM STYLES ::*/



/*  altcolor is the same as .altlinks:hover color. */
.required{
	color: #993300;
}

/* used for the title / header of a from. */
.formTextTitle{
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size :11px;
	font-style : normal;
	font-weight:normal;
	color : #660000;
}

/* can be used for radio buttons, use it with a <div>" */
.formText{
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size :10px;
	font-style : normal;
	font-weight:normal;
	color : #000099;
}


/* Simple - Used for Form's input type="text" or "textarea" */
/* use this when you want to size the textbox in your application. */
.textbox{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;

}

/* Advanced - Used for Form's input type="text" or "textarea" */
/* displays to look like there is "No Visable" text box. */
.textboxNovis {
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
	border: medium none;
	/* padding: 2px;*/
}

/* Presized for display - Used for Form's input type="text" or "textarea" */
.textbox300 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	width:300px;
	
}

/* Advanced - Used for Form's input type="text" or "textarea" */
.textboxAdv {
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
	border-top: thin solid #83A2BC;
	border-right: thin solid #BCD2EE;
	border-bottom: thin solid #BCD2EE;
	border-left: thin solid #83A2BC;
	background-color: #FFFFE1;
}

.textarea {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	width:300px;
	height:100px;
	
}

/*Dropdown List - Used for Form's select/option */
.dropdown300 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	width:300px; 
}

/*Dropdown List - Used for Form's select/option No Width. use local setting*/
/* use this when you want to size the dropdown in your application. */
.dropdown {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal; 
}


/*Buttons - Used for Form's buttons/submits/reset/etc... 000080*/
.button {
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	border-top: thin solid #BCD2EE;
	border-right: thin solid #83A2BC;
	border-bottom: thin solid #83A2BC;
	border-left: thin solid #BCD2EE;
	cursor:pointer;
	padding:2px;
	-moz-border-radius: 4px;
    border-radius: 4px;
}

/*Buttons - Used for Form's buttons/submits/reset/etc... 000080*/
.button:hover {
	color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	border-top: thin solid #BCD2EE;
	border-right: thin solid #83A2BC;
	border-bottom: thin solid #83A2BC;
	border-left: thin solid #BCD2EE;
	cursor:pointer;
	background-color: #666666;
	padding:2px;
	  -moz-border-radius: 4px;
    border-radius: 4px;
}
	
/*Buttons - Used for Form's buttons/submits/reset/etc... 000080*/
.buttonHover {
	color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	border-top: thin solid #BCD2EE;
	border-right: thin solid #83A2BC;
	border-bottom: thin solid #83A2BC;
	border-left: thin solid #BCD2EE;
	cursor:pointer;
	background-color: #666666;
	padding:2px;
}

/* ---------------------------------------------------------------------------------------------------------- */

	
/*TSG, code, below doesn't work so well with FF*/
/*Used to Style <input type='file"*/
div.fileinputs {
	position: relative;
}

div.fakefile {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
}

/*the different opacity are for the different types of browsers.*/
input.file {
	position: relative;
	text-align: right;
	-moz-opacity:0 ;
	/*for ID values 0-100*/
	filter:alpha(opacity:0);
	/*for ID values 0-1.0 (ex: .4*/
	opacity: 0;
	z-index: 2;
	/*width:0px;/*tsg, added this, remove when placing <cfinput/> in markup*/
}

/* 
a#rollover { background-image:url(/gishome/assets/images/SelectFile.gif); height: 22px; width:82px; display:block; }
a#rollover span { display:none; }
a#rollover:hover { background-image:url(/gishome/assets/images/SelectFileHover.gif); }

a#linkdisable {text-decoration: none; }
a#linkdisable span { color:#999999; font-weight:normal}
a#linkdisable:hover {text-decoration: underline; }
*/
