/* GLOBAL RESET */

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;}
abbr,acronym{border:0;} 



html,
body {
	font-family: Ubuntu;
	font-weight: 400;
	background-color: transparent;
	color: rgb(0,0,0);
	font-size: 14px;
	line-height: 17px;
}

h1, h2, h3, h4, h5 {
	font-family: Ubuntu;
	font-weight: 700;
	color: #8b0304;
}

strong {
	font-weight: 700;
}


/* PAGE CONTENT */

h2 {
	font-size: 20px;
	line-height: 24px;
	margin: 50px 0 10px 0;
}

h3 {
	font-size: 18px;
	line-height: 21px;
	margin: 50px 0 10px 0;
}

.IntroText  {
	font-size: 18px;
	line-height: 21px;
	margin: 0 0 10px 0;
}



.BulletList {
	list-style-type: disc;
	list-style-position: outside;
	margin: 0 0 0 10px;
}

.BulletList li {
	margin-bottom: 10px;
}

.StandFirst {

}



.Clear {
	clear: both;
}



input,
textarea {
	min-height: 25px;
	line-height: 25px;
    margin: 0 5px 15px 0;
    padding-left: 5px;
    font-size: 16px;
    font-family: courier, serif;
    vertical-align: middle;
    border: 2px solid #005f27;
    border-radius: 3px;
    background: #f8f8f8;    
    cursor: pointer;
}

.btn {
    background: #005f27;
    color: white;
    font-family: Ubuntu;
    font-weight: 700;
    height: 35px;
    line-height: 35px;
    text-transform: uppercase;
}

.btn:disabled,
input.btn[disabled]{
  -moz-opacity: 0.1;
  -webkit-opacity: 0.1;
  opacity: 0.1;
}



input[type="checkbox"] {
    opacity: 0;
    margin: 0;
}

input[type="checkbox"] + label {
min-height: 35px;
line-height: 25px;
position: relative;
margin-left: -15px;
padding: 5px 0 0 35px;
}

input[type="checkbox"] + label span {
    position: absolute;
    left: 0px;
	top: 0px;
	width: 25px;
	height: 25px;
    vertical-align: middle;
    border: 2px solid #005f27;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #f8f8f8;
    cursor: pointer;
    display: inline-block;
}

input[type="checkbox"] + label span:before {
    position: absolute;
    left: 2px;
    top: 2px;
    font-size: 30px;
    line-height: 20px;
    content: "";
    color: #ffcc00;
    text-shadow: 1px 1px 1px black;
}

input[type="checkbox"]:checked + label span:before {
    content: "\2713";
    color: #ffcc00;
    text-shadow: 1px 1px 1px black;
}


.Question {
    font-weight: 700;
	color: #111;
    margin: 30px 0 10px 0;
}

.Roundels {
    max-width: 420px;
}

.Roundel {
	position: relative;
	width: 106px;
	height: 200px;
	display: inline-block;
	margin: 0 30px 0 0;
	text-align: center;
	color: #000;
}
		
.Roundel img {
	position: absolute;
	width: 100px;
	height: 100px;
	left: 0;
	top: 0;
	border: 3px solid #005f27;
	-moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
	margin: 0;
}

.Roundel input[type="checkbox"] {
    display: block;
    opacity: 0;
}

.Roundel input[type="checkbox"] + label {
    position: absolute;
    left: 0;
	top: 0;
    width: 106px;
    height: 200px;
	text-align: center;
	min-height: 0px;
    margin: 0;
    line-height: 15px;
    padding: 115px 0 0 0;
}

.Roundel input[type="checkbox"] + label span {
    position: absolute;
    left: 0;
	top: 0;
    width: 106px;
    height: 200px;
	text-align: center;
	min-height: 0px;
    margin: 0;
    line-height: 15px;
    border: none;
    background: url(../assets_interface/roundel-checked.png) center 30px no-repeat; 
	background-size: 0 0;
    cursor: pointer;
    vertical-align: top;
	-webkit-transition: background 500ms ease-out 0.1s;
    -moz-transition: background 500ms ease-out 0.12s;
    -o-transition: background 500ms ease-out 0.1s;
    transition: background 500ms ease-out 0.1s;
    z-index: 9999999;
}

.Roundel  input[type="checkbox"]:checked + label span {
    background-size: 50px 50px;
    background: url(../assets_interface/roundel-checked.png) center 30px no-repeat;
	-webkit-transition: background 500ms ease-out 0.1s;
    -moz-transition: background 500ms ease-out 0.1s;
    -o-transition: background 500ms ease-out 0.1s;
    transition: background 500ms ease-out 0.1s;
}

.Roundel input[type="checkbox"] + label span:before,
.Roundel input[type="checkbox"]:checked + label span:before {
    display: none;
}