@charset "utf-8";
/* Responsive on Mobile */
    @media screen and (min-width:900px){
	.view-desktop {display: block;}
	.view-mobile {display: none;}
    }
    @media screen and (max-width:899px){
	.view-desktop {display: none;}
	.view-mobile {display: block;}
    }

/* CSS Document */
  	#backgroundPopup {
	  z-index:9000;
	  position: fixed;
	  display:none;
	  height:100%;
	  width:100%;
	  background:#000000;
	  top:0px;
	  left:0px;
	  opacity:0.8;
	}	
	#toPopup {
		background: none repeat scroll 0 0 #FFFFFF;
		color: #333333;
		display: none;
		font-size: 14px;
		left: 30%;
		position: fixed;
		top: 5%;
		width:40%;
		z-index: 9001;
		padding:0px;
	}
	#toPopupM {
		background: none repeat scroll 0 0 #FFFFFF;
		color: #333333;
		display: none;
		font-size: 14px;
		left: 10%;
		position: fixed;
		top: 10%;
		width:80%;
		z-index: 9001;
		padding:0px;
	}
