/*
 * Palette:
 *
 *********************************************************************
 * Highlights
 * #8B0000 -- dark red
 * #CC9933 -- a lighter orange ish
 * #D2691E -- orange ish, the background for form table headers
 * #990000 -- red ish, the color of form label fonts
 *
 *********************************************************************
 * Light colors, off white, etc.
 * #FFFFE0 -- light yellow (very light)
 * #FAFAD2 -- LightGoldenRodYellow (very light too)
 * #FFFFCC -- nearly a tan
 *
 *********************************************************************
 * Greenish, light to dark
 * #CCCC99 -- khaki-green, the color of the nav bar
 * #CCCC66 -- a slightly brighter natural khaki/green (the banner color) 
 *
 *********************************************************************
 * Tans/Browns, light to dark
 * #EEE8AA -- pale golden rod, a little yellower/greener tan
 * #E7D065 -- tan
 * #EDE486 -- tanner
 * #F0E68C -- a little tanner yet
 * #AF9E50 -- a browner khaki
 * #B8860B -- DarkGoldenRod
 * #996633 -- medium brown
 * #663300 -- dark brown 
 *
 */


/*********************************************************************
 * These are the global styles that apply to tags without any explicit
 * class defined.
 *********************************************************************/

.matchWinner {
    color: #D2691E;
    font-weight: bold;
    font-style: italic;
}

.matchTier {
    color: #D2691E;
    font-style: italic;
}

.waitlistBanner {
    text-align: center;
    color: #D2691E;
    font-style: italic;
	font-size: 11px;
}

.separator {
    text-align: center;
    margin: .2em 0em .1em 0em;
}


/*****************************************************************
 * Styles for the single root table
 *****************************************************************/

table#roottable, table#roottable > tbody > tr > td {
    border: none;
}

/*****************************************************************
 * Styles for the Club's Mission statement
 *****************************************************************/

div.mission {
    background-color: #EEE8AA;
    border: 1px solid #CCCC99;
    margin-top: 0px;
    margin-bottom: 5px;
}

div.mission p {
    text-indent: 0;
    font: 100% Georgia, "Times New Roman", Roman, Helvetica, serif;
    padding: 1em .5em 1em .5em;
}

div.mission p:first-letter {
    background-color: #CCCC66;
    padding: 1px 5px 1px 5px;
    margin: 0px 2px;
    font-family: Georgia, "Times New Roman", Roman, Helvetica, serif;
    font-size: 300%;
    font-style: normal;
    float: left;
}

/*****************************************************************
 * Styles for the club information
 *****************************************************************/

div.club {
    font-size: 90%;
    margin: 0;
    padding: 0;
}

div.club h2 {
    font-size: 105%;
}

div.club ul, div.club li{
    font-size: 95%;
	list-style: none;
	margin: 0em;
	padding: 0.2em .1em 0em .3em;
	text-indent: -.5em;
}

/****************************************************************
 * News div, for a single news story as:
 * <div class="news">
 *  <h1>Headline</h1>
 *  <h2>byline</h2>
 *  <p>story</p>
 * </div>
 ****************************************************************/

div.news {
    width: 100%;
    background-color: #FFFFFF;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    text-align: left;
}

div.news h1 {
    text-indent: 0pt;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    font-style: normal;
    font-weight: bold;
    font-variant: small-caps;
    text-align: left;
    background-color: #FFFFFF;
    color: #990000;
    padding: .3em 0em 0em .5em;
    margin: 0px;
}

div.news h2 {
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 90%;
    font-style: normal;
    background-color: #FFFFFF;
    color: #B8860B;
    text-decoration: none;
    text-align: left;
    padding: 0em 0em 0em .5em;
    margin: 0px;
}

div.news p {
    color: #663300;
    text-indent: .5em;
    margin: 0;
    padding: .2em .5em;
}

/*****************************************************************
 * Styles for the poll forms and results
 *****************************************************************/

div.poll {
    background-color: #FAFAD2;
    border: 1px solid #CCCC99;
    margin: 0 0 .5em 0;
    border: 1px solid;
}

div.poll h1 {
    margin-top: 1px;
    margin-bottom: 0px;
}

div.poll h2 {
    font: 100% "Trebuchet MS", Verdana, Arial, Helvetica, serif;
    text-align: left;
    margin: .2em 0 .1em .5em;
}

div.poll ul {
    list-style: none;
    margin: .1em 0em .1em 0em;
    padding-left: 1em;
    text-indent: -1em;
}

div.poll li {
    margin-top: .1em;
}

div.poll table {
    width: 90%;
    text-align: center;
}

div.poll table th, div.poll table td {
    font-size: 95%;
    text-align: right;
}

div.poll table tfoot td {
    font-size: 95%;
    text-align: right;
}

div.poll table td.numeric {
    font-size: 95%;
    text-align: right;
    color: #663300;
}

div.poll form {
    margin: 0em 0em .2em 1em;
}

div.poll form input.button {
    text-align: center;
} 

 /*****************************************************************
  * Styles for the table that holds a handicap graph
  *****************************************************************/

table.hdcpGraph th, table.hdcpGraph td {
    width: 5em;
    height: 2em;
    text-align: center;
    vertical-align: bottom;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 90%;    
}

table.hdcpGraph span.graphCi {
    color: #D2691E;
}

table.hdcpGraph span.graphLiEstablished {
    color: #8B0000;
    font-weight: bold;
}

table.hdcpGraph span.graphLi {
    color: #663300;
}


