.USERNAMEUsernameDynamic
{
  background-color: ;    /*can also be "transparent" (default)*/
  background-image: ;
  background-position: ;  /* 0% 0% is upperleft corner, 100% 100% is lower right corner (used with image) */

  table-layout: auto;                  /* can be fixed or auto. fixed makes the layout depend on  */
                                       /* table width, Auto makes the layout depend on content    */

  width: 200;
  min-width: ;
  max-width: ;
  height: 25;
  min-height: ;
  max-height: ;

  border: ;                             /* can be initialized with: size, style, color */

  border-colapse: colapse;
  border-spacing: ;            /* if two value are given (ex. 3px 10px) then first is horizontal */
                                       /* second is vertical. If one value, then it is both horizontal   */
                                       /* and vertical                                                   */

  border-width: ;                       /* one value applies to all borders */

  border-top-width: ;
  border-bottom-width: ;
  border-right-width: ;
  border-left-width: ;

  border-color: ;                       /* one value applies to all borders */

  border-top-color: ;
  border-bottom-color: ;
  border-right-color: ;
  border-left-color: ;

  border-style: ;                       /* one value applies to all borders */
                                        /* ex. none, dotted, dashed, solid, double, groove, ridge,        */
                                        /* "inset" (embedded in canvas), "outset" (coming out of canvas)  */
  border-top-style: ;
  border-bottom-style: ;
  border-right-style: ;
  border-left-style: ;

  empty-cell: hide;                    /* Border around empty cell - can be "show" or "hide"             */

  color: black;                /* foreground color (font color) */
  font-family: sans-serif;           /* generic options are : serif and sans-serif */
  font-size: 13px;
  font-style: normal;           /* ex. Italics */
  font-weight: normal;            /* ex. bold, normal */

  text-align: ;             /* ex. left, right, center, justify */
  vertical-align: ;
  text-decoration: none;   /* ex. none, underline, overline, line-through */

  margin: ;                             /* one value applies to all margins */
  margin-top: ;
  margin-bottom: ;
  margin-right: ;
  margin-left: ;

  padding: ;
  padding-top: ;
  padding-bottom: 2;
  padding-right: ;
  padding-left: ;
}

