/*ページのレイアウト用css*/


a{
      color:#000066;
text-decoration: none;/*文字の下線を消す*/
}
a:hover {
	color: #FF0000;/*リンクの文字の上にマウスが来た時この色に変わる*/
text-decoration: underline;/*文字の下に下線を付ける*/
}


