/**
 * Tables
 */
table {
    table-layout: fixed;
    width: 100%;
    margin: 0 0 15px 0;
    padding: 0;
    border: none;
}

table.fixed {
    width: auto;
    margin-bottom: 15px;
}

table.variable {
    table-layout: auto;
}

table.rate-overview tbody tr {
    cursor: pointer;
}

table.rate-overview tbody tr td {
    text-align: center;
    vertical-align: middle;
}

table th,table td {
    padding: 2px 4px;
    text-align: left;
    vertical-align: top;
    border: none;
}

table th {
    background-color: #ffffff;
    color: #4F4F4F;
    font-weight: bold;
    vertical-align: middle;
    border-bottom: 2px solid #157BAC;
    padding-bottom: 3px;
}

table th:hover {
    text-decoration: underline;
}

table tfoot tr td {
    height: 24px;
    padding-top: 4px;
    color: #4F4F4F;
    font-weight: bold;
    vertical-align: middle;
    border-top: 2px solid #157BAC;
}

table tr.tableRow0 td {
    background-color: #F2F2F2;
}

table tr.tableRow0 td.columnHighlight {
    background-color: #f5f6a6;
}

table tr.tableRow1 td {
    background-color: #ffffff;
}

table tr.tableRow1 td.columnHighlight {
    background-color: #f3f3ca;
}

table tr.tableRow0 td.tableRowThumb {
    background-color: #ffffff;
}

table a.productTitle {
    font-weight: bold;
}

table th.sort {
    text-align: right;
}

table form.sort,table form.sort fieldset {
    display: inline;
    margin: 0;
    padding: 0;
    border: none;
}

table form.sort select {
    vertical-align: middle;
}

table form.sort input.image {
    vertical-align: middle;
}

table td.tableRowPrice,table th.tableRowPrice {
    text-align: right;
}

table td.tableRowPrice {
    font-weight: bold;
}

table.sortable thead th.header {
    background: url(sort_none.gif) center right no-repeat
        #ffffff;
    cursor: pointer;
    padding-right: 18px;
}

table.sortable.sticky-header thead th.header {
    background-position: -100px -100px;
    cursor: auto;
}

table.sortable thead th.headerSortUp {
    background-image: url(sort_asc.gif);
}

table.sortable thead th.headerSortDown {
    background-image: url(sort_desc.gif);
}

/**
 * Rating
 */
.rating-box {
    display: -moz-inline-box;
    display: inline-block;
    width: 90px;
    height: 18px;
    overflow: hidden;
    vertical-align: middle;
    margin-top: 2px;
    background: url(star-huge-off.png) repeat-x;
}

.rating-box.small {
    width: 60px;
    height: 12px;
    background-image: url(star-small-off.png);
}

.rating-box .rating {
    float: left;
    width: 18px;
    height: 18px;
    overflow: hidden;
    cursor: pointer;
}

.rating-box.small .rating {
    width: 12px;
    height: 12px;
}

.rating-box .rating.rating-hover {
    background: url(star-huge-on.png) no-repeat;
}

.rating-box.small .rating.rating-hover {
    background: url(star-small-on.png) no-repeat;
}

.rating-box .rating-display {
    display: block;
    width: 90px;
    height: 18px;
    overflow: hidden;
}

.rating-box.small .rating-display {
    width: 60px;
    height: 12px;
}

.rating-box .rating-width {
    float: left;
    height: 18px;
    overflow: hidden;
    background: url(star-huge-on.png) repeat-x;
}

.rating-box.small .rating-width {
    height: 12px;
    background-image: url(star-small-on.png);
}



