@charset "UTF-8";
/* CSS Document */


/* FORMS
----------------------------------------------------------------- */
form {
	display:block;
	width:100%;
	margin: 0 auto;
	}
	
form td {
	padding: 0.2em 0;
	}
	
label {
	display: inline-block;
	margin:0.4em 0 0em 0;
	line-height:1em;
	}
	
label.error {
	color: #be3a3a;
	font-weight: bold;
}

p.error {
	color: #be3a3a;
	font-weight: bold;
}
	
form .col1, form .col2, form .col3, form .col1-2, form .col2-3, form .col2-left, form .col2-right, form .col1-middle {
	margin-bottom:0;
}

form .colxright {
	text-align: right;
}


div.styled, .ie7 div.styled select , input[type="text"], input[type="date"], textarea {
	border: 1px solid #FFFFFF;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background-color: #CEC7A0;
	color: #FFFFFF;
	font-size: 0.7em;
	}


	
	
/* CHECKBOX AND RADIO BUTTONS
----------------------------------------------------------------- */	
input[type="radio"],
input[type="checkbox"] {
    position: absolute; left: -999em;
}

input[type="radio"] + label:before,
input[type="checkbox"] + label:before {
    content:''; /* this is generated content*/ 
    display: inline-block; /* make this fake elements inline block */
    position:relative; /* we need to move the element without effecting the doc flow */
    top:0.2em;  /* we're moving it slightly down for alignment purposes */
    left:0; /* we're moving it slightly to the left */
    width:20px; height:20px; /* the width and height of the fake elements */
    background-image:url(../images/radio_check.png); /* the background image sprite */
	margin: 0 0.3em 0 0;
	cursor: pointer;
}
	
input[type="radio"] + label:before {
	background-position: -30px 0px;
	}
	
input[type="checkbox"] + label:before {
	background-position: 0 0px;
	}

input[type="radio"]:checked + label:before { background-position: -30px -30px;}
input[type="checkbox"]:checked + label:before { background-position: 0px -30px;}

.ie8 label:before { display:none !important; content:none; /*this removes the fake content*/ }
.ie8 input[type="checkbox"],
.ie8 input[type="radio"],
.ie7 input[type="checkbox"],
.ie7 input[type="radio"]{ position: static; left:0; /* this puts the inputs back in their place */
}




/* SELECT
----------------------------------------------------------------- */


div.styled {
    overflow:hidden; /* this hides the select's drop button */
    padding:0; 
    margin:0;
    background: #CEC7A0 url(../img/select.png) no-repeat top right;
    /* this is the new drop button, in image form */
	height: 30px;
    width:98%;
}

div.styled select {
    width:115% /* this percentage effectively extends the drop down button out of view */;
    background-color:transparent /* this hides the select's background making any styling visible from the div */;
    background-image:none;
    -webkit-appearance: none /* this is required for Webkit browsers */;
    border:none;
    box-shadow:none;
    padding:5px 0; /* padding should be added to the select, not the div */
	cursor: pointer;
}

option {
	padding: 0.5em 0;
	}

.ie7 div.styled {border:none; }
.ie7 div.styled select {
    width:100%;
    padding:0;
}


/* INPUTS 
----------------------------------------------------------------- */
input[type="text"], 
input[type="date"] {
	height: 30px;
	width: 94%;
	padding: 0 2%;
	-webkit-appearance: none;
	}
	
textarea {
	height:10em;
	width: 94%;
	padding:2%;
	}



/* BUTTON 
----------------------------------------------------------------- */

input[type="submit"] {
	display: block;
	border: none;
	color: #fff;
	zoom: 1;
	z-index: 1;
	position: relative;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	behavior: url(../css/ie-css3.htc); /* This lets IE know to call the script on all elements which get the 'round' class */
	cursor: pointer;
	font-size: 1em;
	text-align: center;
	width: 96%;
	-webkit-appearance: none;
}

input[type="submit"]:hover {
	background-color: #9D9372;
	color: #fff;
	
}

.senden1 {
	padding: 0.2em 0em 0.2em 0em;
	background-color: #CEC7A0;
}

.senden2 {
	padding: 0.2em 0.4em 0.2em 0.4em;
	background-color: #9D9372;
}


/* ERRORS 
----------------------------------------------------------------- */
@media screen and (max-width:700px) {
	

form .colxright {
	text-align: left;
}	

input[type="submit"] {
	width: auto;
	padding: 0.3em 3em 0.3em 3em;
	margin-top: 2em;
}

.senden2 {
	margin-top: 2em;
	width: 20%;
}

.textcont {
	padding-top: 0.6em;
}

	}