﻿/** REGATTA MODULE for Drupal 6.x
 * Will Richards, Summer 2008
 */

/**
 * @file
 * CSS styles to format regatta module output.
 *
 * Sections:
 *   - Form Styles    - Autocomplete form element formatting.
 *   - Tree Styles    - Competition tree diagram formatting.
 */




/**
 * Form Styles
 *
 * Form field formatting.
 */

  #autocomplete {
    background-color: white;
  }




/**
 * Tree Styles
 *
 * Competition tree diagram formatting.
 */

  table.regatta, tr.regatta, td.regatta, th.regatta {
    background-color: white;
    border: none;
  }

  table.regatta{
    width: 100%;
    border-collapse: collapse;
  }

  td.regatta, th.regatta {
    text-align: center;
    font-family: verdana;
    font-size: 8pt;
    padding: 3px;
  }

  th.regatta {
    border-bottom: 1px solid #6C6C6C;
    font-weight: bold;
  }

  td.regatta-race{
    background-color: #f9f9f4;
  }

  td.regatta-spacer{
    width: 1%
  }

  td.regatta-crewname {
    border-top: 1px solid #6C6C6C;
    border-bottom: 1px solid #6C6C6C;
    background-color: #f6f6f2;
  }

  td.regatta-join {
    border-top: 1px solid #6C6C6C;
    border-bottom: 1px solid #6C6C6C;
  }

  td.regatta-brace {
    border-right: 1px solid #6C6C6C;
  }