@media print {
    #page01 {page-break-after: always;}
    /*TO DO: HIDE NAV BAR*/
}

.technicalNote {
  /* Used in Teacher notes*/
  font-size:80%;
  background: palegoldenrod;
  margin: 10px 80px; 
  text-align: justify;
  text-justify: inter-word;
  padding: 0.5ex 1ex .5ex 1ex;
  font-family: Arial, Helvetica, sans-serif;
  border: 1px solid grey;
  border-radius: 5px;
}

.visiblesWrapper{
  font-size: 16pt;
  max-width: 7.5in;
  margin: auto;
  margin-top: 25px;
  margin-bottom:50px;
  padding: 0.75in 1in 0.75in 1in;
  background: white;
  box-shadow:0 0 30px black;
}

body {
  /*font-size: 16pt;*/
  background: dodgerblue;
  margin: auto;
  font-family: Lato,"Helvetica Neue",Helvetica,Arial,sans-serif;
}


header, footer {
    padding: 0.5ex;
    color: white;
    background-color: #369;/*#666;*/
    clear: left;
    text-align: center;
    text-shadow: 1px 1px 5px #333,
             -1px -1px 5px #333,
             -1px 1px 5px #333,
              1px -1px 5px #333;
    letter-spacing:0.5ex;

}

header {
  margin-top:-0.25in;
  margin-bottom:0.25in;
  font-size: 24pt;
  text-shadow: 2px 2px 5px #333,
             -2px -2px 5px #333,
             -2px 2px 5px #333,
              2px -2px 5px #333;
}
footer {
  margin-top:0.25in;
  margin-bottom:-0.25in;
}

.top-bar {
  cursor: pointer;
  margin-bottom: 1ex;
  margin-top: -0.25in;
  border-bottom: 1px solid #666;

}

/*used in dot art teacher notes, (elsewhere?)*/
/*this only indents the first line of a paragraph...*/
.indent {
  text-indent: 64px;

}




/*this should indent the whole paragraph*/
.tab {
  margin-left: 64px;

}

.halfTab {
  margin-left: 32px;
}

/*
.rightText {
  text-align:right;
}
*/

.centeredText {
  text-align:center;
  }

/*used in Conditional Logic notes*/
.smallText {
  font-size: 80%;
}


/* Format labels*/
.smallCenteredText {
  text-align:center;
  font-size: 80%;
}
.smallCenteredText span {
  color: red;
  text-decoration: underline;
}

ul.navList{
  /*
  the next two lines space nav bar items horizontally.
  see https://teamtreehouse.com/community/how-to-space-out-links-across-the-nav-bar
  */
  display: flex;
  justify-content: space-around;
  list-style:none;
  padding: 0;
  /*background-color: #333333;*/

}

ul.navList li{
  float:left;
  margin: 0;
  padding: 0;
}

ul.navList li a{
  display: block;
  font-size: 100%;
  text-decoration: none;
  overflow:hidden;
  text-align: center;
  margin: 0px;
  padding: 1ex 0px 1ex 0px;
  color: #666;

}

ul.navList li a:hover, ul.navList li a:focus{
  /*background-color: #111111;*/
  text-shadow: 0 0 2px #AAA;
  text-decoration: underline;

}



.content{
  line-height:1.42857143;
}



.snippetBox{
  border: 1px solid black;
  margin-bottom: 5px;
  /*next two lines to ensure
  contained images are fully
  inside box*/
  float: left;
  width: 100%;
  }
/* see Learning Web Design p. 352*/
.enclosure{
  float: left;
  width: 100%;
}


.snippetList {
  /*border: 1px solid blue;
  */
  list-style-type: none;
  padding-left: 10px;
  padding-top: 5px;
}

.snippetText {

  padding-left: 10px;
  padding-rightt: 10px;
  padding-top: 5px;
}

.snippetSubList {
  margin:0 0 0 10px;
  padding:0 0 0 1em;
  list-style-type: circle;
  padding-left: 10px;
  padding-top: 5px;

}

li {
  padding-bottom: 1ex;
}

.snippetRight{
  height: 100%;
  border-left: 1px solid black;
  /*padding:10px;*/
  overflow: hidden;
}

