@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Sail');
/*font-family: 'Sail', cursive;*/

/*html5 display rule*/
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, audio, video {
	display: block;
}

/* Rules for sizing the icon. */
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }

html {
	overflow-y: scroll;
	box-sizing: border-box;
	background-color: #cfcaa7;
	background-image: url(../_images/bkg_building.png);
	background-position: right bottom;
	background-attachment: fixed;
	background-repeat: no-repeat;
}
*, *:before, *:after {
	padding: 0;
	margin: 0;
	box-sizing: inherit;
}
body {
	font-family:'Playfair Display', serif;
	font-size: 62.5%;
	line-height: 125%;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a, a:hover {text-decoration: none;} 

div:empty {height: 10px;}

#wrapper {
	width: 960px;
	margin: 0 auto;
	background: #F4F1ED;
}

header {
	background: url(../_images/header.jpg) no-repeat;
	height: 150px;
	padding: 65px 0 0 530px;
}

/*navigation*/
nav {
	background: #564E4C;
}
#navigation {
	list-style-type: none;
	padding: 0;
	margin: 0 auto;
	text-align:center;
	display: table;
}
#navigation li {
	display: inline-block;
	border-right: solid 1px #E9B939;
	position: relative;
}
#navigation li > a {
	font-family: droid-sans, arial, sans-serif;
	font-size: 1.4em;
	color: #fff;
	display: block;
	padding: 18px 12px;
}
#navigation li > a:hover {
	background: linear-gradient(to bottom, #fff 10%, #ffd700 80%);
	color: #544C4A;
}
#navigation li:last-child {
	border-right: none;
}

#navigation li ul {
	max-height: 0;
	overflow: hidden;
	position: absolute;
	top: 47px;
	left: 0;
	z-index: 100;
	transition: max-height 1s ease;
}
#navigation li:hover ul {
	max-height: 400px;
}
#navigation li li {
	border: none;
	border-bottom: solid 1px #f4f1ed;
	background: #E9B939;
}
#navigation li li:first-child {
	border-top: solid 1px rgba(136, 0, 0, .7);
}
#navigation li li:last-child {
	border-bottom: solid 2px rgba(136, 0, 0, .7);
}
#navigation li li a {
	color: #564E4C;
	font-size: 1.1em;
	line-height: 110%;
	padding: 8px 0 5px;
	margin: 0;
}
#navigation li:nth-child(2)  li a {
	width: 102px;
}
#navigation li:nth-child(3)  li a {
	width: 166px;
}
#navigation li:nth-child(5) li a {
	width: 178px;
}

#navigation li:hover ul li a:hover {
	background: #800;
	padding: 8px 0 5px;
	margin: 0;
	color: #fff;
}

.sticky {
  background: #564E4C;
  position: fixed;
  top: 0;
  width: 960px;
  z-index: 10;
}

section {
	overflow: hidden;
	padding-top: 15px;
}
section.info {
	position: relative;
	width: 490px;
	height: 650px;
	float:right;
}
section.home {
	background: url(../_images/home_bg.jpg) no-repeat;
	padding-top: 0;
}

section.lunch {
	padding: 65px 0 15px 35px;
}
section.lunch h1 {
	font-family: 'Sail', cursive;
	font-size: 4em;
	text-align: center;
	color: #800;
	margin-bottom: 25px;
	font-weight: 400;
}
section.lunch h3 {
	font-size: 2em;
	line-height: 150%;
	font-weight: 400;
	text-align: center;
	margin: 25px 0;
}
section.lunch p {
	font-family: droid-sans, arial, san-serif;
	font-size: 1.6em;
	line-height: 150%;
	text-align: center;
}
section.lunch p strong {
	font-size: 1.2em;
	font-weight: 700;
	font-style: italic;
}

#animate {
	margin: 0;
	width: 960px;
	height: 300px;
}

