﻿body 
{
    font-family:Candara, Verdana, Sans-Serif;
    font-size:14pt;
    background-color:#F0F0F0 ;
}

#MainData
{
    position:relative;
    width:1000px;
    margin:auto;
    background-color:White;
    
    }

#Header
{
    width:100%;
    height: 100px;
    background-color:white;
    font-size: 20pt;
    text-align:center;
    }

#Menu
{
    width:100%;
    height: 20px;
    background-color:#D8D8D8;
    text-align:center;
    }
    
#Content
{
    width:100%;
    background-color:#F8F8F8;
    float:left;
    text-align:right;
    }
    
 #p
{
    
    text-align:left;
    }
    
#Footer
{
    clear:both;
    width:100%;
    height: 50px;
    background-color:#D8D8D8;
    text-align:center;
    }
    
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #979a9a; /* Set a background color */
    color: black; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}
    
