#menu { /* navigation area */
	position: absolute;
	width: 150px;
	margin-left:-485px; /* half of page width 970 */
	left:50%; /* half of screen width */
	padding: 0;
	padding-top:20px; 
}
#cont { /* contents outer wrapper */
	position: absolute;
	width: 800px;
	margin-left:-315px; 
	left:50%; /* half of screen width */
	padding: 0;
	padding-top:20px; 
 }
#header {
	background-color:#1C99B9;
	padding:12px 8px 12px 8px;
	margin-top:20px;
	color:white;
}
#section,
#footer {
	padding-top:20px;
}

.box {
 border:2px solid black;
 margin:5%;
 padding:12px;
 color:#000;
}
.pinkbox {
 margin:5%;
 padding:12px;
 background:#ff99c7;
 color:#000;
}
.blokbclear {
 margin:5%;
 padding:12px;
 background:#ff99c7;
 color:#000;
}
.blokbpink {
 border-left:solid 13px red;
 margin:5%;
 padding:12px;
 background:#ff99c7;
 color:#000;
}
.greybox {
 width:90%;
 margin:5%;
 padding:12px;
 background:#ccc;
 color:#000;
}
.redbox {
 width:90%;
 margin:12px;
 padding:12px;
 background:#f00;
 text-decoration:none;
 color:#fff;
}
.redbox :active{color:white;}
.redbox :link{color:white;}
.redbox :visited{color:white;}

#news   {
	position:absolute;
	top:150px;
	right:20px;
	width:12mm;
	padding:3px;
	font-family:trebuchet;
	font-size:11pt;
	color:white;
	background:red;
	z-index:7;
}
#news   :active{color:white;}
#news   :link{color:white;}
#news   :visited{color:white;}


#wide { /* wide column */
	width:440px;
	float:left;	
	margin-bottom:20px;
}
#notes { /* notes to wide column */
	width:140px;
	float:right;	
}
#left { /* left half column */
	width:400px;
	float:left;
}
#right { /* right half column */
	width:400px;
	float:right;	
}
#cola { /* wide column */
	width:600px;
	float:left;
}
#colb { /* narrow column */
	width:200px;
	float:right;	
}
#colc, #cold { /* twin column */
	width:300px;
	float:left;	
}

#cola, #colb, #colc, #cold {padding-left:10px;padding-right:12px;}


 
/*
	| liquidcorners.css; feel free to adapt the style!
	| ================================================
	| use: 4 corners with borderline outside a contentbox with class="inside"; 
	|      image  = upper half: top left corner, long borderline, top right corner
	|               under half: bottom left corner, long borderline, bottom right corner
	|      CHANGE = you have to change this for fitting to your image
	|      YCC    = You Can Change (or omit), if wanted
	|      DNC    = Do Not Change
	| credits: original by francky kleyneman, see article/tutorial in Francky's Developers Corner:
	|          http://home.tiscali.nl/developerscorner/liquidcorners/liquidcorners.htm
	| adapted by Bob Pennell: ageconcernbracknell.org.uk
	|
	| + please leave this text & links intact for a next user +
*/
.top-left, .top-right, .bottom-left, .bottom-right { 
	background-image: url('images/corners600x28.gif'); /* CHANGE: path and name of your image */
	height: 14px;       /* CHANGE: replace by the height of one of your corners (= 1/2 height of the image) */
	font-size: 2px;    /* DNC: correction IE for height of the <div>'s */
	}
.top-left, .bottom-left { 
	margin-right: 18px; /* CHANGE: replace by the width of one of your corners */
	}
.top-right, .bottom-right { 
	margin-left: 18px;  /* CHANGE: replace by the width of one of your corners */
	margin-top: -14px;  /* CHANGE: replace by the height of one of your corners */
	}
.top-right {
	background-position: 100% 0;    /* DNC: position right corner at right side, no vertical changes */
	}
.bottom-left  { 
	background-position: 0 -14px;    /* CHANGE: replace second number by negative height of one of your corners */
	}
.bottom-right { 
	background-position: 100% -14px; /* CHANGE: replace second number by negative height of one of your corners */
	}
.inside {
	background-image: url('images/mid600x28.gif');
	border-right: 1px solid #C00000;/* YCC: color & properties of the right-borderline */
	color: #000000;                 /* YCC: default text-color of the inside */
	padding-left: 28px;             /* YCC: all texts at some distance of the left border */
	padding-right:28px;             /* YCC: all texts at some distance of the right border */
	}

.notopgap    { margin-top: 0; }    /* DNC: to avoid splitting of the box */
.nobottomgap { margin-bottom: -1px; padding-bottom: 1px; } /* DNC: to avoid splitting of the box */

/*
implementation in the page:
	...
	<head>
	<link rel="stylesheet" type="text/css" href="liquidcorners.css">
	...
	</head>
	
	<body>
	...
	<div class="top-left"></div><div class="top-right"></div>
		<div class="inside">
		<p class="notopgap">Your text & other things inside</p>
		...
		<p class="nobottomgap">...</p>
		</div>
	<div class="bottom-left"></div><div class="bottom-right"></div>
	...
	</body>
*/

