/* ************************************************ 
 *	共通設定
 * ************************************************ */
* {
	margin: 0px;
}

.txt10 {
	color: #333333;
	font-size: 10px;
}
.txt12 {
	font-size: 11px;
}
a:link {
	color: #ff3300;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #ff3300;
}
a:hover {
	text-decoration: underline;
	color: #ff3300;
}
a:active {
	text-decoration: none;
	color: #ff3300;
}

body {
	color: #333333;
	font-size: 10px;
	font-family: "Verdana","メイリオ","Meiryo",/*"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Verdana","Osaka",*/"ＭＳ ゴシック",sans-serif;
	line-height: 1.6em;
	background-color: #ffffff;
	text-align:center;
	margin-bottom: 10px;
}

br.clear {
	clear: both;
	font: 0pt/0pt sans-serif;
}

img {
	border: 0px;
}


/* ------------------------------------- 
 *	ページレイアウト
 * ------------------------------------- 
 *※ページ全体の幅は800pxとなっています。
    幅を広げる場合は、.sideと.mainのwidth
    の合計値が#containerのwidthになるよう
    設定してください。
 * ------------------------------------- */

/*ページ全体の幅、レイアウトをセンタリング*/
#container {
	margin:0px auto;
	width:900px;
	text-align:left;
}

/*ヘッダー（ページタイトル、グローバルメニュー）*/
.header {
 width:100%;
 clear:left;
}

/*　画面右側メニューの幅　*/
.side {
	float: left;
	width:0px;
}

/*　画面左側の幅　*/
.main {
	float: left;
	width: 900px;
}

/*　フッター（コピーライト）　*/
.footer {
 width:100%;
 clear:left;
}

