/***** CSS変更 *****/
/*** メイン全体の枠の幅を1200pxから1200pxへ変更 ***/
/*** 右メニューをメニューの下へ配置 ***/
/*** 主コンテンツの幅を778pxから978px、右のマージンを200pxから0pxへ変更 ***/
/*** テーブルの見出しセルの背景色を#333へ変更 ***/
/*** 脚注がすべて同一行で表示されるのを各行に表示されるように変更 ***/

/* メイン全体の枠 */
#container{
    min-width: 1200px;
    _width: 1200px;
}


/* ----- Contents ----- */
/* コンテンツの配置 */

#menubar2{
    float:left;
    clear:both;
}


/* ----- Center ----- */

#contents{
    margin: 0px 0px 0px 200px;
    min-width: 978px;
}

#wikibody th, #menubar2 th, #menubar th
{
    background:#333;
}


/* ----- Main ----- */

.attach, .footnote{
    float:none;
}



/***** CSS追加 *****/
/* ボックスにスクロールバー表示 */
.overf {
	overflow: auto;
}


/* 縦書き */
.tate {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
	width: 100%;
}


/*** 取扱説明書に使用 ***/
/* 囲み文字 */
.shikaku_b {
	border: solid 1px #000000;
}


/* floatプロパティで段組レイアウト作成 */
.block01 {
	float: left;
}

.block02 {
	float: right;
}