.err {
font-family: "BodyFont"; 
font-size : 18px;
color: red;
line-height: 100%;
}

.TextBoxStyling {
    font-family: "BodyFont"; 
    width: 75%;
    height: 40px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 0px;
    border-radius: 10px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #000000;
    font-size: 18pt;
    line-height: 1.0;
    background: #ffffff; /* For browsers that do not support gradients */
    background: linear-gradient(rgba(255, 255, 255, 1), rgba(240, 240, 240, 1)); /* Standard syntax */
}

@media only screen and (max-width: 640px) {
.TextFieldStyling {
width: 99%;
}
}

.TextAreaStyling {
    font-family: "BodyFont"; 
    width: 75%;
    height: 300px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 0px;
    border-radius: 10px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #000000;
    font-size: 18pt;
    line-height: 1.0;
    background: #ffffff; /* For browsers that do not support gradients */
    background: linear-gradient(rgba(255, 255, 255, 1), rgba(240, 240, 240, 1)); /* Standard syntax */
}
@media only screen and (max-width: 640px) {
.TextAreaStyling {
width: 99%;
}
}

.CaptchaStyling {
    font-family: "BodyFont"; 
    width: 200px;
    height: 40px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 0px;
    border-radius: 10px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #000000;
    font-size: 18pt;
    line-height: 1.0;
    background: #ffffff; /* For browsers that do not support gradients */
    background: linear-gradient(rgba(255, 255, 255, 1), rgba(240, 240, 240, 1)); /* Standard syntax */
}


.FormButtonStyling {
	-moz-box-shadow:inset 0px 1px 2px 0px #b8cbe3;
	-webkit-box-shadow:inset 0px 1px 2px 0px #b8cbe3;
	box-shadow:inset 0px 1px 2px 0px #b8cbe3;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #6c99c7), color-stop(1, #244985));
	background:-moz-linear-gradient(top, #6c99c7 5%, #244985 100%);
	background:-webkit-linear-gradient(top, #6c99c7 5%, #244985 100%);
	background:-o-linear-gradient(top, #6c99c7 5%, #244985 100%);
	background:-ms-linear-gradient(top, #6c99c7 5%, #244985 100%);
	background:linear-gradient(to bottom, #6c99c7 5%, #244985 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6c99c7', endColorstr='#244985',GradientType=0);
	background-color:#6c99c7;
	-moz-border-radius:12px;
	-webkit-border-radius:12px;
	border-radius:12px;
	border:1px solid #565f6b;
	width: 180px;
	margin-top: 10px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:BodyFont;
	font-size:20px;
	padding:10px 15px;
	text-decoration:none;
	text-shadow:0px 0px 6px #000000;
	
	transition: background .15s ease-in-out;
   -moz-transition: background .15s ease-in-out;
   -webkit-transition: background .15s ease-in-out;
	
}
.FormButtonStyling:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #244985), color-stop(1, #6c99c7));
	background:-moz-linear-gradient(top, #244985 5%, #6c99c7 100%);
	background:-webkit-linear-gradient(top, #244985 5%, #6c99c7 100%);
	background:-o-linear-gradient(top, #244985 5%, #6c99c7 100%);
	background:-ms-linear-gradient(top, #244985 5%, #6c99c7 100%);
	background:linear-gradient(to bottom, #244985 5%, #6c99c7 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#244985', endColorstr='#6c99c7',GradientType=0);
	background-color:#244985;
	
	transition: background .15s ease-in-out;
   -moz-transition: background .15s ease-in-out;
   -webkit-transition: background .15s ease-in-out;
}
.FormButtonStyling:active {
	position:relative;
	top:1px;
}