/*
 *	forms.css
 *	This is for styles shared between all forms.
 *	Individual forms should have their own stylesheets.
 */
/* FireFox Button Fixes */
button::-moz-focus-inner, input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner  { border: 0px none; padding: 0px; }
/* Buttons */
input[type="button"], input[type="reset"], input[type="submit"], input[type="file"] > input[type="button"], select > input[type="button"],
button, div.button, a.button {
	display: inline-block;
	vertical-align: middle;
	padding: 4px 12px;
	border-top: 1px solid #cccccc;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	border-left: 1px solid #cccccc;
	font-weight: bold;
	color: #333333;
	text-decoration: none;
	cursor: pointer;
	background: #f9f7f7; /* Old browsers */
	background: -moz-linear-gradient(top, #f9f7f7 11%, #e0e0e0 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(11%,#f9f7f7), color-stop(100%,#e0e0e0)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f9f7f7 11%,#e0e0e0 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f9f7f7 11%,#e0e0e0 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #f9f7f7 11%,#e0e0e0 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F9F7F7', endColorstr='#E0E0E0',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, #f9f7f7 11%,#e0e0e0 100%); /* W3C */
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	margin-bottom: 20px;
	margin-top: 20px;
}
select > input[type="button"] {
	padding: 4px;
}
/* Inputs */
input[type="text"], input[type="password"], input[type="file"] > input[type="text"],
textarea, .text, .textinput, .chk, .validate-email {
	display: inline-block;
	padding: 4px;
	border: 1px solid #3a403c;
	background-color: #ffffff;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-moz-box-shadow:inset 2px 2px 2px #aeacad;
	-webkit-box-shadow:inset 2px 2px 2px #aeacad;
	box-shadow:inset 2px 2px 2px #aeacad;
}
input[type="text"].required,
.chk.required, textarea.required, .text.required, .validate-email.required {
	background: #ffffff url('../images/required.png') no-repeat right center;
}
span.chk,
span.text {
	vertical-align: top;
}
/* Select (belong inside span class="text") */
select > input[type="text"], select.text, select.textinput {
	background: transparent;
	border: 0px none;
	margin: 0px;
	padding: 0px;
	width: 100%;
	cursor: pointer;
}
.chk {
	padding: 0px 0px 0px 4px !important;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="file"] > input[type="text"]:focus,
textarea:focus, .text:focus, .textinput:focus, .chk:focus
input[type="text"]:active, input[type="password"]:active, input[type="file"] > input[type="text"]:active,
textarea:active, .text:active, .textinput:active, .chk:active {
	box-shadow: 0px 0px 2px #cccccc;
}
select > input[type="text"]:focus, select.text:focus, select.textinput:focus,
select > input[type="text"]:active, select.text:active, select.textinput:active {
	box-shadow: none;
}
/* Labels */
label, .label {
	display: inline-block;
	padding: 5px 0px;
}
/* Checkboxes and Radio Buttons (belong inside span class="chk") */
.chk input {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
}
.chk input[type="radio"] {
	margin-top: 6px;
	vertical-align: top;
}
.chk label {
	margin: 0px;
	cursor: pointer;
	padding: 6px 0px 5px 0px;
}
/* Validation */
.validation-failed {
	border: 1px solid #c60000 !important;
}
/* Validation */
.validation-failed {
	border: 1px solid #c60000 !important;
}
/* Member Form */
.memberForm fieldset {
	padding: 20px;
}
.memberForm .form-hr {
	border-top: 1px solid #000000;
	height: 1px;
	font-size: 0px;
	overflow: hidden;
	margin: 20px 0px;
}
.memberForm .form-hr.dash {
	border-top: 1px dashed #cccccc;
}
.memberForm .item {
	position: relative;
	display: inline-block;
	padding-top: 12px;
	width: 305px;
	font-size: 12px;
	margin-right: 12px;
}
.memberForm .item:last-child {
	margin-right: 0px;
}
.memberForm .item p {
	margin: 0px;
}
.memberForm .text {
	width: 182px;
}
.memberForm .item.medium {
	width: 369px;
}
.memberForm .item.medium .text {
	width: 240px;
}
.memberForm .item.long {
	width: 467px;
	margin-right: 0px;
}
.memberForm .item.long .text {
	width: 312px;
}
.memberForm .item.long .chk {
	width: 446px;
}
.memberForm label {
	width: 100px;
	margin-right: 10px;
}
.memberForm .item.long label {
	width: 120px;
}
.memberForm label.error {
	width: auto;
	margin: 0px;
	padding: 0px;
	position: absolute;
	right: 4px;
	top: -1px;
	color: #d21c1b;
	text-align: right;
	font-size: 10px;
}
.memberForm .text.error {
	border: 1px solid #d21c1b;
}
.memberForm .req-div {
	float: left;
	clear: left;
}
.memberForm .req-span,
#contact-form .req-span {
	display: inline-block;
	vertical-align: middle;
	width: 24px;
	height: 24px;
	background: transparent url('../images/required.png') no-repeat center center;
}
.memberForm .button-row {
	padding: 10px 0px;
	width: 926px;
	text-align: right;
}