@charset "UTF-8";
  
body {
    overflow: hidden;    /* no scroll */  /* ip*/
	/*background-color:#0e5672; */
	
	background-color:#9BBDD0;
}


* {      /* ip*/
   			unselectable="on";
			
			-webkit-user-select: none !important; 
			-webkit-user-drag: none !important; 
	
			-webkit-tap-highlight-color: transparent !important; 
			-webkit-touch-callout: none !important; 
			-webkit-user-drag: none !important; 
  			
			-khtml-user-select: none !important;
   			-moz-user-select: moz-none !important;
   			-ms-user-select: none !important;
   			user-select: none !important;
}
	 
		
img.bg {
  /* Set rules to fill background */
  min-height: 100%;
  min-width: 1024px;
	
  /* Set up proportionate scaling */
  width: 100%;
  height: auto;
	
  /* Set up positioning */
  position: fixed;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1024px) { /* Specific to this particular image */
  img.bg {
    left: 50%;
    margin-left: -512px;   /* 50% */
  }
}

/* rest */

a {
	text-decoration:none;
}
 
 
	 