		/* ************************************* */
		/*          Tom's iSimple css            */
		/* ------------------------------------- */
		/*       MASTER BASIC STYLE SHEET        */
		/*         Minimum configuratie          */
		/*         version: 25-07-2019 v.4.1     */
		/*        max window width 800px         */
		/* with general, top & bottom background */
		/*          Fixed Menu Bar               */
		/*            font family                */
		/*                                       */
		/* ************************************* */
       /* 29-03-2021 - achtergrond = wit        */
       /*  https://www.w3schools.com/colors/colors_picker.asp  */

/* ------------------------ basic style --------------------------- */

html {
	background:#ffffff;  /* over-all background */

  	max-width: 800px;
	margin: auto;
 	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust:100%;
}

body {	
    margin-top: 45px;
	background: url(bg_top.jpg) top no-repeat,
 	url(bg_bottom.jpg) bottom no-repeat,
 	url(bg.png) top no-repeat;
	padding-left: 3px; padding-right:5px;  
}

img { /* responsive image */
	max-height: auto;
	max-width: 100%;
	overfow: auto;
	margin: auto;
	padding: 1px; /* top, right, bottom, left */
	border-radius: 8px;
	-ms-interpolation-mode: bicubic;  /* for Internet Explorer from version 7 */
}
 
 #nav {	/* fixed menu bar */
	position: fixed;
	margin: auto;
	max-width:770px;
	top: 0;
	padding: 0.5em;
	left: 0;
	right: 0;
	height: 30px;
	background-color: #9999; 
   	text-align: center;
}

@media only screen and (min-width: 800px) { /* If too wide */
    html { background-color:  #9999; }  /* gray background if too wide */
    body { background-color:  #ffff; padding-left:10px; padding-right:10px; } /* white background */
}


/* ---------------------------------------------------------------- */


/*               Place here your special css scripts                */
