@charset "ISO-8859-1";

input[type=checkbox] {
	display: none;
}

input[type=checkbox]+label {
	background-image: url('../images/check1a.png');
	background-size: 25px;
	background-repeat: no-repeat;
	height: 26px;
	width: 26px;
	display: inline-block;
	padding: 0 0 0 0px;
}

input[type=checkbox]:checked+label {
	background-image: url('../images/check1b.png');
	background-size: 25px;
	background-repeat: no-repeat;
	height: 26px;
	width: 26px;
	display: inline-block;
	padding: 0 0 0 0px;
}

input[type=radio] {
	display: none;
}

input[type=radio]+label {
	background-image: url('../images/check1a.png');
	background-size: 25px;
	background-repeat: no-repeat;
	height: 26px;
	width: 26px;
	display: inline-block;
	padding: 0 0 0 0px;
}

input[type=radio]:checked+label {
	background-image: url('../images/check1b.png');
	background-size: 25px;
	background-repeat: no-repeat;
	height: 26px;
	width: 26px;
	display: inline-block;
	padding: 0 0 0 0px;
}

.bigInputBox
	{
	border: 1px solid #313131;
	border-radius: 3px;
	padding: 7px 14px;
	outline: none;
	font-family: 'Khula', sans-serif;	
	font-size: 16px;
	color: #666;
	/* margin: 0; */
	width: 70%;
	max-width: 100%;
	/* display: block;  */
	/* margin-bottom: 20px; */
	background: #fff;
}

#label{
	font-size: 10px;
}


#message {
	color: lime;
	font-weight: bold;
	display: inline-block;
	margin: 10px;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid lime;
}

#error {
	color: red;
	font-weight: bold;
	display: inline-block;
	margin: 10px;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid red;
}