/************************************************

Pretty much every text element is in a <td> tag, so modifying that for the default text case should work.


NAMING CONVENTIONS (colorSizeOther)
gry10    == font-family: verdana, helvetica, sans-serif; font-size: 10px; color: #666666
gry10Bld == font-family: verdana, helvetica, sans-serif; font-size: 10px; color: #666666; font-weight: bold
a.gry10  == font-family: verdana, helvetica, sans-serif; font-size: 10px; color: #666666; text-decoration: underline

COLORS
grn   == #009999
gry   == #666666
red   == #A00000
mdBlu == #006699

SIZES
9  == 9px
10 == 10px
12 == 12px
14 == 14px
************************************************/


/* html specific */
body { background-color: #FFFFFF; }
td { font-family: verdana, helvetica, sans-serif; font-size: 10px; color: #333333; }
input { font-family: verdana, helvetica, sans-serif; }
select { font-family: verdana, helvetica, sans-serif; font-size: 10px}
textarea { font-family: verdana, helvetica, sans-serif; }


/* .classes */

.med { font-family: verdana, helvetica, sans-serif; font-size: 12px; text-decoration: none; }

.lrg { font-family: verdana, helvetica, sans-serif; font-size: 14px; text-decoration: none; }

.small { font-family: verdana, helvetica, sans-serif; font-size: 9px; text-decoration: none; }


.medbold { font-family: verdana, helvetica, sans-serif; font-size: 12px; text-decoration: none; font-weight: bold; }

.smallbold { font-family: verdana, helvetica, sans-serif; font-size: 9px; text-decoration: none; font-weight: bold; }

.lrgbold { font-family: verdana, helvetica, sans-serif; font-size: 14px; text-decoration: none; font-weight: bold; }

.lrgboldgray { font-family: verdana, helvetica, sans-serif; font-size: 14px; text-decoration: none; font-weight: bold; color: #999999; }

.ltGry9 { font-family: verdana, helvetica, sans-serif; font-size: 9px; color: #797979; text-decoration: none; }

.padded { font-family: verdana, helvetica, sans-serif; font-size: 10px; padding: 10px 10px 10px 10px; }



/* a.classes */
a.small { font-family: verdana, helvetica, sans-serif; font-size: 8px; text-decoration: underline; }

a.med { font-family: verdana, helvetica, sans-serif; font-size: 12px; text-decoration: underline; }

a.gry10 { font-family: verdana, helvetica, sans-serif; font-size: 10px; color: #666666; text-decoration: underline; }


/* a.class:hover */
a.gry9:hover { font-family: verdana, helvetica, sans-serif; font-size: 9px; color: #666666; text-decoration: none; }


/* form treatments */
.input { font-family: verdana, helvetica, sans-serif; font-size: 10px; color: #121212; height: 14px; padding: 2px 2px 0px 2px; border: 1px solid #999999; background: #FFFFFF; }
.textArea { font-family: verdana, helvetica, sans-serif; font-size: 9px; color: #121212; height: 50px; padding: 2px 0px 0px 2px; border: 1px solid #999999; background: #FFFFFF; }
.button { font-family: verdana, helvetica, sans-serif; font-size: 9px; color: #121212; }

.submit { font-family: verdana, helvetica, sans-serif; font-size: 10px; color: #121212; }



