/* For small displays, convert to a static layout */
@media (max-width: 480px)
{
	.content
	{
		width: 100%;
		box-sizing: border-box;
	}
	
	.topbar
	{
		height: auto;
		min-height: 5em;
	}
	
	.logo
	{
		display: block;
		position: static;
	}
	
	.search
	{
		display: block;
		width: 100%;
		position: static;
		
	}
	
}