/* George Gesslein II's CSS for HTML documentation */

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

.sample { border-style: dotted; border-width: 1px; color: green; background-color: white; padding: 10px; }

a:hover { color: green; } /* when cursor is over a link, change the link text color to green */
a img { border: none; } /* don't draw borders around images that are links */

body {
  font-family: sans-serif;
  font-size: large;
}

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