            body {
                background-color: Lavender;
                color: darkMagenta;
                text-shadow: 1.5px 1px 10px #888888;
                font-size: 0.9em;
            }

            h3 {
                display: block;
                font-size: 1.2em;
                margin-top: 1.33em;
                margin-bottom: 1.33em;
                margin-left: 0;
                margin-right: 0;
                font-weight: bold;
                color: brown;
                text-shadow: 1.5px 1px 10px LightSalmon;
            }

            h4 {
                display: block;
                font-size: 0.9em;
                margin-top: 1.33em;
                margin-bottom: 1.33em;
                margin-left: 0;
                margin-right: 0;
                font-weight: bold;
                color: darkMagenta;
                text-shadow: 1.5px 1px 10px #888888;
            }

            h5 {
                display: block;
                font-size: 0.9em;
                margin-top: 1.33em;
                margin-bottom: 1.33em;
                margin-left: 0;
                margin-right: 0;
                font-weight: bold;
                color: FireBrick;
                text-shadow: 1.5px 1px 10px #888888;
            }

            table {
              border: 1px;
            }

            tr:nth-child(even) {
                background-color: BlanchedAlmond; 
            }
            tr:nth-child(odd) {
                background-color: LightYellow; 
            }
            th {
               font-size: 16px;
               background-color: Khaki; 
               color: brown;
            }

            td {
               font-size: 13.2px;
               font-weight: normal;
               color: SaddleBrown;
            }

            .styBtn {
                background-color: IndianRed; //#008cba;
                border: none;
                color: white;
                width: 90px;
                padding: 4px 12px;
                text-align: center;
                border-radius: 4px;
                text-decoration: none;
                display: inline-block;
                font-size: 11px;
                margin: 1px 1px;
                margin-bottom: 0.33em;
                cursor: pointer;
                opacity: 0.75;
                transition: 0.3s;
                box-shadow: 4px 8px 18px #888888;
            }

            .styBtn:hover {
                opacity: 1;
                box-shadow: inset 0 0 0 5px Darkred; //#3071a9;
            }

            .speedbtn1 {
                background-color: #4caf50;
            }
            /* Green */

            .speedbtn1:hover {
                opacity: 1;
                box-shadow: inset 0 0 0 5px green;
            }


            .footerArea {
                padding-bottom: 4px;
            }

            .iconArea {                
                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;
                }
            }


         /* slider style */

         .slidecontainer {
         width: 98%;
         }
         .slider {
         -webkit-appearance: none;
         width: 100%;
         height: 18px;
         background: #d3d3d3;
         outline: none;
         opacity: 0.7;
         -webkit-transition: .2s;
         transition: opacity .2s;
         }
         .slider:hover {
         opacity: 1;
         }
         .slider::-webkit-slider-thumb {
         -webkit-appearance: none;
         appearance: none;
         width: 21px;
         height: 21px;
         background: #4CAF50;
         cursor: pointer;
         }
         .slider::-moz-range-thumb {
         width: 21px;
         height: 21px;
         background: #4CAF50;
         cursor: pointer;
         }
