
.borderClass1{
border-color: #eaeaea;
}

.linkClass{
display:block;		/*リンクの対象をセル全体にする*/
  color : blue;		/*リンクの文字の色*/
  width : 100%;
  height : 100%;
  
  text-decoration : none;
}

/*マウスが上にあるリンク↓*/

A:HOVER{
  
  background-color : #2d8dee;	/*セルの色（背景色）*/
  color : white;		/*文字の色*/
  	/*下線を表示する*/

  text-decoration : none;
}

