/**
 * @file
 * flesh color scheme
 * 
 * light -  #F4EACF (light background color)
 * medium - #BBB38C (medium background color)
 * dark -   #7F7655 (dark background color)
 * solid -  #0A3347 (highlited text and border color)
 * gray -   #E3D9BE (shade of gray darker than the 'light' value (hex value minus 0x111111))
 *
 * NOTE: This is the defacto color scheme for the site. The 'light' background 
 * color should NOT be changed as it matches several images throughout the site.
 *
 * Also, this is the only color scheme with different colored borders - #FFD414
 *
 * Changing colors should be done by a global replace.
 */

a.colored, .subtitle, .left_nav_subtitle {font-weight: bold;}
a.colored, a.colored:visited, #content_title, .subtitle, .left_nav_subtitle {color: #0A3347;}
#content_container, .left_nav, .story_image_container {border:1px solid #FFD414;}
#content_title, .left_nav_title {border-bottom: 1px solid #FFD414;}

#content_container{background-color: #F4EACF;}
#content_title{background-color: #BBB38C;}

.left_nav{background-color: #BBB38C;}
.left_nav_title{color: #F4EACF; background-color: #7F7655;}

.story_image_container{background-color: #BBB38C;}
.story_image_middle{color: white; background-color: #7F7655;}

.grayed{background-color:#E3D9BE;}