
    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_4bcf4f598e078a034adc9f84.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_de0fcfa175b4c8cd22e2aef9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_6bbf5750c35f9828c1d88d7f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_4b583fd1ea3a1e0ec0e6f226.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.952637;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_4d36fcc84189ae4b87f0da64.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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;}
.m1{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,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);}
.v4{vertical-align:-27.000054px;}
.v2{vertical-align:-15.120030px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120030px;}
.v1{vertical-align:29.880060px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.045720px;}
.ls4{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.125280px;}
.ls8{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.173340px;}
.ls6{letter-spacing:36.360073px;}
.ls7{letter-spacing:104.400209px;}
.ls5{letter-spacing:122.400245px;}
.lsa{letter-spacing:1350.002700px;}
.ls0{letter-spacing:1368.002736px;}
.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;}
}
.ws3{word-spacing:-19.023646px;}
.ws1{word-spacing:-18.000036px;}
.ws4{word-spacing:-15.030030px;}
.ws0{word-spacing:-10.530021px;}
.ws5{word-spacing:-9.720019px;}
.ws2{word-spacing:0.000000px;}
._d{margin-left:-13.464871px;}
._8{margin-left:-10.476585px;}
._13{margin-left:-8.226579px;}
._21{margin-left:-3.672007px;}
._0{margin-left:-1.133439px;}
._1{width:1.154709px;}
._17{width:2.285160px;}
._32{width:5.976574px;}
._33{width:7.017378px;}
._30{width:14.544029px;}
._9{width:15.785187px;}
._2f{width:25.741049px;}
._14{width:32.273501px;}
._5{width:39.453828px;}
._f{width:42.750085px;}
._e{width:48.832129px;}
._15{width:52.523543px;}
._3{width:56.250112px;}
._1c{width:59.219518px;}
._18{width:70.558735px;}
._16{width:73.547022px;}
._a{width:75.023586px;}
._1d{width:77.400155px;}
._12{width:81.773600px;}
._22{width:88.416177px;}
._2e{width:94.320189px;}
._23{width:99.144198px;}
._6{width:100.547075px;}
._1f{width:104.184208px;}
._7{width:110.320533px;}
._19{width:122.184244px;}
._c{width:125.297124px;}
._10{width:129.797133px;}
._b{width:141.082313px;}
._31{width:157.170194px;}
._1a{width:161.408292px;}
._11{width:175.605819px;}
._25{width:180.395641px;}
._20{width:183.528367px;}
._2{width:186.408373px;}
._1e{width:191.232382px;}
._1b{width:194.011228px;}
._26{width:196.920394px;}
._4{width:198.000396px;}
._28{width:204.120408px;}
._27{width:209.915700px;}
._29{width:331.488945px;}
._2d{width:362.160724px;}
._2c{width:395.192197px;}
._2a{width:421.039124px;}
._2b{width:423.199128px;}
._24{width:512.316305px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880078px;}
.fs1{font-size:42.120084px;}
.fs3{font-size:60.120120px;}
.fs0{font-size:72.000144px;}
.fs4{font-size:76.094582px;}
.y0{bottom:0.000000px;}
.y1{bottom:58.140116px;}
.y3f{bottom:111.510223px;}
.y1e{bottom:111.960224px;}
.y48{bottom:112.770226px;}
.y3e{bottom:128.700257px;}
.y1d{bottom:128.880258px;}
.y88{bottom:129.420259px;}
.y95{bottom:130.860262px;}
.y47{bottom:133.020266px;}
.y78{bottom:135.630271px;}
.y9f{bottom:142.740285px;}
.y1c{bottom:145.710291px;}
.y96{bottom:145.980292px;}
.y77{bottom:146.790294px;}
.y87{bottom:149.670299px;}
.y3d{bottom:152.730305px;}
.y46{bottom:153.270307px;}
.y9e{bottom:162.990326px;}
.y3c{bottom:163.260327px;}
.y76{bottom:163.710327px;}
.y1b{bottom:166.410333px;}
.y61{bottom:168.840338px;}
.y86{bottom:169.920340px;}
.y94{bottom:171.360343px;}
.y44{bottom:173.520347px;}
.y1a{bottom:179.640359px;}
.y75{bottom:180.540361px;}
.y9d{bottom:182.430365px;}
.y3b{bottom:187.200374px;}
.y60{bottom:189.090378px;}
.y85{bottom:190.170380px;}
.y45{bottom:193.770388px;}
.y74{bottom:197.460395px;}
.y3a{bottom:198.360397px;}
.y5f{bottom:209.340419px;}
.y93{bottom:211.860424px;}
.y43{bottom:214.020428px;}
.y73{bottom:214.290429px;}
.y9c{bottom:220.320441px;}
.y5e{bottom:229.590459px;}
.y84{bottom:230.670461px;}
.y72{bottom:231.210462px;}
.y19{bottom:234.270469px;}
.y9b{bottom:239.940480px;}
.y71{bottom:248.040496px;}
.y5d{bottom:249.210498px;}
.y83{bottom:250.920502px;}
.y92{bottom:252.360505px;}
.y39{bottom:253.620507px;}
.y42{bottom:254.520509px;}
.y70{bottom:268.740537px;}
.y5c{bottom:270.540541px;}
.y82{bottom:271.170542px;}
.y38{bottom:273.870548px;}
.y18{bottom:274.770550px;}
.y9a{bottom:281.520563px;}
.y6f{bottom:281.970564px;}
.y5b{bottom:290.790582px;}
.y81{bottom:291.420583px;}
.y91{bottom:292.860586px;}
.y37{bottom:294.120588px;}
.y41{bottom:295.020590px;}
.y5a{bottom:311.040622px;}
.y80{bottom:311.670623px;}
.y36{bottom:314.370629px;}
.y17{bottom:315.270631px;}
.y99{bottom:322.020644px;}
.y59{bottom:331.290663px;}
.y7f{bottom:331.920664px;}
.y90{bottom:333.360667px;}
.y6e{bottom:334.620669px;}
.y40{bottom:335.520671px;}
.y58{bottom:350.910702px;}
.y7e{bottom:352.170704px;}
.y8f{bottom:353.610707px;}
.y35{bottom:354.870710px;}
.y16{bottom:355.770712px;}
.y98{bottom:362.520725px;}
.y7d{bottom:372.420745px;}
.y8e{bottom:373.860748px;}
.y6d{bottom:375.120750px;}
.y2d{bottom:376.020752px;}
.y57{bottom:392.490785px;}
.y7c{bottom:392.670785px;}
.y34{bottom:395.370791px;}
.y15{bottom:396.270793px;}
.y97{bottom:398.880798px;}
.y8d{bottom:414.360829px;}
.y6c{bottom:415.620831px;}
.y2c{bottom:416.520833px;}
.y56{bottom:432.990866px;}
.y8c{bottom:434.610869px;}
.y33{bottom:435.870872px;}
.y14{bottom:436.770874px;}
.y8b{bottom:454.860910px;}
.y6b{bottom:456.120912px;}
.y2b{bottom:457.020914px;}
.y55{bottom:473.490947px;}
.y7b{bottom:474.390949px;}
.y32{bottom:476.370953px;}
.y13{bottom:477.270955px;}
.y6a{bottom:496.620993px;}
.y2a{bottom:497.520995px;}
.y54{bottom:513.991028px;}
.y7a{bottom:515.791032px;}
.y31{bottom:516.871034px;}
.y12{bottom:517.771036px;}
.y30{bottom:537.121074px;}
.y29{bottom:538.021076px;}
.y53{bottom:554.491109px;}
.y2f{bottom:556.741113px;}
.y79{bottom:557.191114px;}
.y69{bottom:557.371115px;}
.y11{bottom:558.271117px;}
.y2e{bottom:577.441155px;}
.y68{bottom:577.621155px;}
.y28{bottom:578.521157px;}
.y52{bottom:594.991190px;}
.y8a{bottom:597.241194px;}
.y67{bottom:597.871196px;}
.y10{bottom:598.771198px;}
.y89{bottom:617.941236px;}
.y66{bottom:618.121236px;}
.y27{bottom:619.021238px;}
.y51{bottom:635.491271px;}
.y65{bottom:638.371277px;}
.yf{bottom:639.271279px;}
.y64{bottom:658.621317px;}
.y26{bottom:659.521319px;}
.y50{bottom:675.991352px;}
.ye{bottom:679.771360px;}
.y63{bottom:699.121398px;}
.y25{bottom:700.021400px;}
.y4f{bottom:716.491433px;}
.yd{bottom:720.271441px;}
.y62{bottom:739.441479px;}
.y24{bottom:740.521481px;}
.y4e{bottom:756.991514px;}
.yc{bottom:760.771522px;}
.y23{bottom:781.021562px;}
.y4d{bottom:797.491595px;}
.yb{bottom:801.271603px;}
.y4c{bottom:818.551637px;}
.y22{bottom:821.521643px;}
.y4b{bottom:839.521679px;}
.ya{bottom:841.771684px;}
.y4a{bottom:860.581721px;}
.y21{bottom:862.021724px;}
.y49{bottom:881.551763px;}
.y9{bottom:882.271765px;}
.y20{bottom:902.521805px;}
.y8{bottom:922.771846px;}
.y1f{bottom:943.021886px;}
.y7{bottom:963.271927px;}
.y6{bottom:983.521967px;}
.y5{bottom:1003.772008px;}
.y4{bottom:1024.022048px;}
.y3{bottom:1044.272089px;}
.y2{bottom:1064.522129px;}
.h9{height:34.114990px;}
.h5{height:35.195344px;}
.hb{height:50.132913px;}
.h6{height:50.315374px;}
.ha{height:52.751883px;}
.hc{height:54.865481px;}
.h3{height:60.257933px;}
.h1{height:63.175908px;}
.h8{height:65.130951px;}
.h2{height:65.707163px;}
.h4{height:68.318750px;}
.h7{height:69.443737px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:107.999916px;}
.x6{left:137.429975px;}
.x7{left:157.680315px;}
.x8{left:162.000324px;}
.x26{left:179.460359px;}
.x18{left:203.220406px;}
.x27{left:205.740411px;}
.x32{left:217.440435px;}
.x28{left:230.310461px;}
.x33{left:231.480463px;}
.x30{left:235.530471px;}
.x31{left:249.570499px;}
.x19{left:254.970510px;}
.x40{left:259.020518px;}
.x2{left:266.220232px;}
.xd{left:270.450541px;}
.x2b{left:276.840554px;}
.x41{left:279.270559px;}
.x2d{left:280.710561px;}
.xb{left:288.900578px;}
.xe{left:290.700581px;}
.x1c{left:293.760588px;}
.x39{left:297.540595px;}
.xc{left:300.150600px;}
.x36{left:301.230602px;}
.x37{left:305.640611px;}
.x2e{left:309.060618px;}
.x2f{left:312.300625px;}
.x1d{left:318.330637px;}
.x5{left:323.280647px;}
.x2c{left:325.800652px;}
.x3e{left:333.090666px;}
.x9{left:334.260669px;}
.x3c{left:336.060672px;}
.x3f{left:342.630685px;}
.xa{left:345.510691px;}
.x3d{left:350.370701px;}
.x17{left:351.540703px;}
.xf{left:353.160706px;}
.x11{left:356.310713px;}
.x10{left:364.410729px;}
.x38{left:365.670731px;}
.x12{left:367.560735px;}
.x4{left:376.380453px;}
.x29{left:380.610761px;}
.x3a{left:390.240780px;}
.x2a{left:403.920808px;}
.x3b{left:405.270811px;}
.x34{left:408.780818px;}
.x1e{left:410.040820px;}
.x1f{left:430.380861px;}
.x35{left:448.560897px;}
.x3{left:459.000618px;}
.x13{left:486.900974px;}
.x14{left:498.150996px;}
.x15{left:502.831006px;}
.x16{left:518.401037px;}
.x20{left:529.291059px;}
.x21{left:553.501107px;}
.x22{left:648.091296px;}
.x23{left:666.631333px;}
.x1a{left:672.571345px;}
.x1b{left:694.351389px;}
.x24{left:754.561509px;}
.x25{left:794.341589px;}
@media print{
.v4{vertical-align:-24.000048pt;}
.v2{vertical-align:-13.440027pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440027pt;}
.v1{vertical-align:26.560053pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.040640pt;}
.ls4{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.111360pt;}
.ls8{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.154080pt;}
.ls6{letter-spacing:32.320065pt;}
.ls7{letter-spacing:92.800186pt;}
.ls5{letter-spacing:108.800218pt;}
.lsa{letter-spacing:1200.002400pt;}
.ls0{letter-spacing:1216.002432pt;}
.ws3{word-spacing:-16.909907pt;}
.ws1{word-spacing:-16.000032pt;}
.ws4{word-spacing:-13.360027pt;}
.ws0{word-spacing:-9.360019pt;}
.ws5{word-spacing:-8.640017pt;}
.ws2{word-spacing:0.000000pt;}
._d{margin-left:-11.968774pt;}
._8{margin-left:-9.312520pt;}
._13{margin-left:-7.312515pt;}
._21{margin-left:-3.264007pt;}
._0{margin-left:-1.007501pt;}
._1{width:1.026408pt;}
._17{width:2.031253pt;}
._32{width:5.312511pt;}
._33{width:6.237669pt;}
._30{width:12.928026pt;}
._9{width:14.031278pt;}
._2f{width:22.880933pt;}
._14{width:28.687556pt;}
._5{width:35.070069pt;}
._f{width:38.000075pt;}
._e{width:43.406337pt;}
._15{width:46.687593pt;}
._3{width:50.000100pt;}
._1c{width:52.639572pt;}
._18{width:62.718875pt;}
._16{width:65.375130pt;}
._a{width:66.687632pt;}
._1d{width:68.800138pt;}
._12{width:72.687645pt;}
._22{width:78.592157pt;}
._2e{width:83.840168pt;}
._23{width:88.128176pt;}
._6{width:89.375178pt;}
._1f{width:92.608185pt;}
._7{width:98.062696pt;}
._19{width:108.608217pt;}
._c{width:111.375221pt;}
._10{width:115.375229pt;}
._b{width:125.406500pt;}
._31{width:139.706839pt;}
._1a{width:143.474037pt;}
._11{width:156.094061pt;}
._25{width:160.351681pt;}
._20{width:163.136326pt;}
._2{width:165.696331pt;}
._1e{width:169.984340pt;}
._1b{width:172.454425pt;}
._26{width:175.040350pt;}
._4{width:176.000352pt;}
._28{width:181.440363pt;}
._27{width:186.591733pt;}
._29{width:294.656840pt;}
._2d{width:321.920644pt;}
._2c{width:351.281953pt;}
._2a{width:374.256999pt;}
._2b{width:376.177003pt;}
._24{width:455.392271pt;}
.fs2{font-size:34.560069pt;}
.fs1{font-size:37.440075pt;}
.fs3{font-size:53.440107pt;}
.fs0{font-size:64.000128pt;}
.fs4{font-size:67.639629pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.680103pt;}
.y3f{bottom:99.120198pt;}
.y1e{bottom:99.520199pt;}
.y48{bottom:100.240200pt;}
.y3e{bottom:114.400229pt;}
.y1d{bottom:114.560229pt;}
.y88{bottom:115.040230pt;}
.y95{bottom:116.320233pt;}
.y47{bottom:118.240236pt;}
.y78{bottom:120.560241pt;}
.y9f{bottom:126.880254pt;}
.y1c{bottom:129.520259pt;}
.y96{bottom:129.760260pt;}
.y77{bottom:130.480261pt;}
.y87{bottom:133.040266pt;}
.y3d{bottom:135.760272pt;}
.y46{bottom:136.240272pt;}
.y9e{bottom:144.880290pt;}
.y3c{bottom:145.120290pt;}
.y76{bottom:145.520291pt;}
.y1b{bottom:147.920296pt;}
.y61{bottom:150.080300pt;}
.y86{bottom:151.040302pt;}
.y94{bottom:152.320305pt;}
.y44{bottom:154.240308pt;}
.y1a{bottom:159.680319pt;}
.y75{bottom:160.480321pt;}
.y9d{bottom:162.160324pt;}
.y3b{bottom:166.400333pt;}
.y60{bottom:168.080336pt;}
.y85{bottom:169.040338pt;}
.y45{bottom:172.240344pt;}
.y74{bottom:175.520351pt;}
.y3a{bottom:176.320353pt;}
.y5f{bottom:186.080372pt;}
.y93{bottom:188.320377pt;}
.y43{bottom:190.240380pt;}
.y73{bottom:190.480381pt;}
.y9c{bottom:195.840392pt;}
.y5e{bottom:204.080408pt;}
.y84{bottom:205.040410pt;}
.y72{bottom:205.520411pt;}
.y19{bottom:208.240416pt;}
.y9b{bottom:213.280427pt;}
.y71{bottom:220.480441pt;}
.y5d{bottom:221.520443pt;}
.y83{bottom:223.040446pt;}
.y92{bottom:224.320449pt;}
.y39{bottom:225.440451pt;}
.y42{bottom:226.240452pt;}
.y70{bottom:238.880478pt;}
.y5c{bottom:240.480481pt;}
.y82{bottom:241.040482pt;}
.y38{bottom:243.440487pt;}
.y18{bottom:244.240488pt;}
.y9a{bottom:250.240500pt;}
.y6f{bottom:250.640501pt;}
.y5b{bottom:258.480517pt;}
.y81{bottom:259.040518pt;}
.y91{bottom:260.320521pt;}
.y37{bottom:261.440523pt;}
.y41{bottom:262.240524pt;}
.y5a{bottom:276.480553pt;}
.y80{bottom:277.040554pt;}
.y36{bottom:279.440559pt;}
.y17{bottom:280.240560pt;}
.y99{bottom:286.240572pt;}
.y59{bottom:294.480589pt;}
.y7f{bottom:295.040590pt;}
.y90{bottom:296.320593pt;}
.y6e{bottom:297.440595pt;}
.y40{bottom:298.240596pt;}
.y58{bottom:311.920624pt;}
.y7e{bottom:313.040626pt;}
.y8f{bottom:314.320629pt;}
.y35{bottom:315.440631pt;}
.y16{bottom:316.240632pt;}
.y98{bottom:322.240644pt;}
.y7d{bottom:331.040662pt;}
.y8e{bottom:332.320665pt;}
.y6d{bottom:333.440667pt;}
.y2d{bottom:334.240668pt;}
.y57{bottom:348.880698pt;}
.y7c{bottom:349.040698pt;}
.y34{bottom:351.440703pt;}
.y15{bottom:352.240704pt;}
.y97{bottom:354.560709pt;}
.y8d{bottom:368.320737pt;}
.y6c{bottom:369.440739pt;}
.y2c{bottom:370.240740pt;}
.y56{bottom:384.880770pt;}
.y8c{bottom:386.320773pt;}
.y33{bottom:387.440775pt;}
.y14{bottom:388.240776pt;}
.y8b{bottom:404.320809pt;}
.y6b{bottom:405.440811pt;}
.y2b{bottom:406.240812pt;}
.y55{bottom:420.880842pt;}
.y7b{bottom:421.680843pt;}
.y32{bottom:423.440847pt;}
.y13{bottom:424.240848pt;}
.y6a{bottom:441.440883pt;}
.y2a{bottom:442.240884pt;}
.y54{bottom:456.880914pt;}
.y7a{bottom:458.480917pt;}
.y31{bottom:459.440919pt;}
.y12{bottom:460.240920pt;}
.y30{bottom:477.440955pt;}
.y29{bottom:478.240956pt;}
.y53{bottom:492.880986pt;}
.y2f{bottom:494.880990pt;}
.y79{bottom:495.280991pt;}
.y69{bottom:495.440991pt;}
.y11{bottom:496.240992pt;}
.y2e{bottom:513.281027pt;}
.y68{bottom:513.441027pt;}
.y28{bottom:514.241028pt;}
.y52{bottom:528.881058pt;}
.y8a{bottom:530.881062pt;}
.y67{bottom:531.441063pt;}
.y10{bottom:532.241064pt;}
.y89{bottom:549.281099pt;}
.y66{bottom:549.441099pt;}
.y27{bottom:550.241100pt;}
.y51{bottom:564.881130pt;}
.y65{bottom:567.441135pt;}
.yf{bottom:568.241136pt;}
.y64{bottom:585.441171pt;}
.y26{bottom:586.241172pt;}
.y50{bottom:600.881202pt;}
.ye{bottom:604.241208pt;}
.y63{bottom:621.441243pt;}
.y25{bottom:622.241244pt;}
.y4f{bottom:636.881274pt;}
.yd{bottom:640.241280pt;}
.y62{bottom:657.281315pt;}
.y24{bottom:658.241316pt;}
.y4e{bottom:672.881346pt;}
.yc{bottom:676.241352pt;}
.y23{bottom:694.241388pt;}
.y4d{bottom:708.881418pt;}
.yb{bottom:712.241424pt;}
.y4c{bottom:727.601455pt;}
.y22{bottom:730.241460pt;}
.y4b{bottom:746.241492pt;}
.ya{bottom:748.241496pt;}
.y4a{bottom:764.961530pt;}
.y21{bottom:766.241532pt;}
.y49{bottom:783.601567pt;}
.y9{bottom:784.241568pt;}
.y20{bottom:802.241604pt;}
.y8{bottom:820.241640pt;}
.y1f{bottom:838.241676pt;}
.y7{bottom:856.241712pt;}
.y6{bottom:874.241748pt;}
.y5{bottom:892.241784pt;}
.y4{bottom:910.241820pt;}
.y3{bottom:928.241856pt;}
.y2{bottom:946.241892pt;}
.h9{height:30.324436pt;}
.h5{height:31.284750pt;}
.hb{height:44.562589pt;}
.h6{height:44.724777pt;}
.ha{height:46.890563pt;}
.hc{height:48.769316pt;}
.h3{height:53.562607pt;}
.h1{height:56.156362pt;}
.h8{height:57.894178pt;}
.h2{height:58.406367pt;}
.h4{height:60.727778pt;}
.h7{height:61.727767pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:95.999925pt;}
.x6{left:122.159978pt;}
.x7{left:140.160280pt;}
.x8{left:144.000288pt;}
.x26{left:159.520319pt;}
.x18{left:180.640361pt;}
.x27{left:182.880366pt;}
.x32{left:193.280387pt;}
.x28{left:204.720409pt;}
.x33{left:205.760412pt;}
.x30{left:209.360419pt;}
.x31{left:221.840444pt;}
.x19{left:226.640453pt;}
.x40{left:230.240460pt;}
.x2{left:236.640207pt;}
.xd{left:240.400481pt;}
.x2b{left:246.080492pt;}
.x41{left:248.240496pt;}
.x2d{left:249.520499pt;}
.xb{left:256.800514pt;}
.xe{left:258.400517pt;}
.x1c{left:261.120522pt;}
.x39{left:264.480529pt;}
.xc{left:266.800534pt;}
.x36{left:267.760536pt;}
.x37{left:271.680543pt;}
.x2e{left:274.720549pt;}
.x2f{left:277.600555pt;}
.x1d{left:282.960566pt;}
.x5{left:287.360575pt;}
.x2c{left:289.600579pt;}
.x3e{left:296.080592pt;}
.x9{left:297.120594pt;}
.x3c{left:298.720597pt;}
.x3f{left:304.560609pt;}
.xa{left:307.120614pt;}
.x3d{left:311.440623pt;}
.x17{left:312.480625pt;}
.xf{left:313.920628pt;}
.x11{left:316.720633pt;}
.x10{left:323.920648pt;}
.x38{left:325.040650pt;}
.x12{left:326.720653pt;}
.x4{left:334.560402pt;}
.x29{left:338.320677pt;}
.x3a{left:346.880694pt;}
.x2a{left:359.040718pt;}
.x3b{left:360.240720pt;}
.x34{left:363.360727pt;}
.x1e{left:364.480729pt;}
.x1f{left:382.560765pt;}
.x35{left:398.720797pt;}
.x3{left:408.000549pt;}
.x13{left:432.800866pt;}
.x14{left:442.800886pt;}
.x15{left:446.960894pt;}
.x16{left:460.800922pt;}
.x20{left:470.480941pt;}
.x21{left:492.000984pt;}
.x22{left:576.081152pt;}
.x23{left:592.561185pt;}
.x1a{left:597.841196pt;}
.x1b{left:617.201234pt;}
.x24{left:670.721341pt;}
.x25{left:706.081412pt;}
}




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