/*your custom style goes in this file*/
/*if you're overriding style blocks from genstyle.css, you only need to include the attributes you're overriding, not the whole block*/
/* normal: most regular body text */
.normal {
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 12px;
}

/* smfieldname: small text used in conjunction with .fieldname style text */
.smfieldname {
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 10px;
	color: white;
}

/* fieldname: regular text within column or row title sections */
.fieldname {
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 12px;
	color: white;
}

/* header: heading text */
.header {
	/*next line added in 6.1.0*/
	margin-top: 0px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; 
	font-size: 21px;
/*	color: #333366;*/
	color: #000000;	/* zwart */
}

/* whiteheader: heading text used on dark backgrounds (usually fieldnameback) */
.whiteheader {
	font-family: Arial, Helvetica, sans-serif; 
	color: #FFFFFF;
	
}

/* subhead: subheading text */
.subhead {
	/*next line added in 6.1.0*/
	margin-top: 0px;
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 16px;
}

/* body: describes page background color and all non-table text not governed by any other style */
BODY {
//	background-image:url(file:///D|/WEBSITE/Website%20v4/gb_photos/BackGround.jpg);
	background-image:url(../gb_photos/BackGround.png);
	background-position: center;
	background-color : #FFFFFF;
	color : #000000;
	font-family : Arial, Helvetica, sans-serif;
	font-size: 14px;
}

/* link: normal links, active: links in use */
A:LINK, A:ACTIVE {
/*	color: #333399;*/
/*	color: #FFFF33;	 geel */
	color: #CC0047;	/* roodachtig */
}

/* visited: previously visited links */
A:VISITED {
/*	color: #666633;*/
/*	color: #FF3333; rood */
/*	color: #8B5C29;  blauw */
	color: #009900;	 /*groen*/
}

/* fieldnameback: background color for column and row title sections */
.fieldnameback {
/*	background-color: #333366;*/
	background-color: #885C29; /* bruin */
	
	/*these 2 lines added in 5.0*/
	border-right: 1px solid #777; 
	border-bottom: 1px solid #777;
}

/* databack: background color for data areas */
.databack {
/*	background-color: #e0e0f7;  licht blauw  */
	background-color: #E4BC96; /* lichtbruin */
	/*these 2 lines added in 5.0*/
	border-right: 1px solid #bbb; 
	border-bottom: 1px solid #bbb;
}

