@charset "utf-8";

/*
 --------------------------------------------------------------------
 4Uweb／CMS 表取り込み・表編集用スタイルシート。

 更新日：2016-03-30
 --------------------------------------------------------------------
 【編集履歴】
 ・2009-05-25 新規作成
 ・2010-08-02 背景色用のスタイルを追加。
 ・2016-03-30 書式の色、均等割り付けのスタイルを追加。
 
 -------------------------------------------------------------------- */

/**
 * 書式の色を設定
 */
table th.format-color, td.format-color {
	color: #FF0000 !important;

}

/**
 * 上詰め
 */
table th.top, td.top {
	vertical-align: top !important;
}

/**
 * 下詰め
 */
table th.bottom, td.bottom {
	vertical-align: bottom !important;
}

/**
 * 左詰め
 */
table th.left, td.left {
	text-align: left !important;
	
}

/**
 * 右詰め
 */
table th.right, td.right {
	text-align: right !important;
}

/**
 * 中央揃え
 */
table th.center, td.center {
	text-align: center !important;
}

/**
 * 均等割り付け
 */
table th.justify, td.justify {
	text-align: justify !important;
	text-justify: inter-ideograph;
}


