@charset "utf-8";
/* style.css */

/* SNIPPETS

BOX WITH CORNERS (10x10 corners with 20x20 image)
	.box { position: relative; background: background; border: none; }
	* html .box { height: 1px; }
	
	without border:
		.tl, .tr, .bl, .br { width: 10px; height: 10px; overflow: hidden; background-image: url('url'); background-repeat: no-repeat; background-position: 0 0; position: absolute; }
		.tl { top: 0; left: 0; background-position: 0 0; } .tr { top: 0; right: 0; background-position: -10px 0; }
		.bl { bottom: 0; left: 0; background-position: 0 -10px; } .br { bottom: 0; right: 0; background-position: -10px -10px; }

	with border:
		.tl { top: -1px; left: -1px; background-position: 0 0; } .tr { top: -1px; right: -1px; background-position: -10px 0; }
		.bl { bottom: -1px; left: -1px; background-position: 0 -10px; } .br { bottom: -1px; right: -1px; background-position: -10px -10px; }

ANCHOR BACKGROUND POSITION
	a { width: 0; height: 0; overflow: hidden; background-image: url('url'); background-repeat: no-repeat; background-position: 0 0; color: color; text-decoration: none; }
	a:hover { background-position: 0 0; color: color; }

STANDARD FONTS
	font-family: Arial, Helvetica, sans-serif; 
	font-family: Georgia, "Times New Roman", Times, serif; 
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;

POSITIONING CENTER (with 960 container)
	body { text-align: center; }
	#container { width: 960px; margin: 0 auto; text-align: left; }

RESET
	html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, pre, a, img, small, strong, sub, sup, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; }
	body { line-height: 1; } ol, ul { list-style: none; } :focus { outline: 0; } table { border-collapse: collapse; border-spacing: 0; }
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, pre, a, img, small, strong, sub, sup, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; }
body { line-height: 1; } ol, ul { list-style: none; } :focus { outline: 0; } table { border-collapse: collapse; border-spacing: 0; }

a { color: #B8D8A0; }
a:hover { text-decoration: none; }

body { background: #263526 url('design/bg.bodytag.jpg') repeat-y center top; color: #B8D8A0; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }
input, textarea { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }
#container { width: 800px; margin: 0 auto; text-align: left; background: #000 url('design/bg.content.jpg') no-repeat 0 300px; border-left: 1px solid #1D381D; border-right: 1px solid #1D381D; }

#head { height: 300px; background: url('design/bg.head.jpg') no-repeat 0 0; overflow: hidden; position: relative; }
	#stella { width: 155px; height: 150px; overflow: hidden; background: url('design/bg.stella.png') no-repeat 0 0; position: absolute; top: 44px; right: 0; }
	#clock { width: 155px; height: 150px; position: absolute; top: 44px; left: 0; }
	#logo { width: 250px; height: 140px; position: absolute; top: 100px; left: 275px; }
	#reservation { position: absolute; bottom: 50px; left: 10px; font-size: 12px; color: #fff; } #reservation b { font-size: 14px; }
	#language { position: absolute; bottom: 50px; right: 10px; text-align: right; font-size: 12px; font-weight: bold; color: #fff; }
	
#menu { position: absolute; bottom: 10px; left: 0; width: 800px; height: 30px; overflow: hidden; }
#menu a { display: block; background-image: url('design/bg.menu.png'); background-repeat: no-repeat; overflow: hidden; text-indent: -200px; float: left; width: 100px; height: 30px; }
#menu span { width: 50px; float: left; background: url('design/bg.menu-spacer.png') no-repeat 0 0; height: 30px; overflow: hidden; }
	#menu a.menu-1 { width: 125px; background-position: 0 0; } 		#menu a.menu-1:hover { width: 125px; background-position: 0 -30px; } 		
	#menu a.menu-2 { width: 63px; background-position: -125px 0; }	#menu a.menu-2:hover { width: 63px; background-position: -125px -30px; }
	#menu a.menu-3 { width: 95px; background-position: -188px 0; }	#menu a.menu-3:hover { width: 95px; background-position: -188px -30px; }
	#menu a.menu-4 { width: 73px; background-position: -283px 0; }	#menu a.menu-4:hover { width: 73px; background-position: -283px -30px; }
	#menu a.menu-5 { width: 72px; background-position: -356px 0; }	#menu a.menu-5:hover { width: 72px; background-position: -356px -30px; }
	#menu a.menu-6 { width: 122px; background-position: -428px 0; }	#menu a.menu-6:hover { width: 122px; background-position: -428px -30px; }
	
	#menu a.menu-1.on { width: 125px; background-position: 0 -60px; } 	
	#menu a.menu-2.on { width: 63px; background-position: -125px -60px; }
	#menu a.menu-3.on { width: 95px; background-position: -188px -60px; }
	#menu a.menu-4.on { width: 73px; background-position: -283px -60px; }
	#menu a.menu-5.on { width: 72px; background-position: -356px -60px; }
	#menu a.menu-6.on { width: 122px; background-position: -428px -60px; }

#menu-en { position: absolute; bottom: 10px; left: 0; width: 800px; height: 30px; overflow: hidden; }
#menu-en a { display: block; background-image: url('design/bg.menu-en.png'); background-repeat: no-repeat; overflow: hidden; text-indent: -200px; float: left; width: 100px; height: 30px; }
#menu-en span { width: 70px; float: left; background: url('design/bg.menu-spacer-en.png') no-repeat 0 0; height: 30px; overflow: hidden; }
	#menu-en a.menu-1 { width: 59px; background-position: 0 0; } 		#menu-en a.menu-1:hover { background-position: 0 -30px; } 		
	#menu-en a.menu-2 { width: 69px; background-position: -59px 0; }	    #menu-en a.menu-2:hover { background-position: -59px -30px; }
	#menu-en a.menu-3 { width: 84px; background-position: -128px 0; }	#menu-en a.menu-3:hover { background-position: -128px -30px; }
	#menu-en a.menu-4 { width: 54px; background-position: -212px 0; }	#menu-en a.menu-4:hover { background-position: -212px -30px; }
	#menu-en a.menu-5 { width: 75px; background-position: -266px 0; }	#menu-en a.menu-5:hover { background-position: -266px -30px; }
	#menu-en a.menu-6 { width: 109px; background-position: -341px 0; }	#menu-en a.menu-6:hover { background-position: -341px -30px; }
	
	#menu-en a.menu-1.on { background-position: 0 -60px; } 	
	#menu-en a.menu-2.on { background-position: -59px -60px; }
	#menu-en a.menu-3.on { background-position: -128px -60px; }
	#menu-en a.menu-4.on { background-position: -212px -60px; }
	#menu-en a.menu-5.on { background-position: -266px -60px; }
	#menu-en a.menu-6.on { background-position: -341px -60px; }

	
#body { padding: 10px; overflow: hidden; }
	#body  h1 { font-size: 26px; font-weight: normal; text-align: left; margin-bottom: 20px; }
	#body h2 { font-size: 20px; margin-top: 30px; margin-bottom: 10px; font-weight: normal; font-style: italic; }
	#body p { line-height: 2; margin-top: 10px; }
	#body table.drinks { margin: 10px auto; width: 600px; }
		#body table.drinks tr { border-bottom: 1px dotted #B8D8A0; }
		#body table.drinks thead tr { border-bottom: 0; }
		#body table.drinks td { padding: 6px; }
		#body table.drinks td.name { width: 400px; }
		#body table.drinks td.price{ width: 100px; }
		
		#gallery h2 { clear: both; margin-top: 20px; }
		#gallery  img {  }
		#gallery  a { width: 148px; height: 95px; display: block; float: left; text-align: center; background: #000; margin: 4px;}
		
#video { float: left; }
#index-content { float: left; width: 360px; margin-left: 30px; line-height: 1.3; }
	#index-content h1 { font-size: 26px; color: #fff; font-weight: normal; text-align: left; letter-spacing: -1px; margin-bottom: 20px; }
	#index-content ul { list-style: disc; padding-left: 50px; margin: 20px 0; }
	#index-content ul li { margin: 5px 0; }
	#index-content span.imp { color: #ff9; font-weight: bold; font-size: 16px; }

#foot { padding: 10px; border-top: 1px solid #1D461C; margin-top: 20px; }

/* guestbook */
.entry { margin: 20px 0; overflow: hidden; }
.entry .head { position: relative; height: 20px; overflow: hidden; }
.entry .head span { display: block; position: absolute; width: 300px; height: 20px; bottom: 0; overflow: hidden; }
	.entry .head span.nickname { left: 10px; font-weight: bold; }
	.entry .head span.date { right: 10px; text-align: right; font-weight: normal; color: #1D461C; }
.entry .content { margin: 5px 0; padding-left: 30px; position: relative; background: #1D461C; border: none; padding: 10px; line-height: 1.2; overflow: hidden; }
* html .entry .content { height: 1px; }

.entry .content  .tl, .entry .content  .tr, .entry .content  .bl, .entry .content  .br { width: 10px; height: 10px; overflow: hidden; background-image: url('design/bg.entry.jpg'); background-repeat: no-repeat; background-position: 0 0; position: absolute; }
.entry .content  .tl { top: 0; left: 0; background-position: 0 0; } .entry .content  .tr { top: 0; right: 0; background-position: -10px 0; }
.entry .content  .bl { bottom: 0; left: 0; background-position: 0 -10px; } .entry .content  .br { bottom: 0; right: 0; background-position: -10px -10px; }

/* new entry */
#new-entry { display: none; }
#new-entry-btn { background: url('design/bg.new-entry.png') no-repeat 0 0; height: 22px; padding-left: 35px; font-size: 12px; padding-top: 8px; }
#new-entry .head input { border: 1px solid #B8D8A0; background: #000; color: #fff; }
#new-entry .content textarea { width: 590px; height: 50px; padding: 5px; border: 1px solid #B8D8A0; background: #1D461C; color: #fff; margin-bottom: -4px; }
#cancel { color: #955; }

#pager a { display: block; text-decoration: none; width: 33%; height: 15px; float: left; padding-top: 5px; }
#pager a:hover { color: #fff; }
#pager a span { display: block; width: 20px; height: 20px; overflow: hidden; background-image: url('design/bg.pager.png'); background-repeat: no-repeat; margin-top: -5px; }
#pager a.page-newer span { background-position: 0 0; float: left; }
#pager a.page-newer:hover span { background-position: 0 -20px; }
#pager a.page-older span { background-position: -20px 0; float: right; }
#pager a.page-older:hover span { background-position: -20px -20px; }
#pager a.page-newer { text-align: left; }
#pager a.page-newest { text-align: center; }
#pager a.page-older { text-align: right; }

