body {              /* currently same as in 'container.css' */
    		margin: 0px;
        background: lightsteelblue;
    		text-align: center
      	}

#m-container {              /* NB  not the same as 'container.css' */
            position:relative;   /*  ADDED TO TEST OUT 'CONTENT FIRST'  */
            background: white;
    		font: 90% Verdana, Arial, Helvetica, sans-serif;
    		text-align:justify;
    		width: 960px;  /* to allow space for a vertical scroll bar on a 1024px wide screen  */
    		margin: 0px auto
    		}

#m-header {    /* NB  not the same as 'header.css'  */
               /* =====  also see separate css file for the drop-down menus  ======== */
	    position:absolute;  
        top: 0px;
        left: 0px;
        width: 905px;  /* MAXIMUM OF 6 LINKS PER LINE (8*120=960) */
        height: 45px;
		background: #ffffcc;                         /*  cream  */
		background-image:url("../common/logo40.png");   /* 43 x 40 */
        background-repeat:no-repeat;
        background-position:top left
				}
				
#m-content {  /* NB  not the same as 'header.css'  */
        position:absolute;   
        top: 45px;
        left: 0px;
        width: 920px;                 /* was 940px prior to May 2013  */
        background-color:white;
        padding:10px 30px 10px 10px   /* was 10px all round prior to May 2013  */
		}
				
#m-footer {  /* NB  not the same as 'header.css'  */
		background: lightgrey;
		width: 930px;
		font-size: 0.75em;
		font-style: italic;
		text-align: center;
		margin-top: 0px;
		margin-left: 5px;
		margin-right: 5px;
		margin-bottom: 5px;
		border-top: 3px solid black;
        padding: 0px;
		clear: both
		}
