@charset "utf-8";

/*
	* 名前: links.css
	* 説明: links用CSS
	* バージョン: 1.0
	* 最終更新日: 2009.08.11
	* 制作者: Hiroaki Nakagawa

	* 目次:
	  - 02. 領域設定 - ブロック -
	    - 02-05. 領域設定 - コンテンツ -
	      - 02-05-01. 領域設定 - レフトバー -
	    - 02-06. 領域設定 - メイン -
*/

/* 外部CSSファイルの読み込み */

/* Import用CSS */
@import url("../../common/css/import.css");


/* Stylesheet Document */

@media all {

	/* ========================================
	   * 02-06. 領域設定 - メイン -
	======================================== */

	#main ol#links {
		list-style-type: none;
		margin-left: auto;
		margin-right: auto;
		width: 570px;
	}

	/* IE6 HACK */
	* html #main ol#links {
		width: 580px;
	}

	#main ol#links:after {
		clear: both;
		content: ".";
		display: block;
		height: 0;
		line-height: 0; /* CSS HACK: Safari */
		font-size: 0; /* CSS HACK: Firefox3 */
		visibility: hidden;
	}

	#main ol#links li {
		float: left;
		margin-bottom: 14px;
		margin-left: 6px;
		margin-right: 6px;
		text-align: center;
		width: 178px;
	}

	#main ol#links li a {
		text-decoration: none;
	}

	#main ol#links li a br {
		display: none;
	}

	#main ol#links li a span {
		display: block;
		margin: 2px 6px 0 6px;
	}

}

