.red { 
	color:#FF0000;
}
.required { 
	color:#FF0000;
	font-size:22px;
}

input, textarea, select {
    padding: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:18px;
}

	.font-times {
		font-family:"Times New Roman", Times, serif;
	}
	.inputtitle {
		font-size:22px;
		font-weight:bold;
		padding:20px;
	}


	.button {
		cursor:pointer;
		background: #00AFD8;
		color: #fff;
		border: 1px solid #eee;
		border-radius: 25px; -moz-border-radius: 25px; -webkit-border-radius: 25px;
		/*box-shadow: 5px 5px 5px #eee;*/
		text-shadow: none;
		
		width:50%;
		padding: 10px;
		padding-left:20px;
		padding-right:20px;
		font-size:18px;
		font-family: Arial, Helvetica, sans-serif;	
	}
	
	.button:hover {
		cursor:pointer;
		background: #00C0F0;
		color: #fff;
		border: 1px solid #eee;
		border-radius: 25px; -moz-border-radius: 25px; -webkit-border-radius: 25px;
		/*box-shadow: 5px 5px 5px #eee;*/
		text-shadow: none;
	}



.buttoncancel {
	cursor:pointer;
	background: #494E51;
	color: #fff;
	border: 1px solid #eee;
	border-radius: 25px; -moz-border-radius: 25px; -webkit-border-radius: 25px;
	/*box-shadow: 5px 5px 5px #eee;*/
	text-shadow: none;
	
	/*width:50%;*/
    padding: 10px;
	padding-left:20px;
	padding-right:20px;
	font-size:18px;
	font-family: Arial, Helvetica, sans-serif;	
}

.buttoncancel:hover {
	cursor:pointer;
	background: #6F7579;
	color: #fff;
	border: 1px solid #eee;
	border-radius: 25px; -moz-border-radius: 25px; -webkit-border-radius: 25px;
	/*box-shadow: 5px 5px 5px #eee;*/
	text-shadow: none;
}





/* -------------------------------------- FORM container -------------------------------------- */
.containerForm {
  display: block;
  position: absolute; /*relative*/
  padding-left: 35px;
  /*margin-bottom: 12px;*/
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  
  width:90px;
  margin-top:0px;
  margin-left:26px;
}

/* Hide the browser's default checkbox */
.containerForm input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border:2px solid #7A6139; /* green=64A03C */
}

/* On mouse-over, add a grey background color */
.containerForm:hover input ~ .checkmark {
  background-color: #2196F3;
}

/* When the checkbox is checked, add a blue background */
.containerForm input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.containerForm input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.containerForm .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* -------------------------------------- FORM container -------------------------------------- */


.input_area {
	border-radius: 15px; -moz-border-radius: 15px; -webkit-border-radius: 15px;
}

