
    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_5138d9111940913e11ff2842.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.165039;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_4d0684abbefb79eab0af6dd4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.157227;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_0fb37eb84195daed69a84d85.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989258;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);}
.v2{vertical-align:-15.359994px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.200952px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.001200px;}
.ls1{letter-spacing:0.006000px;}
.ls4{letter-spacing:0.009000px;}
.ls6{letter-spacing:0.010200px;}
.ls0{letter-spacing:0.012000px;}
.ls2{letter-spacing:32.484467px;}
.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;}
}
.wsa{word-spacing:-17.039993px;}
.ws5{word-spacing:-14.483994px;}
.ws1{word-spacing:-13.922994px;}
.ws14{word-spacing:-12.779995px;}
.ws4{word-spacing:-10.862996px;}
.ws16{word-spacing:-0.294600px;}
.ws0{word-spacing:-0.008160px;}
.ws2{word-spacing:-0.003600px;}
.ws10{word-spacing:0.000000px;}
.ws3{word-spacing:0.011628px;}
.ws8{word-spacing:0.720000px;}
.wsc{word-spacing:4.277998px;}
.wsf{word-spacing:4.283424px;}
.ws17{word-spacing:5.854498px;}
.ws18{word-spacing:5.889550px;}
.ws13{word-spacing:5.972998px;}
.wsd{word-spacing:5.981107px;}
.wse{word-spacing:5.981998px;}
.ws12{word-spacing:6.161330px;}
.wsb{word-spacing:9.326680px;}
.ws9{word-spacing:9.366301px;}
.ws7{word-spacing:9.936849px;}
.ws6{word-spacing:9.940521px;}
.ws15{word-spacing:21.335417px;}
.ws11{word-spacing:59.808576px;}
._19{margin-left:-8.384815px;}
._d{margin-left:-7.036363px;}
._2{margin-left:-5.369176px;}
._c{margin-left:-4.208789px;}
._1{margin-left:-2.564075px;}
._5{margin-left:-1.483768px;}
._4{width:1.121924px;}
._6{width:2.610088px;}
._a{width:4.385779px;}
._8{width:5.635511px;}
._12{width:6.700818px;}
._7{width:7.777599px;}
._10{width:8.854756px;}
._e{width:9.939795px;}
._9{width:11.576077px;}
._3{width:12.808370px;}
._17{width:14.621887px;}
._0{width:15.666121px;}
._b{width:16.768895px;}
._f{width:18.173775px;}
._14{width:19.663890px;}
._1a{width:21.039169px;}
._11{width:22.173054px;}
._13{width:23.312415px;}
._18{width:24.342651px;}
._16{width:45.828642px;}
._15{width:51.708579px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:32.639987px;}
.fs1{font-size:38.249985px;}
.fs6{font-size:40.799984px;}
.fs5{font-size:44.999982px;}
.fs2{font-size:47.999981px;}
.fs0{font-size:50.999980px;}
.fs4{font-size:59.999976px;}
.fs3{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y2b{bottom:24.089316px;}
.y2a{bottom:42.929309px;}
.y29{bottom:54.089304px;}
.y28{bottom:72.929297px;}
.y27{bottom:84.089292px;}
.y26{bottom:102.929285px;}
.y1e{bottom:150.112066px;}
.y1d{bottom:171.861757px;}
.y1{bottom:185.043600px;}
.y1c{bottom:187.161751px;}
.y1b{bottom:202.461745px;}
.ycb{bottom:209.311416px;}
.y7a{bottom:210.187416px;}
.ya4{bottom:210.423666px;}
.y56{bottom:210.433116px;}
.y1a{bottom:217.761739px;}
.yca{bottom:225.201960px;}
.y79{bottom:228.607109px;}
.ya3{bottom:228.843358px;}
.y55{bottom:228.852808px;}
.y19{bottom:233.061733px;}
.yc9{bottom:241.091004px;}
.y78{bottom:247.026801px;}
.ya2{bottom:247.263051px;}
.y54{bottom:247.272501px;}
.y18{bottom:248.361727px;}
.yc8{bottom:263.360295px;}
.y17{bottom:263.661721px;}
.y77{bottom:265.446494px;}
.ya1{bottom:265.682744px;}
.y53{bottom:265.692194px;}
.y16{bottom:278.961714px;}
.yc7{bottom:279.250838px;}
.y76{bottom:283.866186px;}
.ya0{bottom:284.102436px;}
.y52{bottom:284.111886px;}
.y15{bottom:294.261708px;}
.yc6{bottom:295.141382px;}
.y9f{bottom:302.522129px;}
.y51{bottom:302.531579px;}
.y14{bottom:309.561702px;}
.yc5{bottom:311.031926px;}
.y75{bottom:320.706472px;}
.y9e{bottom:320.941822px;}
.y50{bottom:320.951272px;}
.y13{bottom:324.861696px;}
.yc4{bottom:326.923369px;}
.y9d{bottom:339.361514px;}
.y4f{bottom:339.370964px;}
.y12{bottom:340.161690px;}
.yc3{bottom:349.190560px;}
.y11{bottom:355.461684px;}
.y9c{bottom:357.781207px;}
.y4e{bottom:357.790657px;}
.yc2{bottom:365.081760px;}
.y74{bottom:366.126154px;}
.y10{bottom:370.761678px;}
.y9b{bottom:376.200900px;}
.y4d{bottom:376.210350px;}
.y73{bottom:384.545846px;}
.yf{bottom:386.061672px;}
.yc1{bottom:387.349045px;}
.y9a{bottom:394.620592px;}
.y4c{bottom:394.628692px;}
.ye{bottom:401.361665px;}
.y72{bottom:402.965539px;}
.yc0{bottom:403.240189px;}
.y99{bottom:413.041035px;}
.y4b{bottom:413.048385px;}
.yd{bottom:416.661659px;}
.y71{bottom:421.385981px;}
.ybf{bottom:425.508880px;}
.y98{bottom:431.460727px;}
.y4a{bottom:431.468077px;}
.yc{bottom:431.961353px;}
.y70{bottom:439.805674px;}
.ybe{bottom:441.400623px;}
.y97{bottom:449.880420px;}
.y49{bottom:449.887770px;}
.y6f{bottom:458.225367px;}
.yb{bottom:462.561341px;}
.y96{bottom:468.300113px;}
.y48{bottom:468.307463px;}
.y6e{bottom:476.647909px;}
.ya{bottom:483.863132px;}
.ybd{bottom:484.432606px;}
.y95{bottom:486.719805px;}
.y47{bottom:486.727155px;}
.y6d{bottom:495.067602px;}
.y9{bottom:499.163126px;}
.y94{bottom:505.138148px;}
.y46{bottom:505.146848px;}
.y6c{bottom:513.487295px;}
.y8{bottom:514.463120px;}
.y93{bottom:523.559941px;}
.y45{bottom:523.566541px;}
.y7{bottom:529.763114px;}
.y6b{bottom:531.906987px;}
.ybc{bottom:539.693934px;}
.y92{bottom:541.980383px;}
.y44{bottom:541.986233px;}
.y6{bottom:545.063108px;}
.y6a{bottom:550.326680px;}
.ybb{bottom:555.583128px;}
.y5{bottom:560.363102px;}
.y91{bottom:560.400826px;}
.y43{bottom:560.405926px;}
.y69{bottom:568.746373px;}
.yba{bottom:571.473671px;}
.y4{bottom:575.663096px;}
.y90{bottom:578.821268px;}
.y42{bottom:578.825618px;}
.y68{bottom:587.166065px;}
.yb9{bottom:587.364215px;}
.y3{bottom:590.963090px;}
.y8f{bottom:597.239611px;}
.y41{bottom:597.246061px;}
.yb8{bottom:603.254159px;}
.y67{bottom:605.587858px;}
.y2{bottom:606.263083px;}
.y8e{bottom:615.660054px;}
.y40{bottom:615.667854px;}
.yb7{bottom:619.144702px;}
.y66{bottom:624.007550px;}
.y8d{bottom:634.080496px;}
.y3f{bottom:634.087546px;}
.yb6{bottom:635.035246px;}
.y65{bottom:642.427243px;}
.yb5{bottom:650.925790px;}
.y8c{bottom:652.500939px;}
.y3e{bottom:652.507239px;}
.y64{bottom:660.846936px;}
.yb4{bottom:666.816333px;}
.y8b{bottom:670.921382px;}
.y3d{bottom:670.926932px;}
.y25{bottom:677.337555px;}
.y63{bottom:679.266628px;}
.yb3{bottom:682.706877px;}
.y8a{bottom:689.341824px;}
.y3c{bottom:689.346624px;}
.y24{bottom:695.759048px;}
.y62{bottom:697.687071px;}
.yb2{bottom:698.598171px;}
.y89{bottom:707.762267px;}
.y3b{bottom:707.767067px;}
.y23{bottom:714.179040px;}
.y61{bottom:716.106764px;}
.y88{bottom:726.181960px;}
.y3a{bottom:726.186760px;}
.yb1{bottom:730.378658px;}
.y60{bottom:734.526456px;}
.y87{bottom:744.601652px;}
.y39{bottom:744.606452px;}
.y5f{bottom:752.946899px;}
.y22{bottom:758.099023px;}
.y86{bottom:763.022095px;}
.y38{bottom:763.026145px;}
.y5e{bottom:771.366591px;}
.y85{bottom:781.442537px;}
.y37{bottom:781.445837px;}
.y21{bottom:782.099013px;}
.yb0{bottom:784.799836px;}
.y84{bottom:799.862980px;}
.y36{bottom:799.865530px;}
.yaf{bottom:802.941129px;}
.y20{bottom:806.099004px;}
.y5d{bottom:808.206877px;}
.y83{bottom:818.283423px;}
.y35{bottom:818.285973px;}
.yae{bottom:821.080322px;}
.y82{bottom:836.703115px;}
.y34{bottom:836.707465px;}
.yad{bottom:839.221614px;}
.y81{bottom:855.122808px;}
.y5c{bottom:855.126408px;}
.y33{bottom:855.127158px;}
.yac{bottom:857.362307px;}
.y1f{bottom:860.098982px;}
.y80{bottom:873.543251px;}
.y32{bottom:873.546851px;}
.yab{bottom:875.502250px;}
.y7f{bottom:891.963693px;}
.y31{bottom:891.966543px;}
.yaa{bottom:893.643543px;}
.y7e{bottom:910.384136px;}
.y30{bottom:910.386236px;}
.ya9{bottom:911.784835px;}
.y7d{bottom:928.804578px;}
.y2f{bottom:928.805928px;}
.y5b{bottom:928.806828px;}
.ya8{bottom:929.924028px;}
.y7c{bottom:947.225021px;}
.y2e{bottom:947.225621px;}
.y5a{bottom:947.226521px;}
.ya7{bottom:948.064571px;}
.y2d{bottom:965.645314px;}
.y7b{bottom:965.645464px;}
.y59{bottom:965.646214px;}
.ya6{bottom:966.205114px;}
.y58{bottom:984.065906px;}
.ya5{bottom:984.344306px;}
.y2c{bottom:1002.485599px;}
.y57{bottom:1042.253583px;}
.h8{height:30.329050px;}
.h4{height:44.601545px;}
.h3{height:47.389141px;}
.hf{height:47.389516px;}
.hd{height:47.389741px;}
.h10{height:47.392741px;}
.he{height:47.394766px;}
.h2{height:47.737774px;}
.h9{height:55.751931px;}
.ha{height:56.162087px;}
.h7{height:57.109445px;}
.h6{height:57.112265px;}
.h5{height:67.394504px;}
.h1{height:892.913400px;}
.h0{height:1263.000000px;}
.hc{height:1325.250000px;}
.hb{height:1325.519985px;}
.w2{width:595.274220px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w3{width:893.160000px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:21.259852px;}
.x8{left:51.023140px;}
.x5{left:63.401135px;}
.x3{left:80.786728px;}
.x2{left:110.550616px;}
.x1{left:148.611780px;}
.x6{left:156.849898px;}
.xa{left:169.871932px;}
.xb{left:199.635220px;}
.x4{left:353.286519px;}
.x7{left:408.187997px;}
.xc{left:433.471327px;}
@media print{
.v2{vertical-align:-13.653328pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.067513pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.001067pt;}
.ls1{letter-spacing:0.005333pt;}
.ls4{letter-spacing:0.008000pt;}
.ls6{letter-spacing:0.009067pt;}
.ls0{letter-spacing:0.010667pt;}
.ls2{letter-spacing:28.875082pt;}
.wsa{word-spacing:-15.146661pt;}
.ws5{word-spacing:-12.874662pt;}
.ws1{word-spacing:-12.375995pt;}
.ws14{word-spacing:-11.359995pt;}
.ws4{word-spacing:-9.655996pt;}
.ws16{word-spacing:-0.261867pt;}
.ws0{word-spacing:-0.007253pt;}
.ws2{word-spacing:-0.003200pt;}
.ws10{word-spacing:0.000000pt;}
.ws3{word-spacing:0.010336pt;}
.ws8{word-spacing:0.640000pt;}
.wsc{word-spacing:3.802665pt;}
.wsf{word-spacing:3.807488pt;}
.ws17{word-spacing:5.203998pt;}
.ws18{word-spacing:5.235155pt;}
.ws13{word-spacing:5.309331pt;}
.wsd{word-spacing:5.316540pt;}
.wse{word-spacing:5.317331pt;}
.ws12{word-spacing:5.476737pt;}
.wsb{word-spacing:8.290382pt;}
.ws9{word-spacing:8.325601pt;}
.ws7{word-spacing:8.832754pt;}
.ws6{word-spacing:8.836018pt;}
.ws15{word-spacing:18.964815pt;}
.ws11{word-spacing:53.163179pt;}
._19{margin-left:-7.453169pt;}
._d{margin-left:-6.254545pt;}
._2{margin-left:-4.772601pt;}
._c{margin-left:-3.741146pt;}
._1{margin-left:-2.279178pt;}
._5{margin-left:-1.318905pt;}
._4{width:0.997266pt;}
._6{width:2.320079pt;}
._a{width:3.898470pt;}
._8{width:5.009343pt;}
._12{width:5.956283pt;}
._7{width:6.913421pt;}
._10{width:7.870894pt;}
._e{width:8.835373pt;}
._9{width:10.289847pt;}
._3{width:11.385218pt;}
._17{width:12.997233pt;}
._0{width:13.925441pt;}
._b{width:14.905685pt;}
._f{width:16.154467pt;}
._14{width:17.479013pt;}
._1a{width:18.701483pt;}
._11{width:19.709381pt;}
._13{width:20.722146pt;}
._18{width:21.637912pt;}
._16{width:40.736570pt;}
._15{width:45.963182pt;}
.fs7{font-size:29.013322pt;}
.fs1{font-size:33.999986pt;}
.fs6{font-size:36.266652pt;}
.fs5{font-size:39.999984pt;}
.fs2{font-size:42.666650pt;}
.fs0{font-size:45.333315pt;}
.fs4{font-size:53.333312pt;}
.fs3{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:21.412726pt;}
.y2a{bottom:38.159386pt;}
.y29{bottom:48.079382pt;}
.y28{bottom:64.826042pt;}
.y27{bottom:74.746038pt;}
.y26{bottom:91.492698pt;}
.y1e{bottom:133.432948pt;}
.y1d{bottom:152.766006pt;}
.y1{bottom:164.483200pt;}
.y1c{bottom:166.366001pt;}
.y1b{bottom:179.965996pt;}
.ycb{bottom:186.054592pt;}
.y7a{bottom:186.833259pt;}
.ya4{bottom:187.043259pt;}
.y56{bottom:187.051659pt;}
.y1a{bottom:193.565990pt;}
.yca{bottom:200.179520pt;}
.y79{bottom:203.206319pt;}
.ya3{bottom:203.416319pt;}
.y55{bottom:203.424719pt;}
.y19{bottom:207.165985pt;}
.yc9{bottom:214.303114pt;}
.y78{bottom:219.579379pt;}
.ya2{bottom:219.789379pt;}
.y54{bottom:219.797779pt;}
.y18{bottom:220.765979pt;}
.yc8{bottom:234.098040pt;}
.y17{bottom:234.365974pt;}
.y77{bottom:235.952439pt;}
.ya1{bottom:236.162439pt;}
.y53{bottom:236.170839pt;}
.y16{bottom:247.965968pt;}
.yc7{bottom:248.222967pt;}
.y76{bottom:252.325499pt;}
.ya0{bottom:252.535499pt;}
.y52{bottom:252.543899pt;}
.y15{bottom:261.565963pt;}
.yc6{bottom:262.347895pt;}
.y9f{bottom:268.908559pt;}
.y51{bottom:268.916959pt;}
.y14{bottom:275.165957pt;}
.yc5{bottom:276.472823pt;}
.y75{bottom:285.072419pt;}
.y9e{bottom:285.281619pt;}
.y50{bottom:285.290019pt;}
.y13{bottom:288.765952pt;}
.yc4{bottom:290.598550pt;}
.y9d{bottom:301.654679pt;}
.y4f{bottom:301.663079pt;}
.y12{bottom:302.365947pt;}
.yc3{bottom:310.391609pt;}
.y11{bottom:315.965941pt;}
.y9c{bottom:318.027739pt;}
.y4e{bottom:318.036139pt;}
.yc2{bottom:324.517120pt;}
.y74{bottom:325.445470pt;}
.y10{bottom:329.565936pt;}
.y9b{bottom:334.400800pt;}
.y4d{bottom:334.409200pt;}
.y73{bottom:341.818530pt;}
.yf{bottom:343.165930pt;}
.yc1{bottom:344.310262pt;}
.y9a{bottom:350.773860pt;}
.y4c{bottom:350.781060pt;}
.ye{bottom:356.765925pt;}
.y72{bottom:358.191590pt;}
.yc0{bottom:358.435723pt;}
.y99{bottom:367.147586pt;}
.y4b{bottom:367.154120pt;}
.yd{bottom:370.365919pt;}
.y71{bottom:374.565317pt;}
.ybf{bottom:378.230115pt;}
.y98{bottom:383.520647pt;}
.y4a{bottom:383.527180pt;}
.yc{bottom:383.965647pt;}
.y70{bottom:390.938377pt;}
.ybe{bottom:392.356110pt;}
.y97{bottom:399.893707pt;}
.y49{bottom:399.900240pt;}
.y6f{bottom:407.311437pt;}
.yb{bottom:411.165636pt;}
.y96{bottom:416.266767pt;}
.y48{bottom:416.273300pt;}
.y6e{bottom:423.687031pt;}
.ya{bottom:430.100562pt;}
.ybd{bottom:430.606761pt;}
.y95{bottom:432.639827pt;}
.y47{bottom:432.646360pt;}
.y6d{bottom:440.060091pt;}
.y9{bottom:443.700557pt;}
.y94{bottom:449.011687pt;}
.y46{bottom:449.019420pt;}
.y6c{bottom:456.433151pt;}
.y8{bottom:457.300551pt;}
.y93{bottom:465.386614pt;}
.y45{bottom:465.392481pt;}
.y7{bottom:470.900546pt;}
.y6b{bottom:472.806211pt;}
.ybc{bottom:479.727941pt;}
.y92{bottom:481.760341pt;}
.y44{bottom:481.765541pt;}
.y6{bottom:484.500540pt;}
.y6a{bottom:489.179271pt;}
.ybb{bottom:493.851669pt;}
.y5{bottom:498.100535pt;}
.y91{bottom:498.134067pt;}
.y43{bottom:498.138601pt;}
.y69{bottom:505.552331pt;}
.yba{bottom:507.976597pt;}
.y4{bottom:511.700530pt;}
.y90{bottom:514.507794pt;}
.y42{bottom:514.511661pt;}
.y68{bottom:521.925391pt;}
.yb9{bottom:522.101524pt;}
.y3{bottom:525.300524pt;}
.y8f{bottom:530.879654pt;}
.y41{bottom:530.885388pt;}
.yb8{bottom:536.225919pt;}
.y67{bottom:538.300318pt;}
.y2{bottom:538.900519pt;}
.y8e{bottom:547.253381pt;}
.y40{bottom:547.260314pt;}
.yb7{bottom:550.350847pt;}
.y66{bottom:554.673378pt;}
.y8d{bottom:563.627108pt;}
.y3f{bottom:563.633375pt;}
.yb6{bottom:564.475774pt;}
.y65{bottom:571.046438pt;}
.yb5{bottom:578.600702pt;}
.y8c{bottom:580.000835pt;}
.y3e{bottom:580.006435pt;}
.y64{bottom:587.419498pt;}
.yb4{bottom:592.725630pt;}
.y8b{bottom:596.374561pt;}
.y3d{bottom:596.379495pt;}
.y25{bottom:602.077827pt;}
.y63{bottom:603.792558pt;}
.yb3{bottom:606.850557pt;}
.y8a{bottom:612.748288pt;}
.y3c{bottom:612.752555pt;}
.y24{bottom:618.452487pt;}
.y62{bottom:620.166285pt;}
.yb2{bottom:620.976152pt;}
.y89{bottom:629.122015pt;}
.y3b{bottom:629.126282pt;}
.y23{bottom:634.825814pt;}
.y61{bottom:636.539345pt;}
.y88{bottom:645.495075pt;}
.y3a{bottom:645.499342pt;}
.yb1{bottom:649.225474pt;}
.y60{bottom:652.912406pt;}
.y87{bottom:661.868135pt;}
.y39{bottom:661.872402pt;}
.y5f{bottom:669.286132pt;}
.y22{bottom:673.865798pt;}
.y86{bottom:678.241862pt;}
.y38{bottom:678.245462pt;}
.y5e{bottom:685.659192pt;}
.y85{bottom:694.615589pt;}
.y37{bottom:694.618522pt;}
.y21{bottom:695.199123pt;}
.yb0{bottom:697.599854pt;}
.y84{bottom:710.989316pt;}
.y36{bottom:710.991582pt;}
.yaf{bottom:713.725448pt;}
.y20{bottom:716.532448pt;}
.y5d{bottom:718.406113pt;}
.y83{bottom:727.363042pt;}
.y35{bottom:727.365309pt;}
.yae{bottom:729.849175pt;}
.y82{bottom:743.736103pt;}
.y34{bottom:743.739969pt;}
.yad{bottom:745.974768pt;}
.y81{bottom:760.109163pt;}
.y5c{bottom:760.112363pt;}
.y33{bottom:760.113029pt;}
.yac{bottom:762.099828pt;}
.y1f{bottom:764.532428pt;}
.y80{bottom:776.482889pt;}
.y32{bottom:776.486089pt;}
.yab{bottom:778.224222pt;}
.y7f{bottom:792.856616pt;}
.y31{bottom:792.859150pt;}
.yaa{bottom:794.349816pt;}
.y7e{bottom:809.230343pt;}
.y30{bottom:809.232210pt;}
.ya9{bottom:810.475409pt;}
.y7d{bottom:825.604070pt;}
.y2f{bottom:825.605270pt;}
.y5b{bottom:825.606070pt;}
.ya8{bottom:826.599136pt;}
.y7c{bottom:841.977797pt;}
.y2e{bottom:841.978330pt;}
.y5a{bottom:841.979130pt;}
.ya7{bottom:842.724063pt;}
.y2d{bottom:858.351390pt;}
.y7b{bottom:858.351523pt;}
.y59{bottom:858.352190pt;}
.ya6{bottom:858.848990pt;}
.y58{bottom:874.725250pt;}
.ya5{bottom:874.972717pt;}
.y2c{bottom:891.098310pt;}
.y57{bottom:926.447629pt;}
.h8{height:26.959156pt;}
.h4{height:39.645817pt;}
.h3{height:42.123681pt;}
.hf{height:42.124014pt;}
.hd{height:42.124214pt;}
.h10{height:42.126881pt;}
.he{height:42.128681pt;}
.h2{height:42.433577pt;}
.h9{height:49.557272pt;}
.ha{height:49.921855pt;}
.h7{height:50.763951pt;}
.h6{height:50.766458pt;}
.h5{height:59.906226pt;}
.h1{height:793.700800pt;}
.h0{height:1122.666667pt;}
.hc{height:1178.000000pt;}
.hb{height:1178.239987pt;}
.w2{width:529.132640pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w3{width:793.920000pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:18.897646pt;}
.x8{left:45.353902pt;}
.x5{left:56.356565pt;}
.x3{left:71.810425pt;}
.x2{left:98.267215pt;}
.x1{left:132.099360pt;}
.x6{left:139.422131pt;}
.xa{left:150.997273pt;}
.xb{left:177.453529pt;}
.x4{left:314.032462pt;}
.x7{left:362.833775pt;}
.xc{left:385.307846pt;}
}




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