/* iPad [portrait + landscape] */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	.pllx-a{
		left:5%;
	}
	
	.pllx-c{
		right:7%;
		bottom: 45px;
	}

}

/* iPad [portrait only] */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
	
	*{
		display:none !important;
	}
	
	html,body{
		display:block!important;
		height:100%;
	}
	
	body{
		background-image:url(/images/rotate.png);
		background-repeat:no-repeat;
		background-position:center;
	}
	
	
	
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait),
       only screen and (min-resolution: 144dpi) and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
       
       	body{
       		background-size:125px 179px;
       	}
       
     }

