@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 7th Edition
   Tutorial 1
   Tutorial Case
   Filename: ct_layout2.css

   This file contains the layout styles used in the Curbside Thai website

*/

/* =============================================
	Base layout styles used by mobile devices
	up to 480px and cascaded to larger devices 
	unless superceded by other styles.
   =============================================
*/

html {
	height: 100%;
	font-size: 14px;
}
img, object, embed, video {
	max-width: 100%;
}
body {
	margin-left: auto;
	margin-right: auto;
	width: 81.9%;
	padding-left: 4.55%;
	padding-right: 4.55%;
	clear: none;
	float: none;
	min-height: 100%;
}
nav {
	width: 25%;
	margin: 6% 2% 0% 0%;
}
nav.horizontalNavigation li {
	display: block;
	float: left;
}
header {
	background-color: #eee;
	border-bottom: 1px solid #e6e6e6;
	padding: 27px 0;
	width: 100%;

}

article.left {
	width: 45%;
	padding:0 5% 0 0;
float: left;
}

article.right {
	width: 50%;
	float: left;
}
