﻿/********************************************************************************/
/* Filename: news.css                                                           */
/* Author: Neil Spake                                                           */
/* Description: CSS file for customizing "Beer and Brewing News".               */
/* Revision History:                                                            */
/* 24Mar2010 - 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 */
#sectionHeadNews {
    float: left;
    margin: 0;
    padding: 0;
    height: 50px;
    width: 800px;
    z-index: 2;
    background: url('../images/general/brewing-news.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: #000000;
    color: #ffffff;
    text-indent: 0.5em;
    vertical-align: middle;
}

#content h2 {
    margin: 1.0em 20px 0px 0px;
    font-size: 0.875em;
}

#content h3 {
    margin: 1.0em 20px 0px 0px;
    font-size: 0.875em;
    color: #000099;
}

#content p {
    margin: 1.0em 20px 0px 0px;
}

#content p.eventDetail {
    margin: 0.25em 20px 0px 0px;
    font-size: 0.75em;
}

/********************************************************************************/
/* 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: #000000;
}

/* 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: #000000;
}

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

#sectionLocNav p img {
	float: left;
	margin: 0;
	padding: 30px 25px 20px 15px;

}

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

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

#news .sectionNews .news a:hover {
  font-weight: bold;
  color: #000066;
  text-decoration: none;
  background-color: #ffffff;
  cursor: default;
}
/* HIGHLIGHT CURRENT PAGE LOCATION, DISABLE MOUSEOVER (HOVER) PROPERTIES */
#website .sectionNews .website a {
  font-weight: bold;
  text-decoration: none;
  cursor: default;
}

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

