/* By Anil Nath  */

* {
  box-sizing: border-box;
}
.menu {
  float: left;
  width: 20%;
/* font-size: 14px; */
}
.menuitem {
  padding: 5px;
  margin-top: 4px;
  border-bottom: 1px solid pink;
  font-size: 14px;
}
.main {
  float: left;
  width: 60%;
  padding: 0 20px;
  overflow: hidden;
font-size: 14px
}
.right {
  float: left;
  width: 20%;
  padding: 10px 15px;
  margin-top: 7px;
}

/* Use this for body text. Also for links in the body area.  */
.for-body-text01 {
/* For body text   */
 font-size: 14px;
}


@media only screen and (max-width:800px) {
  /* For tablets: */
  .main {
    width: 80%;
    padding: 0;
  }
  .right {
    width: 100%;
  }
}
@media only screen and (max-width:500px) {
  /* For mobile phones: */
  .menu, .main, .right {
    width: 100%;
  }
}

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

/* visited link */
a:visited {
  color: black;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: pink;
  text-shadow: 0 0 2px pink, 0 0 5px pink;
 /*  text-decoration: none; */
}

/* selected link */
a:active {
  color: black;
  text-decoration: none;
}

/* AN for pink image boarder 
img {
  border: 2px solid pink;
}
*/
</style>
