
body 	{
	font-family: Arial;
	color: white;
	background-color: black;

		}

table	{
	padding: 0;
		

body {margin:0;}

    /* popup container */
    .popup1 {
        margin-left:200px; 
        margin-top:200px; 
        margin-bottom:0px; 
        position:relative; 
        display:inline-block; 
        cursor:pointer; 
        -webkit-user-select:none; 
        -moz-user-select:none; 
        -ms-user-select:none; 
        user-select:none;
    }

    /* The actual popup */
    .popup1 .popup1text {
        visibility:hidden; 
        background-color:#555; 
        color:#fff; 
        border-radius:10px; 
        padding:8px 8px 8px 8px; 
        width:400px; 
        height:80px; 
        position:absolute; 
        text-align:left; 
        z-index:1; 
        bottom:130%; 
        left:50%; 
        margin-left:-210px;
    }

    /* Popup arrow */
    .popup1 .popup1text::after {
        content:""; 
        position:absolute; 
        top:100%; 
        left:50%; 
        margin-left:-5px; 
        border-width:5px; 
        border-style:solid; 
        border-color:#555 transparent transparent transparent;
    }

    /* Toggle this class - hide and show the popup */
    .popup1 .showpopup1 {
        visibility:visible; 
        -webkit-animation:fadeIn 1s; 
        animation:fadeIn 1s;
    }

a:visited {
  color: white;
}

a:link {
  color: red;
}


    /* Add animation (fade in the popup) */
    @-webkit-keyframes fadeIn{from {opacity: 0;} to {opacity: 1;}
    @keyframes fadeIn{from {opacity: 0;} to {opacity:1 ;}