.snippetLeft{
  float: left;
  padding:0px;
  /*border-right: 1px solid black;*/
  /*
  margin-top: 0px;
  padding: 5px;
  background: lightgrey;
  position:relative;
  min-width:1px;*/
  /*padding-left:15px;
  padding-right:15px;*/
}

/*While Loops*/
#WhileSnippetBox{
  width: 50%;
}

#WhileSnippetBox > .snippetList > div{
  margin-right: 1ex;
}

/*no extra padding after snippet images*/
.snippetLeft > .snippetList > li{
  padding-bottom: 0ex;
  padding-right: 1ex;
}


h1, h2, h3, p{
  clear: left;
  margin-top: 0ex;
  margin-bottom: 0ex;
  padding-bottom: 5px;
  padding-top: 5px;
  /*border: 1px solid blue;*/
}

h1 {
  font-family: Arial;
  text-shadow: 5px;
}

h2 {
  /*clear: both; /*Learning Web Design p. 347*/
}

h3 {
  font-weight: normal;
}



ul {
  margin-top: 0ex;
  margin-bottom:0ex;
  /*padding-left: 25px;*/
  /*border: 1px solid cyan;*/
}


/* THIS WORKED FOR SINGLE IMAGES*/
/* I.E., ADD class="align-center" IN THE img TAG*/
img.align-center {
  display: block;
  margin: 0px auto;
}

/* the next to definitions used to put a single image of to the
right to go with a list item which has text to the left.
For example in Symmetry */
img.floatRight{
  margin-left: 15px;
  display: block;
  float: right;

}

/*for CustomSprites*/
div.floatLeft{
  width: 525px;
  /*border: 1px solid green;*/
  display: block;
  float: left;

}

/*for CustomSprites*/
div.floatRight{
  display: block;
  float: right;
  /*width forces images inside to stack vertically*/
  width: 150px;
  padding: 0px;
  margin: 0px;
  text-align: center;
}



/* THIS WORKED FOR A ANY NUMBER OF IMAGES*/
/* I.E., ADD class = "centeredImages" TO A CONTAINING div*/
.centeredImages{
  display:block;
  text-align:center;
  /*border: 1px solid blue;*/
  font-size: 0; /*trick to eliminate space that otherwise appears between images
  and below them.  See https://stackoverflow.com/questions/7641678/use-css-to-remove-the-space-between-images/7641687 */
}

.boldRedText
{
  color: red;
  font-weight: bold;
}

.testbox
{
  border: 2px solid green;
  margin: 0px;
  padding: 0px;
}

/*used in CustomSprites*/
.negMarginBox
{
  margin: -30px 0px 0px 0px;
  padding: 0px;
}
/*used in SpriteSizing*/
.posMarginBox10
{
  margin: 10px 0px 0px 0px;;
  padding: 0px;
}

