@charset "utf-8";
/* CSS Document */

/*****************************************/
/* colors used in hyperlinks:
 *	dark blue: #004080
 *	light blue: #9CB3CA
 *	dark gray: #333333
 *	mid gray: #666666
 *	dark brown: #7C6448
 *  mid tan: #999966
 *  geekz red: #c00000
 */
/*****************************************/
/******************************/
/* Other useful color defs:

	sidebar fade darkest blue: #9DB3CA
	sidebar fade darkest tan: #DFDAC6
	sidebar fade darkest gray:
	solid tan: #DFDAC5
	solid dark blue:
	solid red: #CC0000
*/

/* ################################################################################################
 *  rules for forms
 */
form td {
	vertical-align: bottom;
}

form {
	font-size: 1.3em; /* sets the baseline for contents of form */
}

.ie form {
	font-size: 1.1em; /* adjust size for IE */
}

form * {
	color:#004080;

}

form input[type="text"], form textarea {
	font-family: "Courier New", Courier, mono;
	color:#004080;
	padding: 3px;
	font-size: 100%;
}

/* this allows us to declare a textarea with width 100% AND use padding/border */
form textarea { 
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	padding: 6px;
}

form label {
	font-family: 'Hind', Verdana, Arial, Helvetica, sans-serif;
	font-weight: 400;
	color:#000000;
}

.ie form label {
}

form input.button[type="submit"], form input.button[type="reset"] {
	margin: 10px;
	background-color:#ECE9D8;
	color:#004080;
	font-family: inherit;
}

@media screen and (max-width: 640px) {
	
	form {
		font-size: 1.4em; /* sets the baseline for contents of form */
	}
	
	form input,
	form textarea {
		font-size: 1.4em;
	}

}
