
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_73edf444b6d985961db0d84f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f035efaf411a3072d4a525d9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_117360ff9e4a8cdad9712db5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.212000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_480f027aaaab220a1d9c2345.woff')format("woff");}.ff4{font-family:ff4;line-height:1.076000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0da4842503ccb5c699b05534.woff')format("woff");}.ff5{font-family:ff5;line-height:1.216000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_97025034b7c00be4ca2df231.woff')format("woff");}.ff6{font-family:ff6;line-height:0.779000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:11.950515px;}
.v1{vertical-align:20.250001px;}
.v4{vertical-align:42.750001px;}
.v3{vertical-align:85.500012px;}
.v2{vertical-align:100.794144px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:43.200280px;}
.ls3{letter-spacing:43.200303px;}
.ls1{letter-spacing:108.000282px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-21.840000px;}
.ws2{word-spacing:-19.224001px;}
.wsb{word-spacing:-18.720001px;}
.ws0{word-spacing:-9.612001px;}
.ws3{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:616.757930px;}
.ws5{word-spacing:839.706039px;}
.ws8{word-spacing:844.147066px;}
.ws6{word-spacing:858.378663px;}
.ws9{word-spacing:1135.550736px;}
.ws7{word-spacing:1235.435485px;}
._1{margin-left:-4.440000px;}
._3{width:678.443467px;}
._0{width:891.837309px;}
._4{width:947.247773px;}
._2{width:1097.699480px;}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(0,151,167);}
.fc7{color:rgb(38,38,38);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(33,33,33);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(197,37,143);}
.fs4{font-size:36.000003px;}
.fs3{font-size:54.000002px;}
.fs1{font-size:60.000000px;}
.fsa{font-size:66.000004px;}
.fs7{font-size:72.000002px;}
.fsb{font-size:84.000000px;}
.fs2{font-size:90.000003px;}
.fs6{font-size:96.000006px;}
.fsc{font-size:108.000003px;}
.fsd{font-size:121.200007px;}
.fs9{font-size:127.200010px;}
.fs5{font-size:145.200020px;}
.fs0{font-size:156.000011px;}
.fs8{font-size:216.000007px;}
.y0{bottom:0.000000px;}
.y4e{bottom:21.280819px;}
.y3{bottom:28.082245px;}
.y17{bottom:28.676681px;}
.y37{bottom:28.679640px;}
.y6b{bottom:29.564307px;}
.y9{bottom:31.556682px;}
.y4d{bottom:42.880819px;}
.y4a{bottom:60.339715px;}
.yd{bottom:67.511536px;}
.y5d{bottom:73.560414px;}
.y1a{bottom:78.152098px;}
.y5f{bottom:79.971958px;}
.y49{bottom:81.714717px;}
.y36{bottom:89.493514px;}
.y60{bottom:90.998488px;}
.y2b{bottom:91.785482px;}
.yc{bottom:96.761542px;}
.y34{bottom:102.403503px;}
.y66{bottom:112.855304px;}
.y5c{bottom:116.400416px;}
.y20{bottom:116.619131px;}
.y2a{bottom:116.985476px;}
.y29{bottom:116.986939px;}
.y41{bottom:117.736638px;}
.y4c{bottom:117.922653px;}
.y35{bottom:118.743515px;}
.y33{bottom:123.778503px;}
.y3d{bottom:130.111638px;}
.y13{bottom:133.453110px;}
.y56{bottom:135.768675px;}
.y5b{bottom:141.240416px;}
.y48{bottom:141.317094px;}
.y28{bottom:142.186937px;}
.y40{bottom:142.486636px;}
.y3a{bottom:142.923630px;}
.y1f{bottom:143.049136px;}
.y4b{bottom:143.122654px;}
.y6a{bottom:143.846460px;}
.y32{bottom:145.648507px;}
.y55{bottom:160.608687px;}
.y47{bottom:162.692096px;}
.y69{bottom:164.366457px;}
.y5a{bottom:166.080428px;}
.y39{bottom:172.173636px;}
.y22{bottom:175.134845px;}
.y19{bottom:182.009765px;}
.y11{bottom:198.583170px;}
.y38{bottom:201.423639px;}
.y54{bottom:203.448677px;}
.y18{bottom:203.609766px;}
.y59{bottom:208.920418px;}
.y10{bottom:223.333171px;}
.y8{bottom:224.204995px;}
.y31{bottom:226.000225px;}
.y53{bottom:228.288678px;}
.y46{bottom:232.982018px;}
.y58{bottom:233.760419px;}
.y65{bottom:239.365676px;}
.y1c{bottom:240.655538px;}
.y3f{bottom:241.773044px;}
.y30{bottom:247.375226px;}
.yf{bottom:249.823174px;}
.y52{bottom:253.128679px;}
.y3b{bottom:254.148045px;}
.y7{bottom:258.254989px;}
.y57{bottom:258.600420px;}
.y64{bottom:260.740676px;}
.y21{bottom:265.418337px;}
.y3e{bottom:266.523043px;}
.y1b{bottom:267.085543px;}
.y2f{bottom:269.245230px;}
.y6{bottom:276.614989px;}
.ye{bottom:279.073177px;}
.y63{bottom:282.115677px;}
.y12{bottom:284.309995px;}
.y45{bottom:294.109471px;}
.y25{bottom:296.024458px;}
.y62{bottom:303.490678px;}
.y50{bottom:308.203832px;}
.y51{bottom:308.203843px;}
.y5{bottom:310.664994px;}
.y44{bottom:316.984473px;}
.y61{bottom:324.865678px;}
.y16{bottom:327.546605px;}
.y24{bottom:328.649459px;}
.y4{bottom:329.024996px;}
.y4f{bottom:329.578832px;}
.y5e{bottom:329.578841px;}
.y68{bottom:345.759823px;}
.y2e{bottom:349.596914px;}
.y1e{bottom:355.691978px;}
.y15{bottom:360.171606px;}
.y3c{bottom:369.184484px;}
.y2d{bottom:370.971915px;}
.y23{bottom:380.894458px;}
.y1d{bottom:382.121983px;}
.y43{bottom:389.077931px;}
.y2c{bottom:392.841919px;}
.yb{bottom:397.254575px;}
.y42{bottom:410.452934px;}
.y2{bottom:414.780972px;}
.y1{bottom:461.580971px;}
.y6f{bottom:468.302767px;}
.y27{bottom:469.667898px;}
.y14{bottom:470.724986px;}
.y67{bottom:486.086087px;}
.y6e{bottom:488.552764px;}
.y6d{bottom:508.802767px;}
.y26{bottom:508.907893px;}
.ya{bottom:509.964981px;}
.y6c{bottom:529.052769px;}
.h2{height:43.125000px;}
.h5{height:50.868002px;}
.h4{height:54.162003px;}
.h1c{height:55.440002px;}
.h6{height:56.520000px;}
.he{height:57.672002px;}
.hf{height:62.304003px;}
.h14{height:66.528002px;}
.h13{height:67.284000px;}
.hd{height:67.824002px;}
.h9{height:67.968002px;}
.h10{height:79.296000px;}
.h3{height:84.780003px;}
.hc{height:88.704006px;}
.h8{height:90.624006px;}
.h1b{height:91.246515px;}
.h1a{height:97.081206px;}
.h11{height:99.792003px;}
.h17{height:110.718004px;}
.h7{height:116.305216px;}
.hb{height:119.822409px;}
.h1{height:144.144010px;}
.h15{height:152.028014px;}
.h19{height:152.028041px;}
.h16{height:153.468009px;}
.h12{height:180.090144px;}
.h18{height:180.096003px;}
.ha{height:199.584006px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x48{left:16.457389px;}
.x49{left:38.129460px;}
.xa{left:46.939963px;}
.x64{left:65.078722px;}
.x52{left:67.047798px;}
.x54{left:75.264800px;}
.x65{left:77.238871px;}
.x53{left:85.002833px;}
.x24{left:90.052938px;}
.x14{left:94.235121px;}
.x2f{left:104.360773px;}
.x32{left:106.064376px;}
.x47{left:111.047670px;}
.x51{left:117.847822px;}
.x30{left:122.692355px;}
.x15{left:146.974612px;}
.x38{left:148.481780px;}
.x40{left:151.845333px;}
.x19{left:154.388666px;}
.x63{left:160.957378px;}
.x2{left:165.614592px;}
.x41{left:167.320868px;}
.x1{left:174.445402px;}
.x42{left:183.041095px;}
.x1a{left:198.238197px;}
.x3b{left:200.392953px;}
.x2c{left:206.108737px;}
.x2d{left:222.236667px;}
.x13{left:226.707409px;}
.x3d{left:233.428237px;}
.x17{left:242.126236px;}
.x12{left:244.565392px;}
.x3f{left:254.132721px;}
.x1e{left:255.577798px;}
.x25{left:259.663328px;}
.x23{left:263.971797px;}
.x46{left:269.621430px;}
.x8{left:277.672790px;}
.x18{left:279.935311px;}
.x62{left:293.177664px;}
.x45{left:296.810532px;}
.x27{left:300.189526px;}
.x34{left:303.929222px;}
.x20{left:307.351883px;}
.x33{left:311.435531px;}
.x60{left:314.521660px;}
.x28{left:315.909753px;}
.x5a{left:319.951097px;}
.x5b{left:324.154106px;}
.x5c{left:332.218131px;}
.x1f{left:334.249453px;}
.x35{left:335.715578px;}
.x1d{left:342.440595px;}
.x26{left:344.474584px;}
.x59{left:345.709154px;}
.x1c{left:350.126633px;}
.x5d{left:356.446178px;}
.x31{left:362.906685px;}
.x36{left:377.504735px;}
.x16{left:378.782720px;}
.x4a{left:388.052942px;}
.xe{left:398.989408px;}
.x4b{left:409.725012px;}
.x5{left:420.488215px;}
.x7{left:425.336954px;}
.x4{left:429.356387px;}
.x6{left:436.792638px;}
.xd{left:442.118995px;}
.x50{left:443.799186px;}
.x37{left:445.871163px;}
.x3c{left:448.616681px;}
.x61{left:451.833888px;}
.x11{left:456.024525px;}
.x10{left:459.489480px;}
.x9{left:468.403249px;}
.x43{left:475.901788px;}
.x39{left:477.739334px;}
.x1b{left:491.136856px;}
.xf{left:501.852639px;}
.xb{left:509.098876px;}
.xc{left:530.501743px;}
.x22{left:547.456977px;}
.x29{left:584.455162px;}
.x55{left:595.552508px;}
.x57{left:598.288508px;}
.x56{left:607.387519px;}
.x58{left:612.472526px;}
.x3e{left:617.023111px;}
.x2a{left:632.843657px;}
.x21{left:683.941245px;}
.x4c{left:759.720512px;}
.x4d{left:770.448440px;}
.x44{left:812.617532px;}
.x3a{left:820.584011px;}
.x4e{left:858.863686px;}
.x5f{left:872.638820px;}
.x4f{left:874.478744px;}
.x5e{left:879.433836px;}
.x2b{left:1038.688064px;}
.x2e{left:1039.801339px;}
.x3{left:1047.027099px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.622680pt;}
.v1{vertical-align:18.000001pt;}
.v4{vertical-align:38.000001pt;}
.v3{vertical-align:76.000010pt;}
.v2{vertical-align:89.594795pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:38.400249pt;}
.ls3{letter-spacing:38.400269pt;}
.ls1{letter-spacing:96.000251pt;}
.ws4{word-spacing:-19.413333pt;}
.ws2{word-spacing:-17.088001pt;}
.wsb{word-spacing:-16.640001pt;}
.ws0{word-spacing:-8.544001pt;}
.ws3{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:548.229271pt;}
.ws5{word-spacing:746.405368pt;}
.ws8{word-spacing:750.352948pt;}
.ws6{word-spacing:763.003256pt;}
.ws9{word-spacing:1009.378432pt;}
.ws7{word-spacing:1098.164875pt;}
._1{margin-left:-3.946667pt;}
._3{width:603.060859pt;}
._0{width:792.744275pt;}
._4{width:841.998020pt;}
._2{width:975.732871pt;}
.fs4{font-size:32.000003pt;}
.fs3{font-size:48.000002pt;}
.fs1{font-size:53.333334pt;}
.fsa{font-size:58.666670pt;}
.fs7{font-size:64.000002pt;}
.fsb{font-size:74.666666pt;}
.fs2{font-size:80.000003pt;}
.fs6{font-size:85.333339pt;}
.fsc{font-size:96.000003pt;}
.fsd{font-size:107.733339pt;}
.fs9{font-size:113.066676pt;}
.fs5{font-size:129.066684pt;}
.fs0{font-size:138.666676pt;}
.fs8{font-size:192.000006pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:18.916283pt;}
.y3{bottom:24.961996pt;}
.y17{bottom:25.490384pt;}
.y37{bottom:25.493014pt;}
.y6b{bottom:26.279384pt;}
.y9{bottom:28.050384pt;}
.y4d{bottom:38.116284pt;}
.y4a{bottom:53.635302pt;}
.yd{bottom:60.010255pt;}
.y5d{bottom:65.387035pt;}
.y1a{bottom:69.468532pt;}
.y5f{bottom:71.086185pt;}
.y49{bottom:72.635304pt;}
.y36{bottom:79.549790pt;}
.y60{bottom:80.887545pt;}
.y2b{bottom:81.587095pt;}
.yc{bottom:86.010259pt;}
.y34{bottom:91.025336pt;}
.y66{bottom:100.315826pt;}
.y5c{bottom:103.467036pt;}
.y20{bottom:103.661450pt;}
.y2a{bottom:103.987090pt;}
.y29{bottom:103.988390pt;}
.y41{bottom:104.654789pt;}
.y4c{bottom:104.820136pt;}
.y35{bottom:105.549791pt;}
.y33{bottom:110.025336pt;}
.y3d{bottom:115.654789pt;}
.y13{bottom:118.624987pt;}
.y56{bottom:120.683267pt;}
.y5b{bottom:125.547037pt;}
.y48{bottom:125.615195pt;}
.y28{bottom:126.388389pt;}
.y40{bottom:126.654788pt;}
.y3a{bottom:127.043227pt;}
.y1f{bottom:127.154788pt;}
.y4b{bottom:127.220137pt;}
.y6a{bottom:127.863520pt;}
.y32{bottom:129.465340pt;}
.y55{bottom:142.763277pt;}
.y47{bottom:144.615196pt;}
.y69{bottom:146.103517pt;}
.y5a{bottom:147.627047pt;}
.y39{bottom:153.043232pt;}
.y22{bottom:155.675418pt;}
.y19{bottom:161.786458pt;}
.y11{bottom:176.518373pt;}
.y38{bottom:179.043234pt;}
.y54{bottom:180.843269pt;}
.y18{bottom:180.986459pt;}
.y59{bottom:185.707039pt;}
.y10{bottom:198.518374pt;}
.y8{bottom:199.293329pt;}
.y31{bottom:200.889089pt;}
.y53{bottom:202.923269pt;}
.y46{bottom:207.095127pt;}
.y58{bottom:207.787039pt;}
.y65{bottom:212.769490pt;}
.y1c{bottom:213.916034pt;}
.y3f{bottom:214.909373pt;}
.y30{bottom:219.889090pt;}
.yf{bottom:222.065044pt;}
.y52{bottom:225.003270pt;}
.y3b{bottom:225.909373pt;}
.y7{bottom:229.559990pt;}
.y57{bottom:229.867040pt;}
.y64{bottom:231.769490pt;}
.y21{bottom:235.927410pt;}
.y3e{bottom:236.909371pt;}
.y1b{bottom:237.409371pt;}
.y2f{bottom:239.329093pt;}
.y6{bottom:245.879991pt;}
.ye{bottom:248.065047pt;}
.y63{bottom:250.769491pt;}
.y12{bottom:252.719996pt;}
.y45{bottom:261.430641pt;}
.y25{bottom:263.132851pt;}
.y62{bottom:269.769491pt;}
.y50{bottom:273.958961pt;}
.y51{bottom:273.958971pt;}
.y5{bottom:276.146662pt;}
.y44{bottom:281.763976pt;}
.y61{bottom:288.769492pt;}
.y16{bottom:291.152538pt;}
.y24{bottom:292.132852pt;}
.y4{bottom:292.466663pt;}
.y4f{bottom:292.958962pt;}
.y5e{bottom:292.958970pt;}
.y68{bottom:307.342065pt;}
.y2e{bottom:310.752813pt;}
.y1e{bottom:316.170647pt;}
.y15{bottom:320.152539pt;}
.y3c{bottom:328.163986pt;}
.y2d{bottom:329.752813pt;}
.y23{bottom:338.572852pt;}
.y1d{bottom:339.663985pt;}
.y43{bottom:345.847050pt;}
.y2c{bottom:349.192817pt;}
.yb{bottom:353.115178pt;}
.y42{bottom:364.847052pt;}
.y2{bottom:368.694198pt;}
.y1{bottom:410.294197pt;}
.y6f{bottom:416.269126pt;}
.y27{bottom:417.482576pt;}
.y14{bottom:418.422210pt;}
.y67{bottom:432.076522pt;}
.y6e{bottom:434.269124pt;}
.y6d{bottom:452.269126pt;}
.y26{bottom:452.362571pt;}
.ya{bottom:453.302205pt;}
.y6c{bottom:470.269128pt;}
.h2{height:38.333334pt;}
.h5{height:45.216001pt;}
.h4{height:48.144003pt;}
.h1c{height:49.280002pt;}
.h6{height:50.240000pt;}
.he{height:51.264002pt;}
.hf{height:55.381336pt;}
.h14{height:59.136002pt;}
.h13{height:59.808000pt;}
.hd{height:60.288002pt;}
.h9{height:60.416002pt;}
.h10{height:70.485333pt;}
.h3{height:75.360002pt;}
.hc{height:78.848005pt;}
.h8{height:80.554672pt;}
.h1b{height:81.108013pt;}
.h1a{height:86.294405pt;}
.h11{height:88.704003pt;}
.h17{height:98.416003pt;}
.h7{height:103.382414pt;}
.hb{height:106.508808pt;}
.h1{height:128.128009pt;}
.h15{height:135.136012pt;}
.h19{height:135.136036pt;}
.h16{height:136.416008pt;}
.h12{height:160.080128pt;}
.h18{height:160.085336pt;}
.ha{height:177.408006pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x48{left:14.628790pt;}
.x49{left:33.892853pt;}
.xa{left:41.724411pt;}
.x64{left:57.847753pt;}
.x52{left:59.598043pt;}
.x54{left:66.902044pt;}
.x65{left:68.656774pt;}
.x53{left:75.558073pt;}
.x24{left:80.047056pt;}
.x14{left:83.764552pt;}
.x2f{left:92.765132pt;}
.x32{left:94.279445pt;}
.x47{left:98.709040pt;}
.x51{left:104.753619pt;}
.x30{left:109.059871pt;}
.x15{left:130.644099pt;}
.x38{left:131.983804pt;}
.x40{left:134.973629pt;}
.x19{left:137.234369pt;}
.x63{left:143.073225pt;}
.x2{left:147.212971pt;}
.x41{left:148.729661pt;}
.x1{left:155.062580pt;}
.x42{left:162.703195pt;}
.x1a{left:176.211731pt;}
.x3b{left:178.127069pt;}
.x2c{left:183.207766pt;}
.x2d{left:197.543704pt;}
.x13{left:201.517696pt;}
.x3d{left:207.491767pt;}
.x17{left:215.223321pt;}
.x12{left:217.391460pt;}
.x3f{left:225.895752pt;}
.x1e{left:227.180265pt;}
.x25{left:230.811847pt;}
.x23{left:234.641598pt;}
.x46{left:239.663494pt;}
.x8{left:246.820258pt;}
.x18{left:248.831388pt;}
.x62{left:260.602368pt;}
.x45{left:263.831584pt;}
.x27{left:266.835135pt;}
.x34{left:270.159309pt;}
.x20{left:273.201674pt;}
.x33{left:276.831583pt;}
.x60{left:279.574809pt;}
.x28{left:280.808669pt;}
.x5a{left:284.400975pt;}
.x5b{left:288.136983pt;}
.x5c{left:295.305005pt;}
.x1f{left:297.110625pt;}
.x35{left:298.413848pt;}
.x1d{left:304.391640pt;}
.x26{left:306.199630pt;}
.x59{left:307.297026pt;}
.x1c{left:311.223674pt;}
.x5d{left:316.841047pt;}
.x31{left:322.583720pt;}
.x36{left:335.559765pt;}
.x16{left:336.695751pt;}
.x4a{left:344.935948pt;}
.xe{left:354.657251pt;}
.x4b{left:364.200011pt;}
.x5{left:373.767302pt;}
.x7{left:378.077292pt;}
.x4{left:381.650122pt;}
.x6{left:388.260122pt;}
.xd{left:392.994663pt;}
.x50{left:394.488166pt;}
.x37{left:396.329923pt;}
.x3c{left:398.770383pt;}
.x61{left:401.630123pt;}
.x11{left:405.355133pt;}
.x10{left:408.435093pt;}
.x9{left:416.358443pt;}
.x43{left:423.023812pt;}
.x39{left:424.657186pt;}
.x1b{left:436.566094pt;}
.xf{left:446.091234pt;}
.xb{left:452.532334pt;}
.xc{left:471.557105pt;}
.x22{left:486.628424pt;}
.x29{left:519.515700pt;}
.x55{left:529.380007pt;}
.x57{left:531.812007pt;}
.x56{left:539.900017pt;}
.x58{left:544.420023pt;}
.x3e{left:548.464988pt;}
.x2a{left:562.527695pt;}
.x21{left:607.947773pt;}
.x4c{left:675.307122pt;}
.x4d{left:684.843058pt;}
.x44{left:722.326695pt;}
.x3a{left:729.408009pt;}
.x4e{left:763.434387pt;}
.x5f{left:775.678951pt;}
.x4f{left:777.314439pt;}
.x5e{left:781.718965pt;}
.x2b{left:923.278280pt;}
.x2e{left:924.267857pt;}
.x3{left:930.690755pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  