移动端web开发总结(自适应)

关于viewport

移动端开发中,通常我们都会设置viewport。关于viewport

<meta name="viewport"   content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
框架

优秀的移动端web框架

推荐:淘宝SUI Mobile框架 , 官网地址:http://m.sui.taobao.org/

关于rem布局

方案1:手机端页面自适应解决方案—rem布局进阶版 (没必要用媒体查询、和设置viewport)

!function(e){function t(a){if(i[a])return i[a].exports;var n=i[a]={exports:{},id:a,loaded:!1};return e[a].call(n.exports,n,n.exports,t),n.loaded=!0,n.exports}var i={};return t.m=e,t.c=i,t.p="",t(0)}([function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=window;t["default"]=i.flex=function(normal,e,t){var a=e||100,n=t||1,r=i.document,o=navigator.userAgent,d=o.match(/Android[\S\s]+AppleWebkit\/(\d{3})/i),l=o.match(/U3\/((\d+|\.){5,})/i),c=l&&parseInt(l[1].split(".").join(""),10)>=80,p=navigator.appVersion.match(/(iphone|ipad|ipod)/gi),s=i.devicePixelRatio||1;p||d&&d[1]>534||c||(s=1);var u=normal?1:1/s,m=r.querySelector('meta[name="viewport"]');m||(m=r.createElement("meta"),m.setAttribute("name","viewport"),r.head.appendChild(m)),m.setAttribute("content","width=device-width,user-scalable=no,initial-scale="+u+",maximum-scale="+u+",minimum-scale="+u),r.documentElement.style.fontSize=normal?"50px": a/2*s*n+"px"},e.exports=t["default"]}]);  flex(false,100, 1);

方案2:使用媒体查询:@media screen and (判断属性){ CSS样式选择器 } ,可以写一堆适应的标准 ;(文章末尾有个完善的标准)

方案3:手机端页面自适应解决方案—rem布局

<script>
    (function (doc, win) {
        var docEl = doc.documentElement,
            resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize',
            recalc = function () {
                var clientWidth = docEl.clientWidth;
                if (!clientWidth) return;
                if(clientWidth>=640){
                    docEl.style.fontSize = '100px';
                }else{
                    docEl.style.fontSize = 100 * (clientWidth / 640) + 'px';
                }
            };

        if (!doc.addEventListener) return;
        win.addEventListener(resizeEvt, recalc, false);
        doc.addEventListener('DOMContentLoaded', recalc, false);
    })(document, window);
</script>
弹性布局flex

flex布局详解

