﻿/*****************************************************************

	非同期処理中のローディング用スタイルシート定義

*****************************************************************/

#loading
{
	display: table;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #000;
    z-index: 9999;

	/* 透明度を設定するopacityを全ブラウザに対応させる */  
	filter:alpha(opacity=80); /* IE 6,7*/
	-ms-filter: "alpha(opacity=80)"; /* IE 8,9 */
	-moz-opacity:0.8; /* FF , Netscape */
	-khtml-opacity: 0.8; /* Safari 1.x */
	opacity:0.8;
	zoom:1; /*IE*/  
}
 
#loading .loadingMsg
{
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	padding-top: 140px;
    z-index: 10000;
	
	/*background: url("../img/loader_w.gif") center center no-repeat;*/
	/* IE向けに背景の指定をまとめず、分割指定する */  
	background-image: url("../img/loader_w.gif");
	background-position: center center;
	background-repeat: no-repeat;
}

/*
 [EOF]
*/