/* FORM STYLES */

/* GENERAL FORM STYLES */

form {
	padding: 0px;
	margin: 20px 0px;
	width: 98%;
}

form fieldset {
	border: 0px;
	margin: 0px;
	padding: 0px;
}

select.browse {
	width: 150px;
}

select.browse option {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}

form label {
	display: block;
	width: 160px;
	float: left;
	margin: 0px 0px 20px 0px;
	text-align: left;
	padding: 0px 20px 0px 0px;
}

form input,
form input checkbox {
	width: auto;
	padding: 3px;
	margin-bottom: 20px;
	border: 1px solid #999;
	background: #FFF url(../images/input.gif) no-repeat -10px -4px;
	transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    border-radius:3px;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border:1px solid #CCC;
}

form input:focus {
    box-shadow: 0 0 5px rgba(0, 0, 255, 1);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 255, 1); 
    -moz-box-shadow: 0 0 5px rgba(0, 0, 255, 1);
    border: 1px solid #2E3192;
}

form textarea {
	margin-bottom: 20px;
	padding: 3px;
	overflow: auto;
	border: 1px solid #999;
	background: #FFF url(../images/input.gif) no-repeat -10px -4px;
}

form select {
	color: #2E3192;
	margin-bottom: 20px;
}

form select option {
	color: #2E3192;
	text-indent: 3px;
}

/* HIGHLIGHTING REQUIRED FIELDS */

form em {
	vertical-align: top;
	margin-left: 5px;
	font-weight: bold;
}

span.required label {
	font-weight: bold;
}

/* SECTION 2: HIGHLIGHTING REQUIRED FORM FIELDS */
/* Highlight required fields using alternative styles */

form em {
	color: #C00;
	font-size: 11px;
	vertical-align: middle;
	margin-left: 5px;
}

/* General button classes */

input.button {
	width: 100px;
	padding: 8px;
	background: #484BC6;
	color: #FFF;
	font-size: 14px;
	margin-right: 20px;
	display: inline;
	text-decoration: none;
	border: 0px;
}

input.button:hover {
	background: #2E3192;
}

.sendButton {
	margin-left: 180px;
	margin-right: 20px;
}