媒体查询库
html{font-size:20px;}@media only screen and (min-width:200px){html{font-size:26.666666666667px !important;}}@media only screen and (min-width:201px){html{font-size:26.8px !important;}}@media only screen and (min-width:202px){html{font-size:26.933333333333px !important;}}@media only screen and (min-width:203px){html{font-size:27.066666666667px !important;}}@media only screen and (min-width:204px){html{font-size:27.2px !important;}}@media only screen and (min-width:205px){html{font-size:27.333333333333px !important;}}@media only screen and (min-width:206px){html{font-size:27.466666666667px !important;}}@media only screen and (min-width:207px){html{font-size:27.6px !important;}}@media only screen and (min-width:208px){html{font-size:27.733333333333px !important;}}@media only screen and (min-width:209px){html{font-size:27.866666666667px !important;}}@media only screen and (min-width:210px){html{font-size:28px !important;}}@media only screen and (min-width:211px){html{font-size:28.133333333333px !important;}}@media only screen and (min-width:212px){html{font-size:28.266666666667px !important;}}@media only screen and (min-width:213px){html{font-size:28.4px !important;}}@media only screen and (min-width:214px){html{font-size:28.533333333333px !important;}}@media only screen and (min-width:215px){html{font-size:28.666666666667px !important;}}@media only screen and (min-width:216px){html{font-size:28.8px !important;}}@media only screen and (min-width:217px){html{font-size:28.933333333333px !important;}}@media only screen and (min-width:218px){html{font-size:29.066666666667px !important;}}@media only screen and (min-width:219px){html{font-size:29.2px !important;}}@media only screen and (min-width:220px){html{font-size:29.333333333333px !important;}}@media only screen and (min-width:221px){html{font-size:29.466666666667px !important;}}@media only screen and (min-width:222px){html{font-size:29.6px !important;}}@media only screen and (min-width:223px){html{font-size:29.733333333333px !important;}}@media only screen and (min-width:224px){html{font-size:29.866666666667px !important;}}@media only screen and (min-width:225px){html{font-size:30px !important;}}@media only screen and (min-width:226px){html{font-size:30.133333333333px !important;}}@media only screen and (min-width:227px){html{font-size:30.266666666667px !important;}}@media only screen and (min-width:228px){html{font-size:30.4px !important;}}@media only screen and (min-width:229px){html{font-size:30.533333333333px !important;}}@media only screen and (min-width:230px){html{font-size:30.666666666667px !important;}}@media only screen and (min-width:231px){html{font-size:30.8px !important;}}@media only screen and (min-width:232px){html{font-size:30.933333333333px !important;}}@media only screen and (min-width:233px){html{font-size:31.066666666667px !important;}}@media only screen and (min-width:234px){html{font-size:31.2px !important;}}@media only screen and (min-width:235px){html{font-size:31.333333333333px !important;}}@media only screen and (min-width:236px){html{font-size:31.466666666667px !important;}}@media only screen and (min-width:237px){html{font-size:31.6px !important;}}@media only screen and (min-width:238px){html{font-size:31.733333333333px !important;}}@media only screen and (min-width:239px){html{font-size:31.866666666667px !important;}}@media only screen and (min-width:240px){html{font-size:32px !important;}}@media only screen and (min-width:241px){html{font-size:32.133333333333px !important;}}@media only screen and (min-width:242px){html{font-size:32.266666666667px !important;}}@media only screen and (min-width:243px){html{font-size:32.4px !important;}}@media only screen and (min-width:244px){html{font-size:32.533333333333px !important;}}@media only screen and (min-width:245px){html{font-size:32.666666666667px !important;}}@media only screen and (min-width:246px){html{font-size:32.8px !important;}}@media only screen and (min-width:247px){html{font-size:32.933333333333px !important;}}@media only screen and (min-width:248px){html{font-size:33.066666666667px !important;}}@media only screen and (min-width:249px){html{font-size:33.2px !important;}}@media only screen and (min-width:250px){html{font-size:33.333333333333px !important;}}@media only screen and (min-width:251px){html{font-size:33.466666666667px !important;}}@media only screen and (min-width:252px){html{font-size:33.6px !important;}}@media only screen and (min-width:253px){html{font-size:33.733333333333px !important;}}@media only screen and (min-width:254px){html{font-size:33.866666666667px !important;}}@media only screen and (min-width:255px){html{font-size:34px !important;}}@media only screen and (min-width:256px){html{font-size:34.133333333333px !important;}}@media only screen and (min-width:257px){html{font-size:34.266666666667px !important;}}@media only screen and (min-width:258px){html{font-size:34.4px !important;}}@media only screen and (min-width:259px){html{font-size:34.533333333333px !important;}}@media only screen and (min-width:260px){html{font-size:34.666666666667px !important;}}@media only screen and (min-width:261px){html{font-size:34.8px !important;}}@media only screen and (min-width:262px){html{font-size:34.933333333333px !important;}}@media only screen and (min-width:263px){html{font-size:35.066666666667px !important;}}@media only screen and (min-width:264px){html{font-size:35.2px !important;}}@media only screen and (min-width:265px){html{font-size:35.333333333333px !important;}}@media only screen and (min-width:266px){html{font-size:35.466666666667px !important;}}@media only screen and (min-width:267px){html{font-size:35.6px !important;}}@media only screen and (min-width:268px){html{font-size:35.733333333333px !important;}}@media only screen and (min-width:269px){html{font-size:35.866666666667px !important;}}@media only screen and (min-width:270px){html{font-size:36px !important;}}@media only screen and (min-width:271px){html{font-size:36.133333333333px !important;}}@media only screen and (min-width:272px){html{font-size:36.266666666667px !important;}}@media only screen and (min-width:273px){html{font-size:36.4px !important;}}@media only screen and (min-width:274px){html{font-size:36.533333333333px !important;}}@media only screen and (min-width:275px){html{font-size:36.666666666667px !important;}}@media only screen and (min-width:276px){html{font-size:36.8px !important;}}@media only screen and (min-width:277px){html{font-size:36.933333333333px !important;}}@media only screen and (min-width:278px){html{font-size:37.066666666667px !important;}}@media only screen and (min-width:279px){html{font-size:37.2px !important;}}@media only screen and (min-width:280px){html{font-size:37.333333333333px !important;}}@media only screen and (min-width:281px){html{font-size:37.466666666667px !important;}}@media only screen and (min-width:282px){html{font-size:37.6px !important;}}@media only screen and (min-width:283px){html{font-size:37.733333333333px !important;}}@media only screen and (min-width:284px){html{font-size:37.866666666667px !important;}}@media only screen and (min-width:285px){html{font-size:38px !important;}}@media only screen and (min-width:286px){html{font-size:38.133333333333px !important;}}@media only screen and (min-width:287px){html{font-size:38.266666666667px !important;}}@media only screen and (min-width:288px){html{font-size:38.4px !important;}}@media only screen and (min-width:289px){html{font-size:38.533333333333px !important;}}@media only screen and (min-width:290px){html{font-size:38.666666666667px !important;}}@media only screen and (min-width:291px){html{font-size:38.8px !important;}}@media only screen and (min-width:292px){html{font-size:38.933333333333px !important;}}@media only screen and (min-width:293px){html{font-size:39.066666666667px !important;}}@media only screen and (min-width:294px){html{font-size:39.2px !important;}}@media only screen and (min-width:295px){html{font-size:39.333333333333px !important;}}@media only screen and (min-width:296px){html{font-size:39.466666666667px !important;}}@media only screen and (min-width:297px){html{font-size:39.6px !important;}}@media only screen and (min-width:298px){html{font-size:39.733333333333px !important;}}@media only screen and (min-width:299px){html{font-size:39.866666666667px !important;}}@media only screen and (min-width:300px){html{font-size:40px !important;}}@media only screen and (min-width:301px){html{font-size:40.133333333333px !important;}}@media only screen and (min-width:302px){html{font-size:40.266666666667px !important;}}@media only screen and (min-width:303px){html{font-size:40.4px !important;}}@media only screen and (min-width:304px){html{font-size:40.533333333333px !important;}}@media only screen and (min-width:305px){html{font-size:40.666666666667px !important;}}@media only screen and (min-width:306px){html{font-size:40.8px !important;}}@media only screen and (min-width:307px){html{font-size:40.933333333333px !important;}}@media only screen and (min-width:308px){html{font-size:41.066666666667px !important;}}@media only screen and (min-width:309px){html{font-size:41.2px !important;}}@media only screen and (min-width:310px){html{font-size:41.333333333333px !important;}}@media only screen and (min-width:311px){html{font-size:41.466666666667px !important;}}@media only screen and (min-width:312px){html{font-size:41.6px !important;}}@media only screen and (min-width:313px){html{font-size:41.733333333333px !important;}}@media only screen and (min-width:314px){html{font-size:41.866666666667px !important;}}@media only screen and (min-width:315px){html{font-size:42px !important;}}@media only screen and (min-width:316px){html{font-size:42.133333333333px !important;}}@media only screen and (min-width:317px){html{font-size:42.266666666667px !important;}}@media only screen and (min-width:318px){html{font-size:42.4px !important;}}@media only screen and (min-width:319px){html{font-size:42.533333333333px !important;}}@media only screen and (min-width:320px){html{font-size:42.666666666667px !important;}}@media only screen and (min-width:321px){html{font-size:42.8px !important;}}@media only screen and (min-width:322px){html{font-size:42.933333333333px !important;}}@media only screen and (min-width:323px){html{font-size:43.066666666667px !important;}}@media only screen and (min-width:324px){html{font-size:43.2px !important;}}@media only screen and (min-width:325px){html{font-size:43.333333333333px !important;}}@media only screen and (min-width:326px){html{font-size:43.466666666667px !important;}}@media only screen and (min-width:327px){html{font-size:43.6px !important;}}@media only screen and (min-width:328px){html{font-size:43.733333333333px !important;}}@media only screen and (min-width:329px){html{font-size:43.866666666667px !important;}}@media only screen and (min-width:330px){html{font-size:44px !important;}}@media only screen and (min-width:331px){html{font-size:44.133333333333px !important;}}@media only screen and (min-width:332px){html{font-size:44.266666666667px !important;}}@media only screen and (min-width:333px){html{font-size:44.4px !important;}}@media only screen and (min-width:334px){html{font-size:44.533333333333px !important;}}@media only screen and (min-width:335px){html{font-size:44.666666666667px !important;}}@media only screen and (min-width:336px){html{font-size:44.8px !important;}}@media only screen and (min-width:337px){html{font-size:44.933333333333px !important;}}@media only screen and (min-width:338px){html{font-size:45.066666666667px !important;}}@media only screen and (min-width:339px){html{font-size:45.2px !important;}}@media only screen and (min-width:340px){html{font-size:45.333333333333px !important;}}@media only screen and (min-width:341px){html{font-size:45.466666666667px !important;}}@media only screen and (min-width:342px){html{font-size:45.6px !important;}}@media only screen and (min-width:343px){html{font-size:45.733333333333px !important;}}@media only screen and (min-width:344px){html{font-size:45.866666666667px !important;}}@media only screen and (min-width:345px){html{font-size:46px !important;}}@media only screen and (min-width:346px){html{font-size:46.133333333333px !important;}}@media only screen and (min-width:347px){html{font-size:46.266666666667px !important;}}@media only screen and (min-width:348px){html{font-size:46.4px !important;}}@media only screen and (min-width:349px){html{font-size:46.533333333333px !important;}}@media only screen and (min-width:350px){html{font-size:46.666666666667px !important;}}@media only screen and (min-width:351px){html{font-size:46.8px !important;}}@media only screen and (min-width:352px){html{font-size:46.933333333333px !important;}}@media only screen and (min-width:353px){html{font-size:47.066666666667px !important;}}@media only screen and (min-width:354px){html{font-size:47.2px !important;}}@media only screen and (min-width:355px){html{font-size:47.333333333333px !important;}}@media only screen and (min-width:356px){html{font-size:47.466666666667px !important;}}@media only screen and (min-width:357px){html{font-size:47.6px !important;}}@media only screen and (min-width:358px){html{font-size:47.733333333333px !important;}}@media only screen and (min-width:359px){html{font-size:47.866666666667px !important;}}@media only screen and (min-width:360px){html{font-size:48px !important;}}@media only screen and (min-width:361px){html{font-size:48.133333333333px !important;}}@media only screen and (min-width:362px){html{font-size:48.266666666667px !important;}}@media only screen and (min-width:363px){html{font-size:48.4px !important;}}@media only screen and (min-width:364px){html{font-size:48.533333333333px !important;}}@media only screen and (min-width:365px){html{font-size:48.666666666667px !important;}}@media only screen and (min-width:366px){html{font-size:48.8px !important;}}@media only screen and (min-width:367px){html{font-size:48.933333333333px !important;}}@media only screen and (min-width:368px){html{font-size:49.066666666667px !important;}}@media only screen and (min-width:369px){html{font-size:49.2px !important;}}@media only screen and (min-width:370px){html{font-size:49.333333333333px !important;}}@media only screen and (min-width:371px){html{font-size:49.466666666667px !important;}}@media only screen and (min-width:372px){html{font-size:49.6px !important;}}@media only screen and (min-width:373px){html{font-size:49.733333333333px !important;}}@media only screen and (min-width:374px){html{font-size:49.866666666667px !important;}}@media only screen and (min-width:375px){html{font-size:50px !important;}}@media only screen and (min-width:376px){html{font-size:50.133333333333px !important;}}@media only screen and (min-width:377px){html{font-size:50.266666666667px !important;}}@media only screen and (min-width:378px){html{font-size:50.4px !important;}}@media only screen and (min-width:379px){html{font-size:50.533333333333px !important;}}@media only screen and (min-width:380px){html{font-size:50.666666666667px !important;}}@media only screen and (min-width:381px){html{font-size:50.8px !important;}}@media only screen and (min-width:382px){html{font-size:50.933333333333px !important;}}@media only screen and (min-width:383px){html{font-size:51.066666666667px !important;}}@media only screen and (min-width:384px){html{font-size:51.2px !important;}}@media only screen and (min-width:385px){html{font-size:51.333333333333px !important;}}@media only screen and (min-width:386px){html{font-size:51.466666666667px !important;}}@media only screen and (min-width:387px){html{font-size:51.6px !important;}}@media only screen and (min-width:388px){html{font-size:51.733333333333px !important;}}@media only screen and (min-width:389px){html{font-size:51.866666666667px !important;}}@media only screen and (min-width:390px){html{font-size:52px !important;}}@media only screen and (min-width:391px){html{font-size:52.133333333333px !important;}}@media only screen and (min-width:392px){html{font-size:52.266666666667px !important;}}@media only screen and (min-width:393px){html{font-size:52.4px !important;}}@media only screen and (min-width:394px){html{font-size:52.533333333333px !important;}}@media only screen and (min-width:395px){html{font-size:52.666666666667px !important;}}@media only screen and (min-width:396px){html{font-size:52.8px !important;}}@media only screen and (min-width:397px){html{font-size:52.933333333333px !important;}}@media only screen and (min-width:398px){html{font-size:53.066666666667px !important;}}@media only screen and (min-width:399px){html{font-size:53.2px !important;}}@media only screen and (min-width:400px){html{font-size:53.333333333333px !important;}}@media only screen and (min-width:401px){html{font-size:53.466666666667px !important;}}@media only screen and (min-width:402px){html{font-size:53.6px !important;}}@media only screen and (min-width:403px){html{font-size:53.733333333333px !important;}}@media only screen and (min-width:404px){html{font-size:53.866666666667px !important;}}@media only screen and (min-width:405px){html{font-size:54px !important;}}@media only screen and (min-width:406px){html{font-size:54.133333333333px !important;}}@media only screen and (min-width:407px){html{font-size:54.266666666667px !important;}}@media only screen and (min-width:408px){html{font-size:54.4px !important;}}@media only screen and (min-width:409px){html{font-size:54.533333333333px !important;}}@media only screen and (min-width:410px){html{font-size:54.666666666667px !important;}}@media only screen and (min-width:411px){html{font-size:54.8px !important;}}@media only screen and (min-width:412px){html{font-size:54.933333333333px !important;}}@media only screen and (min-width:413px){html{font-size:55.066666666667px !important;}}@media only screen and (min-width:414px){html{font-size:55.2px !important;}}@media only screen and (min-width:415px){html{font-size:55.333333333333px !important;}}@media only screen and (min-width:416px){html{font-size:55.466666666667px !important;}}@media only screen and (min-width:417px){html{font-size:55.6px !important;}}@media only screen and (min-width:418px){html{font-size:55.733333333333px !important;}}@media only screen and (min-width:419px){html{font-size:55.866666666667px !important;}}@media only screen and (min-width:420px){html{font-size:56px !important;}}@media only screen and (min-width:421px){html{font-size:56.133333333333px !important;}}@media only screen and (min-width:422px){html{font-size:56.266666666667px !important;}}@media only screen and (min-width:423px){html{font-size:56.4px !important;}}@media only screen and (min-width:424px){html{font-size:56.533333333333px !important;}}@media only screen and (min-width:425px){html{font-size:56.666666666667px !important;}}@media only screen and (min-width:426px){html{font-size:56.8px !important;}}@media only screen and (min-width:427px){html{font-size:56.933333333333px !important;}}@media only screen and (min-width:428px){html{font-size:57.066666666667px !important;}}@media only screen and (min-width:429px){html{font-size:57.2px !important;}}@media only screen and (min-width:430px){html{font-size:57.333333333333px !important;}}@media only screen and (min-width:431px){html{font-size:57.466666666667px !important;}}@media only screen and (min-width:432px){html{font-size:57.6px !important;}}@media only screen and (min-width:433px){html{font-size:57.733333333333px !important;}}@media only screen and (min-width:434px){html{font-size:57.866666666667px !important;}}@media only screen and (min-width:435px){html{font-size:58px !important;}}@media only screen and (min-width:436px){html{font-size:58.133333333333px !important;}}@media only screen and (min-width:437px){html{font-size:58.266666666667px !important;}}@media only screen and (min-width:438px){html{font-size:58.4px !important;}}@media only screen and (min-width:439px){html{font-size:58.533333333333px !important;}}@media only screen and (min-width:440px){html{font-size:58.666666666667px !important;}}@media only screen and (min-width:441px){html{font-size:58.8px !important;}}@media only screen and (min-width:442px){html{font-size:58.933333333333px !important;}}@media only screen and (min-width:443px){html{font-size:59.066666666667px !important;}}@media only screen and (min-width:444px){html{font-size:59.2px !important;}}@media only screen and (min-width:445px){html{font-size:59.333333333333px !important;}}@media only screen and (min-width:446px){html{font-size:59.466666666667px !important;}}@media only screen and (min-width:447px){html{font-size:59.6px !important;}}@media only screen and (min-width:448px){html{font-size:59.733333333333px !important;}}@media only screen and (min-width:449px){html{font-size:59.866666666667px !important;}}@media only screen and (min-width:450px){html{font-size:60px !important;}}@media only screen and (min-width:451px){html{font-size:60.133333333333px !important;}}@media only screen and (min-width:452px){html{font-size:60.266666666667px !important;}}@media only screen and (min-width:453px){html{font-size:60.4px !important;}}@media only screen and (min-width:454px){html{font-size:60.533333333333px !important;}}@media only screen and (min-width:455px){html{font-size:60.666666666667px !important;}}@media only screen and (min-width:456px){html{font-size:60.8px !important;}}@media only screen and (min-width:457px){html{font-size:60.933333333333px !important;}}@media only screen and (min-width:458px){html{font-size:61.066666666667px !important;}}@media only screen and (min-width:459px){html{font-size:61.2px !important;}}@media only screen and (min-width:460px){html{font-size:61.333333333333px !important;}}@media only screen and (min-width:461px){html{font-size:61.466666666667px !important;}}@media only screen and (min-width:462px){html{font-size:61.6px !important;}}@media only screen and (min-width:463px){html{font-size:61.733333333333px !important;}}@media only screen and (min-width:464px){html{font-size:61.866666666667px !important;}}@media only screen and (min-width:465px){html{font-size:62px !important;}}@media only screen and (min-width:466px){html{font-size:62.133333333333px !important;}}@media only screen and (min-width:467px){html{font-size:62.266666666667px !important;}}@media only screen and (min-width:468px){html{font-size:62.4px !important;}}@media only screen and (min-width:469px){html{font-size:62.533333333333px !important;}}@media only screen and (min-width:470px){html{font-size:62.666666666667px !important;}}@media only screen and (min-width:471px){html{font-size:62.8px !important;}}@media only screen and (min-width:472px){html{font-size:62.933333333333px !important;}}@media only screen and (min-width:473px){html{font-size:63.066666666667px !important;}}@media only screen and (min-width:474px){html{font-size:63.2px !important;}}@media only screen and (min-width:475px){html{font-size:63.333333333333px !important;}}@media only screen and (min-width:476px){html{font-size:63.466666666667px !important;}}@media only screen and (min-width:477px){html{font-size:63.6px !important;}}@media only screen and (min-width:478px){html{font-size:63.733333333333px !important;}}@media only screen and (min-width:479px){html{font-size:63.866666666667px !important;}}@media only screen and (min-width:480px){html{font-size:64px !important;}}@media only screen and (min-width:481px){html{font-size:64.133333333333px !important;}}@media only screen and (min-width:482px){html{font-size:64.266666666667px !important;}}@media only screen and (min-width:483px){html{font-size:64.4px !important;}}@media only screen and (min-width:484px){html{font-size:64.533333333333px !important;}}@media only screen and (min-width:485px){html{font-size:64.666666666667px !important;}}@media only screen and (min-width:486px){html{font-size:64.8px !important;}}@media only screen and (min-width:487px){html{font-size:64.933333333333px !important;}}@media only screen and (min-width:488px){html{font-size:65.066666666667px !important;}}@media only screen and (min-width:489px){html{font-size:65.2px !important;}}@media only screen and (min-width:490px){html{font-size:65.333333333333px !important;}}@media only screen and (min-width:491px){html{font-size:65.466666666667px !important;}}@media only screen and (min-width:492px){html{font-size:65.6px !important;}}@media only screen and (min-width:493px){html{font-size:65.733333333333px !important;}}@media only screen and (min-width:494px){html{font-size:65.866666666667px !important;}}@media only screen and (min-width:495px){html{font-size:66px !important;}}@media only screen and (min-width:496px){html{font-size:66.133333333333px !important;}}@media only screen and (min-width:497px){html{font-size:66.266666666667px !important;}}@media only screen and (min-width:498px){html{font-size:66.4px !important;}}@media only screen and (min-width:499px){html{font-size:66.533333333333px !important;}}@media only screen and (min-width:500px){html{font-size:66.666666666667px !important;}}@media only screen and (min-width:501px){html{font-size:66.8px !important;}}@media only screen and (min-width:502px){html{font-size:66.933333333333px !important;}}@media only screen and (min-width:503px){html{font-size:67.066666666667px !important;}}@media only screen and (min-width:504px){html{font-size:67.2px !important;}}@media only screen and (min-width:505px){html{font-size:67.333333333333px !important;}}@media only screen and (min-width:506px){html{font-size:67.466666666667px !important;}}@media only screen and (min-width:507px){html{font-size:67.6px !important;}}@media only screen and (min-width:508px){html{font-size:67.733333333333px !important;}}@media only screen and (min-width:509px){html{font-size:67.866666666667px !important;}}@media only screen and (min-width:510px){html{font-size:68px !important;}}@media only screen and (min-width:511px){html{font-size:68.133333333333px !important;}}@media only screen and (min-width:512px){html{font-size:68.266666666667px !important;}}@media only screen and (min-width:513px){html{font-size:68.4px !important;}}@media only screen and (min-width:514px){html{font-size:68.533333333333px !important;}}@media only screen and (min-width:515px){html{font-size:68.666666666667px !important;}}@media only screen and (min-width:516px){html{font-size:68.8px !important;}}@media only screen and (min-width:517px){html{font-size:68.933333333333px !important;}}@media only screen and (min-width:518px){html{font-size:69.066666666667px !important;}}@media only screen and (min-width:519px){html{font-size:69.2px !important;}}@media only screen and (min-width:520px){html{font-size:69.333333333333px !important;}}@media only screen and (min-width:521px){html{font-size:69.466666666667px !important;}}@media only screen and (min-width:522px){html{font-size:69.6px !important;}}@media only screen and (min-width:523px){html{font-size:69.733333333333px !important;}}@media only screen and (min-width:524px){html{font-size:69.866666666667px !important;}}@media only screen and (min-width:525px){html{font-size:70px !important;}}@media only screen and (min-width:526px){html{font-size:70.133333333333px !important;}}@media only screen and (min-width:527px){html{font-size:70.266666666667px !important;}}@media only screen and (min-width:528px){html{font-size:70.4px !important;}}@media only screen and (min-width:529px){html{font-size:70.533333333333px !important;}}@media only screen and (min-width:530px){html{font-size:70.666666666667px !important;}}@media only screen and (min-width:531px){html{font-size:70.8px !important;}}@media only screen and (min-width:532px){html{font-size:70.933333333333px !important;}}@media only screen and (min-width:533px){html{font-size:71.066666666667px !important;}}@media only screen and (min-width:534px){html{font-size:71.2px !important;}}@media only screen and (min-width:535px){html{font-size:71.333333333333px !important;}}@media only screen and (min-width:536px){html{font-size:71.466666666667px !important;}}@media only screen and (min-width:537px){html{font-size:71.6px !important;}}@media only screen and (min-width:538px){html{font-size:71.733333333333px !important;}}@media only screen and (min-width:539px){html{font-size:71.866666666667px !important;}}@media only screen and (min-width:540px){html{font-size:72px !important;}}@media only screen and (min-width:541px){html{font-size:72.133333333333px !important;}}@media only screen and (min-width:542px){html{font-size:72.266666666667px !important;}}@media only screen and (min-width:543px){html{font-size:72.4px !important;}}@media only screen and (min-width:544px){html{font-size:72.533333333333px !important;}}@media only screen and (min-width:545px){html{font-size:72.666666666667px !important;}}@media only screen and (min-width:546px){html{font-size:72.8px !important;}}@media only screen and (min-width:547px){html{font-size:72.933333333333px !important;}}@media only screen and (min-width:548px){html{font-size:73.066666666667px !important;}}@media only screen and (min-width:549px){html{font-size:73.2px !important;}}@media only screen and (min-width:550px){html{font-size:73.333333333333px !important;}}@media only screen and (min-width:551px){html{font-size:73.466666666667px !important;}}@media only screen and (min-width:552px){html{font-size:73.6px !important;}}@media only screen and (min-width:553px){html{font-size:73.733333333333px !important;}}@media only screen and (min-width:554px){html{font-size:73.866666666667px !important;}}@media only screen and (min-width:555px){html{font-size:74px !important;}}@media only screen and (min-width:556px){html{font-size:74.133333333333px !important;}}@media only screen and (min-width:557px){html{font-size:74.266666666667px !important;}}@media only screen and (min-width:558px){html{font-size:74.4px !important;}}@media only screen and (min-width:559px){html{font-size:74.533333333333px !important;}}@media only screen and (min-width:560px){html{font-size:74.666666666667px !important;}}@media only screen and (min-width:561px){html{font-size:74.8px !important;}}@media only screen and (min-width:562px){html{font-size:74.933333333333px !important;}}@media only screen and (min-width:563px){html{font-size:75.066666666667px !important;}}@media only screen and (min-width:564px){html{font-size:75.2px !important;}}@media only screen and (min-width:565px){html{font-size:75.333333333333px !important;}}@media only screen and (min-width:566px){html{font-size:75.466666666667px !important;}}@media only screen and (min-width:567px){html{font-size:75.6px !important;}}@media only screen and (min-width:568px){html{font-size:75.733333333333px !important;}}@media only screen and (min-width:569px){html{font-size:75.866666666667px !important;}}@media only screen and (min-width:570px){html{font-size:76px !important;}}@media only screen and (min-width:571px){html{font-size:76.133333333333px !important;}}@media only screen and (min-width:572px){html{font-size:76.266666666667px !important;}}@media only screen and (min-width:573px){html{font-size:76.4px !important;}}@media only screen and (min-width:574px){html{font-size:76.533333333333px !important;}}@media only screen and (min-width:575px){html{font-size:76.666666666667px !important;}}@media only screen and (min-width:576px){html{font-size:76.8px !important;}}@media only screen and (min-width:577px){html{font-size:76.933333333333px !important;}}@media only screen and (min-width:578px){html{font-size:77.066666666667px !important;}}@media only screen and (min-width:579px){html{font-size:77.2px !important;}}@media only screen and (min-width:580px){html{font-size:77.333333333333px !important;}}@media only screen and (min-width:581px){html{font-size:77.466666666667px !important;}}@media only screen and (min-width:582px){html{font-size:77.6px !important;}}@media only screen and (min-width:583px){html{font-size:77.733333333333px !important;}}@media only screen and (min-width:584px){html{font-size:77.866666666667px !important;}}@media only screen and (min-width:585px){html{font-size:78px !important;}}@media only screen and (min-width:586px){html{font-size:78.133333333333px !important;}}@media only screen and (min-width:587px){html{font-size:78.266666666667px !important;}}@media only screen and (min-width:588px){html{font-size:78.4px !important;}}@media only screen and (min-width:589px){html{font-size:78.533333333333px !important;}}@media only screen and (min-width:590px){html{font-size:78.666666666667px !important;}}@media only screen and (min-width:591px){html{font-size:78.8px !important;}}@media only screen and (min-width:592px){html{font-size:78.933333333333px !important;}}@media only screen and (min-width:593px){html{font-size:79.066666666667px !important;}}@media only screen and (min-width:594px){html{font-size:79.2px !important;}}@media only screen and (min-width:595px){html{font-size:79.333333333333px !important;}}@media only screen and (min-width:596px){html{font-size:79.466666666667px !important;}}@media only screen and (min-width:597px){html{font-size:79.6px !important;}}@media only screen and (min-width:598px){html{font-size:79.733333333333px !important;}}@media only screen and (min-width:599px){html{font-size:79.866666666667px !important;}}@media only screen and (min-width:600px){html{font-size:80px !important;}}@media only screen and (min-width:601px){html{font-size:80.133333333333px !important;}}@media only screen and (min-width:602px){html{font-size:80.266666666667px !important;}}@media only screen and (min-width:603px){html{font-size:80.4px !important;}}@media only screen and (min-width:604px){html{font-size:80.533333333333px !important;}}@media only screen and (min-width:605px){html{font-size:80.666666666667px !important;}}@media only screen and (min-width:606px){html{font-size:80.8px !important;}}@media only screen and (min-width:607px){html{font-size:80.933333333333px !important;}}@media only screen and (min-width:608px){html{font-size:81.066666666667px !important;}}@media only screen and (min-width:609px){html{font-size:81.2px !important;}}@media only screen and (min-width:610px){html{font-size:81.333333333333px !important;}}@media only screen and (min-width:611px){html{font-size:81.466666666667px !important;}}@media only screen and (min-width:612px){html{font-size:81.6px !important;}}@media only screen and (min-width:613px){html{font-size:81.733333333333px !important;}}@media only screen and (min-width:614px){html{font-size:81.866666666667px !important;}}@media only screen and (min-width:615px){html{font-size:82px !important;}}@media only screen and (min-width:616px){html{font-size:82.133333333333px !important;}}@media only screen and (min-width:617px){html{font-size:82.266666666667px !important;}}@media only screen and (min-width:618px){html{font-size:82.4px !important;}}@media only screen and (min-width:619px){html{font-size:82.533333333333px !important;}}@media only screen and (min-width:620px){html{font-size:82.666666666667px !important;}}@media only screen and (min-width:621px){html{font-size:82.8px !important;}}@media only screen and (min-width:622px){html{font-size:82.933333333333px !important;}}@media only screen and (min-width:623px){html{font-size:83.066666666667px !important;}}@media only screen and (min-width:624px){html{font-size:83.2px !important;}}@media only screen and (min-width:625px){html{font-size:83.333333333333px !important;}}@media only screen and (min-width:626px){html{font-size:83.466666666667px !important;}}@media only screen and (min-width:627px){html{font-size:83.6px !important;}}@media only screen and (min-width:628px){html{font-size:83.733333333333px !important;}}@media only screen and (min-width:629px){html{font-size:83.866666666667px !important;}}@media only screen and (min-width:630px){html{font-size:84px !important;}}@media only screen and (min-width:631px){html{font-size:84.133333333333px !important;}}@media only screen and (min-width:632px){html{font-size:84.266666666667px !important;}}@media only screen and (min-width:633px){html{font-size:84.4px !important;}}@media only screen and (min-width:634px){html{font-size:84.533333333333px !important;}}@media only screen and (min-width:635px){html{font-size:84.666666666667px !important;}}@media only screen and (min-width:636px){html{font-size:84.8px !important;}}@media only screen and (min-width:637px){html{font-size:84.933333333333px !important;}}@media only screen and (min-width:638px){html{font-size:85.066666666667px !important;}}@media only screen and (min-width:639px){html{font-size:85.2px !important;}}@media only screen and (min-width:640px){html{font-size:85.333333333333px !important;}}@media only screen and (min-width:641px){html{font-size:85.466666666667px !important;}}@media only screen and (min-width:642px){html{font-size:85.6px !important;}}@media only screen and (min-width:643px){html{font-size:85.733333333333px !important;}}@media only screen and (min-width:644px){html{font-size:85.866666666667px !important;}}@media only screen and (min-width:645px){html{font-size:86px !important;}}@media only screen and (min-width:646px){html{font-size:86.133333333333px !important;}}@media only screen and (min-width:647px){html{font-size:86.266666666667px !important;}}@media only screen and (min-width:648px){html{font-size:86.4px !important;}}@media only screen and (min-width:649px){html{font-size:86.533333333333px !important;}}@media only screen and (min-width:650px){html{font-size:86.666666666667px !important;}}@media only screen and (min-width:651px){html{font-size:86.8px !important;}}@media only screen and (min-width:652px){html{font-size:86.933333333333px !important;}}@media only screen and (min-width:653px){html{font-size:87.066666666667px !important;}}@media only screen and (min-width:654px){html{font-size:87.2px !important;}}@media only screen and (min-width:655px){html{font-size:87.333333333333px !important;}}@media only screen and (min-width:656px){html{font-size:87.466666666667px !important;}}@media only screen and (min-width:657px){html{font-size:87.6px !important;}}@media only screen and (min-width:658px){html{font-size:87.733333333333px !important;}}@media only screen and (min-width:659px){html{font-size:87.866666666667px !important;}}@media only screen and (min-width:660px){html{font-size:88px !important;}}@media only screen and (min-width:661px){html{font-size:88.133333333333px !important;}}@media only screen and (min-width:662px){html{font-size:88.266666666667px !important;}}@media only screen and (min-width:663px){html{font-size:88.4px !important;}}@media only screen and (min-width:664px){html{font-size:88.533333333333px !important;}}@media only screen and (min-width:665px){html{font-size:88.666666666667px !important;}}@media only screen and (min-width:666px){html{font-size:88.8px !important;}}@media only screen and (min-width:667px){html{font-size:88.933333333333px !important;}}@media only screen and (min-width:668px){html{font-size:89.066666666667px !important;}}@media only screen and (min-width:669px){html{font-size:89.2px !important;}}@media only screen and (min-width:670px){html{font-size:89.333333333333px !important;}}@media only screen and (min-width:671px){html{font-size:89.466666666667px !important;}}@media only screen and (min-width:672px){html{font-size:89.6px !important;}}@media only screen and (min-width:673px){html{font-size:89.733333333333px !important;}}@media only screen and (min-width:674px){html{font-size:89.866666666667px !important;}}@media only screen and (min-width:675px){html{font-size:90px !important;}}@media only screen and (min-width:676px){html{font-size:90.133333333333px !important;}}@media only screen and (min-width:677px){html{font-size:90.266666666667px !important;}}@media only screen and (min-width:678px){html{font-size:90.4px !important;}}@media only screen and (min-width:679px){html{font-size:90.533333333333px !important;}}@media only screen and (min-width:680px){html{font-size:90.666666666667px !important;}}@media only screen and (min-width:681px){html{font-size:90.8px !important;}}@media only screen and (min-width:682px){html{font-size:90.933333333333px !important;}}@media only screen and (min-width:683px){html{font-size:91.066666666667px !important;}}@media only screen and (min-width:684px){html{font-size:91.2px !important;}}@media only screen and (min-width:685px){html{font-size:91.333333333333px !important;}}@media only screen and (min-width:686px){html{font-size:91.466666666667px !important;}}@media only screen and (min-width:687px){html{font-size:91.6px !important;}}@media only screen and (min-width:688px){html{font-size:91.733333333333px !important;}}@media only screen and (min-width:689px){html{font-size:91.866666666667px !important;}}@media only screen and (min-width:690px){html{font-size:92px !important;}}@media only screen and (min-width:691px){html{font-size:92.133333333333px !important;}}@media only screen and (min-width:692px){html{font-size:92.266666666667px !important;}}@media only screen and (min-width:693px){html{font-size:92.4px !important;}}@media only screen and (min-width:694px){html{font-size:92.533333333333px !important;}}@media only screen and (min-width:695px){html{font-size:92.666666666667px !important;}}@media only screen and (min-width:696px){html{font-size:92.8px !important;}}@media only screen and (min-width:697px){html{font-size:92.933333333333px !important;}}@media only screen and (min-width:698px){html{font-size:93.066666666667px !important;}}@media only screen and (min-width:699px){html{font-size:93.2px !important;}}@media only screen and (min-width:700px){html{font-size:93.333333333333px !important;}}@media only screen and (min-width:701px){html{font-size:93.466666666667px !important;}}@media only screen and (min-width:702px){html{font-size:93.6px !important;}}@media only screen and (min-width:703px){html{font-size:93.733333333333px !important;}}@media only screen and (min-width:704px){html{font-size:93.866666666667px !important;}}@media only screen and (min-width:705px){html{font-size:94px !important;}}@media only screen and (min-width:706px){html{font-size:94.133333333333px !important;}}@media only screen and (min-width:707px){html{font-size:94.266666666667px !important;}}@media only screen and (min-width:708px){html{font-size:94.4px !important;}}@media only screen and (min-width:709px){html{font-size:94.533333333333px !important;}}@media only screen and (min-width:710px){html{font-size:94.666666666667px !important;}}@media only screen and (min-width:711px){html{font-size:94.8px !important;}}@media only screen and (min-width:712px){html{font-size:94.933333333333px !important;}}@media only screen and (min-width:713px){html{font-size:95.066666666667px !important;}}@media only screen and (min-width:714px){html{font-size:95.2px !important;}}@media only screen and (min-width:715px){html{font-size:95.333333333333px !important;}}@media only screen and (min-width:716px){html{font-size:95.466666666667px !important;}}@media only screen and (min-width:717px){html{font-size:95.6px !important;}}@media only screen and (min-width:718px){html{font-size:95.733333333333px !important;}}@media only screen and (min-width:719px){html{font-size:95.866666666667px !important;}}@media only screen and (min-width:720px){html{font-size:96px !important;}}@media only screen and (min-width:721px){html{font-size:96.133333333333px !important;}}@media only screen and (min-width:722px){html{font-size:96.266666666667px !important;}}@media only screen and (min-width:723px){html{font-size:96.4px !important;}}@media only screen and (min-width:724px){html{font-size:96.533333333333px !important;}}@media only screen and (min-width:725px){html{font-size:96.666666666667px !important;}}@media only screen and (min-width:726px){html{font-size:96.8px !important;}}@media only screen and (min-width:727px){html{font-size:96.933333333333px !important;}}@media only screen and (min-width:728px){html{font-size:97.066666666667px !important;}}@media only screen and (min-width:729px){html{font-size:97.2px !important;}}@media only screen and (min-width:730px){html{font-size:97.333333333333px !important;}}@media only screen and (min-width:731px){html{font-size:97.466666666667px !important;}}@media only screen and (min-width:732px){html{font-size:97.6px !important;}}@media only screen and (min-width:733px){html{font-size:97.733333333333px !important;}}@media only screen and (min-width:734px){html{font-size:97.866666666667px !important;}}@media only screen and (min-width:735px){html{font-size:98px !important;}}@media only screen and (min-width:736px){html{font-size:98.133333333333px !important;}}@media only screen and (min-width:737px){html{font-size:98.266666666667px !important;}}@media only screen and (min-width:738px){html{font-size:98.4px !important;}}@media only screen and (min-width:739px){html{font-size:98.533333333333px !important;}}@media only screen and (min-width:740px){html{font-size:98.666666666667px !important;}}@media only screen and (min-width:741px){html{font-size:98.8px !important;}}@media only screen and (min-width:742px){html{font-size:98.933333333333px !important;}}@media only screen and (min-width:743px){html{font-size:99.066666666667px !important;}}@media only screen and (min-width:744px){html{font-size:99.2px !important;}}@media only screen and (min-width:745px){html{font-size:99.333333333333px !important;}}@media only screen and (min-width:746px){html{font-size:99.466666666667px !important;}}@media only screen and (min-width:747px){html{font-size:99.6px !important;}}@media only screen and (min-width:748px){html{font-size:99.733333333333px !important;}}@media only screen and (min-width:749px){html{font-size:99.866666666667px !important;}}@media only screen and (min-width:750px){html{font-size:100px !important;}}@media only screen and (min-width:751px){html{font-size:100.13333333333px !important;}}@media only screen and (min-width:752px){html{font-size:100.26666666667px !important;}}@media only screen and (min-width:753px){html{font-size:100.4px !important;}}@media only screen and (min-width:754px){html{font-size:100.53333333333px !important;}}@media only screen and (min-width:755px){html{font-size:100.66666666667px !important;}}@media only screen and (min-width:756px){html{font-size:100.8px !important;}}@media only screen and (min-width:757px){html{font-size:100.93333333333px !important;}}@media only screen and (min-width:758px){html{font-size:101.06666666667px !important;}}@media only screen and (min-width:759px){html{font-size:101.2px !important;}}@media only screen and (min-width:760px){html{font-size:101.33333333333px !important;}}@media only screen and (min-width:761px){html{font-size:101.46666666667px !important;}}@media only screen and (min-width:762px){html{font-size:101.6px !important;}}@media only screen and (min-width:763px){html{font-size:101.73333333333px !important;}}@media only screen and (min-width:764px){html{font-size:101.86666666667px !important;}}@media only screen and (min-width:765px){html{font-size:102px !important;}}@media only screen and (min-width:766px){html{font-size:102.13333333333px !important;}}@media only screen and (min-width:767px){html{font-size:102.26666666667px !important;}}@media only screen and (min-width:768px){html{font-size:102.4px !important;}}@media only screen and (min-width:769px){html{font-size:102.53333333333px !important;}}@media only screen and (min-width:770px){html{font-size:102.66666666667px !important;}}@media only screen and (min-width:771px){html{font-size:102.8px !important;}}@media only screen and (min-width:772px){html{font-size:102.93333333333px !important;}}@media only screen and (min-width:773px){html{font-size:103.06666666667px !important;}}@media only screen and (min-width:774px){html{font-size:103.2px !important;}}@media only screen and (min-width:775px){html{font-size:103.33333333333px !important;}}@media only screen and (min-width:776px){html{font-size:103.46666666667px !important;}}@media only screen and (min-width:777px){html{font-size:103.6px !important;}}@media only screen and (min-width:778px){html{font-size:103.73333333333px !important;}}@media only screen and (min-width:779px){html{font-size:103.86666666667px !important;}}@media only screen and (min-width:780px){html{font-size:104px !important;}}@media only screen and (min-width:781px){html{font-size:104.13333333333px !important;}}@media only screen and (min-width:782px){html{font-size:104.26666666667px !important;}}@media only screen and (min-width:783px){html{font-size:104.4px !important;}}@media only screen and (min-width:784px){html{font-size:104.53333333333px !important;}}@media only screen and (min-width:785px){html{font-size:104.66666666667px !important;}}@media only screen and (min-width:786px){html{font-size:104.8px !important;}}@media only screen and (min-width:787px){html{font-size:104.93333333333px !important;}}@media only screen and (min-width:788px){html{font-size:105.06666666667px !important;}}@media only screen and (min-width:789px){html{font-size:105.2px !important;}}@media only screen and (min-width:790px){html{font-size:105.33333333333px !important;}}@media only screen and (min-width:791px){html{font-size:105.46666666667px !important;}}@media only screen and (min-width:792px){html{font-size:105.6px !important;}}@media only screen and (min-width:793px){html{font-size:105.73333333333px !important;}}@media only screen and (min-width:794px){html{font-size:105.86666666667px !important;}}@media only screen and (min-width:795px){html{font-size:106px !important;}}@media only screen and (min-width:796px){html{font-size:106.13333333333px !important;}}@media only screen and (min-width:797px){html{font-size:106.26666666667px !important;}}@media only screen and (min-width:798px){html{font-size:106.4px !important;}}@media only screen and (min-width:799px){html{font-size:106.53333333333px !important;}}@media only screen and (min-width:800px){html{font-size:106.66666666667px !important;}}@media only screen and (min-width:801px){html{font-size:106.8px !important;}}@media only screen and (min-width:802px){html{font-size:106.93333333333px !important;}}@media only screen and (min-width:803px){html{font-size:107.06666666667px !important;}}@media only screen and (min-width:804px){html{font-size:107.2px !important;}}@media only screen and (min-width:805px){html{font-size:107.33333333333px !important;}}@media only screen and (min-width:806px){html{font-size:107.46666666667px !important;}}@media only screen and (min-width:807px){html{font-size:107.6px !important;}}@media only screen and (min-width:808px){html{font-size:107.73333333333px !important;}}@media only screen and (min-width:809px){html{font-size:107.86666666667px !important;}}@media only screen and (min-width:810px){html{font-size:108px !important;}}@media only screen and (min-width:811px){html{font-size:108.13333333333px !important;}}@media only screen and (min-width:812px){html{font-size:108.26666666667px !important;}}@media only screen and (min-width:813px){html{font-size:108.4px !important;}}@media only screen and (min-width:814px){html{font-size:108.53333333333px !important;}}@media only screen and (min-width:815px){html{font-size:108.66666666667px !important;}}@media only screen and (min-width:816px){html{font-size:108.8px !important;}}@media only screen and (min-width:817px){html{font-size:108.93333333333px !important;}}@media only screen and (min-width:818px){html{font-size:109.06666666667px !important;}}@media only screen and (min-width:819px){html{font-size:109.2px !important;}}@media only screen and (min-width:820px){html{font-size:109.33333333333px !important;}}@media only screen and (min-width:821px){html{font-size:109.46666666667px !important;}}@media only screen and (min-width:822px){html{font-size:109.6px !important;}}@media only screen and (min-width:823px){html{font-size:109.73333333333px !important;}}@media only screen and (min-width:824px){html{font-size:109.86666666667px !important;}}@media only screen and (min-width:825px){html{font-size:110px !important;}}@media only screen and (min-width:826px){html{font-size:110.13333333333px !important;}}@media only screen and (min-width:827px){html{font-size:110.26666666667px !important;}}@media only screen and (min-width:828px){html{font-size:110.4px !important;}}@media only screen and (min-width:829px){html{font-size:110.53333333333px !important;}}@media only screen and (min-width:830px){html{font-size:110.66666666667px !important;}}@media only screen and (min-width:831px){html{font-size:110.8px !important;}}@media only screen and (min-width:832px){html{font-size:110.93333333333px !important;}}@media only screen and (min-width:833px){html{font-size:111.06666666667px !important;}}@media only screen and (min-width:834px){html{font-size:111.2px !important;}}@media only screen and (min-width:835px){html{font-size:111.33333333333px !important;}}@media only screen and (min-width:836px){html{font-size:111.46666666667px !important;}}@media only screen and (min-width:837px){html{font-size:111.6px !important;}}@media only screen and (min-width:838px){html{font-size:111.73333333333px !important;}}@media only screen and (min-width:839px){html{font-size:111.86666666667px !important;}}@media only screen and (min-width:840px){html{font-size:112px !important;}}@media only screen and (min-width:841px){html{font-size:112.13333333333px !important;}}@media only screen and (min-width:842px){html{font-size:112.26666666667px !important;}}@media only screen and (min-width:843px){html{font-size:112.4px !important;}}@media only screen and (min-width:844px){html{font-size:112.53333333333px !important;}}@media only screen and (min-width:845px){html{font-size:112.66666666667px !important;}}@media only screen and (min-width:846px){html{font-size:112.8px !important;}}@media only screen and (min-width:847px){html{font-size:112.93333333333px !important;}}@media only screen and (min-width:848px){html{font-size:113.06666666667px !important;}}@media only screen and (min-width:849px){html{font-size:113.2px !important;}}@media only screen and (min-width:850px){html{font-size:113.33333333333px !important;}}@media only screen and (min-width:851px){html{font-size:113.46666666667px !important;}}@media only screen and (min-width:852px){html{font-size:113.6px !important;}}@media only screen and (min-width:853px){html{font-size:113.73333333333px !important;}}@media only screen and (min-width:854px){html{font-size:113.86666666667px !important;}}@media only screen and (min-width:855px){html{font-size:114px !important;}}@media only screen and (min-width:856px){html{font-size:114.13333333333px !important;}}@media only screen and (min-width:857px){html{font-size:114.26666666667px !important;}}@media only screen and (min-width:858px){html{font-size:114.4px !important;}}@media only screen and (min-width:859px){html{font-size:114.53333333333px !important;}}@media only screen and (min-width:860px){html{font-size:114.66666666667px !important;}}@media only screen and (min-width:861px){html{font-size:114.8px !important;}}@media only screen and (min-width:862px){html{font-size:114.93333333333px !important;}}@media only screen and (min-width:863px){html{font-size:115.06666666667px !important;}}@media only screen and (min-width:864px){html{font-size:115.2px !important;}}@media only screen and (min-width:865px){html{font-size:115.33333333333px !important;}}@media only screen and (min-width:866px){html{font-size:115.46666666667px !important;}}@media only screen and (min-width:867px){html{font-size:115.6px !important;}}@media only screen and (min-width:868px){html{font-size:115.73333333333px !important;}}@media only screen and (min-width:869px){html{font-size:115.86666666667px !important;}}@media only screen and (min-width:870px){html{font-size:116px !important;}}@media only screen and (min-width:871px){html{font-size:116.13333333333px !important;}}@media only screen and (min-width:872px){html{font-size:116.26666666667px !important;}}@media only screen and (min-width:873px){html{font-size:116.4px !important;}}@media only screen and (min-width:874px){html{font-size:116.53333333333px !important;}}@media only screen and (min-width:875px){html{font-size:116.66666666667px !important;}}@media only screen and (min-width:876px){html{font-size:116.8px !important;}}@media only screen and (min-width:877px){html{font-size:116.93333333333px !important;}}@media only screen and (min-width:878px){html{font-size:117.06666666667px !important;}}@media only screen and (min-width:879px){html{font-size:117.2px !important;}}@media only screen and (min-width:880px){html{font-size:117.33333333333px !important;}}@media only screen and (min-width:881px){html{font-size:117.46666666667px !important;}}@media only screen and (min-width:882px){html{font-size:117.6px !important;}}@media only screen and (min-width:883px){html{font-size:117.73333333333px !important;}}@media only screen and (min-width:884px){html{font-size:117.86666666667px !important;}}@media only screen and (min-width:885px){html{font-size:118px !important;}}@media only screen and (min-width:886px){html{font-size:118.13333333333px !important;}}@media only screen and (min-width:887px){html{font-size:118.26666666667px !important;}}@media only screen and (min-width:888px){html{font-size:118.4px !important;}}@media only screen and (min-width:889px){html{font-size:118.53333333333px !important;}}@media only screen and (min-width:890px){html{font-size:118.66666666667px !important;}}@media only screen and (min-width:891px){html{font-size:118.8px !important;}}@media only screen and (min-width:892px){html{font-size:118.93333333333px !important;}}@media only screen and (min-width:893px){html{font-size:119.06666666667px !important;}}@media only screen and (min-width:894px){html{font-size:119.2px !important;}}@media only screen and (min-width:895px){html{font-size:119.33333333333px !important;}}@media only screen and (min-width:896px){html{font-size:119.46666666667px !important;}}@media only screen and (min-width:897px){html{font-size:119.6px !important;}}@media only screen and (min-width:898px){html{font-size:119.73333333333px !important;}}@media only screen and (min-width:899px){html{font-size:119.86666666667px !important;}}@media only screen and (min-width:900px){html{font-size:120px !important;}}@media only screen and (min-width:901px){html{font-size:120.13333333333px !important;}}@media only screen and (min-width:902px){html{font-size:120.26666666667px !important;}}@media only screen and (min-width:903px){html{font-size:120.4px !important;}}@media only screen and (min-width:904px){html{font-size:120.53333333333px !important;}}@media only screen and (min-width:905px){html{font-size:120.66666666667px !important;}}@media only screen and (min-width:906px){html{font-size:120.8px !important;}}@media only screen and (min-width:907px){html{font-size:120.93333333333px !important;}}@media only screen and (min-width:908px){html{font-size:121.06666666667px !important;}}@media only screen and (min-width:909px){html{font-size:121.2px !important;}}@media only screen and (min-width:910px){html{font-size:121.33333333333px !important;}}@media only screen and (min-width:911px){html{font-size:121.46666666667px !important;}}@media only screen and (min-width:912px){html{font-size:121.6px !important;}}@media only screen and (min-width:913px){html{font-size:121.73333333333px !important;}}@media only screen and (min-width:914px){html{font-size:121.86666666667px !important;}}@media only screen and (min-width:915px){html{font-size:122px !important;}}@media only screen and (min-width:916px){html{font-size:122.13333333333px !important;}}@media only screen and (min-width:917px){html{font-size:122.26666666667px !important;}}@media only screen and (min-width:918px){html{font-size:122.4px !important;}}@media only screen and (min-width:919px){html{font-size:122.53333333333px !important;}}@media only screen and (min-width:920px){html{font-size:122.66666666667px !important;}}@media only screen and (min-width:921px){html{font-size:122.8px !important;}}@media only screen and (min-width:922px){html{font-size:122.93333333333px !important;}}@media only screen and (min-width:923px){html{font-size:123.06666666667px !important;}}@media only screen and (min-width:924px){html{font-size:123.2px !important;}}@media only screen and (min-width:925px){html{font-size:123.33333333333px !important;}}@media only screen and (min-width:926px){html{font-size:123.46666666667px !important;}}@media only screen and (min-width:927px){html{font-size:123.6px !important;}}@media only screen and (min-width:928px){html{font-size:123.73333333333px !important;}}@media only screen and (min-width:929px){html{font-size:123.86666666667px !important;}}@media only screen and (min-width:930px){html{font-size:124px !important;}}@media only screen and (min-width:931px){html{font-size:124.13333333333px !important;}}@media only screen and (min-width:932px){html{font-size:124.26666666667px !important;}}@media only screen and (min-width:933px){html{font-size:124.4px !important;}}@media only screen and (min-width:934px){html{font-size:124.53333333333px !important;}}@media only screen and (min-width:935px){html{font-size:124.66666666667px !important;}}@media only screen and (min-width:936px){html{font-size:124.8px !important;}}@media only screen and (min-width:937px){html{font-size:124.93333333333px !important;}}@media only screen and (min-width:938px){html{font-size:125.06666666667px !important;}}@media only screen and (min-width:939px){html{font-size:125.2px !important;}}@media only screen and (min-width:940px){html{font-size:125.33333333333px !important;}}@media only screen and (min-width:941px){html{font-size:125.46666666667px !important;}}@media only screen and (min-width:942px){html{font-size:125.6px !important;}}@media only screen and (min-width:943px){html{font-size:125.73333333333px !important;}}@media only screen and (min-width:944px){html{font-size:125.86666666667px !important;}}@media only screen and (min-width:945px){html{font-size:126px !important;}}@media only screen and (min-width:946px){html{font-size:126.13333333333px !important;}}@media only screen and (min-width:947px){html{font-size:126.26666666667px !important;}}@media only screen and (min-width:948px){html{font-size:126.4px !important;}}@media only screen and (min-width:949px){html{font-size:126.53333333333px !important;}}@media only screen and (min-width:950px){html{font-size:126.66666666667px !important;}}@media only screen and (min-width:951px){html{font-size:126.8px !important;}}@media only screen and (min-width:952px){html{font-size:126.93333333333px !important;}}@media only screen and (min-width:953px){html{font-size:127.06666666667px !important;}}@media only screen and (min-width:954px){html{font-size:127.2px !important;}}@media only screen and (min-width:955px){html{font-size:127.33333333333px !important;}}@media only screen and (min-width:956px){html{font-size:127.46666666667px !important;}}@media only screen and (min-width:957px){html{font-size:127.6px !important;}}@media only screen and (min-width:958px){html{font-size:127.73333333333px !important;}}@media only screen and (min-width:959px){html{font-size:127.86666666667px !important;}}@media only screen and (min-width:960px){html{font-size:128px !important;}}@media only screen and (min-width:961px){html{font-size:128.13333333333px !important;}}@media only screen and (min-width:962px){html{font-size:128.26666666667px !important;}}@media only screen and (min-width:963px){html{font-size:128.4px !important;}}@media only screen and (min-width:964px){html{font-size:128.53333333333px !important;}}@media only screen and (min-width:965px){html{font-size:128.66666666667px !important;}}@media only screen and (min-width:966px){html{font-size:128.8px !important;}}@media only screen and (min-width:967px){html{font-size:128.93333333333px !important;}}@media only screen and (min-width:968px){html{font-size:129.06666666667px !important;}}@media only screen and (min-width:969px){html{font-size:129.2px !important;}}@media only screen and (min-width:970px){html{font-size:129.33333333333px !important;}}@media only screen and (min-width:971px){html{font-size:129.46666666667px !important;}}@media only screen and (min-width:972px){html{font-size:129.6px !important;}}@media only screen and (min-width:973px){html{font-size:129.73333333333px !important;}}@media only screen and (min-width:974px){html{font-size:129.86666666667px !important;}}@media only screen and (min-width:975px){html{font-size:130px !important;}}@media only screen and (min-width:976px){html{font-size:130.13333333333px !important;}}@media only screen and (min-width:977px){html{font-size:130.26666666667px !important;}}@media only screen and (min-width:978px){html{font-size:130.4px !important;}}@media only screen and (min-width:979px){html{font-size:130.53333333333px !important;}}@media only screen and (min-width:980px){html{font-size:130.66666666667px !important;}}@media only screen and (min-width:981px){html{font-size:130.8px !important;}}@media only screen and (min-width:982px){html{font-size:130.93333333333px !important;}}@media only screen and (min-width:983px){html{font-size:131.06666666667px !important;}}@media only screen and (min-width:984px){html{font-size:131.2px !important;}}@media only screen and (min-width:985px){html{font-size:131.33333333333px !important;}}@media only screen and (min-width:986px){html{font-size:131.46666666667px !important;}}@media only screen and (min-width:987px){html{font-size:131.6px !important;}}@media only screen and (min-width:988px){html{font-size:131.73333333333px !important;}}@media only screen and (min-width:989px){html{font-size:131.86666666667px !important;}}@media only screen and (min-width:990px){html{font-size:132px !important;}}@media only screen and (min-width:991px){html{font-size:132.13333333333px !important;}}@media only screen and (min-width:992px){html{font-size:132.26666666667px !important;}}@media only screen and (min-width:993px){html{font-size:132.4px !important;}}@media only screen and (min-width:994px){html{font-size:132.53333333333px !important;}}@media only screen and (min-width:995px){html{font-size:132.66666666667px !important;}}@media only screen and (min-width:996px){html{font-size:132.8px !important;}}@media only screen and (min-width:997px){html{font-size:132.93333333333px !important;}}@media only screen and (min-width:998px){html{font-size:133.06666666667px !important;}}@media only screen and (min-width:999px){html{font-size:133.2px !important;}}@media only screen and (min-width:1000px){html{font-size:133.33333333333px !important;}}@media only screen and (min-width:1001px){html{font-size:133.46666666667px !important;}}@media only screen and (min-width:1002px){html{font-size:133.6px !important;}}@media only screen and (min-width:1003px){html{font-size:133.73333333333px !important;}}@media only screen and (min-width:1004px){html{font-size:133.86666666667px !important;}}@media only screen and (min-width:1005px){html{font-size:134px !important;}}@media only screen and (min-width:1006px){html{font-size:134.13333333333px !important;}}@media only screen and (min-width:1007px){html{font-size:134.26666666667px !important;}}@media only screen and (min-width:1008px){html{font-size:134.4px !important;}}@media only screen and (min-width:1009px){html{font-size:134.53333333333px !important;}}@media only screen and (min-width:1010px){html{font-size:134.66666666667px !important;}}@media only screen and (min-width:1011px){html{font-size:134.8px !important;}}@media only screen and (min-width:1012px){html{font-size:134.93333333333px !important;}}@media only screen and (min-width:1013px){html{font-size:135.06666666667px !important;}}@media only screen and (min-width:1014px){html{font-size:135.2px !important;}}@media only screen and (min-width:1015px){html{font-size:135.33333333333px !important;}}@media only screen and (min-width:1016px){html{font-size:135.46666666667px !important;}}@media only screen and (min-width:1017px){html{font-size:135.6px !important;}}@media only screen and (min-width:1018px){html{font-size:135.73333333333px !important;}}@media only screen and (min-width:1019px){html{font-size:135.86666666667px !important;}}@media only screen and (min-width:1020px){html{font-size:136px !important;}}@media only screen and (min-width:1021px){html{font-size:136.13333333333px !important;}}@media only screen and (min-width:1022px){html{font-size:136.26666666667px !important;}}@media only screen and (min-width:1023px){html{font-size:136.4px !important;}}@media only screen and (min-width:1024px){html{font-size:136.53333333333px !important;}}@media only screen and (min-width:1025px){html{font-size:136.66666666667px !important;}}@media only screen and (min-width:1026px){html{font-size:136.8px !important;}}@media only screen and (min-width:1027px){html{font-size:136.93333333333px !important;}}@media only screen and (min-width:1028px){html{font-size:137.06666666667px !important;}}@media only screen and (min-width:1029px){html{font-size:137.2px !important;}}@media only screen and (min-width:1030px){html{font-size:137.33333333333px !important;}}@media only screen and (min-width:1031px){html{font-size:137.46666666667px !important;}}@media only screen and (min-width:1032px){html{font-size:137.6px !important;}}@media only screen and (min-width:1033px){html{font-size:137.73333333333px !important;}}@media only screen and (min-width:1034px){html{font-size:137.86666666667px !important;}}@media only screen and (min-width:1035px){html{font-size:138px !important;}}@media only screen and (min-width:1036px){html{font-size:138.13333333333px !important;}}@media only screen and (min-width:1037px){html{font-size:138.26666666667px !important;}}@media only screen and (min-width:1038px){html{font-size:138.4px !important;}}@media only screen and (min-width:1039px){html{font-size:138.53333333333px !important;}}@media only screen and (min-width:1040px){html{font-size:138.66666666667px !important;}}@media only screen and (min-width:1041px){html{font-size:138.8px !important;}}@media only screen and (min-width:1042px){html{font-size:138.93333333333px !important;}}@media only screen and (min-width:1043px){html{font-size:139.06666666667px !important;}}@media only screen and (min-width:1044px){html{font-size:139.2px !important;}}@media only screen and (min-width:1045px){html{font-size:139.33333333333px !important;}}@media only screen and (min-width:1046px){html{font-size:139.46666666667px !important;}}@media only screen and (min-width:1047px){html{font-size:139.6px !important;}}@media only screen and (min-width:1048px){html{font-size:139.73333333333px !important;}}@media only screen and (min-width:1049px){html{font-size:139.86666666667px !important;}}@media only screen and (min-width:1050px){html{font-size:140px !important;}}@media only screen and (min-width:1051px){html{font-size:140.13333333333px !important;}}@media only screen and (min-width:1052px){html{font-size:140.26666666667px !important;}}@media only screen and (min-width:1053px){html{font-size:140.4px !important;}}@media only screen and (min-width:1054px){html{font-size:140.53333333333px !important;}}@media only screen and (min-width:1055px){html{font-size:140.66666666667px !important;}}@media only screen and (min-width:1056px){html{font-size:140.8px !important;}}@media only screen and (min-width:1057px){html{font-size:140.93333333333px !important;}}@media only screen and (min-width:1058px){html{font-size:141.06666666667px !important;}}@media only screen and (min-width:1059px){html{font-size:141.2px !important;}}@media only screen and (min-width:1060px){html{font-size:141.33333333333px !important;}}@media only screen and (min-width:1061px){html{font-size:141.46666666667px !important;}}@media only screen and (min-width:1062px){html{font-size:141.6px !important;}}@media only screen and (min-width:1063px){html{font-size:141.73333333333px !important;}}@media only screen and (min-width:1064px){html{font-size:141.86666666667px !important;}}@media only screen and (min-width:1065px){html{font-size:142px !important;}}@media only screen and (min-width:1066px){html{font-size:142.13333333333px !important;}}@media only screen and (min-width:1067px){html{font-size:142.26666666667px !important;}}@media only screen and (min-width:1068px){html{font-size:142.4px !important;}}@media only screen and (min-width:1069px){html{font-size:142.53333333333px !important;}}@media only screen and (min-width:1070px){html{font-size:142.66666666667px !important;}}@media only screen and (min-width:1071px){html{font-size:142.8px !important;}}@media only screen and (min-width:1072px){html{font-size:142.93333333333px !important;}}@media only screen and (min-width:1073px){html{font-size:143.06666666667px !important;}}@media only screen and (min-width:1074px){html{font-size:143.2px !important;}}@media only screen and (min-width:1075px){html{font-size:143.33333333333px !important;}}@media only screen and (min-width:1076px){html{font-size:143.46666666667px !important;}}@media only screen and (min-width:1077px){html{font-size:143.6px !important;}}@media only screen and (min-width:1078px){html{font-size:143.73333333333px !important;}}@media only screen and (min-width:1079px){html{font-size:143.86666666667px !important;}}@media only screen and (min-width:1080px){html{font-size:144px !important;}}@media only screen and (min-width:1081px){html{font-size:144.13333333333px !important;}}@media only screen and (min-width:1082px){html{font-size:144.26666666667px !important;}}@media only screen and (min-width:1083px){html{font-size:144.4px !important;}}@media only screen and (min-width:1084px){html{font-size:144.53333333333px !important;}}@media only screen and (min-width:1085px){html{font-size:144.66666666667px !important;}}@media only screen and (min-width:1086px){html{font-size:144.8px !important;}}@media only screen and (min-width:1087px){html{font-size:144.93333333333px !important;}}@media only screen and (min-width:1088px){html{font-size:145.06666666667px !important;}}@media only screen and (min-width:1089px){html{font-size:145.2px !important;}}@media only screen and (min-width:1090px){html{font-size:145.33333333333px !important;}}@media only screen and (min-width:1091px){html{font-size:145.46666666667px !important;}}@media only screen and (min-width:1092px){html{font-size:145.6px !important;}}@media only screen and (min-width:1093px){html{font-size:145.73333333333px !important;}}@media only screen and (min-width:1094px){html{font-size:145.86666666667px !important;}}@media only screen and (min-width:1095px){html{font-size:146px !important;}}@media only screen and (min-width:1096px){html{font-size:146.13333333333px !important;}}@media only screen and (min-width:1097px){html{font-size:146.26666666667px !important;}}@media only screen and (min-width:1098px){html{font-size:146.4px !important;}}@media only screen and (min-width:1099px){html{font-size:146.53333333333px !important;}}@media only screen and (min-width:1100px){html{font-size:146.66666666667px !important;}}@media only screen and (min-width:1101px){html{font-size:146.8px !important;}}@media only screen and (min-width:1102px){html{font-size:146.93333333333px !important;}}@media only screen and (min-width:1103px){html{font-size:147.06666666667px !important;}}@media only screen and (min-width:1104px){html{font-size:147.2px !important;}}@media only screen and (min-width:1105px){html{font-size:147.33333333333px !important;}}@media only screen and (min-width:1106px){html{font-size:147.46666666667px !important;}}@media only screen and (min-width:1107px){html{font-size:147.6px !important;}}@media only screen and (min-width:1108px){html{font-size:147.73333333333px !important;}}@media only screen and (min-width:1109px){html{font-size:147.86666666667px !important;}}@media only screen and (min-width:1110px){html{font-size:148px !important;}}@media only screen and (min-width:1111px){html{font-size:148.13333333333px !important;}}@media only screen and (min-width:1112px){html{font-size:148.26666666667px !important;}}@media only screen and (min-width:1113px){html{font-size:148.4px !important;}}@media only screen and (min-width:1114px){html{font-size:148.53333333333px !important;}}@media only screen and (min-width:1115px){html{font-size:148.66666666667px !important;}}@media only screen and (min-width:1116px){html{font-size:148.8px !important;}}@media only screen and (min-width:1117px){html{font-size:148.93333333333px !important;}}@media only screen and (min-width:1118px){html{font-size:149.06666666667px !important;}}@media only screen and (min-width:1119px){html{font-size:149.2px !important;}}@media only screen and (min-width:1120px){html{font-size:149.33333333333px !important;}}@media only screen and (min-width:1121px){html{font-size:149.46666666667px !important;}}@media only screen and (min-width:1122px){html{font-size:149.6px !important;}}@media only screen and (min-width:1123px){html{font-size:149.73333333333px !important;}}@media only screen and (min-width:1124px){html{font-size:149.86666666667px !important;}}@media only screen and (min-width:1125px){html{font-size:150px !important;}}@media only screen and (min-width:1126px){html{font-size:150.13333333333px !important;}}@media only screen and (min-width:1127px){html{font-size:150.26666666667px !important;}}@media only screen and (min-width:1128px){html{font-size:150.4px !important;}}@media only screen and (min-width:1129px){html{font-size:150.53333333333px !important;}}@media only screen and (min-width:1130px){html{font-size:150.66666666667px !important;}}@media only screen and (min-width:1131px){html{font-size:150.8px !important;}}@media only screen and (min-width:1132px){html{font-size:150.93333333333px !important;}}@media only screen and (min-width:1133px){html{font-size:151.06666666667px !important;}}@media only screen and (min-width:1134px){html{font-size:151.2px !important;}}@media only screen and (min-width:1135px){html{font-size:151.33333333333px !important;}}@media only screen and (min-width:1136px){html{font-size:151.46666666667px !important;}}@media only screen and (min-width:1137px){html{font-size:151.6px !important;}}@media only screen and (min-width:1138px){html{font-size:151.73333333333px !important;}}@media only screen and (min-width:1139px){html{font-size:151.86666666667px !important;}}@media only screen and (min-width:1140px){html{font-size:152px !important;}}@media only screen and (min-width:1141px){html{font-size:152.13333333333px !important;}}@media only screen and (min-width:1142px){html{font-size:152.26666666667px !important;}}@media only screen and (min-width:1143px){html{font-size:152.4px !important;}}@media only screen and (min-width:1144px){html{font-size:152.53333333333px !important;}}@media only screen and (min-width:1145px){html{font-size:152.66666666667px !important;}}@media only screen and (min-width:1146px){html{font-size:152.8px !important;}}@media only screen and (min-width:1147px){html{font-size:152.93333333333px !important;}}@media only screen and (min-width:1148px){html{font-size:153.06666666667px !important;}}@media only screen and (min-width:1149px){html{font-size:153.2px !important;}}@media only screen and (min-width:1150px){html{font-size:153.33333333333px !important;}}@media only screen and (min-width:1151px){html{font-size:153.46666666667px !important;}}@media only screen and (min-width:1152px){html{font-size:153.6px !important;}}@media only screen and (min-width:1153px){html{font-size:153.73333333333px !important;}}@media only screen and (min-width:1154px){html{font-size:153.86666666667px !important;}}@media only screen and (min-width:1155px){html{font-size:154px !important;}}@media only screen and (min-width:1156px){html{font-size:154.13333333333px !important;}}@media only screen and (min-width:1157px){html{font-size:154.26666666667px !important;}}@media only screen and (min-width:1158px){html{font-size:154.4px !important;}}@media only screen and (min-width:1159px){html{font-size:154.53333333333px !important;}}@media only screen and (min-width:1160px){html{font-size:154.66666666667px !important;}}@media only screen and (min-width:1161px){html{font-size:154.8px !important;}}@media only screen and (min-width:1162px){html{font-size:154.93333333333px !important;}}@media only screen and (min-width:1163px){html{font-size:155.06666666667px !important;}}@media only screen and (min-width:1164px){html{font-size:155.2px !important;}}@media only screen and (min-width:1165px){html{font-size:155.33333333333px !important;}}@media only screen and (min-width:1166px){html{font-size:155.46666666667px !important;}}@media only screen and (min-width:1167px){html{font-size:155.6px !important;}}@media only screen and (min-width:1168px){html{font-size:155.73333333333px !important;}}@media only screen and (min-width:1169px){html{font-size:155.86666666667px !important;}}@media only screen and (min-width:1170px){html{font-size:156px !important;}}@media only screen and (min-width:1171px){html{font-size:156.13333333333px !important;}}@media only screen and (min-width:1172px){html{font-size:156.26666666667px !important;}}@media only screen and (min-width:1173px){html{font-size:156.4px !important;}}@media only screen and (min-width:1174px){html{font-size:156.53333333333px !important;}}@media only screen and (min-width:1175px){html{font-size:156.66666666667px !important;}}@media only screen and (min-width:1176px){html{font-size:156.8px !important;}}@media only screen and (min-width:1177px){html{font-size:156.93333333333px !important;}}@media only screen and (min-width:1178px){html{font-size:157.06666666667px !important;}}@media only screen and (min-width:1179px){html{font-size:157.2px !important;}}@media only screen and (min-width:1180px){html{font-size:157.33333333333px !important;}}@media only screen and (min-width:1181px){html{font-size:157.46666666667px !important;}}@media only screen and (min-width:1182px){html{font-size:157.6px !important;}}@media only screen and (min-width:1183px){html{font-size:157.73333333333px !important;}}@media only screen and (min-width:1184px){html{font-size:157.86666666667px !important;}}@media only screen and (min-width:1185px){html{font-size:158px !important;}}@media only screen and (min-width:1186px){html{font-size:158.13333333333px !important;}}@media only screen and (min-width:1187px){html{font-size:158.26666666667px !important;}}@media only screen and (min-width:1188px){html{font-size:158.4px !important;}}@media only screen and (min-width:1189px){html{font-size:158.53333333333px !important;}}@media only screen and (min-width:1190px){html{font-size:158.66666666667px !important;}}@media only screen and (min-width:1191px){html{font-size:158.8px !important;}}@media only screen and (min-width:1192px){html{font-size:158.93333333333px !important;}}@media only screen and (min-width:1193px){html{font-size:159.06666666667px !important;}}@media only screen and (min-width:1194px){html{font-size:159.2px !important;}}@media only screen and (min-width:1195px){html{font-size:159.33333333333px !important;}}@media only screen and (min-width:1196px){html{font-size:159.46666666667px !important;}}@media only screen and (min-width:1197px){html{font-size:159.6px !important;}}@media only screen and (min-width:1198px){html{font-size:159.73333333333px !important;}}@media only screen and (min-width:1199px){html{font-size:159.86666666667px !important;}}@media only screen and (min-width:1200px){html{font-size:160px !important;}}@media only screen and (min-width:1201px){html{font-size:160.13333333333px !important;}}@media only screen and (min-width:1202px){html{font-size:160.26666666667px !important;}}@media only screen and (min-width:1203px){html{font-size:160.4px !important;}}@media only screen and (min-width:1204px){html{font-size:160.53333333333px !important;}}@media only screen and (min-width:1205px){html{font-size:160.66666666667px !important;}}@media only screen and (min-width:1206px){html{font-size:160.8px !important;}}@media only screen and (min-width:1207px){html{font-size:160.93333333333px !important;}}@media only screen and (min-width:1208px){html{font-size:161.06666666667px !important;}}@media only screen and (min-width:1209px){html{font-size:161.2px !important;}}@media only screen and (min-width:1210px){html{font-size:161.33333333333px !important;}}@media only screen and (min-width:1211px){html{font-size:161.46666666667px !important;}}@media only screen and (min-width:1212px){html{font-size:161.6px !important;}}@media only screen and (min-width:1213px){html{font-size:161.73333333333px !important;}}@media only screen and (min-width:1214px){html{font-size:161.86666666667px !important;}}@media only screen and (min-width:1215px){html{font-size:162px !important;}}@media only screen and (min-width:1216px){html{font-size:162.13333333333px !important;}}@media only screen and (min-width:1217px){html{font-size:162.26666666667px !important;}}@media only screen and (min-width:1218px){html{font-size:162.4px !important;}}@media only screen and (min-width:1219px){html{font-size:162.53333333333px !important;}}@media only screen and (min-width:1220px){html{font-size:162.66666666667px !important;}}@media only screen and (min-width:1221px){html{font-size:162.8px !important;}}@media only screen and (min-width:1222px){html{font-size:162.93333333333px !important;}}@media only screen and (min-width:1223px){html{font-size:163.06666666667px !important;}}@media only screen and (min-width:1224px){html{font-size:163.2px !important;}}@media only screen and (min-width:1225px){html{font-size:163.33333333333px !important;}}@media only screen and (min-width:1226px){html{font-size:163.46666666667px !important;}}@media only screen and (min-width:1227px){html{font-size:163.6px !important;}}@media only screen and (min-width:1228px){html{font-size:163.73333333333px !important;}}@media only screen and (min-width:1229px){html{font-size:163.86666666667px !important;}}@media only screen and (min-width:1230px){html{font-size:164px !important;}}@media only screen and (min-width:1231px){html{font-size:164.13333333333px !important;}}@media only screen and (min-width:1232px){html{font-size:164.26666666667px !important;}}@media only screen and (min-width:1233px){html{font-size:164.4px !important;}}@media only screen and (min-width:1234px){html{font-size:164.53333333333px !important;}}@media only screen and (min-width:1235px){html{font-size:164.66666666667px !important;}}@media only screen and (min-width:1236px){html{font-size:164.8px !important;}}@media only screen and (min-width:1237px){html{font-size:164.93333333333px !important;}}@media only screen and (min-width:1238px){html{font-size:165.06666666667px !important;}}@media only screen and (min-width:1239px){html{font-size:165.2px !important;}}@media only screen and (min-width:1240px){html{font-size:165.33333333333px !important;}}@media only screen and (min-width:1241px){html{font-size:165.46666666667px !important;}}@media only screen and (min-width:1242px){html{font-size:165.6px !important;}}@media only screen and (min-width:1243px){html{font-size:165.73333333333px !important;}}@media only screen and (min-width:1244px){html{font-size:165.86666666667px !important;}}@media only screen and (min-width:1245px){html{font-size:166px !important;}}@media only screen and (min-width:1246px){html{font-size:166.13333333333px !important;}}@media only screen and (min-width:1247px){html{font-size:166.26666666667px !important;}}@media only screen and (min-width:1248px){html{font-size:166.4px !important;}}@media only screen and (min-width:1249px){html{font-size:166.53333333333px !important;}}@media only screen and (min-width:1250px){html{font-size:166.66666666667px !important;}}@media only screen and (min-width:1251px){html{font-size:166.8px !important;}}@media only screen and (min-width:1252px){html{font-size:166.93333333333px !important;}}@media only screen and (min-width:1253px){html{font-size:167.06666666667px !important;}}@media only screen and (min-width:1254px){html{font-size:167.2px !important;}}@media only screen and (min-width:1255px){html{font-size:167.33333333333px !important;}}@media only screen and (min-width:1256px){html{font-size:167.46666666667px !important;}}@media only screen and (min-width:1257px){html{font-size:167.6px !important;}}@media only screen and (min-width:1258px){html{font-size:167.73333333333px !important;}}@media only screen and (min-width:1259px){html{font-size:167.86666666667px !important;}}@media only screen and (min-width:1260px){html{font-size:168px !important;}}@media only screen and (min-width:1261px){html{font-size:168.13333333333px !important;}}@media only screen and (min-width:1262px){html{font-size:168.26666666667px !important;}}@media only screen and (min-width:1263px){html{font-size:168.4px !important;}}@media only screen and (min-width:1264px){html{font-size:168.53333333333px !important;}}@media only screen and (min-width:1265px){html{font-size:168.66666666667px !important;}}@media only screen and (min-width:1266px){html{font-size:168.8px !important;}}@media only screen and (min-width:1267px){html{font-size:168.93333333333px !important;}}@media only screen and (min-width:1268px){html{font-size:169.06666666667px !important;}}@media only screen and (min-width:1269px){html{font-size:169.2px !important;}}@media only screen and (min-width:1270px){html{font-size:169.33333333333px !important;}}@media only screen and (min-width:1271px){html{font-size:169.46666666667px !important;}}@media only screen and (min-width:1272px){html{font-size:169.6px !important;}}@media only screen and (min-width:1273px){html{font-size:169.73333333333px !important;}}@media only screen and (min-width:1274px){html{font-size:169.86666666667px !important;}}@media only screen and (min-width:1275px){html{font-size:170px !important;}}@media only screen and (min-width:1276px){html{font-size:170.13333333333px !important;}}@media only screen and (min-width:1277px){html{font-size:170.26666666667px !important;}}@media only screen and (min-width:1278px){html{font-size:170.4px !important;}}@media only screen and (min-width:1279px){html{font-size:170.53333333333px !important;}}@media only screen and (min-width:1280px){html{font-size:170.66666666667px !important;}}@media only screen and (min-width:1281px){html{font-size:170.8px !important;}}@media only screen and (min-width:1282px){html{font-size:170.93333333333px !important;}}@media only screen and (min-width:1283px){html{font-size:171.06666666667px !important;}}@media only screen and (min-width:1284px){html{font-size:171.2px !important;}}@media only screen and (min-width:1285px){html{font-size:171.33333333333px !important;}}@media only screen and (min-width:1286px){html{font-size:171.46666666667px !important;}}@media only screen and (min-width:1287px){html{font-size:171.6px !important;}}@media only screen and (min-width:1288px){html{font-size:171.73333333333px !important;}}@media only screen and (min-width:1289px){html{font-size:171.86666666667px !important;}}@media only screen and (min-width:1290px){html{font-size:172px !important;}}@media only screen and (min-width:1291px){html{font-size:172.13333333333px !important;}}@media only screen and (min-width:1292px){html{font-size:172.26666666667px !important;}}@media only screen and (min-width:1293px){html{font-size:172.4px !important;}}@media only screen and (min-width:1294px){html{font-size:172.53333333333px !important;}}@media only screen and (min-width:1295px){html{font-size:172.66666666667px !important;}}@media only screen and (min-width:1296px){html{font-size:172.8px !important;}}@media only screen and (min-width:1297px){html{font-size:172.93333333333px !important;}}@media only screen and (min-width:1298px){html{font-size:173.06666666667px !important;}}@media only screen and (min-width:1299px){html{font-size:173.2px !important;}}@media only screen and (min-width:1300px){html{font-size:173.33333333333px !important;}}@media only screen and (min-width:1301px){html{font-size:173.46666666667px !important;}}@media only screen and (min-width:1302px){html{font-size:173.6px !important;}}@media only screen and (min-width:1303px){html{font-size:173.73333333333px !important;}}@media only screen and (min-width:1304px){html{font-size:173.86666666667px !important;}}@media only screen and (min-width:1305px){html{font-size:174px !important;}}@media only screen and (min-width:1306px){html{font-size:174.13333333333px !important;}}@media only screen and (min-width:1307px){html{font-size:174.26666666667px !important;}}@media only screen and (min-width:1308px){html{font-size:174.4px !important;}}@media only screen and (min-width:1309px){html{font-size:174.53333333333px !important;}}@media only screen and (min-width:1310px){html{font-size:174.66666666667px !important;}}@media only screen and (min-width:1311px){html{font-size:174.8px !important;}}@media only screen and (min-width:1312px){html{font-size:174.93333333333px !important;}}@media only screen and (min-width:1313px){html{font-size:175.06666666667px !important;}}@media only screen and (min-width:1314px){html{font-size:175.2px !important;}}@media only screen and (min-width:1315px){html{font-size:175.33333333333px !important;}}@media only screen and (min-width:1316px){html{font-size:175.46666666667px !important;}}@media only screen and (min-width:1317px){html{font-size:175.6px !important;}}@media only screen and (min-width:1318px){html{font-size:175.73333333333px !important;}}@media only screen and (min-width:1319px){html{font-size:175.86666666667px !important;}}@media only screen and (min-width:1320px){html{font-size:176px !important;}}@media only screen and (min-width:1321px){html{font-size:176.13333333333px !important;}}@media only screen and (min-width:1322px){html{font-size:176.26666666667px !important;}}@media only screen and (min-width:1323px){html{font-size:176.4px !important;}}@media only screen and (min-width:1324px){html{font-size:176.53333333333px !important;}}@media only screen and (min-width:1325px){html{font-size:176.66666666667px !important;}}@media only screen and (min-width:1326px){html{font-size:176.8px !important;}}@media only screen and (min-width:1327px){html{font-size:176.93333333333px !important;}}@media only screen and (min-width:1328px){html{font-size:177.06666666667px !important;}}@media only screen and (min-width:1329px){html{font-size:177.2px !important;}}@media only screen and (min-width:1330px){html{font-size:177.33333333333px !important;}}@media only screen and (min-width:1331px){html{font-size:177.46666666667px !important;}}@media only screen and (min-width:1332px){html{font-size:177.6px !important;}}@media only screen and (min-width:1333px){html{font-size:177.73333333333px !important;}}@media only screen and (min-width:1334px){html{font-size:177.86666666667px !important;}}@media only screen and (min-width:1335px){html{font-size:178px !important;}}@media only screen and (min-width:1336px){html{font-size:178.13333333333px !important;}}@media only screen and (min-width:1337px){html{font-size:178.26666666667px !important;}}@media only screen and (min-width:1338px){html{font-size:178.4px !important;}}@media only screen and (min-width:1339px){html{font-size:178.53333333333px !important;}}@media only screen and (min-width:1340px){html{font-size:178.66666666667px !important;}}@media only screen and (min-width:1341px){html{font-size:178.8px !important;}}@media only screen and (min-width:1342px){html{font-size:178.93333333333px !important;}}@media only screen and (min-width:1343px){html{font-size:179.06666666667px !important;}}@media only screen and (min-width:1344px){html{font-size:179.2px !important;}}@media only screen and (min-width:1345px){html{font-size:179.33333333333px !important;}}@media only screen and (min-width:1346px){html{font-size:179.46666666667px !important;}}@media only screen and (min-width:1347px){html{font-size:179.6px !important;}}@media only screen and (min-width:1348px){html{font-size:179.73333333333px !important;}}@media only screen and (min-width:1349px){html{font-size:179.86666666667px !important;}}@media only screen and (min-width:1350px){html{font-size:180px !important;}}@media only screen and (min-width:1351px){html{font-size:180.13333333333px !important;}}@media only screen and (min-width:1352px){html{font-size:180.26666666667px !important;}}@media only screen and (min-width:1353px){html{font-size:180.4px !important;}}@media only screen and (min-width:1354px){html{font-size:180.53333333333px !important;}}@media only screen and (min-width:1355px){html{font-size:180.66666666667px !important;}}@media only screen and (min-width:1356px){html{font-size:180.8px !important;}}@media only screen and (min-width:1357px){html{font-size:180.93333333333px !important;}}@media only screen and (min-width:1358px){html{font-size:181.06666666667px !important;}}@media only screen and (min-width:1359px){html{font-size:181.2px !important;}}@media only screen and (min-width:1360px){html{font-size:181.33333333333px !important;}}@media only screen and (min-width:1361px){html{font-size:181.46666666667px !important;}}@media only screen and (min-width:1362px){html{font-size:181.6px !important;}}@media only screen and (min-width:1363px){html{font-size:181.73333333333px !important;}}@media only screen and (min-width:1364px){html{font-size:181.86666666667px !important;}}@media only screen and (min-width:1365px){html{font-size:182px !important;}}@media only screen and (min-width:1366px){html{font-size:182.13333333333px !important;}}@media only screen and (min-width:1367px){html{font-size:182.26666666667px !important;}}@media only screen and (min-width:1368px){html{font-size:182.4px !important;}}@media only screen and (min-width:1369px){html{font-size:182.53333333333px !important;}}@media only screen and (min-width:1370px){html{font-size:182.66666666667px !important;}}@media only screen and (min-width:1371px){html{font-size:182.8px !important;}}@media only screen and (min-width:1372px){html{font-size:182.93333333333px !important;}}@media only screen and (min-width:1373px){html{font-size:183.06666666667px !important;}}@media only screen and (min-width:1374px){html{font-size:183.2px !important;}}@media only screen and (min-width:1375px){html{font-size:183.33333333333px !important;}}@media only screen and (min-width:1376px){html{font-size:183.46666666667px !important;}}@media only screen and (min-width:1377px){html{font-size:183.6px !important;}}@media only screen and (min-width:1378px){html{font-size:183.73333333333px !important;}}@media only screen and (min-width:1379px){html{font-size:183.86666666667px !important;}}@media only screen and (min-width:1380px){html{font-size:184px !important;}}@media only screen and (min-width:1381px){html{font-size:184.13333333333px !important;}}@media only screen and (min-width:1382px){html{font-size:184.26666666667px !important;}}@media only screen and (min-width:1383px){html{font-size:184.4px !important;}}@media only screen and (min-width:1384px){html{font-size:184.53333333333px !important;}}@media only screen and (min-width:1385px){html{font-size:184.66666666667px !important;}}@media only screen and (min-width:1386px){html{font-size:184.8px !important;}}@media only screen and (min-width:1387px){html{font-size:184.93333333333px !important;}}@media only screen and (min-width:1388px){html{font-size:185.06666666667px !important;}}@media only screen and (min-width:1389px){html{font-size:185.2px !important;}}@media only screen and (min-width:1390px){html{font-size:185.33333333333px !important;}}@media only screen and (min-width:1391px){html{font-size:185.46666666667px !important;}}@media only screen and (min-width:1392px){html{font-size:185.6px !important;}}@media only screen and (min-width:1393px){html{font-size:185.73333333333px !important;}}@media only screen and (min-width:1394px){html{font-size:185.86666666667px !important;}}@media only screen and (min-width:1395px){html{font-size:186px !important;}}@media only screen and (min-width:1396px){html{font-size:186.13333333333px !important;}}@media only screen and (min-width:1397px){html{font-size:186.26666666667px !important;}}@media only screen and (min-width:1398px){html{font-size:186.4px !important;}}@media only screen and (min-width:1399px){html{font-size:186.53333333333px !important;}}@media only screen and (min-width:1400px){html{font-size:186.66666666667px !important;}}@media only screen and (min-width:1401px){html{font-size:186.8px !important;}}@media only screen and (min-width:1402px){html{font-size:186.93333333333px !important;}}@media only screen and (min-width:1403px){html{font-size:187.06666666667px !important;}}@media only screen and (min-width:1404px){html{font-size:187.2px !important;}}@media only screen and (min-width:1405px){html{font-size:187.33333333333px !important;}}@media only screen and (min-width:1406px){html{font-size:187.46666666667px !important;}}@media only screen and (min-width:1407px){html{font-size:187.6px !important;}}@media only screen and (min-width:1408px){html{font-size:187.73333333333px !important;}}@media only screen and (min-width:1409px){html{font-size:187.86666666667px !important;}}@media only screen and (min-width:1410px){html{font-size:188px !important;}}@media only screen and (min-width:1411px){html{font-size:188.13333333333px !important;}}@media only screen and (min-width:1412px){html{font-size:188.26666666667px !important;}}@media only screen and (min-width:1413px){html{font-size:188.4px !important;}}@media only screen and (min-width:1414px){html{font-size:188.53333333333px !important;}}@media only screen and (min-width:1415px){html{font-size:188.66666666667px !important;}}@media only screen and (min-width:1416px){html{font-size:188.8px !important;}}@media only screen and (min-width:1417px){html{font-size:188.93333333333px !important;}}@media only screen and (min-width:1418px){html{font-size:189.06666666667px !important;}}@media only screen and (min-width:1419px){html{font-size:189.2px !important;}}@media only screen and (min-width:1420px){html{font-size:189.33333333333px !important;}}@media only screen and (min-width:1421px){html{font-size:189.46666666667px !important;}}@media only screen and (min-width:1422px){html{font-size:189.6px !important;}}@media only screen and (min-width:1423px){html{font-size:189.73333333333px !important;}}@media only screen and (min-width:1424px){html{font-size:189.86666666667px !important;}}@media only screen and (min-width:1425px){html{font-size:190px !important;}}@media only screen and (min-width:1426px){html{font-size:190.13333333333px !important;}}@media only screen and (min-width:1427px){html{font-size:190.26666666667px !important;}}@media only screen and (min-width:1428px){html{font-size:190.4px !important;}}@media only screen and (min-width:1429px){html{font-size:190.53333333333px !important;}}@media only screen and (min-width:1430px){html{font-size:190.66666666667px !important;}}@media only screen and (min-width:1431px){html{font-size:190.8px !important;}}@media only screen and (min-width:1432px){html{font-size:190.93333333333px !important;}}@media only screen and (min-width:1433px){html{font-size:191.06666666667px !important;}}@media only screen and (min-width:1434px){html{font-size:191.2px !important;}}@media only screen and (min-width:1435px){html{font-size:191.33333333333px !important;}}@media only screen and (min-width:1436px){html{font-size:191.46666666667px !important;}}@media only screen and (min-width:1437px){html{font-size:191.6px !important;}}@media only screen and (min-width:1438px){html{font-size:191.73333333333px !important;}}@media only screen and (min-width:1439px){html{font-size:191.86666666667px !important;}}@media only screen and (min-width:1440px){html{font-size:192px !important;}}@media only screen and (min-width:1441px){html{font-size:192.13333333333px !important;}}@media only screen and (min-width:1442px){html{font-size:192.26666666667px !important;}}@media only screen and (min-width:1443px){html{font-size:192.4px !important;}}@media only screen and (min-width:1444px){html{font-size:192.53333333333px !important;}}@media only screen and (min-width:1445px){html{font-size:192.66666666667px !important;}}@media only screen and (min-width:1446px){html{font-size:192.8px !important;}}@media only screen and (min-width:1447px){html{font-size:192.93333333333px !important;}}@media only screen and (min-width:1448px){html{font-size:193.06666666667px !important;}}@media only screen and (min-width:1449px){html{font-size:193.2px !important;}}@media only screen and (min-width:1450px){html{font-size:193.33333333333px !important;}}@media only screen and (min-width:1451px){html{font-size:193.46666666667px !important;}}@media only screen and (min-width:1452px){html{font-size:193.6px !important;}}@media only screen and (min-width:1453px){html{font-size:193.73333333333px !important;}}@media only screen and (min-width:1454px){html{font-size:193.86666666667px !important;}}@media only screen and (min-width:1455px){html{font-size:194px !important;}}@media only screen and (min-width:1456px){html{font-size:194.13333333333px !important;}}@media only screen and (min-width:1457px){html{font-size:194.26666666667px !important;}}@media only screen and (min-width:1458px){html{font-size:194.4px !important;}}@media only screen and (min-width:1459px){html{font-size:194.53333333333px !important;}}@media only screen and (min-width:1460px){html{font-size:194.66666666667px !important;}}@media only screen and (min-width:1461px){html{font-size:194.8px !important;}}@media only screen and (min-width:1462px){html{font-size:194.93333333333px !important;}}@media only screen and (min-width:1463px){html{font-size:195.06666666667px !important;}}@media only screen and (min-width:1464px){html{font-size:195.2px !important;}}@media only screen and (min-width:1465px){html{font-size:195.33333333333px !important;}}@media only screen and (min-width:1466px){html{font-size:195.46666666667px !important;}}@media only screen and (min-width:1467px){html{font-size:195.6px !important;}}@media only screen and (min-width:1468px){html{font-size:195.73333333333px !important;}}@media only screen and (min-width:1469px){html{font-size:195.86666666667px !important;}}@media only screen and (min-width:1470px){html{font-size:196px !important;}}@media only screen and (min-width:1471px){html{font-size:196.13333333333px !important;}}@media only screen and (min-width:1472px){html{font-size:196.26666666667px !important;}}@media only screen and (min-width:1473px){html{font-size:196.4px !important;}}@media only screen and (min-width:1474px){html{font-size:196.53333333333px !important;}}@media only screen and (min-width:1475px){html{font-size:196.66666666667px !important;}}@media only screen and (min-width:1476px){html{font-size:196.8px !important;}}@media only screen and (min-width:1477px){html{font-size:196.93333333333px !important;}}@media only screen and (min-width:1478px){html{font-size:197.06666666667px !important;}}@media only screen and (min-width:1479px){html{font-size:197.2px !important;}}@media only screen and (min-width:1480px){html{font-size:197.33333333333px !important;}}@media only screen and (min-width:1481px){html{font-size:197.46666666667px !important;}}@media only screen and (min-width:1482px){html{font-size:197.6px !important;}}@media only screen and (min-width:1483px){html{font-size:197.73333333333px !important;}}@media only screen and (min-width:1484px){html{font-size:197.86666666667px !important;}}@media only screen and (min-width:1485px){html{font-size:198px !important;}}@media only screen and (min-width:1486px){html{font-size:198.13333333333px !important;}}@media only screen and (min-width:1487px){html{font-size:198.26666666667px !important;}}@media only screen and (min-width:1488px){html{font-size:198.4px !important;}}@media only screen and (min-width:1489px){html{font-size:198.53333333333px !important;}}@media only screen and (min-width:1490px){html{font-size:198.66666666667px !important;}}@media only screen and (min-width:1491px){html{font-size:198.8px !important;}}@media only screen and (min-width:1492px){html{font-size:198.93333333333px !important;}}@media only screen and (min-width:1493px){html{font-size:199.06666666667px !important;}}@media only screen and (min-width:1494px){html{font-size:199.2px !important;}}@media only screen and (min-width:1495px){html{font-size:199.33333333333px !important;}}@media only screen and (min-width:1496px){html{font-size:199.46666666667px !important;}}@media only screen and (min-width:1497px){html{font-size:199.6px !important;}}@media only screen and (min-width:1498px){html{font-size:199.73333333333px !important;}}@media only screen and (min-width:1499px){html{font-size:199.86666666667px !important;}}@media only screen and (min-width:1500px){html{font-size:200px !important;}}@media only screen and (min-width:1501px){html{font-size:200.13333333333px !important;}}@media only screen and (min-width:1502px){html{font-size:200.26666666667px !important;}}@media only screen and (min-width:1503px){html{font-size:200.4px !important;}}@media only screen and (min-width:1504px){html{font-size:200.53333333333px !important;}}@media only screen and (min-width:1505px){html{font-size:200.66666666667px !important;}}@media only screen and (min-width:1506px){html{font-size:200.8px !important;}}@media only screen and (min-width:1507px){html{font-size:200.93333333333px !important;}}@media only screen and (min-width:1508px){html{font-size:201.06666666667px !important;}}@media only screen and (min-width:1509px){html{font-size:201.2px !important;}}@media only screen and (min-width:1510px){html{font-size:201.33333333333px !important;}}@media only screen and (min-width:1511px){html{font-size:201.46666666667px !important;}}@media only screen and (min-width:1512px){html{font-size:201.6px !important;}}@media only screen and (min-width:1513px){html{font-size:201.73333333333px !important;}}@media only screen and (min-width:1514px){html{font-size:201.86666666667px !important;}}@media only screen and (min-width:1515px){html{font-size:202px !important;}}@media only screen and (min-width:1516px){html{font-size:202.13333333333px !important;}}@media only screen and (min-width:1517px){html{font-size:202.26666666667px !important;}}@media only screen and (min-width:1518px){html{font-size:202.4px !important;}}@media only screen and (min-width:1519px){html{font-size:202.53333333333px !important;}}@media only screen and (min-width:1520px){html{font-size:202.66666666667px !important;}}@media only screen and (min-width:1521px){html{font-size:202.8px !important;}}@media only screen and (min-width:1522px){html{font-size:202.93333333333px !important;}}@media only screen and (min-width:1523px){html{font-size:203.06666666667px !important;}}@media only screen and (min-width:1524px){html{font-size:203.2px !important;}}@media only screen and (min-width:1525px){html{font-size:203.33333333333px !important;}}@media only screen and (min-width:1526px){html{font-size:203.46666666667px !important;}}@media only screen and (min-width:1527px){html{font-size:203.6px !important;}}@media only screen and (min-width:1528px){html{font-size:203.73333333333px !important;}}@media only screen and (min-width:1529px){html{font-size:203.86666666667px !important;}}@media only screen and (min-width:1530px){html{font-size:204px !important;}}@media only screen and (min-width:1531px){html{font-size:204.13333333333px !important;}}@media only screen and (min-width:1532px){html{font-size:204.26666666667px !important;}}@media only screen and (min-width:1533px){html{font-size:204.4px !important;}}@media only screen and (min-width:1534px){html{font-size:204.53333333333px !important;}}@media only screen and (min-width:1535px){html{font-size:204.66666666667px !important;}}@media only screen and (min-width:1536px){html{font-size:204.8px !important;}}@media only screen and (min-width:1537px){html{font-size:204.93333333333px !important;}}@media only screen and (min-width:1538px){html{font-size:205.06666666667px !important;}}@media only screen and (min-width:1539px){html{font-size:205.2px !important;}}@media only screen and (min-width:1540px){html{font-size:205.33333333333px !important;}}@media only screen and (min-width:1541px){html{font-size:205.46666666667px !important;}}@media only screen and (min-width:1542px){html{font-size:205.6px !important;}}@media only screen and (min-width:1543px){html{font-size:205.73333333333px !important;}}@media only screen and (min-width:1544px){html{font-size:205.86666666667px !important;}}@media only screen and (min-width:1545px){html{font-size:206px !important;}}@media only screen and (min-width:1546px){html{font-size:206.13333333333px !important;}}@media only screen and (min-width:1547px){html{font-size:206.26666666667px !important;}}@media only screen and (min-width:1548px){html{font-size:206.4px !important;}}@media only screen and (min-width:1549px){html{font-size:206.53333333333px !important;}}@media only screen and (min-width:1550px){html{font-size:206.66666666667px !important;}}@media only screen and (min-width:1551px){html{font-size:206.8px !important;}}@media only screen and (min-width:1552px){html{font-size:206.93333333333px !important;}}@media only screen and (min-width:1553px){html{font-size:207.06666666667px !important;}}@media only screen and (min-width:1554px){html{font-size:207.2px !important;}}@media only screen and (min-width:1555px){html{font-size:207.33333333333px !important;}}@media only screen and (min-width:1556px){html{font-size:207.46666666667px !important;}}@media only screen and (min-width:1557px){html{font-size:207.6px !important;}}@media only screen and (min-width:1558px){html{font-size:207.73333333333px !important;}}@media only screen and (min-width:1559px){html{font-size:207.86666666667px !important;}}@media only screen and (min-width:1560px){html{font-size:208px !important;}}@media only screen and (min-width:1561px){html{font-size:208.13333333333px !important;}}@media only screen and (min-width:1562px){html{font-size:208.26666666667px !important;}}@media only screen and (min-width:1563px){html{font-size:208.4px !important;}}@media only screen and (min-width:1564px){html{font-size:208.53333333333px !important;}}@media only screen and (min-width:1565px){html{font-size:208.66666666667px !important;}}@media only screen and (min-width:1566px){html{font-size:208.8px !important;}}@media only screen and (min-width:1567px){html{font-size:208.93333333333px !important;}}@media only screen and (min-width:1568px){html{font-size:209.06666666667px !important;}}@media only screen and (min-width:1569px){html{font-size:209.2px !important;}}@media only screen and (min-width:1570px){html{font-size:209.33333333333px !important;}}@media only screen and (min-width:1571px){html{font-size:209.46666666667px !important;}}@media only screen and (min-width:1572px){html{font-size:209.6px !important;}}@media only screen and (min-width:1573px){html{font-size:209.73333333333px !important;}}@media only screen and (min-width:1574px){html{font-size:209.86666666667px !important;}}@media only screen and (min-width:1575px){html{font-size:210px !important;}}@media only screen and (min-width:1576px){html{font-size:210.13333333333px !important;}}@media only screen and (min-width:1577px){html{font-size:210.26666666667px !important;}}@media only screen and (min-width:1578px){html{font-size:210.4px !important;}}@media only screen and (min-width:1579px){html{font-size:210.53333333333px !important;}}@media only screen and (min-width:1580px){html{font-size:210.66666666667px !important;}}@media only screen and (min-width:1581px){html{font-size:210.8px !important;}}@media only screen and (min-width:1582px){html{font-size:210.93333333333px !important;}}@media only screen and (min-width:1583px){html{font-size:211.06666666667px !important;}}@media only screen and (min-width:1584px){html{font-size:211.2px !important;}}@media only screen and (min-width:1585px){html{font-size:211.33333333333px !important;}}@media only screen and (min-width:1586px){html{font-size:211.46666666667px !important;}}@media only screen and (min-width:1587px){html{font-size:211.6px !important;}}@media only screen and (min-width:1588px){html{font-size:211.73333333333px !important;}}@media only screen and (min-width:1589px){html{font-size:211.86666666667px !important;}}@media only screen and (min-width:1590px){html{font-size:212px !important;}}@media only screen and (min-width:1591px){html{font-size:212.13333333333px !important;}}@media only screen and (min-width:1592px){html{font-size:212.26666666667px !important;}}@media only screen and (min-width:1593px){html{font-size:212.4px !important;}}@media only screen and (min-width:1594px){html{font-size:212.53333333333px !important;}}@media only screen and (min-width:1595px){html{font-size:212.66666666667px !important;}}@media only screen and (min-width:1596px){html{font-size:212.8px !important;}}@media only screen and (min-width:1597px){html{font-size:212.93333333333px !important;}}@media only screen and (min-width:1598px){html{font-size:213.06666666667px !important;}}@media only screen and (min-width:1599px){html{font-size:213.2px !important;}}@media only screen and (min-width:1600px){html{font-size:213.33333333333px !important;}}@media only screen and (min-width:1601px){html{font-size:213.46666666667px !important;}}@media only screen and (min-width:1602px){html{font-size:213.6px !important;}}@media only screen and (min-width:1603px){html{font-size:213.73333333333px !important;}}@media only screen and (min-width:1604px){html{font-size:213.86666666667px !important;}}@media only screen and (min-width:1605px){html{font-size:214px !important;}}@media only screen and (min-width:1606px){html{font-size:214.13333333333px !important;}}@media only screen and (min-width:1607px){html{font-size:214.26666666667px !important;}}@media only screen and (min-width:1608px){html{font-size:214.4px !important;}}@media only screen and (min-width:1609px){html{font-size:214.53333333333px !important;}}@media only screen and (min-width:1610px){html{font-size:214.66666666667px !important;}}@media only screen and (min-width:1611px){html{font-size:214.8px !important;}}@media only screen and (min-width:1612px){html{font-size:214.93333333333px !important;}}@media only screen and (min-width:1613px){html{font-size:215.06666666667px !important;}}@media only screen and (min-width:1614px){html{font-size:215.2px !important;}}@media only screen and (min-width:1615px){html{font-size:215.33333333333px !important;}}@media only screen and (min-width:1616px){html{font-size:215.46666666667px !important;}}@media only screen and (min-width:1617px){html{font-size:215.6px !important;}}@media only screen and (min-width:1618px){html{font-size:215.73333333333px !important;}}@media only screen and (min-width:1619px){html{font-size:215.86666666667px !important;}}@media only screen and (min-width:1620px){html{font-size:216px !important;}}@media only screen and (min-width:1621px){html{font-size:216.13333333333px !important;}}@media only screen and (min-width:1622px){html{font-size:216.26666666667px !important;}}@media only screen and (min-width:1623px){html{font-size:216.4px !important;}}@media only screen and (min-width:1624px){html{font-size:216.53333333333px !important;}}@media only screen and (min-width:1625px){html{font-size:216.66666666667px !important;}}@media only screen and (min-width:1626px){html{font-size:216.8px !important;}}@media only screen and (min-width:1627px){html{font-size:216.93333333333px !important;}}@media only screen and (min-width:1628px){html{font-size:217.06666666667px !important;}}@media only screen and (min-width:1629px){html{font-size:217.2px !important;}}@media only screen and (min-width:1630px){html{font-size:217.33333333333px !important;}}@media only screen and (min-width:1631px){html{font-size:217.46666666667px !important;}}@media only screen and (min-width:1632px){html{font-size:217.6px !important;}}@media only screen and (min-width:1633px){html{font-size:217.73333333333px !important;}}@media only screen and (min-width:1634px){html{font-size:217.86666666667px !important;}}@media only screen and (min-width:1635px){html{font-size:218px !important;}}@media only screen and (min-width:1636px){html{font-size:218.13333333333px !important;}}@media only screen and (min-width:1637px){html{font-size:218.26666666667px !important;}}@media only screen and (min-width:1638px){html{font-size:218.4px !important;}}@media only screen and (min-width:1639px){html{font-size:218.53333333333px !important;}}@media only screen and (min-width:1640px){html{font-size:218.66666666667px !important;}}@media only screen and (min-width:1641px){html{font-size:218.8px !important;}}@media only screen and (min-width:1642px){html{font-size:218.93333333333px !important;}}@media only screen and (min-width:1643px){html{font-size:219.06666666667px !important;}}@media only screen and (min-width:1644px){html{font-size:219.2px !important;}}@media only screen and (min-width:1645px){html{font-size:219.33333333333px !important;}}@media only screen and (min-width:1646px){html{font-size:219.46666666667px !important;}}@media only screen and (min-width:1647px){html{font-size:219.6px !important;}}@media only screen and (min-width:1648px){html{font-size:219.73333333333px !important;}}@media only screen and (min-width:1649px){html{font-size:219.86666666667px !important;}}@media only screen and (min-width:1650px){html{font-size:220px !important;}}@media only screen and (min-width:1651px){html{font-size:220.13333333333px !important;}}@media only screen and (min-width:1652px){html{font-size:220.26666666667px !important;}}@media only screen and (min-width:1653px){html{font-size:220.4px !important;}}@media only screen and (min-width:1654px){html{font-size:220.53333333333px !important;}}@media only screen and (min-width:1655px){html{font-size:220.66666666667px !important;}}@media only screen and (min-width:1656px){html{font-size:220.8px !important;}}@media only screen and (min-width:1657px){html{font-size:220.93333333333px !important;}}@media only screen and (min-width:1658px){html{font-size:221.06666666667px !important;}}@media only screen and (min-width:1659px){html{font-size:221.2px !important;}}@media only screen and (min-width:1660px){html{font-size:221.33333333333px !important;}}@media only screen and (min-width:1661px){html{font-size:221.46666666667px !important;}}@media only screen and (min-width:1662px){html{font-size:221.6px !important;}}@media only screen and (min-width:1663px){html{font-size:221.73333333333px !important;}}@media only screen and (min-width:1664px){html{font-size:221.86666666667px !important;}}@media only screen and (min-width:1665px){html{font-size:222px !important;}}@media only screen and (min-width:1666px){html{font-size:222.13333333333px !important;}}@media only screen and (min-width:1667px){html{font-size:222.26666666667px !important;}}@media only screen and (min-width:1668px){html{font-size:222.4px !important;}}@media only screen and (min-width:1669px){html{font-size:222.53333333333px !important;}}@media only screen and (min-width:1670px){html{font-size:222.66666666667px !important;}}@media only screen and (min-width:1671px){html{font-size:222.8px !important;}}@media only screen and (min-width:1672px){html{font-size:222.93333333333px !important;}}@media only screen and (min-width:1673px){html{font-size:223.06666666667px !important;}}@media only screen and (min-width:1674px){html{font-size:223.2px !important;}}@media only screen and (min-width:1675px){html{font-size:223.33333333333px !important;}}@media only screen and (min-width:1676px){html{font-size:223.46666666667px !important;}}@media only screen and (min-width:1677px){html{font-size:223.6px !important;}}@media only screen and (min-width:1678px){html{font-size:223.73333333333px !important;}}@media only screen and (min-width:1679px){html{font-size:223.86666666667px !important;}}@media only screen and (min-width:1680px){html{font-size:224px !important;}}@media only screen and (min-width:1681px){html{font-size:224.13333333333px !important;}}@media only screen and (min-width:1682px){html{font-size:224.26666666667px !important;}}@media only screen and (min-width:1683px){html{font-size:224.4px !important;}}@media only screen and (min-width:1684px){html{font-size:224.53333333333px !important;}}@media only screen and (min-width:1685px){html{font-size:224.66666666667px !important;}}@media only screen and (min-width:1686px){html{font-size:224.8px !important;}}@media only screen and (min-width:1687px){html{font-size:224.93333333333px !important;}}@media only screen and (min-width:1688px){html{font-size:225.06666666667px !important;}}@media only screen and (min-width:1689px){html{font-size:225.2px !important;}}@media only screen and (min-width:1690px){html{font-size:225.33333333333px !important;}}@media only screen and (min-width:1691px){html{font-size:225.46666666667px !important;}}@media only screen and (min-width:1692px){html{font-size:225.6px !important;}}@media only screen and (min-width:1693px){html{font-size:225.73333333333px !important;}}@media only screen and (min-width:1694px){html{font-size:225.86666666667px !important;}}@media only screen and (min-width:1695px){html{font-size:226px !important;}}@media only screen and (min-width:1696px){html{font-size:226.13333333333px !important;}}@media only screen and (min-width:1697px){html{font-size:226.26666666667px !important;}}@media only screen and (min-width:1698px){html{font-size:226.4px !important;}}@media only screen and (min-width:1699px){html{font-size:226.53333333333px !important;}}@media only screen and (min-width:1700px){html{font-size:226.66666666667px !important;}}@media only screen and (min-width:1701px){html{font-size:226.8px !important;}}@media only screen and (min-width:1702px){html{font-size:226.93333333333px !important;}}@media only screen and (min-width:1703px){html{font-size:227.06666666667px !important;}}@media only screen and (min-width:1704px){html{font-size:227.2px !important;}}@media only screen and (min-width:1705px){html{font-size:227.33333333333px !important;}}@media only screen and (min-width:1706px){html{font-size:227.46666666667px !important;}}@media only screen and (min-width:1707px){html{font-size:227.6px !important;}}@media only screen and (min-width:1708px){html{font-size:227.73333333333px !important;}}@media only screen and (min-width:1709px){html{font-size:227.86666666667px !important;}}@media only screen and (min-width:1710px){html{font-size:228px !important;}}@media only screen and (min-width:1711px){html{font-size:228.13333333333px !important;}}@media only screen and (min-width:1712px){html{font-size:228.26666666667px !important;}}@media only screen and (min-width:1713px){html{font-size:228.4px !important;}}@media only screen and (min-width:1714px){html{font-size:228.53333333333px !important;}}@media only screen and (min-width:1715px){html{font-size:228.66666666667px !important;}}@media only screen and (min-width:1716px){html{font-size:228.8px !important;}}@media only screen and (min-width:1717px){html{font-size:228.93333333333px !important;}}@media only screen and (min-width:1718px){html{font-size:229.06666666667px !important;}}@media only screen and (min-width:1719px){html{font-size:229.2px !important;}}@media only screen and (min-width:1720px){html{font-size:229.33333333333px !important;}}@media only screen and (min-width:1721px){html{font-size:229.46666666667px !important;}}@media only screen and (min-width:1722px){html{font-size:229.6px !important;}}@media only screen and (min-width:1723px){html{font-size:229.73333333333px !important;}}@media only screen and (min-width:1724px){html{font-size:229.86666666667px !important;}}@media only screen and (min-width:1725px){html{font-size:230px !important;}}@media only screen and (min-width:1726px){html{font-size:230.13333333333px !important;}}@media only screen and (min-width:1727px){html{font-size:230.26666666667px !important;}}@media only screen and (min-width:1728px){html{font-size:230.4px !important;}}@media only screen and (min-width:1729px){html{font-size:230.53333333333px !important;}}@media only screen and (min-width:1730px){html{font-size:230.66666666667px !important;}}@media only screen and (min-width:1731px){html{font-size:230.8px !important;}}@media only screen and (min-width:1732px){html{font-size:230.93333333333px !important;}}@media only screen and (min-width:1733px){html{font-size:231.06666666667px !important;}}@media only screen and (min-width:1734px){html{font-size:231.2px !important;}}@media only screen and (min-width:1735px){html{font-size:231.33333333333px !important;}}@media only screen and (min-width:1736px){html{font-size:231.46666666667px !important;}}@media only screen and (min-width:1737px){html{font-size:231.6px !important;}}@media only screen and (min-width:1738px){html{font-size:231.73333333333px !important;}}@media only screen and (min-width:1739px){html{font-size:231.86666666667px !important;}}@media only screen and (min-width:1740px){html{font-size:232px !important;}}@media only screen and (min-width:1741px){html{font-size:232.13333333333px !important;}}@media only screen and (min-width:1742px){html{font-size:232.26666666667px !important;}}@media only screen and (min-width:1743px){html{font-size:232.4px !important;}}@media only screen and (min-width:1744px){html{font-size:232.53333333333px !important;}}@media only screen and (min-width:1745px){html{font-size:232.66666666667px !important;}}@media only screen and (min-width:1746px){html{font-size:232.8px !important;}}@media only screen and (min-width:1747px){html{font-size:232.93333333333px !important;}}@media only screen and (min-width:1748px){html{font-size:233.06666666667px !important;}}@media only screen and (min-width:1749px){html{font-size:233.2px !important;}}@media only screen and (min-width:1750px){html{font-size:233.33333333333px !important;}}@media only screen and (min-width:1751px){html{font-size:233.46666666667px !important;}}@media only screen and (min-width:1752px){html{font-size:233.6px !important;}}@media only screen and (min-width:1753px){html{font-size:233.73333333333px !important;}}@media only screen and (min-width:1754px){html{font-size:233.86666666667px !important;}}@media only screen and (min-width:1755px){html{font-size:234px !important;}}@media only screen and (min-width:1756px){html{font-size:234.13333333333px !important;}}@media only screen and (min-width:1757px){html{font-size:234.26666666667px !important;}}@media only screen and (min-width:1758px){html{font-size:234.4px !important;}}@media only screen and (min-width:1759px){html{font-size:234.53333333333px !important;}}@media only screen and (min-width:1760px){html{font-size:234.66666666667px !important;}}@media only screen and (min-width:1761px){html{font-size:234.8px !important;}}@media only screen and (min-width:1762px){html{font-size:234.93333333333px !important;}}@media only screen and (min-width:1763px){html{font-size:235.06666666667px !important;}}@media only screen and (min-width:1764px){html{font-size:235.2px !important;}}@media only screen and (min-width:1765px){html{font-size:235.33333333333px !important;}}@media only screen and (min-width:1766px){html{font-size:235.46666666667px !important;}}@media only screen and (min-width:1767px){html{font-size:235.6px !important;}}@media only screen and (min-width:1768px){html{font-size:235.73333333333px !important;}}@media only screen and (min-width:1769px){html{font-size:235.86666666667px !important;}}@media only screen and (min-width:1770px){html{font-size:236px !important;}}@media only screen and (min-width:1771px){html{font-size:236.13333333333px !important;}}@media only screen and (min-width:1772px){html{font-size:236.26666666667px !important;}}@media only screen and (min-width:1773px){html{font-size:236.4px !important;}}@media only screen and (min-width:1774px){html{font-size:236.53333333333px !important;}}@media only screen and (min-width:1775px){html{font-size:236.66666666667px !important;}}@media only screen and (min-width:1776px){html{font-size:236.8px !important;}}@media only screen and (min-width:1777px){html{font-size:236.93333333333px !important;}}@media only screen and (min-width:1778px){html{font-size:237.06666666667px !important;}}@media only screen and (min-width:1779px){html{font-size:237.2px !important;}}@media only screen and (min-width:1780px){html{font-size:237.33333333333px !important;}}@media only screen and (min-width:1781px){html{font-size:237.46666666667px !important;}}@media only screen and (min-width:1782px){html{font-size:237.6px !important;}}@media only screen and (min-width:1783px){html{font-size:237.73333333333px !important;}}@media only screen and (min-width:1784px){html{font-size:237.86666666667px !important;}}@media only screen and (min-width:1785px){html{font-size:238px !important;}}@media only screen and (min-width:1786px){html{font-size:238.13333333333px !important;}}@media only screen and (min-width:1787px){html{font-size:238.26666666667px !important;}}@media only screen and (min-width:1788px){html{font-size:238.4px !important;}}@media only screen and (min-width:1789px){html{font-size:238.53333333333px !important;}}@media only screen and (min-width:1790px){html{font-size:238.66666666667px !important;}}@media only screen and (min-width:1791px){html{font-size:238.8px !important;}}@media only screen and (min-width:1792px){html{font-size:238.93333333333px !important;}}@media only screen and (min-width:1793px){html{font-size:239.06666666667px !important;}}@media only screen and (min-width:1794px){html{font-size:239.2px !important;}}@media only screen and (min-width:1795px){html{font-size:239.33333333333px !important;}}@media only screen and (min-width:1796px){html{font-size:239.46666666667px !important;}}@media only screen and (min-width:1797px){html{font-size:239.6px !important;}}@media only screen and (min-width:1798px){html{font-size:239.73333333333px !important;}}@media only screen and (min-width:1799px){html{font-size:239.86666666667px !important;}}@media only screen and (min-width:1800px){html{font-size:240px !important;}}@media only screen and (min-width:1801px){html{font-size:240.13333333333px !important;}}@media only screen and (min-width:1802px){html{font-size:240.26666666667px !important;}}@media only screen and (min-width:1803px){html{font-size:240.4px !important;}}@media only screen and (min-width:1804px){html{font-size:240.53333333333px !important;}}@media only screen and (min-width:1805px){html{font-size:240.66666666667px !important;}}@media only screen and (min-width:1806px){html{font-size:240.8px !important;}}@media only screen and (min-width:1807px){html{font-size:240.93333333333px !important;}}@media only screen and (min-width:1808px){html{font-size:241.06666666667px !important;}}@media only screen and (min-width:1809px){html{font-size:241.2px !important;}}@media only screen and (min-width:1810px){html{font-size:241.33333333333px !important;}}@media only screen and (min-width:1811px){html{font-size:241.46666666667px !important;}}@media only screen and (min-width:1812px){html{font-size:241.6px !important;}}@media only screen and (min-width:1813px){html{font-size:241.73333333333px !important;}}@media only screen and (min-width:1814px){html{font-size:241.86666666667px !important;}}@media only screen and (min-width:1815px){html{font-size:242px !important;}}@media only screen and (min-width:1816px){html{font-size:242.13333333333px !important;}}@media only screen and (min-width:1817px){html{font-size:242.26666666667px !important;}}@media only screen and (min-width:1818px){html{font-size:242.4px !important;}}@media only screen and (min-width:1819px){html{font-size:242.53333333333px !important;}}@media only screen and (min-width:1820px){html{font-size:242.66666666667px !important;}}@media only screen and (min-width:1821px){html{font-size:242.8px !important;}}@media only screen and (min-width:1822px){html{font-size:242.93333333333px !important;}}@media only screen and (min-width:1823px){html{font-size:243.06666666667px !important;}}@media only screen and (min-width:1824px){html{font-size:243.2px !important;}}@media only screen and (min-width:1825px){html{font-size:243.33333333333px !important;}}@media only screen and (min-width:1826px){html{font-size:243.46666666667px !important;}}@media only screen and (min-width:1827px){html{font-size:243.6px !important;}}@media only screen and (min-width:1828px){html{font-size:243.73333333333px !important;}}@media only screen and (min-width:1829px){html{font-size:243.86666666667px !important;}}@media only screen and (min-width:1830px){html{font-size:244px !important;}}@media only screen and (min-width:1831px){html{font-size:244.13333333333px !important;}}@media only screen and (min-width:1832px){html{font-size:244.26666666667px !important;}}@media only screen and (min-width:1833px){html{font-size:244.4px !important;}}@media only screen and (min-width:1834px){html{font-size:244.53333333333px !important;}}@media only screen and (min-width:1835px){html{font-size:244.66666666667px !important;}}@media only screen and (min-width:1836px){html{font-size:244.8px !important;}}@media only screen and (min-width:1837px){html{font-size:244.93333333333px !important;}}@media only screen and (min-width:1838px){html{font-size:245.06666666667px !important;}}@media only screen and (min-width:1839px){html{font-size:245.2px !important;}}@media only screen and (min-width:1840px){html{font-size:245.33333333333px !important;}}@media only screen and (min-width:1841px){html{font-size:245.46666666667px !important;}}@media only screen and (min-width:1842px){html{font-size:245.6px !important;}}@media only screen and (min-width:1843px){html{font-size:245.73333333333px !important;}}@media only screen and (min-width:1844px){html{font-size:245.86666666667px !important;}}@media only screen and (min-width:1845px){html{font-size:246px !important;}}@media only screen and (min-width:1846px){html{font-size:246.13333333333px !important;}}@media only screen and (min-width:1847px){html{font-size:246.26666666667px !important;}}@media only screen and (min-width:1848px){html{font-size:246.4px !important;}}@media only screen and (min-width:1849px){html{font-size:246.53333333333px !important;}}@media only screen and (min-width:1850px){html{font-size:246.66666666667px !important;}}@media only screen and (min-width:1851px){html{font-size:246.8px !important;}}@media only screen and (min-width:1852px){html{font-size:246.93333333333px !important;}}@media only screen and (min-width:1853px){html{font-size:247.06666666667px !important;}}@media only screen and (min-width:1854px){html{font-size:247.2px !important;}}@media only screen and (min-width:1855px){html{font-size:247.33333333333px !important;}}@media only screen and (min-width:1856px){html{font-size:247.46666666667px !important;}}@media only screen and (min-width:1857px){html{font-size:247.6px !important;}}@media only screen and (min-width:1858px){html{font-size:247.73333333333px !important;}}@media only screen and (min-width:1859px){html{font-size:247.86666666667px !important;}}@media only screen and (min-width:1860px){html{font-size:248px !important;}}@media only screen and (min-width:1861px){html{font-size:248.13333333333px !important;}}@media only screen and (min-width:1862px){html{font-size:248.26666666667px !important;}}@media only screen and (min-width:1863px){html{font-size:248.4px !important;}}@media only screen and (min-width:1864px){html{font-size:248.53333333333px !important;}}@media only screen and (min-width:1865px){html{font-size:248.66666666667px !important;}}@media only screen and (min-width:1866px){html{font-size:248.8px !important;}}@media only screen and (min-width:1867px){html{font-size:248.93333333333px !important;}}@media only screen and (min-width:1868px){html{font-size:249.06666666667px !important;}}@media only screen and (min-width:1869px){html{font-size:249.2px !important;}}@media only screen and (min-width:1870px){html{font-size:249.33333333333px !important;}}@media only screen and (min-width:1871px){html{font-size:249.46666666667px !important;}}@media only screen and (min-width:1872px){html{font-size:249.6px !important;}}@media only screen and (min-width:1873px){html{font-size:249.73333333333px !important;}}@media only screen and (min-width:1874px){html{font-size:249.86666666667px !important;}}@media only screen and (min-width:1875px){html{font-size:250px !important;}}@media only screen and (min-width:1876px){html{font-size:250.13333333333px !important;}}@media only screen and (min-width:1877px){html{font-size:250.26666666667px !important;}}@media only screen and (min-width:1878px){html{font-size:250.4px !important;}}@media only screen and (min-width:1879px){html{font-size:250.53333333333px !important;}}@media only screen and (min-width:1880px){html{font-size:250.66666666667px !important;}}@media only screen and (min-width:1881px){html{font-size:250.8px !important;}}@media only screen and (min-width:1882px){html{font-size:250.93333333333px !important;}}@media only screen and (min-width:1883px){html{font-size:251.06666666667px !important;}}@media only screen and (min-width:1884px){html{font-size:251.2px !important;}}@media only screen and (min-width:1885px){html{font-size:251.33333333333px !important;}}@media only screen and (min-width:1886px){html{font-size:251.46666666667px !important;}}@media only screen and (min-width:1887px){html{font-size:251.6px !important;}}@media only screen and (min-width:1888px){html{font-size:251.73333333333px !important;}}@media only screen and (min-width:1889px){html{font-size:251.86666666667px !important;}}@media only screen and (min-width:1890px){html{font-size:252px !important;}}@media only screen and (min-width:1891px){html{font-size:252.13333333333px !important;}}@media only screen and (min-width:1892px){html{font-size:252.26666666667px !important;}}@media only screen and (min-width:1893px){html{font-size:252.4px !important;}}@media only screen and (min-width:1894px){html{font-size:252.53333333333px !important;}}@media only screen and (min-width:1895px){html{font-size:252.66666666667px !important;}}@media only screen and (min-width:1896px){html{font-size:252.8px !important;}}@media only screen and (min-width:1897px){html{font-size:252.93333333333px !important;}}@media only screen and (min-width:1898px){html{font-size:253.06666666667px !important;}}@media only screen and (min-width:1899px){html{font-size:253.2px !important;}}@media only screen and (min-width:1900px){html{font-size:253.33333333333px !important;}}@media only screen and (min-width:1901px){html{font-size:253.46666666667px !important;}}@media only screen and (min-width:1902px){html{font-size:253.6px !important;}}@media only screen and (min-width:1903px){html{font-size:253.73333333333px !important;}}@media only screen and (min-width:1904px){html{font-size:253.86666666667px !important;}}@media only screen and (min-width:1905px){html{font-size:254px !important;}}@media only screen and (min-width:1906px){html{font-size:254.13333333333px !important;}}@media only screen and (min-width:1907px){html{font-size:254.26666666667px !important;}}@media only screen and (min-width:1908px){html{font-size:254.4px !important;}}@media only screen and (min-width:1909px){html{font-size:254.53333333333px !important;}}@media only screen and (min-width:1910px){html{font-size:254.66666666667px !important;}}@media only screen and (min-width:1911px){html{font-size:254.8px !important;}}@media only screen and (min-width:1912px){html{font-size:254.93333333333px !important;}}@media only screen and (min-width:1913px){html{font-size:255.06666666667px !important;}}@media only screen and (min-width:1914px){html{font-size:255.2px !important;}}@media only screen and (min-width:1915px){html{font-size:255.33333333333px !important;}}@media only screen and (min-width:1916px){html{font-size:255.46666666667px !important;}}@media only screen and (min-width:1917px){html{font-size:255.6px !important;}}@media only screen and (min-width:1918px){html{font-size:255.73333333333px !important;}}@media only screen and (min-width:1919px){html{font-size:255.86666666667px !important;}}@media only screen and (min-width:1920px){html{font-size:256px !important;}}

猜你喜欢

转载自blog.csdn.net/mathphp/article/details/80397853