/* General purpose decoration CSS for the Mathomatic web site */
/* Commonly used classes: */
.clear { clear: both; }
.right { float: right; }
.left { float: left; }
.center { text-align: center; }
.middle { vertical-align: middle; }
.indent { margin-left: 2em; margin-right: 2em; }
.yellowborder { outline: medium groove yellow; }
.handwriting { font-family: "Handwriting - Dakota", "Segoe Script", "Comic Sans MS", sans-serif; }
.large { font-size: larger; }
.small { font-size: small; }

body {
  font-size: large;
  color: black;
/*  background-color: white; */ /* Let each web page set its own background. */
}

a img {
  border: none;
}

a:link {
  color: blue;
}

a:visited {
  color: purple;
}

a:hover {
  color: green;
}

a:active {
  color: red;
}

b, h3, h4, h5, h6 {
  color: green;
}

caption {
  color: orange;
  font-weight: bold;
}

@media print
{
  a {
    text-decoration: none;
  } /* no underlining of links when printing */
}

