/* align */
    .center {text-align : center; }
    .right {text-align : right; }
    .top    {vertical-align:top; }
    
.auto { margin: 0 auto; }
    
/* width */
    .w75  { width : 75px; }
    .w120 { width : 120px; }
    .w200 { width : 200px; }
    .w250 { width : 250px; }
    
    .w50per  { width:  50%; }
    .w100per { width: 100%; }
    
/* font */
    .normal { font-weight: normal; }
    .italic { font-style : italic; }
    .small { font-size: 11px; }
    
/* float */
    .f-left { float: left; }
    
/* forms */
    .trans {
        background-color: transparent;
        border-style    : none;
        }
    
/* table */
    table {
        border-collapse: collapse;
        font-family    : Arial, sans-serif;
        font-weight    : bold;
        font-size      : 13px;
    }
    th, td { padding: 4px; }

    table.blue, table.blue th, table.blue td { border: 1px solid rgb(0,102,153); }
    table.blue th { background: rgb(237,237,237); }
    table.blue td { background: rgb(245,245,245); }
    table.blue th.dark, table.blue td.dark { background: rgb(237,237,237); }
    
    .red    { color : rgb(205,35,35); }
    .orange { color : rgb(255,140,0); }
    .green  { color : rgb(0,139,69); }

/****/
    .clear { clear: both; }
