@charset "utf-8";
/* ----------------------------------------------
**
**	form.css
**
**	author: Van Snick Jo
**	copyrights by thinline
**
**	www.duetrelatiebemiddeling.be
**
** --------------------------------------------- */

/*
**	A.	INPUTS
** -----------------------------------------------
*/

input, textarea, select {
	color: #333;
	font-size: 11px;
	font-family: "Lucida Grande", Arial, sans-serif;
	padding: 4px;
	background-color: #fff;
	border: 1px solid #ccc;
	margin-bottom: 7px;
}

textarea {
	background-color: #fafafa;
}

/* IE 6 HACK */
html>body input.input_submit {
	padding: 5px 6px;
	border: 1px solid #BABABA;
	width: auto;
}

input.input_submit {
	color: #105d73;
	background-color: #fafafa;
	width: auto;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	font-size: 11px;
}

input.input_submit:hover {
	border: 1px solid #ccc;
	cursor: pointer;
	background-color: #2d7a90;
	color: #fff;
	border-color: #105d73;
}

input.input_submit:active {
	border-color: #888888 #D5D5D5 #D5D5D5 #888888;
	cursor: pointer;
}

input.input_search_small {
	width: 190px;
}

input.input_text_single_large {
	width: 550px;
}

input.input_text_single {
	width: 400px; 
}

input.input_text_single_small {
	width: 250px;
}

input.input_text_single_mini {
	width: 40px;
}

input.input_text_single_tiny {
	width: 20px;
}

textarea.input_text_large {
	width: 550px;
}

textarea.input_text {
	width: 286px;
}
input.error {
	border-color: red;
}
select.error {
	border-color: red;
}
textarea.error {
	border-color: red;
}
input.succes {
	border-color: #a0cd43;
}
textarea.succes {
	border-color: #a0cd43;
}
input.input_text_disabled {
	color: #555;
	background-image: none;
	background-color: #f3f3f3;
	border: 1px solid #ddd;
	border-left-color: #ddd;
	border-top-color: #ccc;
}

.errormessage{
	font-style: italic;
	color: #BBBBBB;
	
}
input.input_radio {
	border: none;
	background-image: none;
}

input.input_checkbox {
	border: none;
	background-image: none;
	margin-right: 5px;
	margin-bottom: 2px;
}


/* MAKING SPANS LOOKING LIKE BUTTONS */
span.btn_playtitle a,
span.btn_playtitle a:link,
span.btn_playtitle a:visited {
	width: auto;
	color: #105d73;
	text-decoration: none;
	padding: 3px 7px 3px 25px;
	background-color: #eef3f5;
	border: 1px solid #7caab7;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background-image: url(assets/playbutton_light.png);
	background-position: left center;
	background-repeat: no-repeat;
}

span.btn_playtitle a:hover,
span.btn_playtitle a:active {
	border-color: #105d73;
	color: #062832;
}

span.btn_vote {
	display: block;
	text-align: right;
}

span.btn_vote a,
span.btn_vote a:link,
span.btn_vote a:active,
span.btn_vote a:visited {
	width: auto;
	color: #105d73;
	text-decoration: none;
	padding: 5px;
	background-color: #fff;
	border: 1px solid #7caab7;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

span.btn_vote a:hover {
	color: #fff;
	background-color: #105d73;
	border: 1px solid #105d73;
}


