/* CSS Document

LastUpDate
	
2006.03.27

---------------------------------------- */

/* 記述形式


１．プロパティは、同系統の場合1行で記述可能とする。

２．プロパティが2つ以内の場合は、1行で記述可能とする。

３．子要素は、右にTabして記述可能とする。

４．id要素名は、基本的に半角小文字のみの記述とする。

５．class要素名は、基本的に半角小文字の記述とするが、単語の頭部分においてのみは半角大文字の記述可能とする。

６．id要素名とclass要素名に同じ要素名をつけることは禁止とする。

７．子id要素名は、可能な限り親id要素名に近しい名前をつけることを推奨する。

８．記述の優先順位
	(1)display, float, position
	(2)margin, padding
	(3)width, height
	(4)text-●●●●系
	(5)background系
	(6)font系
	(7)その他


-------------------------------------------------------------------------------------- */


h2#sitemapTitle{
	margin-bottom: 20px;
	background: url(../img/sitemapTitle.gif) left top no-repeat;
}


ul#sitemapList{
	padding: 0px 0 50px 169px;
	width: 577px; height: auto;
	background: url(../img/sitemapBg.jpg) right bottom no-repeat;
	}
	ul#sitemapList li{
		list-style: none;
		padding: 10px 0 10px 20px;
		width: 270px;
		color: #666;
	}

ul#sitemapCircleList{
	padding: 0;
	}
	ul#sitemapCircleList li{
		list-style: none;
		padding: 0 0 5px 20px; 
		width: 250px;
		border: 0;
	}

ul#sitemapList li a, 
ul#sitemapCircleList li a{
	display: block;
	padding-left: 30px;
	height: 19px;
	background: url(../img/sitemapArrow.gif) left -19px no-repeat;
	}ul#sitemapList li a:hover, 
	ul#sitemapCircleList li a:hover{
		background-position: left -1px;
	}






























