﻿a{
/*リンクされた文字*/
    color: #333333;
	font-style: normal;
	text-decoration: underline;
}
a:link{
/*未訪問のリンク*/
    color: #333333;
	font-style: normal;
	text-decoration: underline;
}
a:visited {
/*訪問後のリンク*/
    color: #333333;
	text-decoration: underline;
}
a:hover{
/*マウスをのせたとき*/
    color: #000099;
	font-style: normal;
	text-decoration: underline;
}
a:active {
/*クリック中*/
    text-decoration: none;
	color: #FF0000;
}


img {
    border-style:none;
}