/* MARKET PLACE*/
<!--
/* Terence Ordona, portal[AT]imaputz[DOT]com         */
/* http://creativecommons.org/licenses/by-sa/2.0/    */

/* begin some basic styling here                     */

/* end basic styling                                 */

/* define height and width of scrollable area. Add 16px to width for scrollbar          */
#market-table.tableContainer {
    clear: both;
    height: 286px;
    overflow: auto;
    width: 973px
}

/* Reset overflow value to hidden for all non-IE browsers. */
#market-table.tableContainer {
    overflow: hidden;
    width: 973px;
}

/* define width of table. IE browsers only                 */
#market-table.tableContainer table {
    float: left;
    width: 973px;
}

/* define width of table. Add 16px to width for scrollbar.           */
/* All other non-IE browsers.                                        */
#market-table.tableContainer table {
    width: 973px
}

/* set table header to a fixed position. WinIE 6.x only                                       */
/* In WinIE 6.x, any element with a position property set to relative and is a child of       */
/* an element that has an overflow property set, the relative value translates into fixed.    */
/* Ex: parent element DIV with a class of tableContainer has an overflow property set to auto */
thead.fixedHeader tr {
    position: relative
}

/* set THEAD element to have block level attributes. All other non-IE browsers            */
/* this enables overflow to work on TBODY element. All other non-IE, non-Mozilla browsers */
thead.fixedHeader tr {
    display: block
}

/* make the TH elements pretty */
thead.fixedHeader th {

}

/* make the A elements pretty. makes for nice clickable headers                */
thead.fixedHeader a, thead.fixedHeader a:link, thead.fixedHeader a:visited {
    display: block;
    width: 100%
}

/* make the A elements pretty. makes for nice clickable headers                */
/* WARNING: swapping the background on hover may cause problems in WinIE 6.x   */
thead.fixedHeader a:hover {
    display: block;
    width: 100%
}

/* define the table content to be scrollable                                              */
/* set TBODY element to have block level attributes. All other non-IE browsers            */
/* this enables overflow to work on TBODY element. All other non-IE, non-Mozilla browsers */
/* induced side effect is that child TDs no longer accept width: auto                     */
#market-table table tbody.scrollContent {
    display: block;
    height: 221px;
    overflow-y: scroll;
    width: 100%;
    background-image: url("../img/bg1.jpg"), url("../img/bg2.jpg");
    background-size: 644px 125px, 100% 125px;
    background-repeat: repeat-y, repeat-y;
}

#market-table table tbody.scrollContent td, tbody.scrollContent tr.normalRow td {

}

#market-table table  tbody.scrollContent tr.alternateRow td {

}

.nav-table-marketplace {
    background-color: #F3F3F3;
    border-bottom: 1px solid white;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    vertical-align: bottom;
    background: #F3F3F3;
    display: inline-block;
    width:973px

}

.nav-table-marketplace > div {
    padding: 6px 0px; 
    float: left;
    text-align: left!important;
    height:20px;
}

/* ALIGN CELL TABLES */

.cell-left{
    text-align: left
}

.cell-right{
    text-align: right
}

.cell-center{
  text-align: center  
}

.cell-middle{
    display: table-cell;
    vertical-align: middle; 
}