/*エントランス用全体の設定*/
body{
    font-style:normal;/*文字のスタイル：普通*/
    font-weight:normal;/*文字の太さ：普通*/
    font-size:small;/*文字の大きさ：中*/
    text-align:left;/*文字の寄せ方：左寄せ*/
    color:#000000;/*文字の色：黒*/
    background-color:#ffffff;/* 背景の色：白 */

}

/*リンク関係*/
a:link {/*リンクされた文字の色*/
    color:#0000ff;/*文字の色：青*/
    font-style:normal;
    text-decoration:underline;/* 下線 */
}
a:visited {/*訪問後の色*/
    color:#934C7B;/*文字の色：紫*/
    text-decoration:underline;/* 下線 */
}
a:hover {/*カーソルを合わせたときの色*/
    color:#ff0000;/*文字の色：赤*/
    font-style:normal;
    text-decoration:underline;/* 下線 */
}
a:active {/*クリック中の色*/
    text-decoration:none;/* なし */
}

.center{
    text-align:center;/*文字を中央に寄せる*/
    LINE-HEIGHT:1.5;
}


.whiteback{
    background-color:#FFFFFF;
    border-color:#880000;
    border-width:0px;
    border-left-width:8px;
    border-style:solid;
}
.whiteback2{
    background-color:#FFFFFF;
    border-color:#000088;
    border-width:0px;
    border-left-width:8px;
    border-style:solid;
}
#enter{
    background-color:#FFFFFF;
    text-align:center;
    width:620px;
    margin:0px auto 20px auto;
    padding:30px 0px 0px 0px;
    border-width:0px;/*上下左右*/
    border-color:#666666;
    border-style:outset;
}
img{
    border-width:2px;/*上下左右*/
    border-color:#000000;
    margin:0px;
    padding:0px;
}
#adress{
    text-align:center;/*文字を中央に寄せる*/
    background-color:#FFFFFF;
    width:400px;
    margin:10px auto;
    padding:5px 2px;
    border-width:2px 0px 2px 0px;/*上下左右*/
    border-color:#999999;
    border-style:ridge;
}

/* 左側の設定*/
#left{
    width:304px;
    float:left;
    text-align:center;/*文字の寄せ方：左寄せ*/
    background-color:#ffffff;
    border-width:0px;/*上下左右*/
    border-color:#996600;
    border-style:solid;
    padding:2px 0px 10px 0px;
}

/* 右側の設定*/
#right{
    width:304px;
    float:right;
    text-align:center;/*文字の寄せ方：右寄せ*/
    border-width:0px;/*上下左右*/
    border-color:#996600;
    border-style:solid;
    padding:2px 0px 10px 0px;
}