@media only screen and (min-width: 600px) {
/*-----BODY -----*/
	body {}



/*-----CONTAINER -----*/
	#container {}



/*-----HEADER -----*/




/*-----NAVIGATION -----*/
    #navWrapper {
        background: rgb(255,48,25); /* Old browsers */
        background: -moz-linear-gradient(top, rgba(255,48,25,1) 0%, rgba(160,21,3,1) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top, rgba(255,48,25,1) 0%,rgba(160,21,3,1) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, rgba(255,48,25,1) 0%,rgba(160,21,3,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3019', endColorstr='#a01503',GradientType=0 ); /* IE6-9 */
     }
    
    nav ul {
        margin-left: 2%;
    }
    
/*---- Main Menu float side by side ----*/
    nav ul li {
        float: left;
        border-right: 1px solid rgba(0,0,0,0.5);
        border-left: 1px solid rgba(255,255,255,0.5);
    }
    
    nav ul li a {
        display: block;
        color: rgba(255,255,255,0.9);
        font-size: .8em;
        padding: 1.2em .9em;
        font-weight: 700;
        text-decoration: none;
    }
    
    nav ul li a:hover {
        color: rgba(0,0,0,0.8);
    }
/* --- rules for the sub menu items -----*/    
    nav ul li ul {
        z-index: 99;
        position: absolute;
        background-color: red;
        left: -999em; /* pushes the menu way off to the side */
        width: 10em;
    }
/* overrides the float and line from the parent ul */
    nav ul li ul li {
        float: none;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.5);
    }
/* this displays the menus as drop downs  */    
    nav li:hover ul {
        left:auto;
        margin-left: 0; /* align directly below the main menu items  */
    }
    
    nav li.current {
        background-color: red;
    }

/*-----CONTENT -----*/
div.column {
        clear: both;
    }
    
    article {
        width: 46%;
        float: left;
    }


/*----- FOOTER -----*/

	
}