/*                                                                      */
/* 		               SITE MAP - TABLET UP                		        */
/*                                                                      */
/* v001 02 Aug 2019 -   Initial version created from WOL tablet.css     */
/* v002 17 Jun 2020 -   Revamp to allow up to six columns               */
/*                                                                      */
/*                                                                      */


/* **************************************** */
/* 				SITE MAP	 				*/
/* **************************************** */

  section#sitemap {
	display: block;
    margin: 0;
    box-sizing: border-box;     /* Does everything need this in bulk at mobile? */
  }

  section#sitemap ul { margin-bottom: 20px; }

  section#sitemap.cols2 ul { width: 50%; }      /* Split two into two columns */
  section#sitemap.cols3 ul { width: 33%; }      /* Split three into three columns */
  section#sitemap.cols4 ul { width: 50%; }      /* Split four into two columns */
  section#sitemap.cols5 ul { width: 33%; }      /* Split five into three columns */
  section#sitemap.cols6 ul { width: 33%; }      /* Split six into three columns */

  section#sitemap.cols4 ul.col3 { clear: both; }    /* Force col3 to be below longest of col1/2 */
  section#sitemap.cols5 ul.col4 { clear: both; }    /* Force col4 to be below longest of col1/2/3 */
  section#sitemap.cols6 ul.col4 { clear: both; }    /* Force col4 to be below longest of col1/2/3 */

  