/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

    body {
        font-family: "short stack";
        color: gray;
        margin:15;
        background-image: url("ONPU.jpg");
        background-size: cover;
        
    }
    
    table {
        border:none;
        background-color:white;
        box-shadow:0 0 20px 4px white;
        margin-top:50px;
        margin-bottom:30px;
    }

#wrap {
    width:600px;
    margin:auto;
}

/* unvisited link */
a:link {
     color:#ff9393;
     text-decoration:none;
}

/* visited link */
a:visited {
    color: #93cdff;
    text-decoration:none;
}

/* mouse over link */
a:hover {
    text-decoration:none;
    cursor:help;
    font-style:italic;
}

#left {
 float:left; 
}

#right {
float:right;
}

#s-m-t-tooltip{
max-width:300px; /*how big the tooltip can be at most*/
padding:3px 4px 5px 4px; /*padding inside tooltip*/
margin:20px 7px -2px 20px; /*distance from word*/ 
background-color:#ffffff;/*background color*/ 
letter-spacing:2px; /*tooltip letter spacing*/ 
z-index:99999999999999999999;
}
