html, body    {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
    position: relative;
    border-style: none;
}

.myHTML {
    height: 100vh;
    width: 100vw;
   // border: 1px solid green;
    overflow: hidden;
    border-style: none;
}

.myBody	{
    background-color: black;
    background-image:url('img1/suntile.jpg');
    width:calc(100vw - 200px); 
    height: calc(100vh - 160px);
    overflow-x:hidden;
    overflow-y:auto;
    padding-right: 2vw;
    border-style: none;
}

#myTop		{
	width:100vw; 
	height:160px; 
	position: fixed; 
	top: 0px; 
	left: 0px; 
	z-index:9; 
	background-color: black; 
    overflow: hidden;
}

sup   {
        color: darkgreen;
        font-size: 24px;
        font-family: 'fascinateregular';
        text-shadow: none;
        padding-top: 20px;
        line-height: 1px;
}
  
#myAside   {
    position: absolute; 
    right:10vw; 
    top: 15px;
}

.firstchar { 
    float: left; font-size: 32px; line-height: 18px; padding-top: 16px; padding-right: 4px; padding-bottom: 0px; font-family: 'gondola_sd_-_swashregular'; text-shadow: -1px -1px 0 #FFF, 1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px 1px 0 #FFF; 
}

.firstchar1 { 
    float: left; font: 36px bold 'gondola_sd_-_swashregular'; line-height: 1px; padding-top: 5px; padding-right: 4px; padding-bottom: 16px; text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; 
}
 .theRest   {
     font-size: 24px; color: ghostwhite; font-family: 'fascinateregular';
}

.myTop1 {
    position: absolute; top: 0px; left: 0px; width: 488px; background-color: black; z-index:9; 
}

#myLeft {
    width:200px; 
    height:calc(100vh - 160px); 
    position: fixed; 
    top: 160px; 
    left: 0px; 
    z-index:8; 
}

.myLeft1    {
    width:200px; 
    height: calc(100vh - 160px); 
    position: fixed; 
    top:160px; 
    left: 0px; 
    background-image: url('img1/suntile.jpg'); 
    margin: 0px auto; 
    display: table;
    z-index:8; 
    overflow: auto;
}

h1  {
    margin: 0px auto;
    display: table;
    font-family: 'keep_on_truckinfwregular'; 
    font-size: 64px;
    text-shadow:
    -1px -1px 0 #FFF,  
    1px -1px 0 #FFF,
    -1px 1px 0 #FFF,
    1px 1px 0 #FFF,
    5px 5px 10px lemonchiffon;
    //    padding-left: 25px;
}

h2  {
    margin: 0px auto;
    display: table;
    font-family: 'fascinate_inlineregular';
       // font-family: 'keep_on_truckinfwregular'; 
    font-size: 32px;
    line-height: 30px;
    color:forestgreen;
    text-shadow:
    -1px -1px 0 #FFF,  
    1px -1px 0 #FFF,
    -1px 1px 0 #FFF,
    1px 1px 0 #FFF,
  //  5px 5px 5px lemonchiffon; 
    //margin-right: 8vw;
    text-align: center;
}  

h3  {
    margin:0px auto;
    display: table;
    font-size:18px;
    background: -webkit-linear-gradient(top, #81b1f1, #afcfff);
    background: -moz-linear-gradient(top, #afcfff, #81b1f1);
    background: -o-linear-gradient(top, #afcfff, #81b1f1);
    background: -ms-linear-gradient(top, #afcfff, #81b1f1);
    background: linear-gradient(top, #afcfff, #81b1f1);
    width: 180px;
    -webkit-border-radius: 50px;
    -khtml-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    line-height: 18px;
    -webkit-box-shadow: 1px 1px 4px 4px rgba(0,0,90,0.6);
    -moz-box-shadow: 1px 1px 4px 4px rgba(0,0,90,0.6);
    box-shadow: 1px 1px 4px 4px rgba(0,0,90,0.6);
}

h5  {
    font-size: 2vmax;
    margin:0px auto;
    display: table;
}

b    {
    margin: 0px auto;
    display: table;
    padding: 2px 1px 1px 2px; // top right bottom left
    text-shadow:
   -1px -1px 0 #fff,  
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;
    //5px 5px 5px lemonchiffon; 
}

                                            /* Shrink */
.hvr-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  //box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}

.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    background-color: yellow;
}
            
                                            /* Pulse */
@-webkit-keyframes hvr-pulse {
    25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
    75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
}

@keyframes hvr-pulse {
    25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
    75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.hvr-pulse {
 // display: inline-block;
//  vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
 // box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}

.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
    color:antiquewhite;
    -webkit-animation-name: hvr-pulse;
    animation-name: hvr-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

#myPage1    {
    width: 100vmax; 
    height: 100vh; 
    position: absolute; 
    right: 0px; 
    bottom: 0px; 
    top: 150px; 
    left: 190px; 
    border-style: none;
    -webkit-overflow-scrolling: touch; 
    overflow-y: scroll;
    z-index: 0;
    background-color:black;
}

#myLogo {
    position: absolute; 
    top: calc(100vh - 40px); 
    left:220px;
    font-size: 10px;
}

#mySec1 {
    width: calc(100vw - 200px); 
    margin:0px auto; 
    display: table; 
    padding: 0px 2vw 10px 2vw;
}

p, ul, ol   {
        font-size: 24px;
        margin-right: 2vw;
        margin-left: 2vw;
}
    
table, th, td {
        border: 1px solid black;
        font-size: 24px;
        text-align: center;
}