// JavaScript Document
if (screen.width < 800)  {
  document.write('<link rel="stylesheet" type="text/css" href="/styles/small.css">');
}
if ((screen.width >=800)&&(screen.width <= 1280))  {
  document.write('<link rel="stylesheet" type="text/css" href="/styles/medium.css">');
}
if (screen.width >= 1281) {
  document.write('<link rel="stylesheet" type="text/css" href="/styles/large.css">');
}