#errBox {
	padding: 1em 2em; font-weight:850; color:#f30; background:#FFEBE8; border: 2px solid #f30;
	margin-bottom: 2em;
	margin-top: 3em;
}
#errBox p {
	margin: 0;
	text-align: left;
}
#errBox p:before {
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	content: '\f06a';
}

#contactRule {
	overflow-y: scroll;
	height: 150px;
	margin-bottom: 3em;
	border: 1px solid #ddd;
	padding: 2em 2em 0 2em;
	font-size: 0.82em;
}
#contactRule ul {
	text-align: left;
}
#contactRule ul li {
	margin-bottom: 1em;
	color: #666;
}

/* Form */

	form label {
		font-weight: 600;
		text-transform: uppercase;
		color: #888;
		display: block;
		margin: 0 0 1em 0;
	}

	form input[type="text"],
	form input[type="email"],
	form input[type="tel"],
	input[type="password"],
	form select,
	form textarea {
		-moz-transition: background-color 0.25s ease-in-out;
		-webkit-transition: background-color 0.25s ease-in-out;
		-ms-transition: background-color 0.25s ease-in-out;
		transition: background-color 0.25s ease-in-out;
		-webkit-appearance: none;
		display: block;
		border: 0;
		width: 100%;
		box-shadow: inset 1px 1px 3px 0px rgba(0, 0, 0, 0.1);
		border-radius: 4px;
		line-height: 1.25em;
		padding: 0.75em 1em 0.75em 1em;
		border: 1px solid #ddd;
		outline: none;
	}

		form input[type="text"]:focus,
		form input[type="email"]:focus,
		form input[type="tel"]:focus,
		input[type="password"]:focus,
		form select:focus,
		form textarea:focus {
			background: #fafafa;
			border: 1px solid #9BBDBD;
		}

	form textarea {
		min-height: 11em;
	}

	form .formerize-placeholder {
		color: #555 !important;
	}

	form ::-webkit-input-placeholder {
		color: #555 !important;
		line-height: 1.35em;
	}

	form :-moz-placeholder {
		color: #555 !important;
	}

	form ::-moz-placeholder {
		color: #555 !important;
	}

	form :-ms-input-placeholder {
		color: #555 !important;
	}

	form ::-moz-focus-inner {
		border: 0;
	}



/*------------------------------------------------------------------------
index.html
------------------------------------------------------------------------*/

@media screen and (max-width: 736px) {


	#indexBox table{
		display: block;
		width: 100%;
	}
		#indexBox table tbody{
			display: block;
		}
			#indexBox table tbody tr {
				display: block;
				margin-bottom: 1.5em;
			}
			#indexBox table tbody th,
			#indexBox table tbody td{
				display: list-item;
				border: none;
				width: 100%;
			}
			#indexBox table tbody th{
				margin-bottom: 15px;
				list-style-type: none;
				background:#eee;
				text-align: left;
				height: auto;
				padding: 5px 10px;
			}
			#indexBox table tbody td{
				margin-left: 20px;
				padding: 0;
				list-style-type: none;
				height: auto;
				width: 90%;
			}

}


