/* style sheet for ei5di.com */

table {
 font-family: Sans-serif;  /* this TABLE section is the standard setting */
                        /* for all text in tables that doesn't have a special */
                        /* tag like BIG or SMALL */
 font-size: 18;
 color: #003000 /*903030        /* ffffff;
 text-shadow: none;    /* 1px 1px 1px #000000;*/
                       /* soft drop shadow with 2 pixel spread*/
}

small {
 color: #003000        /* ffffff;         */
 text-shadow: none;    /* 1px 1px #000000;*/
                       /* small drop shadow */
}

big {
 color: #912323;                  /* deep red color */
 text-shadow: none;               /* no shadow on BIG elements */
}

/* a is an <a> tag - meaning a link */

a {
 color: #5050dd;                 /* this is your link color */
 text-decoration: none;          /* no underline on links until the mouse hovers over them */
 font-weight: normal;            /* all links are normal */
 text-shadow: none;              /* no shadow on links */
}

a:hover {
 color: #208815;                /* links change to green when mouse-over */
 text-decoration : underline;   /* underline appears on links after the mouse hovers on them */
 text-shadow: none;
}
