1. /* tables */
  2.  
  3.  
  4. table.tablesorter {
  5. font-family:arial;
  6. background-color: black;
  7. margin:10px 0pt 15px;
  8. font-size: 8pt;
  9. width: 80%;
  10. text-align: left;
  11. border: 1px solid black;
  12.  
  13.  
  14.  
  15. }
  16. table.tablesorter th {
  17. text-align: left;
  18. padding: 5px;
  19. background-color: SANDYBROWN;
  20. }
  21. table.tablesorter td {
  22. color: black;
  23. padding: 5px;
  24. }
  25. table.tablesorter .even {
  26. background-color: #3D3D3D;
  27.  
  28.  
  29. }
  30. table.tablesorter .odd {
  31. background-color: #6E6E6E;
  32. }
  33. table.tablesorter .header {
  34. background-image: url(bg.gif);
  35. background-repeat: no-repeat;
  36. border-left: 1px solid #FFF;
  37. border-right: 1px solid #000;
  38. border-top: 1px solid #FFF;
  39. border-bottom: 1px solid black;
  40. padding-left: 15px;
  41. padding-top: 6px;
  42. height: auto;
  43. background-position: center right;
  44. cursor: pointer;
  45. }
  46. table.tablesorter .headerSortUp {
  47. background-image: url(asc.gif);
  48. background-repeat: no-repeat;
  49.  
  50. }
  51. table.tablesorter .headerSortDown {
  52. background-image: url(desc.gif);
  53. background-repeat: no-repeat;
  54.  
  55. }
  56.  
  57. td{
  58.  
  59. border-right: 1px solid black;
  60. border-bottom: 1px solid black;
  61.  
  62.  
  63.  
  64. }