@charset            "Shift_JIS";

/* デフォルトスタイルシート */

a
{

}

a:link /* 見訪問のとき */             
{
    color:#00F;
    background-color: transparent;
    text-decoration:none;
}

a:visited /* 訪問済みのとき */          
{
    color:#909;
    background-color: transparent;
    text-decoration:none;
}

a:hover /* マウスが上に乗ったとき */            
{
    color:red;
    font-weight:bold;
    background-color: transparent;
    text-decoration:underline;
}

a:active /* マウスをクリック */
{
    color:red;
    font-weight:bold;
    background-color: transparent;
    font-weight:bold;
    text-decoration:none;
}

em 
{
    font-style:normal;
    color:red;
}

strong
{
    font-style:normal;
    font-weight:bold;
    color:red;
}


