
/*　テキストリンクをテーブル領域で設定　*/

/*----------------------------------------------*/
/*　標準リンク設定　*/
/*----------------------------------------------*/
A.lnk {
display: 		block;
text-decoration: 	underline;  /* 下線 */
color: 			#009900; /* 文字の色 */
background-color: 	#ffffff; /* 背景色 */
border: 		none; /* ボーダー設定 */
word-wrap: 		break-word;
height:			22px; /* 文字位置 */
line-height:		22px; /* リンク高さ */
}

/*----------------------------------------------*/
/*　マウスカーソルが上に来た時のリンク　*/
/*----------------------------------------------*/
A.lnk:hover {
text-decoration: 	none; /* 文字装飾 */
color: 			#006633; /* 文字の色 */
background-color: 	#CCFF99; /* 背景色 */
height:			22px; /* 文字位置 */
line-height:		22px; /* リンク高さ */
}

/*----------------------------------------------*/
/*　現在開いているリンク　*/
/*----------------------------------------------*/
A.lnk:active  {
text-decoration: 	none; /* 文字装飾 */
color: 			#0033CC; /* 文字の色 */
background-color: 	#CCFF99; /* 背景色 */
height:			22px; /* 文字位置 */
line-height:		22px; /* リンク高さ */
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■*/

