<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* multi-interface form controls framework
created by nick heer (nickheer.com)
THIS IS VERSION 0.8, LAST MODIFIED MARCH 13 2012.
*/

/*base values*/
form{
	display: block;
	width: 640px;
	margin-left: auto;
	margin-right: auto;
}

form section{
	height: auto;
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-left: 140px;
}

label{
	display: block;
	width: 120px;
	float: left;
	text-align: right;
	margin-left: -140px;
	margin-right: 20px;
	line-height: 30px;
	font-size: 14px;
	font-weight: bold;
}

input{
	margin: 10px;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	-webkit-appearance:none; /*disables inner shadows on iOS*/
}

form span{
	width: 100%;
	height: 30px;
	display: block;
	font-size: 14px;
}

input[type="text"], input[type="password"]{
	width: 240px;
	height: 20px;
	margin: 0px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	outline: none;
	padding: 5px;
	font-size: 14px;
}

input[type="radio"]{
	width: 16px;
	height: 16px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	margin: 2px;
	position: relative;
	top: 4px;
}

input[type="checkbox"]{
	width: 16px;
	height: 16px;
	margin: 2px;
	position: relative;
	top: 4px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

select{
	-webkit-appearance:none;
	width: 60px;
	height: 30px;
	padding: 5px;
	display: block;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: bold;
}

select option{
	text-align: right;
}

input[type="submit"], input[type="reset"], input[type="button"]{
	width: 120px;
	height: 40px;
	margin: 10px;
	border-radius: 5px;
	outline: none;
	font-size: 18px;
	font-weight: bold;
}

input[type="submit"]{
	background: -moz-linear-gradient(top, #c6e87f 0%, #8fc400 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6e87f), color-stop(100%,#8fc400));
	background: -webkit-linear-gradient(top, #c6e87f 0%,#8fc400 100%);
	border: 1px solid #8fc400;
	color: #fff;
	text-shadow: 0px -1px 0px #8fc400;
}

input[type="submit"]:active{
	background: -moz-linear-gradient(top, #8fc400 0%, #c6e87f 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8fc400), color-stop(100%,#c6e87f));
	background: -webkit-linear-gradient(top, #8fc400 0%,#c6e87f 100%);
}

input[type="reset"]{
	background: -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff3019), color-stop(100%,#cf0404));
	background: -webkit-linear-gradient(top, #ff3019 0%,#cf0404 100%);
	border: 1px solid #cf0404;
	color: #fff;
	text-shadow: 0px -1px 0px #cf0404;
}

input[type="reset"]:active{
	background: -moz-linear-gradient(top, #cf0404 0%, #ff3019 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cf0404), color-stop(100%,#ff3019));
	background: -webkit-linear-gradient(top, #cf0404 0%,#ff3019 100%);
}


/*dark form*/

form.dark{
	color: #222;
}

form.dark input[type="text"], form.dark input[type="password"]{
	background: rgba(255,255,255,0.9);
	border: 1px solid #aaa;
	color: #333;
}

form.dark input[type="radio"]{
	border: 1px solid #aaa;
	background: url('dots.png') 0px 0px no-repeat;
}

form.dark input[type="radio"]:checked{
	background: url('dots.png') 0px -16px no-repeat;
}

form.dark input[type="checkbox"]{
	border: 1px solid #aaa;
	background: url('tick.png') 0px 0px no-repeat;
}

form.dark input[type="checkbox"]:checked{
	background: url('tick.png') 0px -16px no-repeat;
}

form.dark select{
	border: 1px solid #aaa;
	background: url('arrows-dk.png') no-repeat 45px 9px rgba(255,255,255,0.9);
}

form.dark input[type="button"]{
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(47%,rgba(246,246,246,1)), color-stop(100%,rgba(237,237,237,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	border: 1px solid #4d4d4d;
}

form.dark input[type="button"]:active{
	background: -moz-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 53%, rgba(255,255,255,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(237,237,237,1)), color-stop(53%,rgba(246,246,246,1)), color-stop(100%,rgba(255,255,255,1)));
	background: -webkit-linear-gradient(top, rgba(237,237,237,1) 0%,rgba(246,246,246,1) 53%,rgba(255,255,255,1) 100%);
}

/*light form*/

form.light{
	color: #fff;
}

form.light input[type="text"], form.light input[type="password"]{
	background: rgba(255,255,255,0.6);
	border: 1px solid #fff;
	color: #333;
}

form.light input[type="radio"]{
	border: 1px solid #fff;
	background: url('dots.png') -16px 0px no-repeat;
}

form.light input[type="radio"]:checked{
	background: url('dots.png') -16px -16px no-repeat;
}

form.light input[type="checkbox"]{
	border: 1px solid #fff;
	background: url('tick.png') -16px 0px no-repeat;
}

form.light input[type="checkbox"]:checked{
	background: url('tick.png') -16px -16px no-repeat;
}

form.light select{
	color: #4d4d4d;
	border: 1px solid #fff;
	background: url('arrows-lt.png') no-repeat 45px 9px rgba(255,255,255,0.6);
}

form.light input[type="button"]{
	background: -moz-linear-gradient(top, rgba(255,255,255,0.9) 0%, rgba(246,246,246,0.7) 47%, rgba(237,237,237,0.7) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.9)), color-stop(47%,rgba(246,246,246,0.7)), color-stop(100%,rgba(237,237,237,0.7)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,0.9) 0%,rgba(246,246,246,0.7) 47%,rgba(237,237,237,0.7) 100%);
	border: 1px solid #fff;
}

form.light input[type="button"]:active{
	background: -moz-linear-gradient(top, rgba(237,237,237,0.7) 0%, rgba(246,246,246,0.7) 53%, rgba(255,255,255,0.9) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(237,237,237,0.7)), color-stop(53%,rgba(246,246,246,0.7)), color-stop(100%,rgba(255,255,255,0.9)));
	background: -webkit-linear-gradient(top, rgba(237,237,237,0.7) 0%,rgba(246,246,246,0.7) 53%,rgba(255,255,255,0.9) 100%);
}</pre></body></html>