/* ************************************************ 
 *	共通設定
 * ************************************************ */
* {
	margin: 0px;
	padding: 0px;
}

body {
	color: #666666;
	font-size: 10px;
	font-family: "Verdana", "ヒラギノ角ゴ Pro W3", "ＭＳ ゴシック", "Osaka‐等幅";
	line-height: 1.6em;
	background-color: #ffffff;
	text-align:center;



}

br.clear {
	clear: both;
	font: 0pt/0pt sans-serif;
}

img {
	border: 0px;
}

a:link    { color: #663300; text-decoration:none;}
a:visited { color: #663300; text-decoration:none;}
a:active  { color: #663300; text-decoration:none;}
a:hover   { color: #663300; text-decoration:none;}

/* ------------------------------------- 
 *	ページレイアウト
 * ------------------------------------- 
 *※ページ全体の幅は800pxとなっています。
    幅を広げる場合は、.sideと.mainのwidth
    の合計値が#containerのwidthになるよう
    設定してください。
 * ------------------------------------- */

/*ページ全体の幅、レイアウトをセンタリング*/
#container {
	margin:0px auto;
	width:500px;
	text-align:left;
}

/*ヘッダー（ページタイトル、グローバルメニュー）*/
.header {
 width:100%;
 clear:left;
}

/*　左側メニューの幅　*/
.side {
	float: left;
	width:150px;
}

/*　右側の幅　*/
.main {
	float: left;
	width: 350px;
}

/*　フッター（コピーライト）　*/
.footer {
 width:100%;
 clear:left;
}


