
/* Stylesheet screen.css for standard display */


#main { height:100% }

/* Link coloring for not-visited, visited, hovering over it, active
   text-decoration is set to none, so no underlining for a link
 */

a:link {
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #004477;
  }


a:visited {
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #006699;
  }


a:hover {
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color:#CC3300;
    background-color:#ccc;
  }


a:active {
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color:#956839;
  }

/* Coloring for <tr> tags */

tr {
    font-family : Verdana, Arial, sans-serif;
    font-size : 12px;
    text-align : left;
    color : black ;
  }

/* Special form formatting for blog */

input.form-text,select,textarea { border:1px solid #ccc; }
input.form-submit,label	{ font-weight:bold; }
div.form-item div.description,div.description { color:#666;font-size:11px; }
.form-text,.form-textarea,.form-select {width:90%;padding:5px;border:1px solid #ccc;border-top-color:#999;background:#fff;color:#333;}


