.smartform {
}

.smartform * {
  box-sizing: border-box;
}

.smartform .fields {
	
}

.smartform .field {
	display: table;
}

.smartform .field .label {
	display: table-cell;
	padding: 5px;
	width: 200px;
}

.smartform .field .input {
	display: table-cell;
	padding: 5px;
}

.smartform .field .input.error input {
	border: 1px solid red;
}

.smartform .field .description {
	display: table-cell;
	padding: 5px;
}

.smartform input[type='text'],
.smartform input[type='email'],
.smartform input[type='date'],
.smartform input[type='file'],
.smartform input[type='number'] {
	font-size: 1em;
	padding: 5px;
	width: 300px;
}

.smartform select {
	font-size: 1em;
	padding: 5px;
	width: 300px;
}

.smartform .submit-field {
	text-align: center;
	margin-top: 20px;
}

.smartform .submit-field button {
	font-size: 1em;
	padding: 3px 10px;
}

.smartform .errors {
	background: #f5a4a4;
	padding: 10px;
}

.sent {
	text-align:center;
	background: #dff0d8;
	border: 1px solid #d0e9c6;
	color: #3c763d;
	padding: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}



.smartform .error-msg {
	display: table-cell;
	color: red;
}

h2 {
	margin: 0;
	padding: 0 0 5px 0;
	color: #203d5f;
	clear:both;
}


fieldset {
	border: 1px solid #203d5f;
	padding: 20px;
	margin: 10px auto;
}

legend {
	padding: 0.2em 0.5em;
	background: #203d5f;
	color: #fff;
	font-size: medium;
}

.fld:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
* html .fld { zoom: 1; } /* IE6 */
*:first-child+html .fld { zoom: 1; } /* IE7 */

@media (min-width: 800px) {
	.fld {
		margin-bottom: 15px;
		float: right;
		width: 45%;
		height: 75px;
	}

	.fld-x2 {
		margin-bottom: 15px;
		float: right;
		width: 90%;
	}
}

.fld label {
	display: block;
}

.radio {
	float:right;
	margin-left:8px;
}
.radio label{
	display:inline;
}

@media (min-width: 800px) {
	.fld .input {
		float: right;
	}
}

.longtext {
	width: 100%;
	height: 100px;
	font-size: medium;
	-webkit-box-sizing: border-box; /* webkit */
	-moz-box-sizing: border-box; /* firefox */
	box-sizing: border-box; /* css3 */
}

.fld input[type="text"], .fld input[type="number"], .fld input[type="date"], .fld input[type="email"], .fld textarea, .fld select {
	width: 100%;
	padding: 4px;
	-webkit-box-sizing: border-box; /* webkit */
	-moz-box-sizing: border-box; /* firefox */
	box-sizing: border-box; /* css3 */
	font-size: medium;
	border: 1px solid #aaaaaa;
	background: #FFF;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 1em;
	min-height: 30px;
	
}

@media (min-width: 800px) {
	.fld input[type="text"], .fld input[type="number"], .fld input[type="date"], .fld input[type="email"], .fld textarea, .fld select {
		width: 300px;
	}
}

.submit {
	text-align: center;
}

.submit input {
	font-size: 18px;
	padding: 4px 20px;
	background: #203d5f;
	border: 0;
	color: #FFF;
	cursor: pointer;
}

.submit input:hover, .submit input:focus {
	background: #000;
}


.error-msg {
	color: #dc0000;
}

.info_table_container {
	width: 960px;
	overflow-x: scroll;
}

.info_table_container table {
	width: 100%;
}

.info_table_container th {
	background: #428bca;
	color: #FFF;
	text-align: right;
	padding: 10px;
}

.info_table_container td {
	background: #f1f1f1;
	padding: 10px;
}

.err {
	border: 1px solid #bd0000;
	background: #ffcdcd;
	padding: 15px;
}

.ok {
	border: 1px solid #289403;
	background: #d7efce;
	padding: 15px;
	text-align: center;
}