/* CSS Styling for a "mock super" table. This creates a table that replicates the superTable, but does not feature column sorting. However, it does allow for better styling. */

div.mock_super                                          { overflow: auto; padding: 0px; overflow-x: hidden; }
div.mock_super table                                    { margin: 2px; font-size: 11px; border-collapse: collapse; background: #CCCCCC; border: 1px #555555 solid; }
div.mock_super thead                                    { margin-bottom: 4px; background: #DDE4EC; border-bottom: 2px #555555 solid; }
div.mock_super tbody tr                                 { height: 22px; }
div.mock_super tbody tr:nth-child(even)                 { background: #EEEEF0; }
div.mock_super tbody tr:nth-child(odd)                  { background: #FFFFFF; }
div.mock_super table th                                 { text-align: center; }
div.mock_super table th,
div.mock_super table td                                 { border-right: 1px #555555 solid; padding: 3px; }
div.mock_super tbody tr:hover td                        { background-color: #F5ECA1; }
div.mock_super input                                    { border: 0px; background-color: transparent; }
div.mock_super a                                        { color: #6C83B9; text-decoration: none; }