| BODY,.body {
 color:#666;
 font-size:12px;
 height:100%;
 font-family: 'Segoe UI';
 background:#eff7ff url('deneme_bg.png') fixed;
}
table {
    color:#1f1f1f;
    font-weight: 700;
}
overriden-table
{
    based-on:'table';  /* table properties will be came here. */
    color:red;
    width:100%;
    height:100%;
}
full-style-table
{
    based-on:'overriden-table'; /* table and overriden table styles here.*/
    border:1px solid;
}
 |