/* ----FORMS AND BUTTON ELEMENTS---- */
/*----------------------------------------------*/

/*buttons*/

button, .button {
	margin: 0;
	padding: 4px;
	font-size: 1em;
    text-transform: uppercase;
	border-top: 1px solid #303030;
	border-left: 1px solid #303030;
    border-bottom :1px solid #303030;
    border-right :1px solid #303030;
    text-decoration: none;
    cursor: pointer;
    color: #f3bebd;
    background: #303030;
	line-height: 1em;
	overflow: visible;
}

button:hover { color:#f3bebd; }

button:active {	border-top: 1px solid #303030;
	border-left: 1px solid #303030;
    border-bottom :1px solid #303030;
    border-right :1px solid #303030;
	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;}


fieldset {
	width: auto;
	padding-top: 5px;	
	border: 0;
	border: 1px #232323 dotted;

}

.form_column_left { float: left; width: 339px; margin-right: 20px;}
.form_column_right { float: left; width: 339px;}

/* inputs & selects */

input {
	margin: 0 5px 5px 0;
	padding: 4px;
	font-size: 1.1em;
	border-top: 1px solid #303030;
	border-left: 1px solid #303030;
	border-bottom: 1px solid #303030;
	border-right: 1px solid #303030;
	width: 160px;
	color: #f3bebd;
	background: #303030; 
}

input.blur { color: #8e6f71; } /*hint color*/

select {
	padding: 2px;
	font-size: 1.1em; 
	border: 1px #000 solid;
	color: #f3bebd;
	background: #303030;
}

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: 4px 0 15px 0;
	font-family: sans-serif;
}


/* 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 #303030;
	border-left: 1px solid #303030;
	border-bottom: 1px solid #303030;
	border-right: 1px solid #303030;
	color: #f3bebd;
	background: #303030;
}

a.tinyedit_toggle {margin-left: 120px;}