            body {
                background-color: PapayaWhip;
            }

            h4 {
                display: block;
                font-size: 1.1em;
                margin-top: 1.33em;
                margin-bottom: 1.33em;
                margin-left: 0;
                margin-right: 0;
                font-weight: bold;
                color: Sienna;
                text-shadow: 1.5px 1px 10px Peru;
            }

            h3 {
                display: block;
                font-size: 0.9em;
                margin-top: 1.33em;
                margin-bottom: 1.33em;
                margin-left: 0;
                margin-right: 0;
                font-weight: bold;
                color: Sienna;
                text-shadow: 1.5px 1px 10px Peru;
            }





            .footerArea {
                background-color: Linen; //powderblue; 
                padding-bottom: 4px;
            }

            .iconArea {
                background-color: Cornsilk; //PaleTurquoise; 
                padding: 2px;
            }

            .caption {
                font-size: 0.8em;
                font-weight: bold;
            }

            img {
                border: solid 0px mistyrose;
                /* img border match body background color */
            }
            /* popupHelp container - can be anything you want */

            .popupHelp {
                position: relative;
                display: inline-block;
                cursor: pointer;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
            }
            /* The actual popupHelp */

            .popupHelp .popupHelptext {
                visibility: hidden;
                width: 220px;
                background-color: DarkOrchid;
                color: white;
                text-align: center;
                font-size: 11px;
                border-radius: 6px;
                padding: 8px 0;
                position: absolute;
                z-index: 1;
                bottom: 125%;
                left: 50%;
                margin-left: -80px;
            }
            /* popupHelp arrow */

            .popupHelp .popupHelptext::after {
                content: "";
                position: absolute;
                top: 100%;
                left: 36%;
                margin-left: -5px;
                border-width: 5px;
                border-style: solid;
                border-color: #555 transparent transparent transparent;
            }
            /* Toggle this class - hide and show the popupHelp */

            .popupHelp .show {
                visibility: visible;
                -webkit-animation: fadeIn 1s;
                animation: fadeIn 1s;
            }
            /* Add animation (fade in the popupHelp) */

            @-webkit-keyframes fadeIn {
                from {
                    opacity: 0;
                }
                to {
                    opacity: 1;
                }
            }

            @keyframes fadeIn {
                from {
                    opacity: 0;
                }
                to {
                    opacity: 1;
                }
            }



         /* Crossword CSS */
         #cross{
           text-align: center;
           width:21px;
           height:21px;
           margin: 0;
           padding: 0;
           border-collapse: collapse;
           border: 1px solid white;
         }

         #buttons{
           width:30%;
           float: right;
         }

         tr{
           margin: 0;
           padding: 0;
           border-collapse: collapse;
         }

         td{
           height: 21px;
           width: 21px; font-size:13px;
         }

         #leftBox{
           float: left;
         }

         #rightBox{
           float: left;
           clear:left;
         }

         .butt{
           height:36px;
           width: 110px;
           font-size:13px;
           font-weight:bold;
         }

         #puzzle{
           text-align: center;
           margin: 0;
           padding: 0;
           border-collapse: collapse;
           border: 1px solid black;
         }

         .inputBox{
           width: 28px;
           height:28px;
           border: 1px solid black;
           text-align: center;
           font-size:12px;
           background-color:LightCyan;
         }

         #hintsTable{
           width: 840px;
           float: left;
           clear: left;
           font-size:13px;
         }
