html, body {
	margin: 0;
	padding: 0;
}

#pagewidth{ 
	width: 100%;                       /* 100% => a little too wide :-( */
	min-width: 500px; 
}

#header, #header_private { 
	width: 100%; 
	margin: 0 0 2px 0;
	padding-top: 5px;
	padding-bottom: 2px;
}

#header {
	background-color: #3464C5;
}

#header_private {
	background-color: white;
}

#selection {
	width: 99%;
	background-color: #DDDDDD;
	padding: 5px;
	margin: 0 0 2px 0;
}

#menu {
	width: 175px; 
	float: left;
	position: relative; 
	margin-left: -175px;
	margin-right: 1px;
	background-color: white;
}

#outer {
	border: solid white 0px; 
	/*/*/ border-left-width : 180px;  /* menu column width. NN4 hack to hide borders */ 
	border-left-color: white;         /* menu column colour */ 
	border-left-style: solid; 
	background-color: white;          /* center column colour */ 
	width: auto;
}

#footer {
	width: 100%; 
	background-color: white; 
	border-top: 2px solid #3464C5;
}
 
#inner{ margin: 0; width: 100%; }
 
#main {
	float: left;
	width: 100%;
	position: relative;
	margin: 0 -10px 0 3px;
}

.clr { clear: both; }

.content { padding: 5px; } /* padding for content */

#header .content { padding-bottom: 0; } /* padding bottom 0 to remove space in IE5 Mac */
#main .content { padding-right: 30px; } /* avoid problem of right margin when printing */

/* printer styles */

@media print {
	/* hide the left column when printing */
	#menu { display: none; }
	#selection { display: none; }
	#outer { border-left: 0; }
	a { margin: 0 5px 0 5px; }
	
	/* show link url after its caption when printing */
	/* a[href]:after { content: " [" attr(href) "]"; }	*/
}
