* {
    box-sizing: border-box;
  }

/* Body generic */
body {
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
  vertical-align: top;
  background-color: #99ff99;
  padding-left: 10px;
}

/* My Style 
body.myStyle {
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
  vertical-align: top;
  background-color: #99ff99;
  padding-left: 250px;
}*/

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
} 

/* Tables */ 
#my1 {
  border: 2px solid black;
  color: blue;  
}

table, th, td {
  border: 1px solid black;
  text-align: right;
}
/*
table, th, td {
border: 2px solid black;
border-collapse: collapse;  
text-align: right;
}

th, td {
  text-align: right;
  background-color: #96D4D4;
}
*/
