@charset "utf-8";

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

 ダイアログ

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

#top {
	display: block;
	height: 0;
	margin: 0;
	padding: 0;
}

/* jqModal base Styling courtesy of;
	Brice Burgess <bhb@iceburg.net> */

/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
	the Window's z-index value will be set to 3000 by default (via jqModal.js). */
	
.jqmWindow {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
	height: 100%;
    background-color:transparent;
    color: #333;
	margin: 0;
	padding: 0;
	text-align:left;
	z-index: 65535;
}

.jqmOverlay {
	zoom: 1;
	overflow: auto;
	height: 0;
	position: absolute;
	background-color: #333;
	margin: 0;
	padding: 0;
	z-index: 65500;
}

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
	width: expression(this.parentNode.offsetWidth+'px');
	height: expression(this.parentNode.offsetHeight+'px');
}

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html .jqmWindow {
     position: absolute;
}
