/******************************************************************************/
table {
    background:         #fffff0;
}

/* odd items 1,3,5,7,... */
table tr.odd th,
.odd {
    background: #f8f8f8;
}

/* even items 2,4,6,8,... */
table tr.even th,
.even {
    background: #f3ece3;
}

/* rowspan items */
table tr.rowspan th,
.rowspan {
    background: #e0dcd8;
}

/* odd/even table rows */
table tr.odd td,
table tr.even td {
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

/* hovered table rows */
tr.odd:hover,
tr.even:hover,
.hover {
    background:   #ffff00;
    color:   #000000;
}

/* no space around a form */
form {
    padding:            0;
    margin:             0;
    display:            inline;
}

