html {
		margin:0;
		padding:0;
		background: black;
	}
    body {
      text-align: center;
      margin: 0;
	  padding: 0;
      background: black;
      color: #404040;
      font-family: sans-serif;
      font-size: 10pt;
    }
    a {
      color: #F88113;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }

	@media screen and (min-width: 1200px)
	{

	/* Game Size - Also in GameConfig */
    #content {
      width: 750px;
      height: 500px;
      margin: 60px auto;
    }
	
	#content-canvas {
		width: 750px;
		height: 500px;
		background:#000;
	}
}	
	IFRAME {
		border:none;
		display:none;
	}

    /* On small devices, fill the entire screen and hide the rest of the page. */
    @media (max-device-width: 8in), (max-device-height: 8in) {
      html {
        /* Prevent scrollbars from causing a resize feedback loop. */
        overflow: hidden !important;
		display: block;
      }
      html, body {
        height: 100%;
      }
    
      .no-mobile {
        display: none;
      }
    }
	
	/* Portrait mode warning */
	#portrait {
	  position:absolute;
	  top:0;
	  left:0;
      height:100%;
	  display:none;
	  width:100%;
	  background:#000;
	}
	
	#portrait .wrap {
	  display:table-row;
	  height:100%;
	}
	
	#portrait .content
	{
		display:table-cell;
		height:100%;
		width:100%;
		vertical-align:middle;
		text-align:center;
	}
	
	#portrait .content IMG {
		width:100%;
		max-width: 460px;
	}
	
	@media screen and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
		/* CSS overrides for iPhone 4 + here */
		
		#content {
		-webkit-transform: scale(1,1) !important;
		width: 900px !important;
		height: 600px !important;
		margin: 0 auto;
		box-shadow: none;
		}
		
		 #content-canvas {
		-webkit-transform: scale(1,1) !important;
		width: 750px !important;
		height: 500px !important;
		background:#000;
		}
	}
	
	@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2)
	{
		/* CSS overrides for iPad 3 here */
		#content {
		-webkit-transform: scale(1,1) !important;
		width: 1536x !important;
		height: 2048px !important;
		margin: 0 auto;
		box-shadow: none;
		}
	  
	  #content-canvas {
		-webkit-transform: scale(1,1) !important;
		width: 750px !important;
		height: 500px !important;
		background:#000;
		}
		
	}