@CHARSET 'UTF-8';

/* Other devices (portrait) */
@media all and (orientation:portrait)
{
}

/* Other devices (landscape) */
@media all and (orientation:landscape)
{
}

/* Other devices (widt up to 480px) */
@media screen and (max-device-width: 480px)
{
}

/* iPhone */
@media only screen and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2)
{
}

/* iPad */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation : landscape)
{
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation : portrait)
{
}

