@charset "utf-8";

/* =========================================================

   CSS information

   Style Info : 印刷用
   Date : 2013/06/20

========================================================= */

/* base.cssを一部書き換え
--------------------------------------------------------- */
/* 基本横幅（IEで崩れがでるため） */
.wrapper {
	display: table;
}
/* メインコンテンツ・右メニュー（IEで崩れがでるため） */
.main,
.sidebar {
	display: table-cell;
}

/* 基本横幅（Firefox用） */
html>/**/body .wrapper, x:-moz-any-link{
	display: block;
}
/* メインコンテンツ（Firefox用） */
html>/**/body .main, x:-moz-any-link{
	display: block;
}
/* 右メニュー（Firefox用） */
html>/**/body .sidebar, x:-moz-any-link{
	display: block;
}
/* clearfix（Firefox用） */
html>/**/body .clearfix, x:-moz-any-link{
	overflow: hidden;
}