/* 

	SearchField	
	by Alen Grakalic, brought to you by cssglobe.com
	
*/

/* default (inactive field) */
.sf_inactive{
	border:2px #3d91a5 solid;
	background:#f0f8ff; /* #3d91a5*/
	color:#b4d3db;
}
/* on focus (when field is clicked on)  */
.sf_active{
	border:2px #8BB544 solid;
	background:#fff;
	color:#333;
}
/* with text (when field is inactive but contains user's input)  */
.sf_text{
	border:2px #3c90a5 solid;
	background:#fff;
	color:#888;
}

/* suggestions box */
/* js code generates unordered list */
.sf_suggestion{
	position:relative;
	z-index:10;
	}
.sf_suggestion ul{
	position:absolute;
	margin:0;
	padding:0;
	background:#86BAC7; /* achtergrond suggesties #86BAC7 */
	top:0;
	left:0;
	border:1px #8BB544 solid;
	font-size: 10px;
	font-family: verdana, sans-serif;
}
.sf_suggestion li{
	margin:0;
	padding:0;
	list-style:none;
}
.sf_suggestion li a{
	display:block;
	text-indent:2px;
	color:#fff;
}
.sf_suggestion li.selected a{
	background:#3D91A5; /* achtergrond bij keuze suggesties #3D91A5 */
}




/*

body {
	margin:0;
	padding:0;
	background:#006e89 url(back.gif) repeat-x;
	font:90% Arial, Helvetica, sans-serif;
	color:#555;
	line-height:180%;
	text-align:left;
}

a {
	text-decoration:none;
	color:#8BB544;
}
a:hover {
	text-decoration:none;
	color:#999;
}
h1 {
	font-size:220%;
	margin:0 20px;
	padding-top:1em;
	line-height:1em;
	color:#8bb544;
	font-weight:normal;
}
h2 {
	font-size:170%;
	color:#8bb544;
	font-weight:normal;
}

p.info {
	margin:0 20px;
	font-size:110%;
	color:#999;
}
p.floater{
	margin:0;
	position:absolute;
	top:2em;
	right:20px;
	float:left;
	line-height:2em;
	height:2em;
	font-size:120%;
	font-weight:bold;
}
p.floater a{
	float:left;
	line-height:2em;
	height:2em;
	padding:0 20px;
	background:#8bb544;
	color:#fff;
}
p.floater a:hover{
	background:#4a98af;
	color:#fff;
}
code {
	font-size:110%;
}
pre {
	margin:1em 0;
	padding:1em 20px;
	line-height:150%;
	background:#e5f1f4;
	border-left:1px solid #a4d5e4;
}
#container {	
	margin:2em;
	width:650px;
	background:#fff;
	padding-bottom:20px;
	text-align:left;
	position:relative;
}
#content {
	margin:0 20px;
}

p.more{
	font-size:120%;
}
p.more a{
	font-weight:bold;
}
p.sig {	
	padding:0 2em;
	text-align:left;
	color:#fff;
}
form{
	margin:1em 0;
	padding:0;
	width:368px;
	height:185px;
	background:url(form_back.gif) no-repeat 0 0;
}
form p{
	margin:0 40px;
}
form input{
	margin-top:80px;	
	width:200px;
	border:none;
	padding:3px;
	font-size:110%;
	vertical-align:middle;
}

form button{
	margin-top:80px;
	margin-left:10px;
	width:53px;
	height:30px;
	border:none;
	text-indent:-8000px;
	overflow:hidden;
	background:url(button.gif) no-repeat 0 0;
	cursor:pointer;
	vertical-align:middle;
}

*/
