html, body {
	width: 100%;
	height: 100%;
	background-color: #fff;
	font-family: Helvetica, Arial, sans-serif;
	color: #000;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
}

a { text-decoration: underline; } a:hover {text-decoration: underline;}

a:focus, a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    border: 0;
    outline : 0;
}

.bx-auth-reg {
	font-family: Helvetica, Arial, sans-serif;
	color: #000;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
}

.bx-auth-reg input[type=text], .bx-auth-reg input[type=password], .bx-auth-reg input[type=tel] {
	width: 270px;
	height: 30px;
	padding-left: 10px;
	font-family: Helvetica, Arial, sans-serif;
	color: #000;
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	border: 1px #666 solid;
	background-color: #fff;
	margin-top: 5px;
	margin-bottom: 15px;
}

.bx-auth-reg label {
	color: rgba(255, 255, 255, 0.6);
	margin-left: 5px;
}

.bx-auth-reg a {
	color: rgba(255, 255, 255, 0.6);
} .bx-auth a:hover { text-decoration: none; }

.bx-auth-reg td {
	padding-left: 20px;
	font-family: Helvetica, Arial, sans-serif;
	color: #000;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
}

/* button
---------------------------------------------- */
.button {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 0 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	text-transform: none;
	font-size: 26px;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	padding: 0.5em 2em 0.55em;
	text-shadow: 0 1px 0px rgba(0,0,0,.5);
	-webkit-border-radius: .1em;
	-moz-border-radius: .1em;
	border-radius: .1em;
/*
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
*/
}
.button:hover {
	text-decoration: none;
}
.button:active {
	position: relative;
	top: 1px;
}

/* green */
.green {
	color: #fff;
	border: solid 1px #91BD4E;
	border-bottom: solid 1px #71A334;
	/* background: #91BD4E; */
	background: -webkit-gradient(linear, left top, left bottom, from(#91BD4E), to(#71A334));
	background: -moz-linear-gradient(top,  #91BD4E,  #71A334);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#91BD4E', endColorstr='#71A334');
}
.green:hover {
	border: solid 1px #71A334;
	border-bottom: solid 1px #91BD4E;
	background: -webkit-gradient(linear, left top, left bottom, from(#71A334), to(#91BD4E));
	background: -moz-linear-gradient(top,  #71A334,  #91BD4E);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#71A334', endColorstr='#91BD4E');
}
.green:active {
	border: solid 1px #71A334;
	border-bottom: solid 1px #91BD4E;
	background: -webkit-gradient(linear, left top, left bottom, from(#71A334), to(#91BD4E));
	background: -moz-linear-gradient(top,  #71A334,  #91BD4E);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#71A334', endColorstr='#91BD4E');
}

.green:disabled {
	color: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#d4d4d4), to(#b1b1b1));
	background: -moz-linear-gradient(top,  #d4d4d4,  #b1b1b1);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#d4d4d4', endColorstr='#b1b1b1');
	border: none;
}