@charset "utf-8";

/* CSS Information ==============================
File name: thickbox.css
Editors: Shinji Kobayashi
Last Editor: Shinji Kobayashi
Date: 2008.09.25
Table of Contents:
 +thicbox HTML
 +CSS
============================================== */

/*====================
 +thicbox HTML
====================*/
/*
<div id="TB_window" style="margin-left: -375px; width: 751.333px; margin-top: -300px; display: block;">
<a title="Close" id="TB_ImageOff" href="">
<img height="hoge" width="hoge" alt="" src="hoge" id="TB_Image">
</a>
<div id="TB_caption">
<div id="TB_secondLine"></div>
</div>
<div id="TB_closeWindow"><a title="Close" id="TB_closeWindowButton" href="#">close</a> or Esc Key</div></div>
*/

/*====================
 +CSS
====================*/

/* thickbox settings */
#TB_overlay {
	position: fixed;
	z-index:100;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	background: #121212;
	opacity: 0.8;
	filter: alpha(opacity=80);
	}
#TB_window {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 102;
	padding: 6px;
	border: 1px dotted #c0c0c0;
	background: #f0f0f0;
	color: #121212;
	text-align: center;
	}
#TB_window img#TB_Image {
	display: block;
	}
#TB_closeWindow {
	padding: 6px 0 0;
	text-align: right;
	}
#TB_closeWindow a {
	display: block;
	}
#TB_closeAjaxWindow {
	float: right;
	margin-bottom: 1px;
	padding: 7px 10px 5px 0;
	text-align: right;
	}
#TB_ajaxWindowTitle {
	float: left;
	padding: 7px 0 5px 10px;
	margin-bottom: 1px;
}
#TB_ajaxContent {
	clear: both;
	padding: 2px 15px 15px 15px;
	overflow: auto;
	text-align: left;
	}
#TB_ajaxContent.TB_modal {
	padding: 15px;
	}
#TB_ajaxContent p {
	padding: 5px 0px 5px 0px;
	}
#TB_load {
	position: fixed;
	display: none;
	height: 13px;
	width: 208px;
	z-index: 103;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
	}

* html #TB_overlay { /* ie6 hack */
	position: absolute;
	height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
	}
* html #TB_window { /* ie6 hack */
	position: absolute;
	margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
	}
* html #TB_load { /* ie6 hack */
	position: absolute;
	margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
	}
#TB_HideSelect {
	z-index: 99;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #fff;
	border: none;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	height: 100%;
	width: 100%;
	}
* html #TB_HideSelect { /* ie6 hack */
	position: absolute;
	height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
	}
#TB_iframeContent {
	clear: both;
	border: none;
	margin-bottom: -1px;
	margin-top: 1px;
	_margin-bottom: 1px;
	}
