html, body {
	position: static;
    padding: 0;
	border: 0;
	margin: 0;
	height: 100%;
	width:100%;
	background-color:#000000;
	overflow:hidden;
}

*{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}



#rightMenu {
    position: fixed;
    background-color:rgb(255, 255, 255);
    border-radius:5px;
    border-width:1px;
    border-style:solid;
    border-color:#000000;
    box-shadow: 2px 2px 3px #252525; 
    width:120px; 
    height:175px;
    -webkit-transform: scale(1); 
    transform: scale(1); 
    transform-origin: top left; 
    left: 0px;
    top: 0px;
}
.rightMenuOption {
    -webkit-user-select: none; 
	-ms-user-select: none; 
	user-select: none; 
    font-size:16px;
    color:rgb(0, 0, 0);
    font-weight:bold;
    font-family:微軟正黑體;
    text-indent: 25px;
    line-height:25px;
    -webkit-font-smoothing:antialiased;
    box-sizing: border-box;
    width:100%;
    height: 25px;
    cursor:pointer;
}
.rightMenuOption:first-child:hover{ 
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    cursor:pointer;
}
.rightMenuOption:last-child:hover{ 
    border-bottom-right-radius:5px;
    border-bottom-left-radius:5px;
    cursor:pointer;
}
.rightMenuOption:hover{
    background-color: rgb(87, 87, 87);
	color:rgb(255, 255, 255);
    cursor:pointer;
}
.rightMenuOption img{
    position: absolute;
    left:0px;
    width:25px;
    height:25px;
}