#notificationBar {
	display: none;
	width: 100%;
	position: fixed;
	left: 0;
	bottom: -111px;
	opacity: 0.0;
	background: #FFFFFF;
	z-index: 10000;
	font-family: sans-serif /*{global-font-family}*/;
}

#notificationBar .body {
	position: relative;
}

#notificationBar .close {
	width: 16px;
	height: 16px;
	/* このpaddingには、実際に指で触れた時の閉じるボタンの範囲を広げる役割がある */
	padding: 10px;
	overflow: hidden;
	position: absolute;
	opacity: 0.7;
	right: 2px;
	top: 2px;
	z-index: 10000;
	cursor: pointer;
	background: transparent url(../img/btn_close_notify_bar.png) no-repeat center center; 
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.3),
       only screen and (min--moz-device-pixel-ratio: 1.3),
       only screen and (min-resolution: 200dpi) {
#notificationBar .close {background-size: 16px 16px; background-image: url(../img/btn_close_notify_bar@2x.png);}
}

#notificationBar .main {
	position: absolute;
	left: 18px;
	top: 18px;
	z-index: 2;
	margin: 0 18px 0 0;
}