/*aside*/
aside {
	float: left;
	width: 460px;
	text-align: center;
	font-size: 2em;
	line-height: 125%;
	padding: 25px 0 125px;
	background: #F4E7D4 url(../_images/aside_bg.png) no-repeat left bottom;
	background-size: 100%;
	border-right: solid 5px #7A4D0F;
}
aside h1 {
	color: #E64A31;
	margin-bottom: 15px;
}
aside h2 {
	color: #E64A31;
	line-height: 135%;
	margin: 10px 0;
}
aside h3 {
	width: 85%;
	margin: 5px auto;
	padding: 10px 0;
	border-top: dotted 2px #A03733;
	font-size: 1em;
}

.dish_images {
	width: 250px;
	float: left;
	padding: 50px 0 0;
}
.dish_images figure {
	width: 80%;
	margin: 0 auto 25px;
	border-top: solid 2px #800000;
	border-bottom: solid 2px #800000;
	box-shadow: 0 10px 10px -5px #999;
}

.asian_star_images {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 0 0 0 8px;
}
.asian_star_images figure {
	width: 200px;
	margin: 0 12px 25px;
	border-top: solid 2px #800000;
	border-bottom: solid 2px #800000;
	box-shadow: 0 10px 10px -5px #999;
}
.dish_images img, .asian_star_images img {
	width: 100%;
	height: auto;
}
.dish_images figure figcaption, .asian_star_images figure figcaption {
	font-family: droid-sans, arial, san-serif;
	font-size: 1.4em;
	line-height: 130%;
	text-align: center;
	padding: 8px 0;
	margin-top: -3px;
}

.menu_images {
	display: flex;
	justify-content: center;
	padding: 0 15px;
}
.menu_images > img {
	width: auto;
	height: 250px;
	margin: 0 5px;
}
.menu_images figure {
	width: 275px;
	margin: 0 5px;
}
.menu_images figure img {
	width: 100%;
	height: auto;
}
.menu_images figure figcaption {
	font-family: droid-sans, arial, san-serif;
	font-size: 1.4em;
	line-height: 140%;
	text-align: center;
	padding: 8px 0;
}

.menu {
	margin-left: 260px;
	padding: 30px 20px 20px 10px;
}

.menu h2 {
	font-family: 'Sail', cursive;
	font-size: 4em;
	text-align: center;
	color: #800;
	margin-bottom: 25px;
	font-weight: 400;
}

/*table*/
.menuTbl {
	width: 95%;
	margin: 20px auto;
}
.menuTbl caption {
	font-family: 'Sail', cursive;
	font-size: 4em;
	text-align: center;
	color: #800;
	margin-bottom: 25px;
	font-weight: 400;
}
.menuTbl thead tr th {
	font-family: droid-sans, arial, san-serif;
	font-size: 2em;
	padding-bottom: 8px;
	font-style: italic;
}
.menuTbl thead th small {
	font-weight: 400;
	line-height: 2em;
	font-style: italic;
}

.menuTbl tbody tr td {
	font-size: 2em;
	border-bottom: solid 1px #bbb;
	position: relative;
	vertical-align: top;
	font-weight: 700;
}
.menuTbl tbody td.chili:before {
	content: url(../_images/chili.png);
	position: absolute;
	top: 7px;
	left: 0px;
}
.menuTbl tbody tr td span {
	float: right;
}
.menuTbl tbody td:first-child {
	text-align: right;
	padding: 12px 15px 12px 0;
	width: 70px;
}
.menuTbl tbody td:nth-child(2) {
	padding: 12px 10px 12px 30px;
}
.menuTbl tbody td small {
	font-family: droid-sans, arial, san-serif;
	font-size: 85%;
	font-style: italic;
}
.menuTbl tbody td div {
	font-family: droid-sans, arial, san-serif;
	font-size: 70%;
	line-height: 130%;
	font-style: italic;
	margin: 8px 45px -5px 0;
}
.menuTbl tbody tr td p {
	margin-top: 10px;
}
ol.lunch_dishes {
	column-count: 3;
	column-gap: 0;
	padding: 0;
	margin: 20px 0;
	list-style-type: none;
	width: 900px;
}
ol.lunch_dishes li {
	font-size: 2em;
	line-height: 125%;
	margin-bottom: 5px;
	counter-increment: step-counter;
}
ol.lunch_dishes li:before {
	content: counter(step-counter);
	margin-right: 15px;
	padding: 2px 0 2px 4px;
	display: inline-block;
	width: 30px;
	text-align: right;
}

