/*! 
Created by:  Barbara
Date: 01/30/2015

Per Hannon Hill:
IE versions 6, 7, 8 & 9 all have a limit on the number of selectors allowed in a single CSS file. 
Once the limit is reached, IE silently fails and just ignores any further CSS in the file leaving 
parts of your site totally unstyled.

This style sheet contains the last style that was added to screen, that IE no longer picks up.

http://blogs.msdn.com/b/ieinternals/archive/2011/05/14/10164546.aspx 
The maximum number of stylesheets and rules supported by Internet Explorer 6 to 9.
    A sheet may contain up to 4095 rules
    A sheet may @import up to 31 sheets
    @import nesting supports up to 4 levels deep
 */

/* I've removed all of the other styles that are still part of the first style sheet
and only included the NEW styles here.*/


/* Added link info for about-washoe that emulates behavior of main links in site*/

.main-footer .about-washoe a  {
  background: transparent;
  text-decoration:none;
  color:#054c70;
}

.main-footer .about-washoe a:focus {
 color: #20608b;
 outline: thin dotted;
 
}

.main-footer .about-washoe a:active {
  outline: 0;
  color: #20608b;
}

.main-footer .about-washoe a:hover { 
  color: #20608b;
}

