    html, body {
      width:100%;
      height:100%;
      font-family:arial;
    }
		
    html, body, h1, p, a img, img, form {
      border:0 none;
      margin:0;
      padding:0;
    }
		
    h1 {
      text-align:center;
      padding-top:0px;
    }
		
    p {
      text-align:left;
      padding-top:0px;
    }
		
    em {
      font-style:normal;
      font-weight:bold;
    }
		
		.center_text {
			text-align:center;
		}

		.left {
			float: left;
/*			padding: 0 20px 20px 10px;  */
			margin: 0 20px 20px 10px;
		}	

		.wrap_class {
			overflow-wrap: break-word;
			word-wrap: break-word;
			word-break: break-all;
		}
		
		#container {
			display: flex;
			flex-direction: column;
			align-items: stretch;
			min-height: 100%;
			margin: 0 1px 0 1px;
      background-color:#FFFFCC;
		}

		.one_px_high {
			height: 1px;
		}
		
		#header {
			border-left: 1px solid #CC9933;
			border-top: 1px solid #CC9933;
			border-right: 1px solid #CC9933;
		}

		#main {
			flex-grow: 1;
			padding: 0 10px 0 10px;   
			border-left: 1px solid #CC9933;
			border-right: 1px solid #CC9933;
		}
		
		header, main, footer {
			flex-shrink: 0;
		}
		
		.flex_container {
			display: flex;
/*			justify-content: space-evenly;        */
			justify-content: space-around;
			flex-wrap: wrap;
		}
		
		.column {
			width: 30%
		}
		
		#map {
			display: flex;
			align-items: center;
			justify-content: center;
		}
		
    #footer {
      text-align:center;
			border-left: 1px solid #CC9933;
			border-bottom: 1px solid #CC9933;
			border-right: 1px solid #CC9933;
    }

		/* The rest of the css is for the menu */
		
		#menu_button_id {
			position:  fixed;
			right: 10px;
			bottom: 10px;
			font-size: 1.4em;
			font-weight: bold;
			background-color:  #80ff80;			
			border: 2px solid black;
			border-top-left-radius: 8px;
			border-top-right-radius: 8px;
			border-bottom-left-radius: 8px;
			border-bottom-right-radius: 8px;
			cursor: pointer; 
			padding: 5px 10px;
			text-align: center;
			text-decoration: none;
			text-shadow: #ffffff 1px 1px 2px;
		}
		
		#menu_scrolling_div_id {
			display: none;
			position: fixed;
			max-height:90%;
			bottom: 10px;
			right: 10px;
			margin-bottom: 10px;
			padding-bottom: 3px;
			max-height: 90%;
			overflow-y: auto;
			overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
		}
		
		.menu_flex_justify_space_around {
			display:flex;
			flex-direction: row;
			flex-wrap: wrap;
			justify-content:space-around;
		}
		
    .menu_button_medium_red {
			background-color:  #ff6666;	
			border: 1px solid black;
			border-top-left-radius: 8px;
			border-top-right-radius: 8px;
			border-bottom-left-radius: 8px;
			border-bottom-right-radius: 8px;
			cursor: pointer;
			color: white;
			text-shadow: #333333 1px 1px 2px;
			font-weight: bold;   
			padding: 5px 10px;
			text-align: center;
			text-decoration: none;
			text-shadow: #000000 1px 1px 2px;
    }

    nav ul {
        list-style: none;
    }

    nav ul li a  {
        background-color: #ffffff;
        border: 1px solid #999999;
        color: #222222;
        display: block;
        font-weight: bold;
        margin-bottom: -1px;
        text-decoration: none;
    }
    
    ul {
      cursor: pointer;
      padding:0px;
      margin:0px;
    }
    
    nav ul.num2 li:first-child  {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    nav ul.num2 li:last-child  {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .class_div_with_no_arrow {
        background-color: #ccffcc;
        border: 1px solid #999999;
        color: #222222;
        display: block;
        padding: 10px;
        margin-bottom: -1px;
        text-decoration: none;
    }
		
    /* ================================================================================================= */ 
    /* ================================================================================================= */ 
    /* ================================================================================================= */ 
		/* ==========  Start media queries  ================================================================ */	

    /* ================================================================================================= */ 
		/* ==========  max-width:376px   TOUCH and MOUSE   ================================================= */	
    /* ================================================================================================= */ 
		
@media only screen and (max-width:376px) {

		#main {
			font-size: 1.4em;
		}	

		.flex_container {
			font-size: 1.1em;
		}	
	
		.column {
			width: 90%
		}
		
		#menu_scrolling_div_id {
			margin-right:5%;
			width: 90%;
			font-size: 1.1em; 
		}
					
}					

    /* ================================================================================================= */ 
		/* ==========  max-width:599px   TOUCH and MOUSE   ================================================= */	
    /* ================================================================================================= */ 
		
@media only screen and (min-width:376px) and (max-width:599px) {  

		#main {
			font-size: 1.4em;
		}	

		.flex_container {
			font-size: 1.1em;
		}	
	
		.column {
			width: 90%
		}
		
		#menu_scrolling_div_id {
			margin-right:5%;
			width: 80%;
			font-size: 1.1em;    
		}
					
}					
			
    /* ================================================================================================= */ 
		/* ==========  min-width:600px   TOUCH and MOUSE   ================================================= */	
    /* ================================================================================================= */ 

@media only screen and (min-width:599px) and (max-width:900px) {  

		#main {
			font-size: 1.4em;
		}	

		.flex_container {
			font-size: 1.1em;
		}	
	
		.column {
			width: 40%
		}
		
		#menu_scrolling_div_id {
			margin-right:10px;
			width: 50%;
			font-size: 1.1em;    
		}

					
}
			
    /* ================================================================================================= */ 
		/* ==========  min-width:900px   TOUCH and MOUSE   ================================================= */	
    /* ================================================================================================= */ 
			
@media only screen and (min-width:900px) and (max-width:1200px) {

		#main {
			font-size: 1.2em;
		}	

		.flex_container {
			font-size: 1.1em;
		}	
	
		.column {
			width: 30%
		}
		
		#menu_scrolling_div_id {
			margin-right:10px;
			width: 30%;
			font-size: 1.1em;    
		}
					
}	 
					
    /* ================================================================================================= */ 
		/* ==========  min-width:1200px   TOUCH and MOUSE   ================================================ */	
    /* ================================================================================================= */ 

@media only screen and (min-width:1200px) and (max-width:1800px) {

		#main {
			font-size: 1.2em;
		}	

		.flex_container {
			font-size: 1.1em;
		}	

		.column {
			width: 30%
		}
		
		#menu_scrolling_div_id {
			margin-right:10px;
			width: 28%;
			font-size: 1.1em;    
		}

}

    /* ================================================================================================= */ 
		/* ==========  min-width:1800px   TOUCH and MOUSE   ================================================ */	
    /* ================================================================================================= */ 

@media only screen and (min-width:1800px){	

		#main {
			font-size: 1.2em;
		}	

		.flex_container {
			font-size: 1.2em;
		}	

		.column {
			width: 30%
		}
		
		#menu_scrolling_div_id {
			margin-right:10px;
			width: 20%;
			font-size: 1.1em;    
		}				
}
		
/* ==========  End media queries  ================================================================== */	
/* ================================================================================================= */ 
/* ================================================================================================= */
