/* 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"; }
.large { font-size: larger; }
.small { font-size: x-small; }

body {
  font-family: sans-serif;
  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;
}
b, h1, h2, h3, h4, h5, h6 {
  color: green;
}
caption {
  color: orange;
  font-weight: bold;
}

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