/**
 * Subsite Header Styles
 *
 * Layout out for the subsite headers on evergreen.edu
 *
 * These styles were developed by generations forgotten to time.
 * This is a somewhat decorative header that appears directly below the
 * header and nav on second-level Evergreen pages. This should probably
 * be consolidated with common.css, or other component stylesheets.
 *
 * Styles in this file are organized according to the SMACSS principles:
 * http://smacss.com/
 *
 * @project     The Evergreen State College
 * @version     1.1
 * @package     XHTML (Transitional) and CSS
 * @author      The Evergreen State College
 * @copyright   2013 by the author
 * @cssdoc      0.2.22
 * @license     Copyrighted
 */

/* No need to organize this file according to SMACSS principles. It's
 * small enough. -just
 */

#subsite_header{
    border-bottom: 1px solid #fff;  /*box model*/
    padding: 0 0 10px 0;
    width: 100%;
    overflow: hidden;               /*layout*/
}

#subsite_header h3{
    margin: 15px 0 0 0;         /*box model*/
    padding: 8px 5px 7px 15px;
    width: 70%;
    float: left;                /*layout*/
    font-weight: bold;          /*typography*/
    background-color: #996600;  /*backgrounds & borders*/
}
#subsite_header h3 a,
#subsite_header h3 a:link{
    color: #fff;
    text-decoration: none;
}
#subsite_header h3 a:hover{
    border-bottom: 1px dotted #fff;
}
#subsite_header h3 small{
  padding: 0 0 0 .5em;  /*box model*/
  color: #fff;          /*typography*/
  font: normal .85em Helvetica, Arial, sans-serif;
}

#subsite_header .trees,
#subsite_header .fish,
#subsite_header .geoduck{ 
    margin: 10px 0 0 -52px;  /*box model*/
    float: left;             /*layout*/
}

/*This file was organized by Justin McDowell. ((O)O)*/