/***********************************************************************
 *
 * Russell M. Van Tassell
 * russell@geekoncall.net
 *
 * Generic CSS that I often use similar to "old school" directives.
 *
 ***********************************************************************/

table.center { margin-left: auto; margin-right: center; }
.center      { text-align: center; margin-left: auto; margin-right: auto;}
.right       { text-align: right; }
.left        { text-align: left; }

.bold        { font-weight: bold; }
.bolder      { font-weight: bolder; }
.lighter     { font-weight: lighter; }
.normal      { font-style: normal; font-variant: normal; font-weight: normal; }
.caps        { font-variant: small-caps; }
.italic      { font-style: italic; }
.underline   { text-decoration: underline; }

.nowrap      { white-space: nowrap; }
.pre         { font-family: "courier-new", monospace; white-space: pre; }

/* Font Size */
.xx-small    { font-size: xx-small; }
.x-small     { font-size: x-small; }
.small       { font-size: small; }
.medium      { font-size: medium; }
.large       { font-size: large; }
.x-large     { font-size: x-large; }
.xx-large    { font-size: xx-large; }
.smaller     { font-size: smaller; }
.larger      { font-size: larger; }
