html {
padding:0;
margin:0;
font-family: "Helvetica Neue",Arial,freesans,sans-serif;
}

body {
padding:0;
display: block;
margin: 8px;
}

h3 {
    display: block;
    font-size: 1.17em;
    font-weight: bold;
    margin: 1em 0;
}

small {

}

input[type="submit"]{

	cursor:pointer;
	font-family: "Helvetica Neue",Arial,freesans,sans-serif;
	font-weight: bold;
	font-size: 14px;
	padding: 7px 16px;
	background: linear-gradient(
		top,
		#f6f6f6 0%,
		#e1e0e0);
	background: -o-linear-gradient(
		top,
		#f6f6f6 0%,
		#e1e0e0);
	background: -ms-linear-gradient(
		top,
		#f6f6f6 0%,
		#e1e0e0);
	background: -moz-linear-gradient(
		top,
		#f6f6f6 0%,
		#e1e0e0);
	background: -webkit-linear-gradient(
		top,
		#f6f6f6 0%,
		#e1e0e0);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#f6f6f6),
		to(#e1e0e0));
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #d3d3d3;
	-moz-box-shadow:
		0px 1px 3px rgba(255,255,255,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);
	-webkit-box-shadow:
		0px 1px 3px rgba(255,255,255,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);
	-ms-box-shadow:
		0px 1px 3px rgba(255,255,255,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);
	-o-box-shadow:
		0px 1px 3px rgba(255,255,255,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);
	box-shadow:
		0px 1px 3px rgba(255,255,255,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);
	text-shadow:
		0px -1px 0px rgba(000,000,000,0),
		0px 1px 0px rgba(255,255,255,0);
}

input[type="submit"].selected {
	color: white;
	-webkit-box-shadow: inset 0px 1px 5px 1px rgba(0, 0, 0, 0.15);
	box-shadow: inset 0px 1px 5px 1px rgba(0, 0, 0, 0.15);
	background-image: none;
}

input[type="submit"]:hover {
	background: white;
}

input[type="checkbox"] {
border:0;
outline: 0;
}

input[type="checkbox"]:focus {
border:0;
outline: 0;
}

fieldset {
 	border: 0px dashed #808080;

}

fieldset:last-child {
	  border: 0px dotted black;
}


.button-group {
	overflow: hidden;
}

.button-group > .push-button {   
	float: left;
	border-radius: 0;
	border-left: 0;
}

.button-group > .push-button:first-child {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	border-left: 1px solid #d3d3d3;
}

.button-group > .push-button:last-child {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

/* form fields */
.form-label {
	margin-bottom: 7px;
	font-size: 15px;
	font-weight: bold;
	color: #333333;	
}

.form-field {
	margin-bottom: 20px;
}

.form-field > .form-label {
	display: block;
}

.form-select,
.form-input {
	display: block;
	width: 100%;
}

.form-select
{
	cursor:pointer;
	box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		padding: 7px;
		border: 1px solid #cccccc;
	background-color: white;
}

.form-input {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 7px;
	border: 1px solid #cccccc;
	background-color: white;
}

.form-input:focus {
	background-color: #fefff1;
}

textarea.form-input {
	min-height: 180px;
}

.form-submit {
	cursor:pointer;
	float: right;
	min-width: 150px;
	display:table;
}

p {
font-family: "Helvetica Neue",Arial,freesans,sans-serif;
 font-size: 1.0em;
}

legend {
 	font-size: 1.2em;
    font-weight: bold;
    margin-left: 0;
    padding-left: 0;
}

.form-input:focus
{
border: 1px solid #26487f;
}

.form-message {
    background-color: #FEFFF1;
    display: none;
    font-size: 12px;
    line-height: 20px;
    padding-left: 10px;
    position: relative;

}

.form-confirm {
	margin:1em;
	display:none;
}

.form-response {
	margin:1em;
	display:none;
}

.form-response img {
width:60%;
display:block;
margin:0 auto;
padding:1em;
}

#form-singleline {
display:table;
}

#form-singleline label {
float:left;
margin-right:0.4em;
}

#form-singleline input[type="checkbox"] {

cursor:pointer;
float:left;
display: inline-block;
}

#form-singleline .form-label:first-child {
	float:left;
	width:auto;
	margin-left:0;
}

#form-singleline .form-label {
	float:left;
	width:auto;
	margin-left:0.4em;
}

#form-singleline .form-input {

	width:auto !important;
	float:left;

}

#form-singleline .form-message {

	float:left;
	clear:both;
}