@charset "utf-8";
/* CSS Document */

input {
	color: #ddd;
	-webkit-appearance: none;
	-moz-appearance: none;
	display: block;
	margin: 0;
	margin-bottom: 10px;
	margin-top: 5px;
	width: 100%;
	height: 30px;
	line-height: 30px;
	font-size: 1em;
	font-weight: bold;
	background: #262626;
	background: -webkit-gradient(linear, left top, left bottom, from(#262626), to(#333));
	background: -webkit-linear-gradient(top, #262626, #333);
	background: -moz-linear-gradient(top, #262626, #333);
	background: -o-linear-gradient(top, #262626, #333);
	background: -ms-linear-gradient(top, #262626 0%, #333 100%);
	background: linear-gradient(to bottom, #262626, #333);
	box-shadow: 0px 2px 5px rgba(0,0,0,0.3) inset, 0px 1px 0px rgba(255,255,255,0.2);
	border: 1px solid #000;
	padding: 0px 10px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input[type="submit"] {
	color: #ddd;
	-webkit-appearance: none;
	-moz-appearance: none;
	display: block;
	margin: 1.5em 0;
	font-size: 1em;
	line-height: 2.5em;
	font-weight: bold;
	height: 2.5em;
	width: 50%;
	text-decoration: none;
	text-shadow: 0px 1px 0px rgba(0,0,0,1);
	box-shadow: 0px 0px 1px rgba(255,255,255,.4) inset, 0px 1px 1px rgba(0,0,0,0.5);
	background: #333;
	background: -webkit-gradient(linear, left top, left bottom, from(#333), to(#111));
	background: -webkit-linear-gradient(top, #333, #111);
	background: -moz-linear-gradient(top, #333, #111);
	background: -o-linear-gradient(top, #333, #111);
	background: -ms-linear-gradient(top, #333 0%, #111 100%);
	background: linear-gradient(to bottom, #333, #111);
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	float: right;
	border: 1px solid #000;
}
input[type="submit"]:hover {
	cursor: pointer;
	background: #333;
	background: -webkit-gradient(linear, left top, left bottom, from(#3b3b3b), to(#191919));
	background: -webkit-linear-gradient(top, #3b3b3b, #191919);
	background: -moz-linear-gradient(top, #3b3b3b, #191919);
	background: -o-linear-gradient(top, #3b3b3b, #191919);
	background: -ms-linear-gradient(top, #3b3b3b 0%, #191919 100%);
	background: linear-gradient(to bottom, #3b3b3b, #191919);
	color: #fff;
}
input[type="submit"]:active {
	background: #222;
	box-shadow: 0px 2px 2px rgba(0,0,0,0.4) inset;
}
textarea {
	color: #ddd;
	-webkit-appearance: none;
	-moz-appearance: none;
	display: block;
	margin: 0;
	margin-top: 5px;
	width: 100%;
	height: 150px;
	min-hight: 150px;
	max-height: 400px;
	overflow: auto;
	resize: vertical;
	border: none;
	line-height: 18px;
	font-size: 1em;
	font-weight: bold;
	background: #262626;
	background: -webkit-gradient(linear, left top, left bottom, from(#262626), to(#333));
	background: -webkit-linear-gradient(top, #262626, #333);
	background: -moz-linear-gradient(top, #262626, #333);
	background: -o-linear-gradient(top, #262626, #333);
	background: -ms-linear-gradient(top, #262626 0%, #333 100%);
	background: linear-gradient(to bottom, #262626, #333);
	box-shadow: 0px 2px 5px rgba(0,0,0,0.3) inset, 0px 1px 0px rgba(255,255,255,0.2);
	border: 1px solid #000;
	padding: 12px 12px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

}
input.error, textarea.error {
	background: #5c2424;
	background: -moz-linear-gradient(top, #5c2424 0%, #333 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5c2424), color-stop(100%, #333));
	background: -webkit-linear-gradient(top, #5c2424 0%, #333 100%);
	background: -o-linear-gradient(top, #5c2424 0%, #333 100%);
	background: -ms-linear-gradient(top, #5c2424 0%, #333 100%);
	background: linear-gradient(to bottom, #5c2424 0%, #333 100%);
}
#popup {
	width: 100%;
	height: 200px;
}
#popup p {
	line-height: 150%;
}
#popup h1 {
	font-size: 100%;
	color: #C8AA50;
	font-weight: bold;
	margin-top: 50px;
	margin-bottom: 50px;
}
label {
	margin-left:4px;
	padding-top: 10px;
	padding-top: 0px;
	font-size: 1em;
	line-height: 1.2em;
}
label.advice {
	margin-bottom: 10px;
	font-size: 85%;
	color: #F00;
	line-height: 1em;
}
@media screen and (max-width: 600px) {
input[type="submit"] {
	width: 100%;
}
}
@media screen and (max-width: 490px) {
input {
	height: 35px;
	line-height: 35px;
}
label {
	font-size: 110%;
}
label.advice {
	font-size: 100%;
	color: #F00;
	line-height: 1em;
}
textarea {
	min-height: 200px;
	font-size: 1.1em;
}
input[type="submit"] {
	font-size: 130%em;
	line-height: 250%;
	height: 50px;
}
}
@media screen and (max-width: 330px) {
input {
	height: 35px;
	line-height: 35px;
	font-size: 1.1em;
}
textarea {
	font-size: 1.1em;
}
input[type="submit"] {
	font-size: 1.1em;
	line-height: 2.5em;
}
}
 @media screen and (max-width: 250px) {
input {
	font-size: 1.2em;
}
textarea {
	font-size: 1.2em;
}
input[type="submit"] {
	font-size: 1.2em;
}
}

