<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

@media only screen and (orientation:portrait){
   /* portrait styles here */
   #wrap {
      width:768px;
   }
   
    #characters{
		display:none;   
	   
   }
   
}

@media only screen and (orientation:landscape){
   /* portrait styles here */
   #wrap {
      width:994px;
   }
   
   #characters{
		display:none;   
	   
   }
   
}</pre></body></html>