/* CSS MARKWHITINGDAVIS.COM/WEBDEV/COLORS */
			body {
				width: 100%;
				margin: 0 auto;
                background-color: #cdc1c3; 
                background-image:url('../../images/autumn_leaves_bg.jpg');
                background-repeat: repeat-y;opacity:1;
                font-family: MyriadPro-Regular, 'Myriad Pro Regular', MyriadPro, 'Myriad Pro', Helvetica, Arial, sans-serif;
				color: #665544;
				}
            

            #header {

                width: 100%;
                height: 100px;
                margin: 0 auto 10px;
                background-color: rgba(120,120,120,.2)

            }
            
            #header img{
	            width:190px;
	            float: left;
	            margin: 12px 0 0 1%;
            }
            

	
	
	
            
            
/* START NAVIGATION */    
 nav {
    margin:10px 1% 0 0;
	float:right;              
    font-family: MyriadPro-Regular, 'Myriad Pro Regular', MyriadPro, 'Myriad Pro', Helvetica, Arial, sans-serif;
    font-weight:lighter;
    }


	#menu-icon {
		display: hidden;
		margin-right: 10px;
		margin-top: 12px;
		width: 40px;
		height: 40px;
		background: black url(../../images/menu-icon.png) center;
		}
		

    nav ul ul {
        display: none;
        z-index: 2;        
    	}

        nav ul li:hover > ul {                       
            display: block;
            }


    nav ul {
        margin: 0 auto;                       
        background: none;        
        list-style: none;
        position: relative;
        display: table;                
        width: 100%;                            
            }
    
/*
        nav ul:after 
            {
            content: ""; clear: both; display: block; 
            }
*/
    

        nav ul li 
            {
            display:inline-block;
			padding: 8px 2px; 
            line-height: 15px;
            }
            


                        
      nav li .current 
            {
            background-color: rgb(150,150,150);
            }

            nav ul li:hover {
                background-color: rgb(50,50,50);
            }
    
            nav ul li:hover a {
                color: #fff;               
            }
            
            
            
            
            

            nav ul li a {
                
				padding: 5px; 
                color: black;
                text-decoration: none;
                
            }


                nav ul ul {
                    background: none;
                    position: absolute; width:80px;
                    border-radius: 0px;
					margin-top: 6px;
					margin-left: -30px;
					}
                
              
                    nav ul ul li {                       
                        background: rgb(100,100,100);;
                        border: none;
                        text-align: center;
                        width:120px;
                        padding: 8px;
                        
                    }
                        nav ul ul li a {

                            color: #fff;
                        }	
                            nav ul ul li a:hover {
/*                                 background: #6c0000; */
                                
                            }

                nav ul ul ul {
                    position: absolute; left: 100%; top:0;
        }                 							
/* END NAVIGATION */ 	
            
                    

/* BEGIN CONTENT */

    h1 {text-align: center;}
    
    
    .box {
	    margin: 10px auto;
	    width: 40%;
	    max-width: 720px;
	    border: 1px solid black;
	    padding: 12px 18px;
	    color: black;
	    background-color: rgba(240,240,240,.9);
    	}
    	
    	p
	{
		font-style: normal;
		color:black;
		font-family: Times, "Times New Roman", Georgia, serif;

	}

h3
	{
		font-family: Verdana, Arial, Helvetica, sans-serif;
		margin: 0 0 12px 10px;
	}
	
span 
	{
	margin:0 12px;
	}
	
	[class|="articlepromo"] {
			border-left: 8px solid black;
			border-right: 100px solid black;
			color: #555;
			line-height: 1.5em;
			padding-top: .5em;
			margin-bottom: 20px;
			background-color: rgba(250,250,250,.8);
		}
		
		[class|="articlepromo"] h3 {
			color: #000;
			font-size: 1.2em;
			margin:0 0 0 1em;
		
		}

		[class|="articlepromo"] p {
			margin: 0 0 0 2em;
		}
	
		.articlepromo-red {border-color: rgb(255,0,0);}
		.articlepromo-vermilion {border-color: rgb(227,66,52);}
		.articlepromo-orange {border-color: rgb(255,165,0);}
		.articlepromo-amber {border-color: rgb(255,191,0);}
		
		.articlepromo-yellow {border-color: rgb(255,255,0);}
		.articlepromo-chartreuse {border-color: rgb(223,255,0);}
		.articlepromo-green {border-color: rgb(0,255,0);}
		.articlepromo-teal {border-color: rgb(0,128,128);}	
		
		.articlepromo-blue {border-color: rgb(0,0,255);}						
		.articlepromo-purple {border-color: rgb(159,0,197);}		
		.articlepromo-violet {border-color: rgb(127,0,255);}		
		.articlepromo-magenta {border-color: rgb(202,31,123);}

    


/* END CONTENT */


            
			 #footer {
                margin: 0 auto;
                padding: .1px;             
                background-color: rgba(50, 50, 50, .8);
                border-radius: 5px;                
                width:80%;
				min-width: 350px; 
				text-align: center;                                                      
            }
            
             #footer p {
	             color:white;
	             font-size: .8em;
             }
             
             
             
/*MEDIA QUERY*/
@media only screen and (max-width : 1000px) {
	.box {
	    width: 50%;
	    }
	}
	
/*MEDIA QUERY*/
@media only screen and (max-width : 800px) {
	.box {
	    width: 75%;
	    }
	}
	
	
/*MEDIA QUERY*/
@media only screen and (max-width : 700px) {
	.box {
	    width: 88%;
	    }
	}
			

/*MEDIA QUERY*/
@media only screen and (max-width : 640px) {

	header {
		position: absolute;
	}

	#menu-icon {
		display:inline-block;
		}

		nav ul, nav:active ul { 
			display: none;
			position: absolute;
			padding: 15px 0;
			background: rgb(200,200,200);
/* 			border: 1px solid yellow; */
			right: 20px;
			top: 60px;
			width: 148px;
			border-radius: 4px 0 4px 4px;
			}
			
		nav:hover ul {
			display: block;
			}
			
		nav:hover ul ul {
			display: none;
			width:200px;
			}

		nav ul li {
			text-align: center;
			width: 100%;
			padding: 18px 0;
			margin: -9px 0;
			}
			
			nav ul ul li {
				text-align: center;
				width: 150px;
				padding: 18px 0;
				margin: 0;
				}

	
		nav ul:hover ul { 
			position: absolute;
			background: none;
			border: none;
			left: -120px;
			top: 0px;
			width: 25%;
			border-radius: 4px 0 4px 4px;
			}

h1 {
	font-size: 1.5em;
}

.box {
	    width: 90%;
	    }
	    }
	    
	    
	    
	    