﻿/********************************************************************************/
/* Filename: about.css                                                          */
/* Author: Neil Spake                                                           */
/* Description: CSS file for customizing "About The Site".                      */
/* Revision History:                                                            */
/* 09Mar2010 - Initial Version for 2010 renovation.                             */
/********************************************************************************/
/* NOTES:                                                                       */
/*  Font sizes:                                                                 */
/*   18px - 1.125em                                                             */
/*   16px - 1.0em                                                               */
/*   14px - 0.875em                                                             */
/*   12px - 0.75em                                                              */
/*   10px - 0.625em                                                             */
/*   9px  - 0.5625em                                                            */
/*                                                                              */
/*  font-family: Georgia, "Times New Roman", Times, sans-serif;                 */
/*  font-family: "Lucida Grande", Verdana, Lucida, Arial, Helvetica, sans-serif;*/
/*                                                                              */
/*  Colors:                                                                     */
/*   Today's Breweries - color: #000099; (dark blue)                            */
/*   Brewing History   - color: #996633; (brown)                                */
/*   Brewing News      - color: #000000; (black)                                */
/*   Brewing Events    - color: #cc0000; (reddish)                              */
/*   Related Links     - color: #006600; (green)                                */
/*   About The Site    - color: #006666; (aqua/teal)                            */
/*                                                                              */
/********************************************************************************/

/********************************************************************************/
/* SECTION HEADER                                                               */
/********************************************************************************/

/* SECTION HEADER - BACKGROUND IMAGE */
#sectionHeadAbout {
    float: left;
    margin: 0;
    padding: 0;
    height: 50px;
    width: 800px;
    z-index: 2;
    background: url('../images/general/about-the-site.png') no-repeat;
    background-position: left center;
}

/********************************************************************************/
/* CONTENT AREA                                                                 */
/********************************************************************************/

/* CONTENT, H1 */
#content h1 {
	display: block;
    margin: 0px 20px 0px 0px;
    height: 25px;
    line-height: 25px;
    background: #006666;
    color: #ffffff;
    text-indent: 0.5em;
    vertical-align: middle;
}

/********************************************************************************/
/* SECTION LOCAL NAVIGATION AREA - ALL PAGES IN SECTION                         */
/********************************************************************************/
/* NAVIGATION AREA PROPERTIES - GENERAL */
#sectionLocNav {
    margin: 0;
    padding: 0px 0px 0px 10px;
}

/* TITLE, H4 */
#sectionLocNav h4 {
  display: block;
  margin: 0;
  height: 25px;
  line-height: 25px;
  left;
  vertical-align: middle;
  text-align: center;
  font-size: 0.875em;
  color: #ffffff;
  background: #006666;
}

/* UNORDERED LIST FOR LINKS, UL */
#sectionLocNav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* LIST ITEMS FOR LINKS, UL LI */
#sectionLocNav ul li {
  margin: 0;
  padding: 0;
  font-family: "Lucida Grande", Verdana, Lucida, Arial, Helvetica, sans-serif;
  font-size: 0.75em;
  font-weight: normal;
  display: inline; /* KLUDGE: Removes gaps in IE/Win */
}

/* LINK PROPERTIES, UL A */
#sectionLocNav ul a {
  display: block;
  margin: 0;
  padding: 0;
  height: 25px;
  line-height: 25px;
  text-decoration: underline;
  text-indent: 10px;
  color: #000066;
  border-top: 0px;
  border-right: 1px;
  border-bottom: 1px;
  border-left: 1px;
  border-style: solid;
  border-color: #006666;
}

/* LINK MOUSEOVER (HOVER) PROPERTIES, UL A:HOVER */
#sectionLocNav ul a:hover {
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  background-color: #006666;
}

/********************************************************************************/
/* CURRENT PAGE HIGHLIGHTING AND NAVIGATION CONTROL                             */
/********************************************************************************/

/* HIGHLIGHT CURRENT PAGE LOCATION, DISABLE MOUSEOVER (HOVER) PROPERTIES */
#aboutGeneral .sectionAbout .aboutGeneral a {
  font-weight: bold;
  text-decoration: none;
  cursor: default;
}

#aboutGeneral .sectionAbout .aboutGeneral a:hover {
  font-weight: bold;
  color: #000066;
  text-decoration: none;
  background-color: #ffffff;
  cursor: default;
}
