@charset "utf-8";
/* System Basics */
	html, body {
		display: table;
		margin: 0px auto;
		padding: 0px;
		width: 100%;
		height: 100%;
		min-width: 360px;
	}
	html {    
		/*overflow: hidden; /* Fix Scroll Issue on Mobile Browsers (Address Bar Hide) */
	}
	body {
		overflow-x: hidden;
		/*overflow-y: auto; /* Fix Scroll Issue on Mobile Browsers (Address Bar Hide) */
	}
	* {
		position: relative;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		word-wrap: break-word;
    	z-index: 0;
	}
			
/* Body Main Default Structure */
	/* Body Structure */
		div#body {
			display: table;
			margin: 0px auto;
			padding: 0px;
			width: 100%;
			height: 100%;
			position: relative;
			text-align: center;
			vertical-align: top;
			clear: both;
		}
		div#body div#innerbody {
			display: table;
			margin: 0px auto;
			padding: 0px;
			width: 100%;
			height: 100%;
			position: relative;
			text-align: center;
			vertical-align: top;
			clear: both;
			overflow: hidden;
		}
	/* Content Structure */
		div#main {
			//display: table-row;
			display: table;
			margin: 0 auto;
			padding: 0px;
			width: 100%;
			height: 100%;
			position: relative;
			text-align: center;
			vertical-align: top;
			clear: both;
		}
		div#main div#innermain {
			display: table-cell;
			margin: 0 auto;
			padding: 0px;
			width: 100%;
			height: 100%;
			position: relative;
			text-align: center;
			vertical-align: top;
			clear: both;
		}
		div#content {
			display: table;
			margin: 0 auto;
			padding: 0px;
			width: 100%;
			//height: 100%;
			height: auto;
			max-width: 1600px;
			position: relative;
			text-align: center;
    		vertical-align: top;
			clear: both;
		}
		div#content div#innercontent {
			display: table-row;
			margin: 0px auto;
			padding: 0px;
			width: 100%;
			height: 100%;
			position: relative;
			text-align: center;
    		vertical-align: top;
			clear: both;
		}
		div#contentTop, div#contentBottom {
			display: table;
			margin: 0px auto;
			padding: 0px;
			width: 100%;
			height: auto;
			position: relative;
			text-align: center;
    		vertical-align: top;
			overflow: hidden;
			clear: both;
		}
		div#contentTop {
		}
		div#contentBottom {
		}
		div#contentLeft, div#contentMain, div#contentRight {
			//display: table-cell;
			display: inline-block;
			margin: 0px auto;
			padding: 0px;
			height: 100%;
			position: relative;
			text-align: center;
    		vertical-align: top;
		}		
		div#contentMain {}	
		div#contentLeft {}
		div#contentRight {}	
		div#contentLeft, div#contentRight {}
		div#content div#innercontent > div#contentMain{}
		div#content div#innercontent > div#contentLeft + div#contentMain{}
		div#content div#innercontent > div#contentMain + div#contentRight{}
	/* Header Structure */
		div#Header { /* Header Container */
			display: table;
			margin: 0px auto;
			padding: 0px;
			width: 100%;
			height: auto;
			position: relative;
			text-align: center;
			vertical-align: middle;
		}
		div#Header div#InnerHeader { /* Header Inner Container */
			display: table-row;
			display: table-cell;
			margin: 0px auto;
			padding: 0px;
			width: 100%;
			height: 100%;
			position: relative;
			text-align: center;
			vertical-align: middle;
		}
		/* Header Contents */
			div#Header {}
	/* Footer Structure */
		div#Footer { /* Footer Container */
			//display: block;
			display: table;
			margin: 0px auto;
			padding: 0px;
			width: 100%;
			height: auto;
			position: relative;
			text-align: center;
			vertical-align: middle;
		}
		div#Footer div#InnerFooter { /* Footer Inner Container */
			display: inline-block;
			display: table-cell;
			margin: 0px auto;
			padding: 0px;
			width: 100%;
			height: 100%;
			position: relative;
			text-align: center;
			vertical-align: middle;
		}
		
/* System Message Structure */
	/* USRMSG/USRERR Structure */
		div.USRMSG, /* USRMSG Container */
		div.USRERR { /* USRERR Container */
			display: block;
			margin: 0px auto;
			padding: 10px;
			width: 100%;
			height: auto;
			position: relative;
			text-align: center;
    		vertical-align: middle;
		}
		div.USRMSG { /* USRMSG Container */
			background-color: rgba( 0, 255, 0, 0.6 );
			border: solid 2px rgba( 0, 225, 0, 0.3 );
		}
		div.USRERR { /* USRERR Container */
			background-color: rgba( 225, 0, 0, 0.6 );
			border: solid 2px rgba( 225, 0, 0, 0.3 );
		}
		/* USRMSG, USRERR Contents */
			div.USRMSG span.USRMSG, /* USRMSG Contents */
			div.USRERR span.USRERR { /* USRERR Contents */
				display: inline-block;
				margin: 0px;
				padding: 0px;
				width: 100%;	
				height: 100%;
				color: #FFFFFF;
				text-align: center;					
			}

	/* PLEASE WAIT */
		div#PleaseWait {
			display: block;
			margin: 0px auto;
			padding: 0px;
			position: absolute;
			top: 0px;		
			right: 0px;		
			bottom: 0px;		
			left: 0px;	
			background-color: rgba(0,0,0,.8);
			z-index: 10000;
		}
		div#PleaseWait #PWMsgBox {
			display: table;
			margin: 0px auto;
			padding: 0px;
			width: 100%;
			height: 100%;
		}
		div#PleaseWait #PWMsg {
			display: table-cell;
			margin: 0px auto;
			padding: 0px;
			width: 100%;
			height: 100%;
			color: #FFFFFF;
			font-size: 18px;
			font-weight: bold;
			vertical-align: middle;
		}
		div#PleaseWait #PWMsg img {
			display: block;
			margin: 0px auto;
			padding: 0px;
			height: 50px;
		}
@media only screen and (max-width:768px)  {
	/* Content Structure */
		div#contentLeft, div#contentMain, div#contentRight {
			//display: inline-block;
		}
}