/*sizes in multiples of 5*/
img.wpx1 {width: 5px;}
img.wpx2 {width: 10px;}
img.wpx3 {width: 15px;}
img.wpx4 {width: 20px;}
img.wpx5 {width: 25px;}
img.wpx6 {width: 30px;}
img.wpx7 {width: 35px;}
img.wpx8 {width: 40px;}
img.wpx9 {width: 45px;}
img.wpx10 {width: 50px;}
img.wpx11 {width: 55px;}
img.wpx12 {width: 60px;}
img.wpx13 {width: 65px;}
img.wpx14 {width: 70px;}
img.wpx15 {width: 75px;}
img.wpx16 {width: 80px;}
img.wpx17 {width: 85px;}
img.wpx18 {width: 90px;}
img.wpx19 {width: 95px;}
img.wpx20 {width: 100px;}
img.wpx21 {width: 105px;}
img.wpx22 {width: 110px;}
img.wpx23 {width: 115px;}
img.wpx24 {width: 120px;}
img.wpx25 {width: 125px;}
img.wpx26 {width: 130px;}
img.wpx27 {width: 135px;}
img.wpx28 {width: 140px;}
img.wpx29 {width: 145px;}
img.wpx30 {width: 150px;}
img.wpx31 {width: 155px;}
img.wpx32 {width: 160px;}
img.wpx33 {width: 165px;}
img.wpx34 {width: 170px;}
img.wpx35 {width: 175px;}
img.wpx36 {width: 180px;}
img.wpx37 {width: 185px;}
img.wpx38 {width: 190px;}
img.wpx39 {width: 195px;}
img.wpx40 {width: 200px;}
img.wpx41 {width: 205px;}
img.wpx42 {width: 210px;}
img.wpx43 {width: 215px;}
img.wpx44 {width: 220px;}
img.wpx45 {width: 225px;}
img.wpx46 {width: 230px;}
img.wpx47 {width: 235px;}
img.wpx48 {width: 240px;}
img.wpx49 {width: 245px;}
img.wpx50 {width: 250px;}
img.wpx51 {width: 255px;}
img.wpx52 {width: 260px;}
img.wpx53 {width: 265px;}
img.wpx54 {width: 270px;}
img.wpx55 {width: 275px;}
img.wpx56 {width: 280px;}
img.wpx57 {width: 285px;}
img.wpx58 {width: 290px;}
img.wpx59 {width: 295px;}
img.wpx60 {width: 300px;}
img.wpx61 {width: 305px;}
img.wpx62 {width: 310px;}
img.wpx63 {width: 315px;}
img.wpx64 {width: 320px;}
img.wpx65 {width: 325px;}
img.wpx66 {width: 330px;}
img.wpx67 {width: 335px;}
img.wpx68 {width: 340px;}
img.wpx69 {width: 345px;}
img.wpx70 {width: 350px;}
img.wpx71 {width: 355px;}
img.wpx72 {width: 360px;}
img.wpx73 {width: 365px;}
img.wpx74 {width: 370px;}
img.wpx75 {width: 375px;}
img.wpx76 {width: 380px;}
img.wpx77 {width: 385px;}
img.wpx78 {width: 390px;}
img.wpx79 {width: 395px;}
img.wpx80 {width: 400px;}
img.wpx81 {width: 405px;}
img.wpx82 {width: 410px;}
img.wpx83 {width: 415px;}
img.wpx84 {width: 420px;}
img.wpx85 {width: 425px;}
img.wpx86 {width: 430px;}
img.wpx87 {width: 435px;}
img.wpx88 {width: 440px;}
img.wpx89 {width: 445px;}

img.hpx1 {height: 5px;}
img.hpx2 {height: 10px;}
img.hpx3 {height: 15px;}
img.hpx4 {height: 20px;}
img.hpx5 {height: 25px;}
img.hpx6 {height: 30px;}
img.hpx7 {height: 35px;}
img.hpx8 {height: 40px;}
img.hpx9 {height: 45px;}
img.hpx10 {height: 50px;}
img.hpx11 {height: 55px;}
img.hpx12 {height: 60px;}
img.hpx13 {height: 65px;}
img.hpx14 {height: 70px;}
img.hpx15 {height: 75px;}
img.hpx16 {height: 80px;}
img.hpx17 {height: 85px;}
img.hpx18 {height: 90px;}
img.hpx19 {height: 95px;}
img.hpx20 {height: 100px;}
img.hpx21 {height: 105px;}
img.hpx22 {height: 110px;}
img.hpx23 {height: 115px;}
img.hpx24 {height: 120px;}
img.hpx25 {height: 125px;}
img.hpx26 {height: 130px;}
img.hpx27 {height: 135px;}
img.hpx28 {height: 140px;}
img.hpx29 {height: 145px;}
img.hpx30 {height: 150px;}
img.hpx31 {height: 155px;}
img.hpx32 {height: 160px;}
img.hpx33 {height: 165px;}
img.hpx34 {height: 170px;}
img.hpx35 {height: 175px;}
img.hpx36 {height: 180px;}
img.hpx37 {height: 185px;}
img.hpx38 {height: 190px;}
img.hpx39 {height: 195px;}
img.hpx40 {height: 200px;}
img.hpx41 {height: 205px;}
img.hpx42 {height: 210px;}
img.hpx43 {height: 215px;}
img.hpx44 {height: 220px;}
img.hpx45 {height: 225px;}
img.hpx46 {height: 230px;}
img.hpx47 {height: 235px;}
img.hpx48 {height: 240px;}
img.hpx49 {height: 245px;}
img.hpx50 {height: 250px;}
img.hpx51 {height: 255px;}
img.hpx52 {height: 260px;}
img.hpx53 {height: 265px;}
img.hpx54 {height: 270px;}
img.hpx55 {height: 275px;}
img.hpx56 {height: 280px;}
img.hpx57 {height: 285px;}
img.hpx58 {height: 290px;}
img.hpx59 {height: 295px;}
img.hpx60 {height: 300px;}
img.hpx61 {height: 305px;}
img.hpx62 {height: 310px;}
img.hpx63 {height: 315px;}
img.hpx64 {height: 320px;}
img.hpx65 {height: 325px;}
img.hpx66 {height: 330px;}
img.hpx67 {height: 335px;}
img.hpx68 {height: 340px;}
img.hpx69 {height: 345px;}
img.hpx70 {height: 350px;}
img.hpx71 {height: 355px;}
img.hpx72 {height: 360px;}
img.hpx73 {height: 365px;}
img.hpx74 {height: 370px;}
img.hpx75 {height: 375px;}
img.hpx76 {height: 380px;}
img.hpx77 {height: 385px;}
img.hpx78 {height: 390px;}
img.hpx79 {height: 395px;}
img.hpx80 {height: 400px;}



