
/* prevent chrome blue border on buttons*/
*:focus { outline: none; }


/*IE9*/
*:not(.link)::selection 
{
    background-color:transparent;
} 
*:not(.link)::-moz-selection
{
    background-color:transparent;
}
*:not(.link)
{        
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    /*IE10*/
    -ms-user-select: none;
    user-select: none;

    /*You just need this if you are only concerned with android and not desktop browsers.*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}    
.link, input[type="text"], textarea, [contenteditable]
{

    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    resize: none;
}
/* Optional: Makes the sample page fill the window. */
html {
	height: 100%;
	width: 100%;
    background-color: black;
    margin: 0;
    padding: 0;
}

body {
	height: 100%;
	width: 100%;
    background-color: black;
    padding: 0;
    margin: 0;
    
    font-family: Helvetica;
    
}

/* Always set the map height explicitly to define the size of the div
 * element that contains the map. */
#map {
	position: absolute;
    top: 0px;
    left: 0px;
	width: 800px;
	height: 600px;
    //background-color: yellow;
}

#app_container {
	position: absolute;
    top: 0px;
    left: 0px;
	width: 300px;
	height: 300px;
	padding: 0px;
	margin: 0px;
	overflow: hidden;
    //background-color: #ff0000;
}

#canvas {
	position: absolute;
    top: 0px;
    left: 0px;
    width: 2048px;
    height: 1536px;
    padding: 0;
    margin: 0;
    //background-color: black;
	overflow: hidden;
	//display : none;
}

#portrait_block {
	position: absolute;
    top: 0px;
    left: 0px;
    width: 600px;
    height: 800px;
    padding: 0;
    margin: 0;
    z-index: 50;
    
    color: #FFFFFF;
    //font-size: 70px;
    //text-align: center;
    //line-height: 400px;
    
    //background-color: yellow;
    background-image: url("../images/phone_rotation_info.png");
	//display : none;
}





