        body {
            background-color: lightCyan;
        }
        
        h4 {
            display: block;
            font-size: 1em;
            margin-top: 1.33em;
            margin-bottom: 1.33em;
            margin-left: 0;
            margin-right: 0;
            font-weight: bold;
            color: darkOrchid;
            text-shadow: 1.5px 1px 10px #888888;
        }
        
        div.selVerse {
            width: 80%;
            height: 29.1%;
            overflow: scroll;
            box-shadow: 4px 8px 18px #888888;
        }
        
        table.selVseTbl {
            background-color: lightblue;
            padding: 1px 1px 1px 1px;
            overflow: auto;
            font-size: 13px;
            color: navy;
            font-weight: bold;
        }
        
        tr:nth-child(even) {
            background-color: #b0e0e6;
        } 
        /* powder blue alt line */

        
        .styBtn {
            background-color: #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 #3071A9;
        }
        
        .speedbtn1 {
            background-color: #4CAF50;
        }
        /* Green */
        
        .speedbtn1:hover {
            opacity: 1;
            box-shadow: inset 0 0 0 5px green;
        }
        
        iframe {
            box-shadow: 4px 8px 18px #888888;
        }
        
        .footerArea {
            background-color: Turquoise;
            padding-bottom: 4px;
        }
        
        .iconArea {
            background-color: PaleTurquoise;
            padding: 2px;
        }
        
        .caption {
            font-size: .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;
            }
        }
