
/* ----- COMMON BUTTON -------------------------------------------------------
Uses: Non-form action "buttons".
Tags: (any)
*/
.Button
{
    margin: 2px;
    background-color: #E4E4E4;
    border: 1px solid #BBB;
    padding: 2px 4px 2px 4px;
}

/* ----- CONFIGURATION TABLE -------------------------------------------------
Uses: Table for displaying and editing options or configuration settings.
Tags: table
*/
.ConfigTable
{
    background-color:   white;
    border:             0px;
    margin-bottom:      3px;
}
.ConfigTable th
{
    font-size:          10px;
    font-weight:        bold;
    font-family:        verdana, arial, helvetica, sans-serif;
    text-align:         left;
    vertical-align:     top;
    background-color:   #808080;
    border:             1px solid #F9FAFF;
    color:              #FFF;
    text-transform:     uppercase;
}
.ConfigTable td
{
    font-size:          10px;
    font-family:        verdana, arial, helvetica, sans-serif;
    vertical-align:     center;
    background:         #E4E4E4;
    border:             1px solid #F9FAFF;
}
.ConfigTable tr.LightRow td
{
    background:         #E4E4E4;
}
.ConfigTable tr.DarkRow td
{
    background:         #D5D5D5;
}
.ConfigTable tr.DisabledRow td
{
    color:              #999;
}

/* ----- ERROR/ACTION BOX ----------------------------------------------------
Uses: Box at top of the content area that displays error or action messages.
        Messages should be listed with a <ul>.
Tags: div
*/
.ErrorBox
{
    background:         #FFEEEE;
    padding:            10px;
    margin-bottom:      5px;
}
.ErrorBox ul
{
    margin:             0px;
}
.ErrorBox li
{
    list-style-type:    square;
    margin:             0px;
    padding:            0px;
}


