﻿.backgroundwhite{
    background-color : #FFFFFF;
}

/* Applied to tables that display information to the end user. */
.tabledisplay{
    width : 90%;
    border-spacing: 0px;
    border-collapse: separate;
    margin-left : auto;
    margin-right : auto;
}
.tabledisplay tr:first-child td{
    color : #000000;
}
.tabledisplay tr td{
    padding : 2px;
    border-bottom : 1px solid #dcdcdc;
}

/* Applied to the main reporting table without lines below each row */
.tabledisplaynolines{
    width : 90%;
    border-spacing: 0px;
    border-collapse: separate;
    margin-left : auto;
    margin-right : auto;
}
.tabledisplaynolines tr:first-child td{
    color : #000000;
    border-bottom : 1px solid #dcdcdc;
}
.tabledisplaynolines tr td{
    padding : 2px;
}

/*Title tables areas - two columns - Title in left and any appropriate buttons on the right*/
.tabletitle{
    margin-left: auto;
    margin-right: auto;
    display : table;
    width : 95%;
}
.tabletitle div{
    display : table-row;
}
.tabletitle div div{
    display : table-cell;
}

.tabletitle div div:first-child{
    text-align : left;
    vertical-align : middle;
}
.tabletitle div div:last-child{
    text-align : right;
}
