/* ----FORMS AND BUTTON ELEMENTS---- */
/*----------------------------------------------*/

/*buttons*/

button, .button {
	margin: 5px 0 0 0;
	padding: 2px;
	font-size: .9em;
    text-transform: uppercase;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
    border-bottom :1px solid #666;
    border-right :1px solid #666;
    text-decoration: none;
    cursor: pointer;
    background: #fff;
	line-height: 1em;
	overflow: visible;
}

button:active {	border-top: 1px solid #666;
	border-left: 1px solid #666;
    border-bottom :1px solid #ccc;
    border-right :1px solid #ccc;
	outline:none;
}


/* for faux button links */

.button {display: inline-block; line-height: 1.5em} 
.button:hover {text-decoration: none;}


/* form element containers */

div.form_element { clear: both; margin: 20px 0;}


.form_column_left {
	width: 339px;
	height: auto;
	float: left;
	margin-right: 20px;
}


.form_column_right {
	width: 339px;
	height: auto;
	float: left;
}


fieldset {
	width: auto;
	padding-top: 5px;	
	border: 0;
	border: none;
}


/* inputs & selects */

input {
	margin: 0 5px 0 0;
	padding: 2px;
	font-size: .9em;
	border-top: 1px solid #999;
	border-left: 1px solid #999;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	width: 160px;
	background: #FFF; 
}

input.blur { color: #999; } /*hint color*/

select {
	padding: 2px;
	font-size: 1.1em; 
	border: 1px #999999 solid;
}

optgroup {
	font-size: 1.0em;
	border-top: 1px dotted #ccc;
	padding: 3px;
}

/* labels */

label, h4.radio {
	width: 90px;
	padding-left: 10px;
	margin: 5px 20px 20px 0;
	line-height: 1.4em;
	font-size: 1.0em;
	font-weight: bold; 
	text-align: right;
	float: left; clear: left;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	position: relative;
}

h4.radio {margin-top: 0;}

span.label_char {position: absolute; padding-left: 4px; top:0;}


/* form instructions */

.instruction {
	font-size: 0.9em;
	width: auto;
	margin: 2px 0 15px 0;
}

.textarea_instruction {padding-left: 120px;}

.instruction p { display: inline; } /*need to remove p tags from instructions */

/* radio buttons and checkboxes */

input.radio, input.checkbox {
	/* reset nontext inputs */
	margin: 5px 5px 0 0;  
	float: none; 
	width: auto; height: auto; 
	border: none; background: transparent; 
} 

label.radio {
	margin: 0 15px 0 0; 
	padding: 0; 
	float: none; clear: none; 
	width: auto; 
	font-weight: normal;
	text-align: left; 
	text-transform: none; 
}

ul.radio_list { padding-left: 120px; } /* for more than two radio buttons */
ul.radio_list li { padding-bottom: 10px;} 


/* textareas */

textarea {
	width: 330px; /*will need to be adjusted for three column layout */
	height: 160px;
	padding: 4px;
	font-size: 1.2em; font-family: inherit;
	border-top: 1px solid #999;
	border-left: 1px solid #999;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	background: #FFF;
}

a.tinyedit_toggle {margin-left: 120px;}


