@CHARSET "UTF-8";
/**
 * The only and unified entrance for current theme.
 * The only two of usages: <current choice: 2>
 * 1. Desktop is preferred, when the widest media query is at the top of sequence
 * 2. Mobile devices are preferred, when the narrowest media query is at the top of sequence
 */

@import url("unified.css");
@import url("handheld.css") only screen and (max-width: 767px);
@import url("laptop.css")   only screen and (min-width: 992px);

