body{
	width:100%;
	height:100%;
	margin: 0;
	padding: 0;
	overflow-x:hidden;
	background:#fff;
	font-family: 'Raleway', sans-serif;
}

#container 
{
	margin: 0 auto;
	margin-left:10px;
	margin-right:20px;
	max-width:100%;
	top:0px;	
	border: 0px solid #ffffff;
	position:relative;
}

img {border: none}


label {
	width:100%;
	line-height:25px;
	margin-top: 15px;
	background:transparent;	
	float:left;
	display:block;	
	font-size: 1.1em;
	color:#444;
	text-align: center;

}

p{
	font-size: 1em;
	color:#666;
}

a{
	padding-left:4px;
	font-size: 1em;
	color:#78b4be;
	font-weight: 600;
}

a:hover{
	color:#2a4d9b;
}

#privacy a{
	padding-top:5px;
	padding-left:4px;
	font-size: 1em;
	font-weight: 600;
	color:#78b4be;
}

#privacy a:hover{
	color:#2a4d9b;
}

#imAgreePanel{
	margin:0 auto;
	max-width: 400px;
	}

#imAgreePanel label{
	font-size: 1em;
	}

#radio{
	max-width: 180px;
	margin: 0 auto;
}


input[type="text"] {
 background-color:#fff;
        width:100%;
        color:#666;
	border: 2px solid #ddd;
        font-size: 1em;
        height: 30px;
        float: left;
	padding-left: 5px;
}

select {
 background-color:#fff;
        width:100%;
       color:#666;
	border: 2px solid #ddd;
        font-size: 1em;
        height: 30px;
        float: left;
	padding-left: 5px;
}

textarea.box {
 background-color:#fff;
	width:100%;
	color:#666;
	border: 2px solid #ddd;	
        font-size: 1em;
        height: 100px;
	padding-left: 5px;
}



input[type="radio"] {
cursor:pointer;
}
input[type="checkbox"] {
cursor:pointer;
}

        #container input:focus {
            color: #78b4be;
        }

 #container textarea:focus {
            color: #78b4be;
        }

 #container input[type="submit"]:focus {
	border: solid 0px #333;
            color: #ffffff;
        }

 #container input[type="reset"]:focus {
	border: solid 0px #333;
            color: #ffffff;
        }

input:focus{
 outline:none;
}

textarea:focus{
 outline:none;
}


.button-send {
	padding: 5px 10px 5px 10px;
	border: solid 0px #8c825b;
	cursor: pointer;
	display: inline-block;
	background-color: #8c825b;
	font-size: 1.2em;
	font-family: 'McLaren', cursive;
	color: #ffffff;
	margin-right: 15px;
	margin-top: 20px;
	position:relative;
transition: all .6s ease;

}

.button-send:hover {
	color: #ffffff;
	border: solid 0px #2a4d9b;
	background-color: #2a4d9b;
}

#button {
	width:95%;
}





p:not(#foo) > input[type='radio'], /* Nasconde checkbox e radio button */
p:not(#foo) > input[type='checkbox'] {
 position: absolute;
 clip: rect(1px, 1px, 1px, 1px);
}


p:not(#foo) > input[type='radio'] + label,
p:not(#foo) > input[type='checkbox'] + label {
  margin: 0;/* Azzera i margini */
 padding: 10px 0 0px 40px; /* Crea spazio con il padding sinistro per ospitare l'immagine di sfondo */
 cursor: pointer; /* Imposta il cursore */
 background: url('start.png') left center no-repeat; /* Imposta lo sfondo iniziale per checkbox e radio button */
}

p:not(#foo) > input[type='radio']:checked + label { /*Modifica lo sfondo del radio button quando viene attivato */
 background-image: url('radiobutton.png');
}

p:not(#foo) > input[type='checkbox']:checked + label { /*Modifica lo sfondo del checkbox quando viene attivato */
 background-image: url('checkbox.png');


