/*
 * defaultPage.css
 * ネット棋院のポップアップ画面用スタイルシート
 * これ以外に派生するスタイル定義は、htmlソースそのものに書くこと。
 * 2002.1.10
 * ASTEC e-commerce, Inc.
 * Ryohei Watanabe
 */

    /*
     * bodyタグの定義。
     * フォント色 #000000
     * 背景色 #eeeeee
     */
    body{
        color: #000000;
        background-color: #eeeeee;
    }

    /*
     * 強調。
     */
    .boldType{
        font-weight: bold;
    }

    /*
     * 本文。
     */
    .contents{
        line-height: 18px;
        color: #000000;
    }

    /*
     * 左マージン。
     */
    .indent20 {
        margin-left: 20px;
    }

    /*
     * 右寄せ
     */
    .rightIndent{
        text-align: right;
    }

    /*
     * 著作権表記
     */
    .copyright{
        text-align: right;
        font-style: italic;
    }

    /*
     * 見出し
     */
    .topic{
        font-size: medium;
        font-weight: bold;
        color: #FFFFFF;
        background-color: #9999CC;
    }

    /*
     * 見出しのリンク色
     */
    .topicLink{
        color: #FFFFFF;
    }

    /*
     * センタリング（テキストのみ）
     */
    .textCenter{
        text-align: center;
    }

