
    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_25425e859a73a3acfa0ea4ec.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_644017bf1c56193cac9e38cc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_b24c4c84d27630fd8f5368e6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_6d55baca83eae7bbc4c43d15.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_b6ace142e2aeaf40b27630fb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_4d54b20e08df186c3503db06.woff')format("woff");}.ff6{font-family:ff6;line-height:0.767578;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:ff7;src:url('chunks/assets/font_e6395dbaea8667ca5cee9fe2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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);}
.v3{vertical-align:-30.241512px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.761188px;}
.v2{vertical-align:30.241512px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.358893px;}
.ls0{letter-spacing:0.359613px;}
.ls4{letter-spacing:8.753920px;}
.ls2{letter-spacing:9.473956px;}
.ls5{letter-spacing:69.494247px;}
.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;}
}
.ws6{word-spacing:-66.246012px;}
.ws3{word-spacing:-23.942097px;}
.ws0{word-spacing:-16.561503px;}
.ws2{word-spacing:-13.501238px;}
.ws1{word-spacing:-10.440927px;}
.ws5{word-spacing:0.000000px;}
.ws4{word-spacing:3.299613px;}
._9{margin-left:-3.650356px;}
._8{margin-left:-2.625461px;}
._0{margin-left:-1.517951px;}
._1{width:1.042966px;}
._7{width:2.537469px;}
._4{width:4.354534px;}
._3{width:5.458407px;}
._2{width:6.473789px;}
._c{width:7.763340px;}
._6{width:9.100213px;}
._5{width:10.201179px;}
._a{width:12.168777px;}
._b{width:13.386779px;}
._11{width:16.760195px;}
._10{width:17.920467px;}
._d{width:26.600142px;}
._15{width:30.301443px;}
._19{width:35.885633px;}
._18{width:37.027957px;}
._14{width:38.382571px;}
._17{width:48.846052px;}
._16{width:50.246114px;}
._e{width:705.519531px;}
._12{width:776.640164px;}
._f{width:835.311776px;}
._13{width:862.831210px;}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.763708px;}
.fs4{font-size:54.004950px;}
.fs6{font-size:59.765238px;}
.fs7{font-size:59.775600px;}
.fs0{font-size:66.246012px;}
.fs3{font-size:84.247362px;}
.fs5{font-size:95.768388px;}
.fs2{font-size:108.009450px;}
.y0{bottom:0.000000px;}
.y70{bottom:3.240162px;}
.y6e{bottom:3.600180px;}
.y9{bottom:3.960198px;}
.y36{bottom:68.499000px;}
.y69{bottom:123.976701px;}
.y34{bottom:129.376971px;}
.yb5{bottom:137.657385px;}
.y68{bottom:141.257565px;}
.y33{bottom:146.657835px;}
.y87{bottom:154.038204px;}
.yb4{bottom:154.938249px;}
.y67{bottom:158.538429px;}
.y32{bottom:163.938699px;}
.yb3{bottom:172.219113px;}
.y66{bottom:175.819293px;}
.y31{bottom:181.039554px;}
.yb2{bottom:189.319968px;}
.y65{bottom:192.920148px;}
.y86{bottom:197.780391px;}
.y30{bottom:198.320418px;}
.yb1{bottom:206.600832px;}
.y64{bottom:210.201012px;}
.y2f{bottom:215.601282px;}
.yb0{bottom:223.881696px;}
.y63{bottom:227.481876px;}
.y85{bottom:230.002002px;}
.y2e{bottom:232.882146px;}
.yaf{bottom:241.162560px;}
.y62{bottom:244.762740px;}
.y84{bottom:248.362920px;}
.y2d{bottom:250.163010px;}
.yae{bottom:258.443424px;}
.y61{bottom:262.043604px;}
.y2c{bottom:267.443874px;}
.yad{bottom:275.724288px;}
.y60{bottom:279.144459px;}
.y2b{bottom:284.544729px;}
.yac{bottom:292.825143px;}
.y5f{bottom:296.425323px;}
.y2a{bottom:301.825593px;}
.yab{bottom:310.106007px;}
.y5e{bottom:313.706187px;}
.y29{bottom:319.106457px;}
.yaa{bottom:327.386871px;}
.y5d{bottom:330.987051px;}
.y28{bottom:336.387321px;}
.ya9{bottom:344.667735px;}
.y5c{bottom:348.267915px;}
.y27{bottom:353.668185px;}
.ya8{bottom:361.948599px;}
.y5b{bottom:365.548779px;}
.y26{bottom:370.949049px;}
.ya7{bottom:379.229463px;}
.y5a{bottom:382.649634px;}
.y25{bottom:388.049904px;}
.ya6{bottom:396.330318px;}
.y59{bottom:399.930498px;}
.y24{bottom:405.330768px;}
.ya5{bottom:413.611182px;}
.y58{bottom:417.211362px;}
.y23{bottom:422.611632px;}
.ya4{bottom:430.892046px;}
.y22{bottom:439.892496px;}
.ya3{bottom:448.172910px;}
.y21{bottom:457.173360px;}
.y83{bottom:460.233513px;}
.y57{bottom:464.013702px;}
.ya2{bottom:465.453774px;}
.y82{bottom:477.514377px;}
.ya1{bottom:482.734638px;}
.y81{bottom:494.615232px;}
.ya0{bottom:499.835493px;}
.y20{bottom:503.795691px;}
.y56{bottom:507.755889px;}
.y80{bottom:511.896096px;}
.y9f{bottom:517.116357px;}
.y55{bottom:524.856744px;}
.y7f{bottom:529.176960px;}
.y9e{bottom:534.397221px;}
.y54{bottom:542.137608px;}
.y7e{bottom:546.457824px;}
.y1f{bottom:547.537878px;}
.y9d{bottom:551.678085px;}
.y53{bottom:559.418472px;}
.y7d{bottom:563.738688px;}
.y1e{bottom:564.818742px;}
.y9c{bottom:568.958949px;}
.y52{bottom:576.699336px;}
.y7c{bottom:580.839543px;}
.y1d{bottom:582.099606px;}
.y9b{bottom:586.059804px;}
.y51{bottom:593.980200px;}
.y7b{bottom:598.120407px;}
.y1c{bottom:599.380470px;}
.y9a{bottom:603.340668px;}
.y50{bottom:611.081055px;}
.y7a{bottom:615.401271px;}
.y1b{bottom:616.481325px;}
.y99{bottom:620.621532px;}
.y4f{bottom:628.361919px;}
.y79{bottom:632.682135px;}
.y1a{bottom:633.762189px;}
.y98{bottom:637.902396px;}
.y4e{bottom:645.642783px;}
.y78{bottom:649.962999px;}
.y19{bottom:651.043053px;}
.y97{bottom:655.183260px;}
.y4d{bottom:662.923647px;}
.y77{bottom:667.243863px;}
.y18{bottom:668.323917px;}
.y4c{bottom:680.204511px;}
.y76{bottom:684.344718px;}
.y17{bottom:685.604781px;}
.y4b{bottom:697.485375px;}
.y96{bottom:701.805591px;}
.y75{bottom:702.165609px;}
.y16{bottom:702.885645px;}
.y4a{bottom:714.586230px;}
.y15{bottom:722.146608px;}
.y49{bottom:731.867094px;}
.y74{bottom:735.647283px;}
.y95{bottom:745.547778px;}
.y14{bottom:748.067904px;}
.y48{bottom:749.147958px;}
.y73{bottom:752.928147px;}
.y94{bottom:762.828642px;}
.y47{bottom:766.428822px;}
.y72{bottom:772.009101px;}
.y46{bottom:783.709686px;}
.y13{bottom:784.969749px;}
.y6f{bottom:787.849893px;}
.y71{bottom:798.110406px;}
.y45{bottom:800.990550px;}
.y93{bottom:809.630982px;}
.y44{bottom:818.091405px;}
.y12{bottom:821.871594px;}
.y43{bottom:835.372269px;}
.y42{bottom:852.653133px;}
.y92{bottom:854.633232px;}
.y11{bottom:867.413871px;}
.y41{bottom:869.933997px;}
.y91{bottom:873.354168px;}
.y10{bottom:883.974699px;}
.y40{bottom:887.214861px;}
.y90{bottom:893.515176px;}
.y3f{bottom:904.495725px;}
.yf{bottom:908.095905px;}
.y8f{bottom:912.236112px;}
.y3e{bottom:921.596580px;}
.y8e{bottom:932.577129px;}
.y3d{bottom:938.877444px;}
.ye{bottom:939.957498px;}
.y8d{bottom:951.118056px;}
.y3c{bottom:956.158308px;}
.y8c{bottom:971.459073px;}
.y3b{bottom:973.439172px;}
.yd{bottom:977.039352px;}
.y8b{bottom:990.000000px;}
.y3a{bottom:990.720036px;}
.y8a{bottom:1008.720936px;}
.y6d{bottom:1012.141107px;}
.y89{bottom:1027.621881px;}
.y6c{bottom:1029.421971px;}
.yc{bottom:1033.022151px;}
.y39{bottom:1037.342367px;}
.y88{bottom:1044.902745px;}
.y6b{bottom:1046.522826px;}
.y6a{bottom:1063.803690px;}
.yb{bottom:1063.983699px;}
.y38{bottom:1081.084554px;}
.y37{bottom:1098.365418px;}
.ya{bottom:1132.927146px;}
.y3{bottom:1148.227911px;}
.y8{bottom:1148.767938px;}
.y7{bottom:1152.728136px;}
.y6{bottom:1171.629081px;}
.y5{bottom:1190.710035px;}
.y4{bottom:1209.610980px;}
.y35{bottom:1210.174500px;}
.y2{bottom:1228.691934px;}
.y1{bottom:1247.592879px;}
.h3{height:14.760738px;}
.h10{height:16.560828px;}
.hf{height:16.920846px;}
.h5{height:18.720936px;}
.h8{height:39.053384px;}
.hc{height:43.218905px;}
.he{height:44.831700px;}
.h12{height:45.553485px;}
.h2{height:47.905441px;}
.h11{height:50.234403px;}
.ha{height:50.493176px;}
.h4{height:53.962385px;}
.h9{height:60.923019px;}
.hb{height:67.570957px;}
.h7{height:68.345591px;}
.hd{height:69.722005px;}
.h6{height:76.207840px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:2.340117px;}
.w5{width:3.780189px;}
.w6{width:7.560378px;}
.w4{width:8.100405px;}
.w3{width:8.280414px;}
.w2{width:12.420621px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.332819px;}
.x15{left:116.773341px;}
.x11{left:127.573881px;}
.x8{left:131.174061px;}
.x19{left:133.334169px;}
.x1a{left:135.134259px;}
.xb{left:142.514628px;}
.xc{left:160.335519px;}
.x10{left:161.775591px;}
.x18{left:164.835744px;}
.x17{left:201.737589px;}
.xa{left:207.497877px;}
.x9{left:235.039254px;}
.x2{left:263.120658px;}
.xd{left:269.600982px;}
.xf{left:322.703637px;}
.x16{left:325.223763px;}
.x12{left:399.565500px;}
.x3{left:412.708137px;}
.x13{left:435.249000px;}
.xe{left:446.549829px;}
.x5{left:515.133258px;}
.x6{left:640.239513px;}
.x7{left:697.482375px;}
.x14{left:783.526677px;}
.x4{left:797.387370px;}
@media print{
.v3{vertical-align:-26.881344pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.121056pt;}
.v2{vertical-align:26.881344pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.319016pt;}
.ls0{letter-spacing:0.319656pt;}
.ls4{letter-spacing:7.781263pt;}
.ls2{letter-spacing:8.421295pt;}
.ls5{letter-spacing:61.772664pt;}
.ws6{word-spacing:-58.885344pt;}
.ws3{word-spacing:-21.281864pt;}
.ws0{word-spacing:-14.721336pt;}
.ws2{word-spacing:-12.001100pt;}
.ws1{word-spacing:-9.280824pt;}
.ws5{word-spacing:0.000000pt;}
.ws4{word-spacing:2.932989pt;}
._9{margin-left:-3.244761pt;}
._8{margin-left:-2.333743pt;}
._0{margin-left:-1.349289pt;}
._1{width:0.927081pt;}
._7{width:2.255528pt;}
._4{width:3.870697pt;}
._3{width:4.851917pt;}
._2{width:5.754479pt;}
._c{width:6.900746pt;}
._6{width:8.089078pt;}
._5{width:9.067715pt;}
._a{width:10.816691pt;}
._b{width:11.899359pt;}
._11{width:14.897951pt;}
._10{width:15.929304pt;}
._d{width:23.644571pt;}
._15{width:26.934616pt;}
._19{width:31.898341pt;}
._18{width:32.913740pt;}
._14{width:34.117841pt;}
._17{width:43.418713pt;}
._16{width:44.663212pt;}
._e{width:627.128472pt;}
._12{width:690.346813pt;}
._f{width:742.499356pt;}
._13{width:766.961075pt;}
.fs1{font-size:37.123296pt;}
.fs4{font-size:48.004400pt;}
.fs6{font-size:53.124656pt;}
.fs7{font-size:53.133867pt;}
.fs0{font-size:58.885344pt;}
.fs3{font-size:74.886544pt;}
.fs5{font-size:85.127456pt;}
.fs2{font-size:96.008400pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:2.880144pt;}
.y6e{bottom:3.200160pt;}
.y9{bottom:3.520176pt;}
.y36{bottom:60.888000pt;}
.y69{bottom:110.201512pt;}
.y34{bottom:115.001752pt;}
.yb5{bottom:122.362120pt;}
.y68{bottom:125.562280pt;}
.y33{bottom:130.362520pt;}
.y87{bottom:136.922848pt;}
.yb4{bottom:137.722888pt;}
.y67{bottom:140.923048pt;}
.y32{bottom:145.723288pt;}
.yb3{bottom:153.083656pt;}
.y66{bottom:156.283816pt;}
.y31{bottom:160.924048pt;}
.yb2{bottom:168.284416pt;}
.y65{bottom:171.484576pt;}
.y86{bottom:175.804792pt;}
.y30{bottom:176.284816pt;}
.yb1{bottom:183.645184pt;}
.y64{bottom:186.845344pt;}
.y2f{bottom:191.645584pt;}
.yb0{bottom:199.005952pt;}
.y63{bottom:202.206112pt;}
.y85{bottom:204.446224pt;}
.y2e{bottom:207.006352pt;}
.yaf{bottom:214.366720pt;}
.y62{bottom:217.566880pt;}
.y84{bottom:220.767040pt;}
.y2d{bottom:222.367120pt;}
.yae{bottom:229.727488pt;}
.y61{bottom:232.927648pt;}
.y2c{bottom:237.727888pt;}
.yad{bottom:245.088256pt;}
.y60{bottom:248.128408pt;}
.y2b{bottom:252.928648pt;}
.yac{bottom:260.289016pt;}
.y5f{bottom:263.489176pt;}
.y2a{bottom:268.289416pt;}
.yab{bottom:275.649784pt;}
.y5e{bottom:278.849944pt;}
.y29{bottom:283.650184pt;}
.yaa{bottom:291.010552pt;}
.y5d{bottom:294.210712pt;}
.y28{bottom:299.010952pt;}
.ya9{bottom:306.371320pt;}
.y5c{bottom:309.571480pt;}
.y27{bottom:314.371720pt;}
.ya8{bottom:321.732088pt;}
.y5b{bottom:324.932248pt;}
.y26{bottom:329.732488pt;}
.ya7{bottom:337.092856pt;}
.y5a{bottom:340.133008pt;}
.y25{bottom:344.933248pt;}
.ya6{bottom:352.293616pt;}
.y59{bottom:355.493776pt;}
.y24{bottom:360.294016pt;}
.ya5{bottom:367.654384pt;}
.y58{bottom:370.854544pt;}
.y23{bottom:375.654784pt;}
.ya4{bottom:383.015152pt;}
.y22{bottom:391.015552pt;}
.ya3{bottom:398.375920pt;}
.y21{bottom:406.376320pt;}
.y83{bottom:409.096456pt;}
.y57{bottom:412.456624pt;}
.ya2{bottom:413.736688pt;}
.y82{bottom:424.457224pt;}
.ya1{bottom:429.097456pt;}
.y81{bottom:439.657984pt;}
.ya0{bottom:444.298216pt;}
.y20{bottom:447.818392pt;}
.y56{bottom:451.338568pt;}
.y80{bottom:455.018752pt;}
.y9f{bottom:459.658984pt;}
.y55{bottom:466.539328pt;}
.y7f{bottom:470.379520pt;}
.y9e{bottom:475.019752pt;}
.y54{bottom:481.900096pt;}
.y7e{bottom:485.740288pt;}
.y1f{bottom:486.700336pt;}
.y9d{bottom:490.380520pt;}
.y53{bottom:497.260864pt;}
.y7d{bottom:501.101056pt;}
.y1e{bottom:502.061104pt;}
.y9c{bottom:505.741288pt;}
.y52{bottom:512.621632pt;}
.y7c{bottom:516.301816pt;}
.y1d{bottom:517.421872pt;}
.y9b{bottom:520.942048pt;}
.y51{bottom:527.982400pt;}
.y7b{bottom:531.662584pt;}
.y1c{bottom:532.782640pt;}
.y9a{bottom:536.302816pt;}
.y50{bottom:543.183160pt;}
.y7a{bottom:547.023352pt;}
.y1b{bottom:547.983400pt;}
.y99{bottom:551.663584pt;}
.y4f{bottom:558.543928pt;}
.y79{bottom:562.384120pt;}
.y1a{bottom:563.344168pt;}
.y98{bottom:567.024352pt;}
.y4e{bottom:573.904696pt;}
.y78{bottom:577.744888pt;}
.y19{bottom:578.704936pt;}
.y97{bottom:582.385120pt;}
.y4d{bottom:589.265464pt;}
.y77{bottom:593.105656pt;}
.y18{bottom:594.065704pt;}
.y4c{bottom:604.626232pt;}
.y76{bottom:608.306416pt;}
.y17{bottom:609.426472pt;}
.y4b{bottom:619.987000pt;}
.y96{bottom:623.827192pt;}
.y75{bottom:624.147208pt;}
.y16{bottom:624.787240pt;}
.y4a{bottom:635.187760pt;}
.y15{bottom:641.908096pt;}
.y49{bottom:650.548528pt;}
.y74{bottom:653.908696pt;}
.y95{bottom:662.709136pt;}
.y14{bottom:664.949248pt;}
.y48{bottom:665.909296pt;}
.y73{bottom:669.269464pt;}
.y94{bottom:678.069904pt;}
.y47{bottom:681.270064pt;}
.y72{bottom:686.230312pt;}
.y46{bottom:696.630832pt;}
.y13{bottom:697.750888pt;}
.y6f{bottom:700.311016pt;}
.y71{bottom:709.431472pt;}
.y45{bottom:711.991600pt;}
.y93{bottom:719.671984pt;}
.y44{bottom:727.192360pt;}
.y12{bottom:730.552528pt;}
.y43{bottom:742.553128pt;}
.y42{bottom:757.913896pt;}
.y92{bottom:759.673984pt;}
.y11{bottom:771.034552pt;}
.y41{bottom:773.274664pt;}
.y91{bottom:776.314816pt;}
.y10{bottom:785.755288pt;}
.y40{bottom:788.635432pt;}
.y90{bottom:794.235712pt;}
.y3f{bottom:803.996200pt;}
.yf{bottom:807.196360pt;}
.y8f{bottom:810.876544pt;}
.y3e{bottom:819.196960pt;}
.y8e{bottom:828.957448pt;}
.y3d{bottom:834.557728pt;}
.ye{bottom:835.517776pt;}
.y8d{bottom:845.438272pt;}
.y3c{bottom:849.918496pt;}
.y8c{bottom:863.519176pt;}
.y3b{bottom:865.279264pt;}
.yd{bottom:868.479424pt;}
.y8b{bottom:880.000000pt;}
.y3a{bottom:880.640032pt;}
.y8a{bottom:896.640832pt;}
.y6d{bottom:899.680984pt;}
.y89{bottom:913.441672pt;}
.y6c{bottom:915.041752pt;}
.yc{bottom:918.241912pt;}
.y39{bottom:922.082104pt;}
.y88{bottom:928.802440pt;}
.y6b{bottom:930.242512pt;}
.y6a{bottom:945.603280pt;}
.yb{bottom:945.763288pt;}
.y38{bottom:960.964048pt;}
.y37{bottom:976.324816pt;}
.ya{bottom:1007.046352pt;}
.y3{bottom:1020.647032pt;}
.y8{bottom:1021.127056pt;}
.y7{bottom:1024.647232pt;}
.y6{bottom:1041.448072pt;}
.y5{bottom:1058.408920pt;}
.y4{bottom:1075.209760pt;}
.y35{bottom:1075.710667pt;}
.y2{bottom:1092.170608pt;}
.y1{bottom:1108.971448pt;}
.h3{height:13.120656pt;}
.h10{height:14.720736pt;}
.hf{height:15.040752pt;}
.h5{height:16.640832pt;}
.h8{height:34.714119pt;}
.hc{height:38.416805pt;}
.he{height:39.850400pt;}
.h12{height:40.491986pt;}
.h2{height:42.582615pt;}
.h11{height:44.652802pt;}
.ha{height:44.882823pt;}
.h4{height:47.966565pt;}
.h9{height:54.153795pt;}
.hb{height:60.063073pt;}
.h7{height:60.751636pt;}
.hd{height:61.975116pt;}
.h6{height:67.740302pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:2.080104pt;}
.w5{width:3.360168pt;}
.w6{width:6.720336pt;}
.w4{width:7.200360pt;}
.w3{width:7.360368pt;}
.w2{width:11.040552pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.518061pt;}
.x15{left:103.798525pt;}
.x11{left:113.399005pt;}
.x8{left:116.599165pt;}
.x19{left:118.519261pt;}
.x1a{left:120.119341pt;}
.xb{left:126.679669pt;}
.xc{left:142.520461pt;}
.x10{left:143.800525pt;}
.x18{left:146.520661pt;}
.x17{left:179.322301pt;}
.xa{left:184.442557pt;}
.x9{left:208.923781pt;}
.x2{left:233.885029pt;}
.xd{left:239.645317pt;}
.xf{left:286.847677pt;}
.x16{left:289.087789pt;}
.x12{left:355.169333pt;}
.x3{left:366.851677pt;}
.x13{left:386.888000pt;}
.xe{left:396.933181pt;}
.x5{left:457.896229pt;}
.x6{left:569.101789pt;}
.x7{left:619.984333pt;}
.x14{left:696.468157pt;}
.x4{left:708.788773pt;}
}




    .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; }
  