@charset "utf-8";
@import url("layout.css");
@import url("main.css");
@import url("page.css");

@import url("large.css")  only screen and (min-width:533px);
@import url("middle.css") only screen and (max-width:532px) and (min-width:401px);
@import url("small.css")  only screen and (max-width:400px);

@media only screen and (min-width:533px){#WRAPPER{width:533px;}}
@media only screen and (min-width:401px) and (max-width:532px){#WRAPPER{width:400px;}}
@media only screen and (max-width:400px){#WRAPPER{width:320px;}}