/*文字の揃え方*/
	/*左揃え*/
	DIV.left	{text-align:left;}
	/*中央*/
	DIV.center	{text-align:center;}
	/*右揃え*/
	DIV.right	{text-align:right;}
	
フォントサイズと行間指定
BODY, TD, TH{ font-size: 12px; line-height: 110%}
h1{ font-size: 10px; line-height: 100%}
h2{ font-size: 12px; line-height: 110%}
h3{ font-size: 10px; line-height: 100%}

/* リンクの下線をカーソルが来ないときには表示しない */	
A:link    {
  text-decoration: none ;
  ;
  color: #006400;
}
A:visited{
  text-decoration: none ;
  ;
  color: #006400;
}
A:hover   {
  text-decoration: underline;
  ;
  color: #32cd32;
}
