@media only screen and (orientation:portrait) {
    /* portrait mode */

    body > *, #wrapper > li {
	visibility: hidden !important;
    }
    
    #wrapper > li {
	display: none;
    }
    
    #landscape_only {
	visibility: visible !important;
	
	position: absolute;
	width: 100%;
	height: 100%;
	
	top: 0;
	left: 0;
	
	z-index: 999;

	display: block;
	
	background: #ffffff url(../images/rotate_ipad.gif) center center no-repeat;
	color: #000000;
	
	font-size: 14pt;
	
	text-align: center;
    }
}