
/* 基本設定
--------------------------------------*/
* {
	margin: 0;
	padding:0;
	line-height: 160%;
}
html {
	overflow-y: scroll;
	font-size: 100%;
}
body {
	color: #6c562b;
	background: #fff;
}

body, table, h1, h2, h3, h4, h5, h6 {
	font-size: 0.75em;
	text-align: left;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}
table caption, table th, table td {
	font-weight: normal;
	text-align: left;
	vertical-align: top;
}
p {
	margin: 0;
}
img {
	border: 0;
	vertical-align: bottom;
}
ul, li { margin: 0; padding: 0; list-style: none; }


/* リンク設定
--------------------------------------*/
a { overflow:hidden; outline:none;
	color: #6c562b;
	text-decoration: underline;
}
a:link {}
a:visited {}
a:hover { text-decoration: none; }
a:active {}


/* レイアウト設定
--------------------------------------
	#page
	 └#container
	    ├ #header
	    ├ #gnavi
	    ├ #contents
	    │  └ #main
	    └ #footer
*/

#page, #container, #header, $#gnavi, #contents, #footer { zoom: 1; }


/* 外枠 */
#page {}
	#container {
		width: 860px;
		margin: 0 auto;
	}
		/* ヘッダ */
		#header {
			position: relative;
			margin: 0 0 10px;
		}

		/* ナビ */
		#gnavi {}

		/* コンテンツ */
		#contents {
			margin: 0 0 10px;
		}

		/* フッタ */
		#footer {
			clear: both;
			padding: 0 0 10px;
		}

