  
  /* ========================================================================= */
  /* Menu (Table Of Contents) (TOC)
  ================================ */
  #TOC{
    /* width: x;  Calculated in .js */
    top: 0;
    margin: 0;
    padding: 0;
    width: auto;
    max-width: 25%;
    height: 100%;
    color:navy;
    background-color: #f1f1f1;
    position: fixed;
    overflow-y: scroll;  
    /* overflow-y: show TOC scroll bar (even if scrolling in not required) */
    /* Note: must be "scroll" (always visible) so it is part of the menu width calc in the js */
  }
  #TOC li{ list-style-type: none; }
  #TOC a{
    display: block;
    margin-left: 0;
  }
  #TOC li a:hover:not(.active) {
    background-color: #555;
    color: white;
  }
  #TOC li a.active {
    background-color: #4CAF50;
    color: white;
  } /* See also .highlight for the selection in the body */ 
  #TOC ul{
    padding: 10px 20px 10px 20px;
    margin-top:0;
  }
  div #TOC{ padding: 0 20px; }
  
  /* Class index is assigned in the javas script file
  =================================================== */
  .index, .indexitem, .indexsubitem, .indexclause {
    color: inherit;
  }
  a.index:link, a.index:visited,
  a.indexitem:link, a.indexitem:visited,
  a.indexsubitem:link, a.indexsubitem:visited,
  a.indexclause:link, a.indexclause:visited{
    list-style-type: none;
    font-weight: bold;
    text-align: left;
    text-decoration:none;
  }   
  /* End of Menu (Table Of Contents (toc))
  ======================================== */
  
  /*  cssTop link 
  =============== */  
  .csstop {
    position: fixed; bottom: 10px; right: 10px;
    width: 80px;
    height: 25px;
    font: bold 0.9em/1.2em Arial, Helvetica, sans-serif; 
    /* text-transform: uppercase; */
    padding: 5px 5px 0 5px;
    background-color:teal; border-radius: 5px; box-shadow: 5px 5px 1px #333;
    text-align:center;
  }
  a.csstop:hover { text-decoration: none; text-transform: uppercase;}
  a.csstop:link, a.csstop:visited{
    color: #eaeaea;
    text-decoration:none;
  } /* End cssTop link  */
  
  /* ========================================================================= */
  /* Layout Hierarchy (Headings)
  ============================== */
  .filenotes{
    margin: 0; /* remove margins on the pre wrapper */
    padding: 0 0 0 20px;
    /*margin-left:398px;*/
  }
  .group, .item, .subitem, .clause {
    font-weight:bold;
    color: red;
    margin-top: 20px;
  }
  .group_header   { margin-left: 0; font-size: 1.3em; }
  .item_header    { margin-left: 32px; }
  .subitem_header { margin-left: 64px; }
  .clause_header  { margin-left: 96px; }
  
  /* Data margins 
  =============== */
  .group_data, .item_data, .subitem_data, .clause_data { 
    white-space: pre-line; 
    margin-bottom: 16px;
  }
  .group_data   { margin-left: 32px; }
  .item_data    { margin-left: 64px; }
  .subitem_data { margin-left: 96px; }
  .clause_data  { margin-left: 128px; }
  
  /* The <hr> tags are added in CreateIndex()
  =========================================== */
  .group_hr   {margin: 5px 0 5px 0; width: 100%;  border: 1px dashed #333333; }
  .item_hr    {margin: 0 0 5px 0; width: 100px; border: 5px solid transparent; } /* creates white space above header when highlighted */
  .subitem_hr {margin: 0 0 5px 0; width: 100px; border: 5px solid transparent; }
  .clause_hr  {margin: 0 0 5px 0; width: 100px; border: 5px solid transparent; }
   
  /* When .group, .item, .subitem or .clause are selected in the TOC apply this
  ============================================================================= */
  
  /* default active settings */
  .activeTOC .group_header, .activeTOC .item_header, .activeTOC .subitem_header, .activeTOC .clause_header { /* don't wrap the <hr> */
    background-color: #4CAF50; /* Should match background-color in: #TOC li a.active */
    color: white;
    padding: 0 10px 0 10px;
  }
  
  /* global for textarea - add a class for customizing
  =============================================================== */
  .group_data>textarea , .item_data>textarea , .subitem_data>textarea , .clause_data>textarea {
    white-space: pre-line; /* remove the left tabs */
  }

  /* Not sure where these were used 
  =========================================== */
  .list{ margin: 0; padding: 0 0 0 6em;	white-space: pre-line; }
  .remove{ color:#2ab900; display:block; text-indent: 3em; }
  .path{ font-weight:bold; color:blue; }
  
  /*  Global CSS
  ====================== */
  /* your css classes for other elements of the document unrelated to the TOC */
  body{ margin-bottom: 100px; margin-left:0; color: navy;}
  h1, h2, h3{
    text-align: center;
    color:navy;
  }
  .filenotes h1{
    color: red;
    font-family: "Times New Roman", Times, serif;
    font-size: xx-large;
  }
  /* Anything above the first group and after the initialization <pre> tag*/
  ._data{ /*margin: 0;*/ }
  .no_data{ margin: 0 0 8px 8px; }
  
  /* "info boxes" including copy_code box
  Note: If adding/creating new info boxes add the class names to parseData() so they get trimed.
  ======================================= */
  div .note, div .warning, div .warn, div code{
		font-family: "Arial", verdana, arial, helvetica, sans-serif;
		font-style: normal;
		font-variant: normal;
		font-weight: normal;
		font-size: 10pt;
		word-spacing: normal;
		letter-spacing: normal;
		vertical-align: baseline;
		text-decoration: none;
		text-transform: none;
		line-height: normal;
		margin: 0;
		padding: 0 16px 0 16px;
		text-align: left;
		width: auto;	
		height: auto;
		white-space: pre-line;
		border-width: 1px;
		border-style: solid;
  }
  .note{
		color: #000000;
		background-color: #F8F8FF;
		border-color: green;
  }
  .warning, .warn{
		color: #000000;
		background-color: #FAF0E6;
		border-color: red;
  }
	code{ /* rem: code is a tag, not a class */
		display: block;
		border-color: black;
		background-color: white;
		margin-bottom: 0;
	}
	
	/* ========================================================================= */
  /* Copy Code
  placeholder for dynamically created class code_data, see filenotes.js 
  ===================================================================== */	
	.code_data{
		padding: 3px 8px;
		/* display: box;  box is not valid, there is tag <display-box> ??? */
		height: auto;
		width: auto;
		vertical-align: bottom;
	  white-space: pre-line;
	  color:teal;
	}  
	.code_data:hover {
		color: green ;
		font-weight: bold;
		background-color: #eaeaea ;
		cursor: pointer;
	} 
	/* The "Copied" button
	====================== */
	.copied::after, .lastClicked::after  {
    position: relative;
    display: inline-block;
    content: "Copied";
    font-weight: bold;
    letter-spacing: 5px;
    height: auto;
    padding: 0 5px 0 10px; /* padding around content "Copied" */
    margin-left: 50px; /* distance the button will be from the end of the code after Copied button has appeared */
    color: #ffffff;
    background-color: navy;
    border-radius: 3px;
    vertical-align: middle;
  }
  /* The animation 
  ================ */
	.copied::after {
  		opacity: 1; /* was 0 */
  		will-change: opacity, transform;
  		animation: showcopied .75s ease; /* speed at which it is displayed (bigger is slower) */
	}
  @keyframes showcopied {
  		0% {
    		opacity: 0;
    		transform: translateX(500px); /* starting distance to the right of the code padding */
  		} 70% {
    		opacity: 1;
    		transform: translateX(0);
  		} 100% { opacity: 0; }
	}
	/* Replace Bullet with Clipboard svg 
	==================================== */
	code li{	list-style: none; padding: 0; margin: 0;}
	code li::before { 
		content:'';
		display:inline-block;
		height:10px;
		width:10px;
		background-image:url('clippy.svg'); 
		background-size:contain; 
		background-repeat:no-repeat; 
		vertical-align: middle;
		padding-right: 20px; /* padding around clippy icon */
		padding-bottom: 8px;
		margin:0;
	} 
	.no_clippy::before  {
		background-image:none;
		padding-right: 5px;
		padding-bottom: 8px;
		margin:0;
  }
  .no_clippy{
    font: 12pt Arial, Helvetica, sans-serif; /* css error: added pt size to arial aug 2023 */
		font-weight: normal;
		font-size: 1.1em;
		color: black;
  }
	/*  End of Copy Code css  */
	
/* =====================================================================================
   =====================================================================================
                                    Customization 
	 
	 The css above displays the file notes data with all extraneos white space removed.
	 Dress up the page here - this overwrites above
	 =====================================================================================
	 ===================================================================================== */

	 /* Modify Menu headings
  ======================== */
  .index{
    text-indent: 0;
    font-size: 1.1em;
    color: navy;
  }
  .indexitem{
    text-indent: 20px;
    font-size:1.0em;
    color: #0002c6;
  }
  .indexsubitem {
    text-indent: 40px;
    font-size:0.9em;
    color: #0002f2;
  }
  .indexclause{
    text-indent: 60px;
    font-size:0.8em;
    color: #4446ff;
  }
  
  /* Modify Page headings
  ======================= */
  .group_header, .item_header, .subitem_header, .clause_header{
    font-family: "Times New Roman", Times, serif;
    font-weight: bold;
    font-size: 16pt;
  }
  /* revisit all these header sizes */
  /*
  .group_header{
    font-size: xx-large;
  }
  .item_header{
    font-size: x-large;
  }
  .subitem_header{
    font-size: large;
  }
  .clause_header{
    font-size: medium;
  }*/
  
  div code { 
    margin-top: 8px;
    margin-bottom: 0;
  }
  
	div .warning, div .warn, div .note{
    padding-top: .5em; /* set spacing only above and below the filenotes data */
    padding-bottom: .5em;
    margin-top: 1em;
    margin-bottom: 0px;
  }
  
  .group_data, .item_data, .subitem_data, .clause_data {
    padding-top: 4px;
    padding-bottom: 0;
  }

  .GoTo{ text-decoration: underline; color:teal; font-style: oblique; font-size: 1.0em; font-weight:bold; }
  .GoTo:hover { cursor: pointer; color: green; font-weight:bold;}
  .GoTo:link, .GoTo:visited{ color:teal; }
  
  