
    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_10b18e46e1e1a2f7349ddd8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.676000;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_d2d9a8a1105f8b15913420aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_aa3cf9aa4f08f20a5c5aabcf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.230000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:-86.424006px;}
.ws2{word-spacing:-75.768004px;}
.ws3{word-spacing:-68.880000px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-25.440000px;}
._0{margin-left:-23.088002px;}
._6{margin-left:-10.824001px;}
._5{margin-left:-9.057601px;}
._3{margin-left:-7.459200px;}
._4{margin-left:-5.544000px;}
._2{margin-left:-4.356000px;}
._7{margin-left:-2.640000px;}
._1{margin-left:-1.425600px;}
._8{width:1.026100px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:78.000005px;}
.fs3{font-size:79.200003px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:100.800003px;}
.fsf{font-size:102.000000px;}
.fsa{font-size:108.000003px;}
.fs7{font-size:111.599990px;}
.fse{font-size:114.000007px;}
.fs6{font-size:122.400017px;}
.fs10{font-size:126.000004px;}
.fs9{font-size:132.000007px;}
.fs8{font-size:133.200013px;}
.fs1{font-size:144.000005px;}
.fs11{font-size:167.999999px;}
.fsd{font-size:240.000002px;}
.fsc{font-size:264.000014px;}
.fs2{font-size:312.000022px;}
.fs0{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.y7b{bottom:18.281202px;}
.y6e{bottom:19.131376px;}
.y7e{bottom:26.459975px;}
.y88{bottom:46.217338px;}
.y7a{bottom:47.261203px;}
.y6d{bottom:51.531384px;}
.y2d{bottom:53.480035px;}
.y57{bottom:54.291463px;}
.y28{bottom:56.676835px;}
.y6b{bottom:56.678263px;}
.y64{bottom:56.731105px;}
.y47{bottom:57.497657px;}
.y53{bottom:58.684723px;}
.yd{bottom:58.766443px;}
.y23{bottom:60.824057px;}
.y7d{bottom:63.719976px;}
.y4b{bottom:68.060035px;}
.y95{bottom:74.372365px;}
.y79{bottom:76.241193px;}
.y87{bottom:80.417339px;}
.yc{bottom:83.714444px;}
.y6c{bottom:83.931389px;}
.y8e{bottom:85.447079px;}
.y46{bottom:86.225654px;}
.y52{bottom:90.436724px;}
.y27{bottom:91.560836px;}
.y6a{bottom:91.562265px;}
.y41{bottom:92.790157px;}
.y63{bottom:94.693095px;}
.y22{bottom:95.600058px;}
.y2c{bottom:98.840036px;}
.y56{bottom:100.245465px;}
.y7c{bottom:100.979977px;}
.y94{bottom:104.972366px;}
.y78{bottom:105.221190px;}
.yb{bottom:108.662434px;}
.y5f{bottom:109.441761px;}
.y4a{bottom:110.288036px;}
.y86{bottom:114.617340px;}
.y45{bottom:114.953648px;}
.y8d{bottom:119.647069px;}
.y51{bottom:122.188725px;}
.y26{bottom:126.444837px;}
.y69{bottom:126.446266px;}
.y40{bottom:127.944147px;}
.y21{bottom:130.376048px;}
.y62{bottom:132.655107px;}
.ya{bottom:133.610435px;}
.y77{bottom:134.201186px;}
.y93{bottom:135.572362px;}
.y2a{bottom:139.880037px;}
.y66{bottom:139.881466px;}
.y44{bottom:143.681649px;}
.y2b{bottom:144.200037px;}
.y55{bottom:146.199466px;}
.y85{bottom:148.817330px;}
.y49{bottom:152.516038px;}
.y8c{bottom:153.847077px;}
.y50{bottom:153.940727px;}
.y5e{bottom:154.981757px;}
.y9{bottom:158.558429px;}
.y8f{bottom:159.554274px;}
.y25{bottom:161.328838px;}
.y68{bottom:161.330267px;}
.y3f{bottom:163.098137px;}
.y20{bottom:165.152046px;}
.y92{bottom:166.172357px;}
.y61{bottom:170.617097px;}
.y43{bottom:172.409641px;}
.y1e{bottom:176.910482px;}
.y84{bottom:183.017338px;}
.y8{bottom:183.506425px;}
.y4f{bottom:185.692728px;}
.y8b{bottom:188.047083px;}
.y29{bottom:189.560039px;}
.y65{bottom:189.561468px;}
.y54{bottom:192.153468px;}
.y48{bottom:194.744038px;}
.y24{bottom:196.212839px;}
.y67{bottom:196.214268px;}
.y91{bottom:196.772352px;}
.y3e{bottom:198.252093px;}
.y1f{bottom:199.928039px;}
.y5d{bottom:200.521758px;}
.y42{bottom:201.137640px;}
.y9e{bottom:204.917921px;}
.y1d{bottom:205.890472px;}
.y7{bottom:208.454426px;}
.y60{bottom:208.579097px;}
.y80{bottom:209.065848px;}
.y83{bottom:217.217344px;}
.y4e{bottom:217.444717px;}
.y8a{bottom:222.247084px;}
.y90{bottom:227.372350px;}
.y6{bottom:233.402427px;}
.y3d{bottom:233.406139px;}
.y1c{bottom:234.870473px;}
.y4d{bottom:249.196710px;}
.y82{bottom:251.417345px;}
.y89{bottom:256.447085px;}
.y1b{bottom:263.850463px;}
.y3c{bottom:268.560118px;}
.y9d{bottom:269.717923px;}
.y4c{bottom:280.948708px;}
.y81{bottom:285.617346px;}
.y1a{bottom:292.830460px;}
.y3{bottom:295.078427px;}
.y3b{bottom:303.714096px;}
.y5c{bottom:309.853266px;}
.y19{bottom:321.810455px;}
.ya5{bottom:324.774142px;}
.y9c{bottom:334.517925px;}
.y3a{bottom:338.868097px;}
.y5b{bottom:347.815256px;}
.y2{bottom:348.958426px;}
.y39{bottom:374.022076px;}
.ya4{bottom:375.174121px;}
.y5a{bottom:385.777269px;}
.y18{bottom:398.770722px;}
.y9b{bottom:399.317927px;}
.y38{bottom:409.176066px;}
.y5{bottom:418.645619px;}
.y1{bottom:419.365607px;}
.y59{bottom:423.739259px;}
.ya3{bottom:425.574111px;}
.y17{bottom:426.094734px;}
.y37{bottom:444.330045px;}
.y16{bottom:453.418724px;}
.y58{bottom:461.701259px;}
.ya2{bottom:475.974102px;}
.y36{bottom:479.484034px;}
.y15{bottom:480.742725px;}
.y14{bottom:508.066715px;}
.y76{bottom:509.778677px;}
.y4{bottom:512.245622px;}
.y35{bottom:514.638013px;}
.ya1{bottom:526.374103px;}
.y13{bottom:535.390715px;}
.y34{bottom:549.792025px;}
.yaa{bottom:552.127210px;}
.y12{bottom:562.714705px;}
.ya0{bottom:576.774105px;}
.y75{bottom:581.058672px;}
.y9a{bottom:581.204771px;}
.y33{bottom:584.946027px;}
.y11{bottom:590.038700px;}
.ya9{bottom:595.327201px;}
.y10{bottom:617.362696px;}
.y32{bottom:620.100028px;}
.y9f{bottom:627.174100px;}
.ya8{bottom:638.527198px;}
.yf{bottom:644.686696px;}
.y99{bottom:646.004769px;}
.y31{bottom:655.254018px;}
.y74{bottom:656.700478px;}
.ye{bottom:672.010697px;}
.ya7{bottom:681.727203px;}
.y98{bottom:682.695018px;}
.y7f{bottom:683.418071px;}
.y73{bottom:683.610479px;}
.y30{bottom:690.408012px;}
.y72{bottom:710.520476px;}
.ya6{bottom:724.927205px;}
.y2f{bottom:725.562006px;}
.y97{bottom:726.165009px;}
.y71{bottom:737.430474px;}
.y2e{bottom:760.716002px;}
.y70{bottom:764.340473px;}
.y96{bottom:769.635002px;}
.y6f{bottom:791.250472px;}
.hc{height:69.925786px;}
.h4{height:71.001565px;}
.h5{height:75.304687px;}
.h6{height:90.365628px;}
.h10{height:91.441406px;}
.hb{height:96.820316px;}
.h8{height:100.047647px;}
.hf{height:102.199225px;}
.h7{height:109.729703px;}
.h11{height:112.957035px;}
.ha{height:118.335944px;}
.h9{height:119.411731px;}
.h2{height:129.093754px;}
.h12{height:139.680004px;}
.h13{height:150.609374px;}
.he{height:232.800002px;}
.h1{height:239.760008px;}
.hd{height:256.080014px;}
.h3{height:279.703145px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x5c{left:10.127953px;}
.x60{left:18.256890px;}
.x67{left:63.974412px;}
.x66{left:109.125127px;}
.x64{left:129.793118px;}
.x5a{left:137.839549px;}
.x68{left:149.241144px;}
.x4{left:190.125006px;}
.x65{left:205.205249px;}
.x5b{left:213.131948px;}
.x1{left:224.415431px;}
.x4e{left:330.953562px;}
.x44{left:333.725276px;}
.x56{left:335.697013px;}
.x50{left:337.407310px;}
.x4d{left:338.431372px;}
.x45{left:346.722274px;}
.x58{left:352.299218px;}
.x55{left:356.933963px;}
.x52{left:369.981327px;}
.x46{left:379.966355px;}
.x4f{left:386.501401px;}
.x47{left:441.098305px;}
.x54{left:454.747650px;}
.x48{left:496.409180px;}
.x4b{left:498.270298px;}
.x49{left:501.960571px;}
.x4c{left:513.850426px;}
.x4a{left:522.321568px;}
.x63{left:536.288395px;}
.x51{left:543.789501px;}
.x3{left:550.889680px;}
.x39{left:560.704749px;}
.x53{left:562.101453px;}
.x3d{left:563.460017px;}
.x22{left:566.201518px;}
.x42{left:567.653773px;}
.x21{left:569.198588px;}
.x26{left:570.244487px;}
.x1f{left:571.477084px;}
.x3e{left:573.187037px;}
.x3a{left:574.646160px;}
.x41{left:576.103770px;}
.x24{left:577.493712px;}
.x1d{left:580.202494px;}
.x3b{left:582.364810px;}
.x23{left:585.177105px;}
.x40{left:587.271648px;}
.x17{left:591.771170px;}
.x27{left:594.194682px;}
.x1e{left:596.977725px;}
.x18{left:601.135093px;}
.x62{left:607.129714px;}
.x59{left:610.346495px;}
.x1b{left:611.627534px;}
.x19{left:612.978115px;}
.x16{left:619.840622px;}
.x28{left:627.267924px;}
.x2{left:628.962905px;}
.x6{left:632.910846px;}
.x7{left:636.790977px;}
.x9{left:637.883122px;}
.x8{left:645.054309px;}
.x5f{left:647.229812px;}
.xa{left:649.417805px;}
.xd{left:651.294894px;}
.x11{left:653.512862px;}
.xe{left:655.668104px;}
.x5d{left:658.585596px;}
.x25{left:663.104952px;}
.x12{left:668.304717px;}
.xb{left:669.761706px;}
.x5{left:671.979604px;}
.x14{left:674.282497px;}
.x10{left:681.525494px;}
.xf{left:683.700271px;}
.x1a{left:702.301669px;}
.x57{left:711.464839px;}
.x3f{left:715.124835px;}
.x3c{left:738.058355px;}
.x61{left:752.811032px;}
.x2a{left:770.266275px;}
.x29{left:771.338241px;}
.x35{left:772.554521px;}
.x2f{left:774.972440px;}
.x31{left:776.477567px;}
.x33{left:779.596826px;}
.x30{left:781.101988px;}
.x37{left:784.943186px;}
.x34{left:786.516428px;}
.x2c{left:792.748285px;}
.xc{left:796.304140px;}
.x2e{left:802.317360px;}
.x2d{left:813.691043px;}
.x36{left:821.428096px;}
.x2b{left:823.988974px;}
.x32{left:825.323676px;}
.x43{left:838.606741px;}
.x15{left:854.077460px;}
.x1c{left:864.743754px;}
.x20{left:917.472922px;}
.x13{left:919.727298px;}
.x5e{left:975.608075px;}
.x38{left:990.427869px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-76.821339pt;}
.ws2{word-spacing:-67.349337pt;}
.ws3{word-spacing:-61.226667pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-22.613333pt;}
._0{margin-left:-20.522668pt;}
._6{margin-left:-9.621334pt;}
._5{margin-left:-8.051201pt;}
._3{margin-left:-6.630400pt;}
._4{margin-left:-4.928000pt;}
._2{margin-left:-3.872000pt;}
._7{margin-left:-2.346667pt;}
._1{margin-left:-1.267200pt;}
._8{width:0.912088pt;}
.fsb{font-size:69.333338pt;}
.fs3{font-size:70.400002pt;}
.fs4{font-size:74.666666pt;}
.fs5{font-size:89.600003pt;}
.fsf{font-size:90.666667pt;}
.fsa{font-size:96.000003pt;}
.fs7{font-size:99.199991pt;}
.fse{font-size:101.333339pt;}
.fs6{font-size:108.800015pt;}
.fs10{font-size:112.000004pt;}
.fs9{font-size:117.333340pt;}
.fs8{font-size:118.400012pt;}
.fs1{font-size:128.000004pt;}
.fs11{font-size:149.333333pt;}
.fsd{font-size:213.333335pt;}
.fsc{font-size:234.666680pt;}
.fs2{font-size:277.333353pt;}
.fs0{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:16.249957pt;}
.y6e{bottom:17.005668pt;}
.y7e{bottom:23.519978pt;}
.y88{bottom:41.082078pt;}
.y7a{bottom:42.009958pt;}
.y6d{bottom:45.805674pt;}
.y2d{bottom:47.537808pt;}
.y57{bottom:48.259079pt;}
.y28{bottom:50.379409pt;}
.y6b{bottom:50.380679pt;}
.y64{bottom:50.427649pt;}
.y47{bottom:51.109029pt;}
.y53{bottom:52.164199pt;}
.yd{bottom:52.236839pt;}
.y23{bottom:54.065829pt;}
.y7d{bottom:56.639979pt;}
.y4b{bottom:60.497809pt;}
.y95{bottom:66.108769pt;}
.y79{bottom:67.769949pt;}
.y87{bottom:71.482079pt;}
.yc{bottom:74.412839pt;}
.y6c{bottom:74.605679pt;}
.y8e{bottom:75.952959pt;}
.y46{bottom:76.645025pt;}
.y52{bottom:80.388200pt;}
.y27{bottom:81.387410pt;}
.y6a{bottom:81.388680pt;}
.y41{bottom:82.480140pt;}
.y63{bottom:84.171640pt;}
.y22{bottom:84.977830pt;}
.y2c{bottom:87.857810pt;}
.y56{bottom:89.107080pt;}
.y7c{bottom:89.759980pt;}
.y94{bottom:93.308770pt;}
.y78{bottom:93.529947pt;}
.yb{bottom:96.588830pt;}
.y5f{bottom:97.281565pt;}
.y4a{bottom:98.033810pt;}
.y86{bottom:101.882080pt;}
.y45{bottom:102.181020pt;}
.y8d{bottom:106.352950pt;}
.y51{bottom:108.612200pt;}
.y26{bottom:112.395411pt;}
.y69{bottom:112.396681pt;}
.y40{bottom:113.728131pt;}
.y21{bottom:115.889821pt;}
.y62{bottom:117.915651pt;}
.ya{bottom:118.764831pt;}
.y77{bottom:119.289943pt;}
.y93{bottom:120.508766pt;}
.y2a{bottom:124.337811pt;}
.y66{bottom:124.339081pt;}
.y44{bottom:127.717021pt;}
.y2b{bottom:128.177811pt;}
.y55{bottom:129.955081pt;}
.y85{bottom:132.282071pt;}
.y49{bottom:135.569811pt;}
.y8c{bottom:136.752957pt;}
.y50{bottom:136.836201pt;}
.y5e{bottom:137.761561pt;}
.y9{bottom:140.940825pt;}
.y8f{bottom:141.826021pt;}
.y25{bottom:143.403412pt;}
.y68{bottom:143.404682pt;}
.y3f{bottom:144.976122pt;}
.y20{bottom:146.801819pt;}
.y92{bottom:147.708762pt;}
.y61{bottom:151.659642pt;}
.y43{bottom:153.253014pt;}
.y1e{bottom:157.253762pt;}
.y84{bottom:162.682078pt;}
.y8{bottom:163.116822pt;}
.y4f{bottom:165.060202pt;}
.y8b{bottom:167.152962pt;}
.y29{bottom:168.497812pt;}
.y65{bottom:168.499082pt;}
.y54{bottom:170.803082pt;}
.y48{bottom:173.105811pt;}
.y24{bottom:174.411413pt;}
.y67{bottom:174.412683pt;}
.y91{bottom:174.908758pt;}
.y3e{bottom:176.224083pt;}
.y1f{bottom:177.713813pt;}
.y5d{bottom:178.241563pt;}
.y42{bottom:178.789014pt;}
.y9e{bottom:182.149263pt;}
.y1d{bottom:183.013753pt;}
.y7{bottom:185.292823pt;}
.y60{bottom:185.403642pt;}
.y80{bottom:185.836309pt;}
.y83{bottom:193.082083pt;}
.y4e{bottom:193.284193pt;}
.y8a{bottom:197.552963pt;}
.y90{bottom:202.108755pt;}
.y6{bottom:207.468824pt;}
.y3d{bottom:207.472124pt;}
.y1c{bottom:208.773754pt;}
.y4d{bottom:221.508187pt;}
.y82{bottom:223.482084pt;}
.y89{bottom:227.952964pt;}
.y1b{bottom:234.533744pt;}
.y3c{bottom:238.720105pt;}
.y9d{bottom:239.749265pt;}
.y4c{bottom:249.732185pt;}
.y81{bottom:253.882085pt;}
.y1a{bottom:260.293742pt;}
.y3{bottom:262.291935pt;}
.y3b{bottom:269.968086pt;}
.y5c{bottom:275.425126pt;}
.y19{bottom:286.053738pt;}
.ya5{bottom:288.688126pt;}
.y9c{bottom:297.349266pt;}
.y3a{bottom:301.216087pt;}
.y5b{bottom:309.169117pt;}
.y2{bottom:310.185268pt;}
.y39{bottom:332.464068pt;}
.ya4{bottom:333.488108pt;}
.y5a{bottom:342.913128pt;}
.y18{bottom:354.462864pt;}
.y9b{bottom:354.949268pt;}
.y38{bottom:363.712059pt;}
.y5{bottom:372.129439pt;}
.y1{bottom:372.769429pt;}
.y59{bottom:376.657119pt;}
.ya3{bottom:378.288099pt;}
.y17{bottom:378.750875pt;}
.y37{bottom:394.960040pt;}
.y16{bottom:403.038866pt;}
.y58{bottom:410.401119pt;}
.ya2{bottom:423.088090pt;}
.y36{bottom:426.208031pt;}
.y15{bottom:427.326867pt;}
.y14{bottom:451.614857pt;}
.y76{bottom:453.136601pt;}
.y4{bottom:455.329442pt;}
.y35{bottom:457.456012pt;}
.ya1{bottom:467.888092pt;}
.y13{bottom:475.902858pt;}
.y34{bottom:488.704023pt;}
.yaa{bottom:490.779743pt;}
.y12{bottom:500.190849pt;}
.ya0{bottom:512.688093pt;}
.y75{bottom:516.496597pt;}
.y9a{bottom:516.626463pt;}
.y33{bottom:519.952024pt;}
.y11{bottom:524.478845pt;}
.ya9{bottom:529.179734pt;}
.y10{bottom:548.766841pt;}
.y32{bottom:551.200025pt;}
.y9f{bottom:557.488089pt;}
.ya8{bottom:567.579731pt;}
.yf{bottom:573.054841pt;}
.y99{bottom:574.226461pt;}
.y31{bottom:582.448016pt;}
.y74{bottom:583.733759pt;}
.ye{bottom:597.342842pt;}
.ya7{bottom:605.979736pt;}
.y98{bottom:606.840016pt;}
.y7f{bottom:607.482729pt;}
.y73{bottom:607.653759pt;}
.y30{bottom:613.696011pt;}
.y72{bottom:631.573756pt;}
.ya6{bottom:644.379738pt;}
.y2f{bottom:644.944006pt;}
.y97{bottom:645.480008pt;}
.y71{bottom:655.493755pt;}
.y2e{bottom:676.192002pt;}
.y70{bottom:679.413754pt;}
.y96{bottom:684.120002pt;}
.y6f{bottom:703.333752pt;}
.hc{height:62.156254pt;}
.h4{height:63.112502pt;}
.h5{height:66.937500pt;}
.h6{height:80.325003pt;}
.h10{height:81.281250pt;}
.hb{height:86.062503pt;}
.h8{height:88.931242pt;}
.hf{height:90.843755pt;}
.h7{height:97.537514pt;}
.h11{height:100.406253pt;}
.ha{height:105.187506pt;}
.h9{height:106.143761pt;}
.h2{height:114.750004pt;}
.h12{height:124.160004pt;}
.h13{height:133.875000pt;}
.he{height:206.933335pt;}
.h1{height:213.120007pt;}
.hd{height:227.626679pt;}
.h3{height:248.625018pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x5c{left:9.002625pt;}
.x60{left:16.228347pt;}
.x67{left:56.866144pt;}
.x66{left:97.000113pt;}
.x64{left:115.371661pt;}
.x5a{left:122.524044pt;}
.x68{left:132.658794pt;}
.x4{left:169.000005pt;}
.x65{left:182.404666pt;}
.x5b{left:189.450620pt;}
.x1{left:199.480383pt;}
.x4e{left:294.180944pt;}
.x44{left:296.644689pt;}
.x56{left:298.397345pt;}
.x50{left:299.917609pt;}
.x4d{left:300.827887pt;}
.x45{left:308.197577pt;}
.x58{left:313.154860pt;}
.x55{left:317.274634pt;}
.x52{left:328.872291pt;}
.x46{left:337.747871pt;}
.x4f{left:343.556801pt;}
.x47{left:392.087383pt;}
.x54{left:404.220133pt;}
.x48{left:441.252604pt;}
.x4b{left:442.906931pt;}
.x49{left:446.187174pt;}
.x4c{left:456.755935pt;}
.x4a{left:464.285838pt;}
.x63{left:476.700795pt;}
.x51{left:483.368445pt;}
.x3{left:489.679716pt;}
.x39{left:498.404221pt;}
.x53{left:499.645736pt;}
.x3d{left:500.853348pt;}
.x22{left:503.290238pt;}
.x42{left:504.581131pt;}
.x21{left:505.954300pt;}
.x26{left:506.883988pt;}
.x1f{left:507.979630pt;}
.x3e{left:509.499588pt;}
.x3a{left:510.796586pt;}
.x41{left:512.092240pt;}
.x24{left:513.327744pt;}
.x1d{left:515.735551pt;}
.x3b{left:517.657609pt;}
.x23{left:520.157427pt;}
.x40{left:522.019243pt;}
.x17{left:526.018818pt;}
.x27{left:528.173051pt;}
.x1e{left:530.646867pt;}
.x18{left:534.342305pt;}
.x62{left:539.670857pt;}
.x59{left:542.530217pt;}
.x1b{left:543.668919pt;}
.x19{left:544.869435pt;}
.x16{left:550.969442pt;}
.x28{left:557.571488pt;}
.x2{left:559.078138pt;}
.x6{left:562.587419pt;}
.x7{left:566.036424pt;}
.x9{left:567.007219pt;}
.x8{left:573.381608pt;}
.x5f{left:575.315388pt;}
.xa{left:577.260271pt;}
.xd{left:578.928795pt;}
.x11{left:580.900322pt;}
.xe{left:582.816093pt;}
.x5d{left:585.409419pt;}
.x25{left:589.426624pt;}
.x12{left:594.048637pt;}
.xb{left:595.343739pt;}
.x5{left:597.315203pt;}
.x14{left:599.362219pt;}
.x10{left:605.800439pt;}
.xf{left:607.733574pt;}
.x1a{left:624.268150pt;}
.x57{left:632.413190pt;}
.x3f{left:635.666520pt;}
.x3c{left:656.051871pt;}
.x61{left:669.165361pt;}
.x2a{left:684.681133pt;}
.x29{left:685.633992pt;}
.x35{left:686.715130pt;}
.x2f{left:688.864391pt;}
.x31{left:690.202282pt;}
.x33{left:692.974956pt;}
.x30{left:694.312878pt;}
.x37{left:697.727276pt;}
.x34{left:699.125713pt;}
.x2c{left:704.665143pt;}
.xc{left:707.825903pt;}
.x2e{left:713.170987pt;}
.x2d{left:723.280927pt;}
.x36{left:730.158307pt;}
.x2b{left:732.434643pt;}
.x32{left:733.621045pt;}
.x43{left:745.428214pt;}
.x15{left:759.179964pt;}
.x1c{left:768.661115pt;}
.x20{left:815.531486pt;}
.x13{left:817.535376pt;}
.x5e{left:867.207178pt;}
.x38{left:880.380328pt;}
}




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