/*global css*/
@import url("global.css");
/*small phone */
@import url("smallphone.css") only screen and (max-width:360px);
/* Phone */
@import url("phone.css") only screen and (min-width:361px) and (max-width:400px);
/* Tablet */
@import url("tablet.css") only screen and (min-width:401px) and (max-width:768px);
/* Desktop */
@import url("desktop.css") only screen and (min-width:769px);
