thead th, tfoot th
{
    text-align: left;
}

.blue_button {
    box-shadow:inset 0px 1px 0px 0px #54a3f7;
    background:linear-gradient(to bottom, #007dc1 5%, #0061a7 100%);
    background-color:#007dc1;
    border-radius:3px;
    border:1px solid #124d77;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:13px;
    padding:6px 24px;
    text-decoration:none;
    text-shadow:0px 1px 0px #154682;
}
.blue_button:hover {
    background:linear-gradient(to bottom, #0061a7 5%, #007dc1 100%);
    background-color:#0061a7;
}
.blue_button:active {
    position:relative;
    top:1px;
}

.red_button {
    box-shadow:inset 0px 1px 0px 0px #cf866c;
    background:linear-gradient(to bottom, #d0451b 5%, #bc3315 100%);
    background-color:#d0451b;
    border-radius:3px;
    border:1px solid #942911;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:13px;
    padding:6px 24px;
    text-decoration:none;
    text-shadow:0px 1px 0px #854629;
}
.red_button:hover {
    background:linear-gradient(to bottom, #bc3315 5%, #d0451b 100%);
    background-color:#bc3315;
}
.red_button:active {
    position:relative;
    top:1px;
}

.small_blue_button {
    box-shadow:inset 0px 1px 0px 0px #54a3f7;
    background:linear-gradient(to bottom, #007dc1 5%, #0061a7 100%);
    background-color:#007dc1;
    border-radius:3px;
    border:1px solid #124d77;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:13px;
    padding:3px 10px;
    text-decoration:none;
    text-shadow:0px 1px 0px #154682;
}
.small_blue_button:hover {
    background:linear-gradient(to bottom, #0061a7 5%, #007dc1 100%);
    background-color:#0061a7;
}
.small_blue_button:active {
    position:relative;
    top:1px;
}

.small_green_button {
    box-shadow:inset 0px 1px 0px 0px #9acc85;
    background:linear-gradient(to bottom, #74ad5a 5%, #68a54b 100%);
    background-color:#74ad5a;
    border-radius:3px;
    border:1px solid #3b6e22;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:13px;
    padding:3px 10px;
    text-decoration:none;
    text-shadow:0px 1px 0px #68a54b;
}
.small_green_button:hover {
    background:linear-gradient(to bottom, #9acc85 5%, #68a54b 100%);
    background-color:#0061a7;
}
.small_green_button:active {
    position:relative;
    top:1px;
}

#header
{
    display: table;
    width: 100%;
}

#header h1
{
    font-size: 15px;
}

#headerLogo
{
    display: table-cell;
}

#headerLogoOut
{
    margin:0 auto;
    width: 450px;
}

#navigation
{
    list-style-type: none;
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}

#navigation li
{
    display: inline;
    margin: 0 20px;
}

#navigation li a
{
    text-decoration: none;
    color: #F0412F;
}

#navigation li a:hover
{
    text-decoration: underline;
}

.clear
{
    clear: both;
}

#loginForm
{
    width: 200px;
    margin:0 auto;
}

.form_error
{
    font-size: 14px;
    color: red;
}

.div_table
{
    display:table;
}

.div_table_row
{
    display:table-row;
}

.div_table_column
{
    display:table-cell;
    padding: 5px;
}

label.error
{
    color: red;
    margin: 0 0 0 10px;
}

.ui-autocomplete {
    max-height: 100px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
}
/* IE 6 doesn't support max-height
   * we use height instead, but this forces the menu to always be this tall
   */
* html .ui-autocomplete {
    height: 100px;
}

.log_item
{
    border:1px solid lightgray;
    padding: 10px;
    width: 300px;
    margin: 10px 0;
}