/* A CSS Framework by Mike Stenhouse of Content with Style */

/* NAV */
	#nav {
        font-size: 0.9em;
    }
    * html #nav {
        /* hide ie/mac \*/
        height: 1%;
        /* end hide */
    }
    #nav div.wrapper {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
    }
    #nav {
        width: auto; 
        width: 100%;    
        margin: 0;
        padding: 20px 0 0 0;
        list-style: none;
    }
    #nav li {
        list-style: none;
        margin: 0;
        padding: 0;
        line-height: 1em;
        border-bottom: 1px solid #aaa;
        overflow:hidden;
    }
    #nav li.last {
        border-right: none;
    }
    #nav a,
    #nav a:link,
    #nav a:active,
    #nav a:visited {
        display: inline-block;
        /* hide from ie/mac \*/
        display: block;
        /* end hide */
        font: 1.5em Georgia, "Times New Roman", Times, serif;
        font-weight: bold;
        text-decoration: none;
        margin: 0;
        padding: 5px 0 5px 15px;
        color: #ab7724;
    }
    #nav a:hover {
        border-left: solid 10px #DB4F2C;
    }
    #nav strong {
        display: inline-block;
        /* hide from ie/mac \*/
        display: block;
        /* end hide */
        
        color: white;
        background: black;
    }
    #nav strong a,
    #nav strong a:link,
    #nav strong a:active,
    #nav strong a:visited,
    #nav strong a:hover {
       color: white;
       background-color: black;
    }
/* END NAV */