/* ---
  ※font-familyは下記を使った方がいいかも。（謎
  掲示板全体の大きさを変更する場合には、#bbs_outのwidthと
  #messageのheightで幅と高さを調整してください。
--- */
/* BBS領域のスタイル */
#bbs_out {
	font-size: 12px;
	font-family:'メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	width:96%;
	border:2pt #c0c0c0 solid;
	padding:5px;
	background:#ffe8b8;
}
/*入力フィールドのスタイル*/
#name {width:12em;}		/*名前入力*/
#pass {width:5em;}		/*パスワード入力*/
#comment {width:75%;}		/*コメント入力*/
#no {width:4em;}		/*編集-削除用No入力*/
#ed_pass {width:5em;}		/*編集-削除用パスワード入力*/
#buttons{}			/*ボタンのスタイル*/
/*メッセージ表示エリアのスタイル*/
#message {
	height:150px;
	overflow:auto;
	text-align:left;
	margin-top:3px;
	margin-bottom:3px;
	padding-top:2px;
	padding-bottom:2px;
	border-top:2px groove;
	border-bottom:2px groove;
	background:#ffffff;
}
/*メッセージ表示エリアの各スタイル*/
.mes_no{color:#0000ff;}				/*No,のスタイル*/
.mes_name{color:#0066ff;}			/*名前のスタイル*/
.mes_com{color:#0099ff;}			/*コメントのスタイル*/
/*編集ハイライトのスタイル*/
.highlight {
	background-color:#ffff77;
}
/*以下レイアウト用*/
.layout	{
	text-align:left;
	position:relative;
}
.right	{
	margin:0;
	position:absolute;
	top:0;
	right:5px;
}

