/* 
    Document    : BASIC_style
    Version     : 1.00
    Author      : Joris Voermans
    Description:
        Gots all the basic style for the basic classes.
*/

.BASIC_cleanTable {
    width: 100%;
    padding: 0px;
    margin: 0px;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    border-spacing: 0px;
    border-width: 1px;
    border-style: none;
    border-color: black;
}

/*
* Table
*/
.BASIC_table
{
    border: 3px double gray;
}
tr.BASIC_tableHeader
{
    background-color: black;
    color: white;
}
th.BASIC_tableHeader
{
}

tr.BASIC_tableOdd
{
    background-color: silver;
}
td.BASIC_tableOdd
{
}
tr.BASIC_tableEven
{
    background-color: gray;
}
td.BASIC_tableEveb
{
}

/*
* Thumbnail
*/
div.BASIC_thumbnail
{
    border: 3px double black;
    /* text */
    color: black;
    text-decoration: none;
    font-weight: bold;
    vertical-align: bottom;
}

div.BASIC_thumbnail_hover
{
    border: 3px solid black;
    background-color: black;
    /* text */
    color: white;
    text-decoration: none;
    font-weight: bold;
    /* mouse */
    cursor: pointer;
}
