/*
**********************************************************************
CSS Document (進路支援システム専用)
----------------------------------------------------------------------
変更履歴
2009-03-10 H.Fujimoto   レビュー環境へ反映
2009-03-27 H.Fujimoto   ボタン用テーブル定義修正
                        IMEコントロール定義追加

**********************************************************************
*/

span.nowrap {
    white-space:        nowrap;
}

/* p ページタイトル */
p.title {
    font-size:          1.0em;
    color:              #006600;
    font-weight:        bold;
    margin-bottom:      0.5em;
}

/* p エラー表示 */
p.error {
    font-size:          0.7em;
    margin-top:         0.0em;
    margin-bottom:      0.0em;
    color:              #FF0000;
}

/* p テーブル内注記(桁数説明など) */
p.comment {
    font-size:          0.7em;
    margin-top:         0.0em;
    margin-bottom:      0.0em;
}

/* p (一覧の付随情報(年度、件数等)) */
p.listfunc {
    text-align:         right;
    font-size:          0.8em;
    margin-top:         0em;
    margin-bottom:      -1em;
}


/* table フォーム形式 (通常版)*/
table.form {
    border:             solid #666666 1px;
    border-collapse:    collapse;
    border-spacing:     0;
    background-color:   #ffffff;
    empty-cells:        show;
    margin-left:        auto;
    margin-right:       auto;
    margin-bottom:      0;
}
table.form th {
    border:             solid #666666 1px;
    background-color:   #99CC66;
    padding:            0.3em 0.3em 0.3em 0.3em;
    text-align:         left;
    font-weight:        normal;
    white-space:        nowrap;
    margin-bottom:      -1em;
}
table.form td {
    border:             solid #666666 1px;
    background-color:   #EFF7E8;
    padding:            0.3em 0.3em 0.3em 0.3em;
    text-align:         left;
}
table.form th.part {
    background-color:   #669933;
    color:              #FFFFFF;
}
table.form th.total {
    background-color:   #84C146;
}
table.form td.total {
    background-color:   #D1E8BD;
}

/* table フォーム形式 (TD内配置版) */
/* 
   通常版はブラウザによるtableのセンタリングの違いのためmargin:autoを設定している。
   TD内配置版はTD内で左寄せさせるためmargin:autoは設定しない
   更にTD内に配置したテーブルのTDのalignが効かないブラウザ(Bug?)もある様子のため、当TD内配置版のTDは2種類設定する。
*/
table.formsub {
    border:             solid #666666 1px;
    border-collapse:    collapse;
    border-spacing:     0;
    background-color:   #ffffff;
    empty-cells:        show;
    margin-bottom:      0;
}
table.formsub th {
    border:             solid #666666 1px;
    background-color:   #99CC66;
    padding:            0.3em 0.3em 0.3em 0.3em;
    font-weight:        normal;
    white-space:        nowrap;
    margin-bottom:      -1em;
}
table.formsub td {
    border:             solid #666666 1px;
    background-color:   #EFF7E8;
    padding:            0.3em 0.3em 0.3em 0.3em;
    text-align:         left;
}
table.formsub td.right {
    border:             solid #666666 1px;
    background-color:   #EFF7E8;
    padding:            0.3em 0.3em 0.3em 0.3em;
    text-align:         right;
}
table.formsub th.part {
    background-color:   #669933;
    color:              #FFFFFF;
}
table.formsub th.total {
    background-color:   #84C146;
}
table.formsub td.total {
    background-color:   #D1E8BD;
    text-align:         right;
}

/* table リスト形式 */
table.list {
    border:             solid #666666 1px;
    border-collapse:    collapse;
    border-spacing:     0;
    background-color:   #EFF7E8;
    empty-cells:        show;
    margin-bottom:      0;
}
table.list th {
    border:             solid #666666 1px;
    background-color:   #99CC66;
    padding:            0.3em 0.2em 0.3em 0.2em;
    text-align:         center;
    vertical-align:     top;
    font-size:          0.9em;
    font-weight:        normal;
    white-space:        nowrap;
    letter-spacing:     0em;
    line-height:        1.2em;
}
table.list td {
    border:             solid #666666 1px;
    background-color:   #EFF7E8;
    padding:            0.3em 0.2em 0.3em 0.2em;
    font-size:          0.85em;
    vertical-align:     top;
    font-weight:        normal;
    /*white-space:        normal;*/
    letter-spacing:     0em;
    line-height:        1.2em;
}

table.button {
    /*
    border-top:         2px #AACC88 solid;
    border-bottom:      2px #AACC88 solid;
    */
    text-align:         center;
    border-collapse:    collapse;
    border-spacing:     0;
    empty-cells:        show;
    margin-left:        auto;
    margin-right:       auto;
    margin-top:         0.5em;
    margin-bottom:      0;
}

/* textarea Firefox対策 */
textarea {
    font-size:          small;
    ime-mode:           active;     /* 常に日本語入力モード */
}

/* input (テキストフィールド右寄せ) */
input.num {
    /* IE だと右寄せでカーソルが見えなくなるため、無効とした
    text-align:         right;
    */
}

/* 初期値が日本語入力モード */
.imeact { 
    ime-mode:           active;
}

/* 初期値が英数字入力モード */
.imeinact { 
    ime-mode:           inactive;
}

/* 英数字入力モード ユーザでの変更不可 */
.imedis { 
    ime-mode:           disabled;
}

