body{
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size:14px;
	font-weight:600;
	padding:0 10px;
}
a{
	color:#432b84;
}
.content{
	margin:auto;
	max-width:600px;
	width:100%;
}
.error{
	color:#aa0000;
}
input[type=text]{
	border:1px solid #ccc;
	padding:5px 20px;
	margin:5px 0 20px 0;
	width:100%;
}
input[type=radio]{
	cursor:pointer;
	margin:4px 10px 0 0;;
	float:left;
	
}
input.error{
	border:1px solid #aa0000;
}
.error, .error *{
	color:#aa0000 !important;
}
.form-submit{
	color:#fff;
	background:#666;
	padding:10px 20px;
	text-decoration:none;
}
.form-submit:hover{
	color:#fff;
	background:#432b84;
	padding:10px 20px;
	text-decoration:none;
}
.ans{
	margin:0 0 5px 0;
}
.ans label{
	cursor:pointer;
	width:90%;
	display:inline-block;
}
.question .qtitle{
	font-weight:bold;
	margin:30px 0 10px 0;
	color:#432b84;
}











/* SQUARED FOUR / Checkbox styler */
.squaredFour input[type=checkbox] {
	display:none;
}
.squaredFour {
    float: left;
    margin: -2px 10px 0 0;
    position: relative;
    width: 25px;
    height: 25px;
}
.squaredFour label {
	max-width:1000%;
	cursor: pointer;
	position: absolute;
	width: 25px;
	height: 25px;
	padding:0;
	top: 0;
	border-radius: 4px;

	-webkit-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
	-moz-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
	box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
	background: #fcfff4;

	background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	background: -moz-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	background: -o-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	background: -ms-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfff4', endColorstr='#b3bead',GradientType=0 );
}

.squaredFour label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	content: '';
	position: absolute;
    width: 11px;
    height: 8px;
	background: transparent;
	top: 7px;
	left: 7px;
	border: 3px solid #333;
	border-top: none;
	border-right: none;

	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.squaredFour label:hover::after {
	/*
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
	filter: alpha(opacity=30);
	opacity: 0.5;
	*/
}

.squaredFour input[type=checkbox]:checked + label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}


/* SQUARED FOUR / Radiobutton styler */
.squaredFour.radio input[type=radio] {
	display:none;
}
.squaredFour.radio {
    float: none;
    margin: 0 10px 0 0;
    position: relative;
    width: 100%;
    height:auto;
    padding: 0 0 0 35px;
}
.squaredFour.radio label {
	cursor: pointer;
	position: absolute;
	width: 20px;
	height: 20px;
	padding:0;
	left: 0px;
	top: 0px;
	
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	
	-webkit-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,1);
	-moz-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,1);
	box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,1);
	
	background: #fcfff4;
	background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	background: -moz-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	background: -o-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	background: -ms-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfff4', endColorstr='#b3bead',GradientType=0 );
}

.squaredFour.radio label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	filter: alpha(opacity=20);
	opacity: 0.2;
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	background: #4682b4;
	background: -webkit-linear-gradient(top, #44759b 0%, #4682b4 100%);
	background: -moz-linear-gradient(top, #44759b 0%, #4682b4 100%);
	background: -o-linear-gradient(top, #44759b 0%, #4682b4 100%);
	background: -ms-linear-gradient(top, #44759b 0%, #4682b4 100%);
	background: linear-gradient(top, #44759b 0%, #4682b4 100%);

	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	border: 3px solid #2d6586;
	top: 6px;
	left: 6px;

	-webkit-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,1);
	-moz-box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,1);
	box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,1);
}

.squaredFour.radio label:hover::after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.squaredFour.radio input[type=radio]:checked + label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}
.squaredFour.inline{
    width: auto;
    display: inline;
}