/*
10/21/23:  I added explicit use of Courier because the default had switched
   to some other monospace which I didn't care for...
*/
code {
  font-size:100%;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
}

/*first used in KeyEvents Notes but maybe should use elsewhere
*/
kbd {
  font-size: 95%;
}
kbd.button {
  font-size: 80%; 
  border:1px solid lightgrey; 
  background-color:ghostwhite;
  border-radius: 5px; 
  padding:1px 5px 1px 5px;
}


/*for lessonsList page*/
.section-interior {
  /*set margins to make space for left-most and right-most
  lesson-tile margins*/
  margin-left: -10px;
  margin-right:-10px;
  /*padding-top: 20px;*/
  padding-bottom: 30px;
  /*border: 1px solid red;*/
    /*margin: 25px auto 0;*/
  /* pixels are 1/96 of an inch in CSS3,
  times 6.5in plus 20px margins, yielding 644,
  or times 7.5 ... yielding 740**/
  max-width: 740px;
  float:left; /*so it expands to contain the descendants*/
}

.section-interior:first-of-type {
  padding-top: 20px;
}

/*
.lesson-image > img.outline{
  outline-style: solid;
  outline-color: #BBB;
  outline-width: 1px;
  }
.lesson-image > img.outline:hover{

  box-shadow: 0 0 3pt 1pt #BBB;
  }
*/

.lesson-tile {
  /*border: 1px solid cyan;*/
  display: block;
  margin: 0px 10px 0px 10px;
  float: left;
  /* ( 6.5in * 96px/in - 3*20px space between)/4 images ) */
  width: 165px;
  text-decoration: none;

}



.lesson-tile-img-box{
  text-align: center;
  border: 1px solid #BBB;
  border-radius: 10px;
}
/*
.lesson-tile-img-box:hover{
  box-shadow: 0 0 3pt 1pt #BBB;
  border-radius: 10px;
}
*/
.lesson-tile:hover{
  box-shadow: 0 0 3pt 1pt #39F;
  border-radius: 10px;
}


img.lessonsFmt{
  height: 140px;
  max-width:140px !important;
  display: block;
  margin: 0px auto;
}

.truncated-title {
    /*text-decoration: none;
    font-size: 14px;*/
    color: #127a3d;
    margin-top: 3px;
    /*
    line-height: 1.2em;
    height: 1.2em;*/
    overflow: hidden;
    width: 180px;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.collapse_button{
  display: inline-block;
  background-color: lightgrey;
  border: 1px solid blue;
  border-radius: 5px;
  color: red;
  font-size: 50%;
  padding: 1ex;
  /*margin: 1ex;*/
  min-width: 10em;

}
.collapse_button:hover{
  background-color: #e3e3e3;
	border-color: rgba(0,0,0,0.5);


}

.container {
    width: 90%;
    margin: auto;
}
.divLeft {
    float: left;
}

.divRight {
    float: right;
}

/* table in Chase Other Sprites; Mod & More; others?? */
tr:nth-child(even) {
  background-color: #f2f2f2;
}

td {
  font-size: 14px;
}


td:nth-child(1) {
    padding-right: 20px;  /*pad on right side before next column*/
    white-space: nowrap;  /*prevent line wrap*/
}​


/*  ELMINATED 10/30/19...
td.left16 {
  width: 16em;
}
td.left25 {
  width: 25em;
}

.tableDiv {
  padding-left:4em;
  padding-right:4em;
  }
*/
