@media only screen and (min-width: 961px) {
/*-----WRAPPER -----*/
body {
		
}

/*-----HEADER -----*/
header { }
	
/*-----CONTAINER -----*/
#container {
	margin: 1em auto;
}

/*-----NAVigation -----*/
nav{
	float: none;
	width: 100%;
	border: none;
}
nav ul {
	margin-left: 2%;
	border:none;
}
/*main menu items float side by side*/
nav ul li {
	
	float: left;
	border-right: solid 1px #000; 
	border-left: solid 1px #000; 
	
}
nav ul li a { 
	border:none;
	++background: none;
	font-size: .8em;
	padding: .6em;	
}

nav ul li ul { /*rules for the sub menu items*/
	z-index:99;
	position: absolute;
	background-color: #666;
	left: -999em; /* pushes the menu way off to the side */
	width: 10em;
}
nav ul li ul li { /* overides the float and line from the parent ul */
	float: none;
	border-right: none;
}
nav li:hover ul { /* this displays the menus as drop downs  */
	left: auto;
}

/*-----CONTENT -----*/

/*turn off the margin from the tablet*/
#content {
	float:none;
	width: 100%;
}
article.column {
	width: 46%;
	float:left;
	clear:none;	
}

/*-----IMAGES -----*/
figure.w50 img {
	width: 50%;
}

/*----- FOOTER -----*/


}