ul.lunch_dishes {
	padding: 0;
	margin: 15px 0 15px 120px;
	list-style-type: none;
}
ul.lunch_dishes > li {
	font-size: 1.8em;
	margin-bottom: 15px;
	font-weight: 700;
} 
ul.lunch_dishes li small {
	font-style: italic;
	font-weight: 400;
	margin-left: 5px;
}

/*footer*/
footer {
	font-family: droid-sans, arial, san-serif;
	font-size: 1.2em;
	text-align: center;
	background: #564E4C;
	color: #fff;
	height: 55px;
	line-height:  55px;
	clear: both;
	width: 960px;
	margin: 0 auto 20px;
	border-radius: 0 0 20px 20px;
	word-spacing: 1px;
}
footer a {
	color: inherit;
}
footer a:hover {
	text-decoration: underline;
}


/*classes*/
.floatLeft {float: left;}
.floatRight {float: right;}
.clear {clear: both;}
.blockCenter {display: block; margin: 0 auto;}
.marginTop {margin-top: 10px;}
.marginRight {margin-right: 10px;}
.marginBottom {margin-bottom: 10px;}
.marginLeft {margin-left: 10px;}
.new {
	color: #f00;
	font-style: italic;
	text-shadow: 1px 1px 1px #333;
	margin-left: 3px;
}

.phone {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", Helvetica, Arial, sans-serif;
	font-size: 2.5em;
	color: #E7492E;
	font-weight: 700;
	letter-spacing: 1px;
}

#coupon {
	font-family: droid-sans, arial, san-serif;
	font-size: 1.2em;
	font-weight: 800;
	letter-spacing: 1px;
	width: 130px;
	padding: 8px 10px;
	position: absolute;
	top: 20px;
	left: 750px;
	background: #15698C;
	color: #fff;
	text-align: center;
	border-radius: 15px;
	border: outset 3px #e9b939;
	z-index: 50;
}
#triangle {
	position: absolute;
	top: 50%;
	left: -7px;
}

iframe {
	width: 400px;
	height: 550px;
	position: absolute;
	top: 50px;
	right: 0;
	bottom: 0;
	left: 40px;
	box-shadow: 0 0 0 5px #A03733, 0 0 0 15px #E9B939;
}
.chili_small {
	width: 10px;
	height: auto;
	margin-bottom: -2px;
}
.note {
	font-family: droid-sans, arial, san-serif;
	font-size: 1.2em;
	font-style: italic;
	line-height: 130%;
	margin-left: 50px;
}
button {
	font-size: 2.4em;
	background: #800;
	color: white;
	padding: 8px 18px;
	border-radius: 25px;
	display: block;
	margin: 15px auto 0;
}
hr.dotted {
	border: none;
	border-top: dotted 3px #666;
	margin: 10px auto 35px;
	width: 95%
}
.home_content {
	display: flex;
	padding: 25px 130px 25px 20px;
}
.home_content h1 {
	font-size: 2.6em;
	line-height: 160%;
	text-align: center;
	color: #800;
	flex: 1;
	border-left: dotted 3px #800;
}
.home_info {
	flex: 1;
}
.home_info p  {
	text-align: center;
	font-size: 20px;
	line-height:  140%;
	magin-bottom: 30px;
}






