	/* 閉じるボタン */
	.btnTechDataClose{
		background-image:url('../images/close.png');
		background-color: #FFFFFF;
		border:0px;
		cursor:pointer;
		position:absolute;
		top:1px;
		right:0px;
		height:9px;
		width:9px;
		margin-left:17px; /* 閉じるボタンと左端の間隔 */
		margin-right:4px; /* 閉じるボタンと右端の間隔 */
		z-index:1000;
	}

	/* タブ全体 */
	.tabPane{
		height:22px;	/* タブの高さ */
		border-bottom:1px solid #999999; /* タブ下のボーダー */
		z-index:1;
	}

	/* タブ */
	.tabPane div{
		float:left; /* タブを横に並べる */
		padding-left:6px; /* タイトルと左端の間隔 */
		padding-right:18px; /* タイトルと右端の間隔 */
		cursor:pointer;
		position:relative;
		z-index:2;
	}

	/* アクティブタブ */
	/* アクティブタブ（コリンズ） */
	/* Update start 20080305 */
	/* .tabPane .tabActive{ */
	.c-tabContainer .tabActive{
	/* Update end 20080305 */
		height:22px; /* 画像の高さ */
		background-image:url('../images/tab_active.png'); /* 背景画像 */
		background-repeat:repeat-x;
		border-left: solid 1px #999999;
		border-right: solid 1px #999999;
		border-bottom: solid 2px #FFFFFF; /* タブ下のボーダーを上書き */
		position:relative;
		bottom:-2px; /* タブ下のボーダーを上書き */
		z-index:100;
	}

	/* アクティブタブ（テクリス） */
	/* Update start 20080305 */
	/* .tabPane .tabActive2{ */
	.t-tabContainer .tabPane .tabActive{
	/* Update end 20080305 */
		height:22px; /* 画像の高さ */
		background-image:url('../images/tab_active2.png'); /* 背景画像 */
		background-repeat:repeat-x;
		border-left: solid 1px #999999;
		border-right: solid 1px #999999;
		border-bottom: solid 2px #FFFFFF; /* タブ下のボーダーを上書き */
		position:relative;
		bottom:-2px; /* タブ下のボーダーを上書き */
		z-index:100;
	}

	/* 非アクティブタブ */
	.tabPane .tabInactive{
		margin-top:2px; /* 背景画像の高さの差分 */
		background-image:url('../images/tab_inactive.png'); /* 背景画像 */
		background-repeat:repeat-x;
		border-top: solid 1px #999999;
		border-right: solid 1px #999999;
		border-left: solid 1px #999999;
		position:relative;
		bottom:-2px;
		z-index:10;
	}

	/* アクティブタブタイトル */
	.tabPane .tabActive .tabTitle{
		position:relative;
		top:2px;
	}

	/* 非アクティブタブタイトル */
	.tabPane .tabInactive .tabTitle{
		position:relative;
		top:1px;
	}

	/* タブコンテンツ */
	.tabContents{
		border-left:1px solid #999999;
		border-right:1px solid #999999;
		border-bottom:1px solid #999999;
		padding:3px; /* 内側の余白 */
	}

	.topContents{
		border-top-style: hidden;
		border-left-style: hidden;
		border-right-style: hidden;
	}

	.tabHidden{
		display:none;
	}
