*{
    margin: 0;
    padding: 0;
}
header, nav{
    display: block;
}
/* Define menu width and heigth: 100% and fixed */
header{
    background: white;
    height:60px;
    position: relative;
    width: 100%;
    z-index: 2;
}
/* Float logo right */
#logo{
    background: url(../images/adoff_logo.png) no-repeat 0 0;
	display: block;
	float: right;
    margin: 5px 0 0;
    width: 121px;
    height: 31px;
    text-indent: -9999px;
}

/* Float nav with id #menu left*/
#menu{float: left;}   


    /* Define default style for the tag UL */
    #menu ul{
        list-style: none;
        font-size: 12px;
	}
        
        /* Center text and style */
        #menu li{
           display: block;
           float: left;
           text-transform: uppercase;
		   left: 0px;
		  }
       
            /* Link Style */
            #menu li a{
                display: block;
                color: black;
                text-decoration: none;
                height: 60px;
                line-height: 60px;
                padding: 0 26px 0 0;
				   }
            #menu li a:hover{
                background: none;
                color: #999999;
            }
    
    /* Style #nav-mobile hidden */
    #nav-mobile{
        display: none;
       /* background: url(images/nav.png) no-repeat center center; */
        float: left;
        width: 30px;
        height: 30px;
        position: absolute;
        left: 20px;
        top: 20px;
        opacity: 1;
		text-decoration: none;
		color: black;
	}   
        /* Add class to #nav-mobile, after drop down menu*/
        #nav-mobile.nav-active{
            opacity: 1;
        }

/* Content */
#content{
    width: 80%;
    margin: 60px 10%;
    text-align: left;
    overflow: hidden;
	
}
    h2{
        font-size: 50px;
        font-weight: 600;
        text-transform: uppercase;
        color: #624c3f;
    }

