/*
see CMX new orleans

  :::::: COLOR PALETTE

dark grn outline="#1E5F5A"
"sky blu" like the photo="#79A0C2"
"dark water"="#4C6486"
"light water"="#7998B9"
"sand" light red="#DBC8B7"
"sand2" light red="#CFAF9F"
"dark sand" grey="#81868C"  (default text?)
"darker than leftcol" #859cb3" - blue/grey


*/

form {
	padding: 0 .5em 1em .5em; /* Keeps form from touching edges of parent div. */
	}




fieldset {
	padding: 0; /* Removes default padding some browsers add. */
	border: 0 none; /* Removes default borders some browsers add. */
	}




/*
fieldset #textarea {
	width: 200px; 
	height: 150px;
	}
 */


fieldset .multiline{
	width: 330px; /* Sets a fixed width. */
	height: 120px; /* Sets a fixed height. */
	}


	
label {
	display: block; /*Changes labels from inline to block so each will sit on the line above its associated input.*/
	font-size: 12px;
	color: #27387c;
	}


	

input {
	width: 200px; /* Sets a fixed width. */
	}


input.long {
	width: 330px;
}

input.button {
	float:left;
	margin: 0 12px 0 12px;
	border:2px solid #1e5f5a;
	width: auto; /* Removes fixed width on inputs with a class of button, so they will size according to their text. */
	}


	
	
	
input, textarea {
	background: #bacbda;	
	border: 1px solid #1E5F5A;
	margin: 0 0 1em 0; /* Spaces inputs out from one another. */
	padding: 2px; /* Adds space within inputs and textareas. */
	}


/* The following selector controls how the inputs look when they have focus, but since IE does not support focus, these effects are not seen there. */
input:focus, textarea:focus {
	background: #ffffff;
	color: #000000;
	border: 1px solid #859cb3; 
	}

