﻿@import url("mobilebrowser.css") only screen and (orientation:portrait);
@import url("mobilebrowser.css") only screen and (orientation:landscape);
@media only screen and (orientation:portrait) {
  /* For portrait layouts only */
}

@media only screen and (orientation:landscape) {
  /* For landscape layouts only */
}
