
    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_a43953dc25d1be23e3bf62a5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_d6d4d072754721784837e5a9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.170898;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;}
.v1{vertical-align:28.808036px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.193554px;}
.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:-23.744124px;}
.ws0{word-spacing:-18.602789px;}
.ws8{word-spacing:-14.291487px;}
.ws3{word-spacing:-14.173554px;}
.ws7{word-spacing:-13.953893px;}
.ws6{word-spacing:-12.603516px;}
.ws9{word-spacing:-12.401860px;}
.ws2{word-spacing:-12.265922px;}
.wsa{word-spacing:-12.153390px;}
.wsd{word-spacing:-11.928328px;}
.wsc{word-spacing:-11.365671px;}
.wsb{word-spacing:-11.253139px;}
.ws5{word-spacing:-10.630165px;}
.wse{word-spacing:-10.465419px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-2651.684766px;}
._2{margin-left:-1206.669164px;}
._36{margin-left:-1048.716051px;}
._22{margin-left:-1026.072934px;}
._30{margin-left:-947.023683px;}
._c{margin-left:-793.605585px;}
._9{margin-left:-787.079664px;}
._b{margin-left:-769.493259px;}
._31{margin-left:-755.247685px;}
._1c{margin-left:-729.493300px;}
._4f{margin-left:-714.124213px;}
._11{margin-left:-712.957487px;}
._32{margin-left:-695.613699px;}
._4e{margin-left:-690.380089px;}
._f{margin-left:-686.690410px;}
._20{margin-left:-679.309701px;}
._d{margin-left:-648.383824px;}
._10{margin-left:-626.874123px;}
._8{margin-left:-586.376326px;}
._2b{margin-left:-571.869679px;}
._1b{margin-left:-555.333866px;}
._46{margin-left:-551.027065px;}
._1e{margin-left:-546.518607px;}
._33{margin-left:-531.653661px;}
._4d{margin-left:-524.171223px;}
._27{margin-left:-522.204625px;}
._1f{margin-left:-515.060232px;}
._3b{margin-left:-505.733630px;}
._48{margin-left:-461.836934px;}
._24{margin-left:-457.919042px;}
._21{margin-left:-441.446696px;}
._4b{margin-left:-426.460666px;}
._4c{margin-left:-409.060612px;}
._39{margin-left:-404.840235px;}
._2f{margin-left:-395.823319px;}
._25{margin-left:-383.118975px;}
._2a{margin-left:-378.019953px;}
._1d{margin-left:-373.917058px;}
._34{margin-left:-363.198218px;}
._29{margin-left:-347.742256px;}
._14{margin-left:-334.218234px;}
._23{margin-left:-324.234899px;}
._28{margin-left:-318.919816px;}
._3{margin-left:-306.725464px;}
._37{margin-left:-305.408847px;}
._26{margin-left:-299.820088px;}
._49{margin-left:-293.683976px;}
._1a{margin-left:-290.702345px;}
._3d{margin-left:-272.538878px;}
._2d{margin-left:-267.065351px;}
._4{margin-left:-246.150716px;}
._2e{margin-left:-242.564116px;}
._35{margin-left:-239.841756px;}
._6{margin-left:-237.551518px;}
._2c{margin-left:-231.242558px;}
._17{margin-left:-213.266343px;}
._19{margin-left:-182.196876px;}
._18{margin-left:-160.172682px;}
._16{margin-left:-110.176335px;}
._12{margin-left:-35.579275px;}
._15{margin-left:-21.678047px;}
._0{width:1.023135px;}
._5{width:2.318597px;}
._7{width:3.715787px;}
._4a{width:5.199400px;}
._e{width:6.999002px;}
._13{width:11.307154px;}
._47{width:12.545450px;}
._a{width:14.216316px;}
._3c{width:74.028101px;}
._3a{width:77.694374px;}
._38{width:79.898639px;}
._44{width:135.066028px;}
._42{width:163.146662px;}
._3e{width:221.742658px;}
._41{width:276.377098px;}
._3f{width:325.372366px;}
._43{width:353.453000px;}
._45{width:450.680122px;}
._40{width:478.760756px;}
.fc2{color:rgb(36,41,46);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(43,43,43);}
.fs2{font-size:43.212054px;}
.fs4{font-size:50.414064px;}
.fs3{font-size:57.616073px;}
.fs1{font-size:75.621095px;}
.fs0{font-size:100.828127px;}
.y0{bottom:0.000000px;}
.y47{bottom:15.304262px;}
.y66{bottom:15.304266px;}
.y6f{bottom:15.304267px;}
.y2c{bottom:15.304269px;}
.y35{bottom:31.508783px;}
.y46{bottom:33.309285px;}
.y65{bottom:33.309288px;}
.y2b{bottom:33.309292px;}
.y61{bottom:37.810534px;}
.y1{bottom:42.721522px;}
.y2a{bottom:51.314315px;}
.y34{bottom:69.319330px;}
.y29{bottom:69.319337px;}
.y60{bottom:73.820579px;}
.y8a{bottom:81.022593px;}
.y33{bottom:82.823097px;}
.y5f{bottom:87.324346px;}
.y45{bottom:87.324353px;}
.y28{bottom:87.324360px;}
.y89{bottom:96.326862px;}
.y32{bottom:96.326865px;}
.y5e{bottom:100.828113px;}
.y44{bottom:105.329376px;}
.y27{bottom:105.329383px;}
.y31{bottom:109.830632px;}
.y88{bottom:111.631131px;}
.y5d{bottom:114.331880px;}
.y30{bottom:123.334399px;}
.y26{bottom:123.334406px;}
.y87{bottom:137.738414px;}
.y5c{bottom:138.638661px;}
.y25{bottom:141.339428px;}
.y2f{bottom:153.042686px;}
.y24{bottom:159.344451px;}
.y86{bottom:167.446702px;}
.y5b{bottom:168.346948px;}
.y23{bottom:177.349474px;}
.y2e{bottom:190.853234px;}
.y22{bottom:195.354496px;}
.y85{bottom:205.257249px;}
.y5a{bottom:206.157496px;}
.y21{bottom:213.359519px;}
.y59{bottom:219.661263px;}
.y84{bottom:220.561519px;}
.y2d{bottom:228.663781px;}
.y20{bottom:231.364542px;}
.y58{bottom:233.165030px;}
.y83{bottom:244.868299px;}
.y1f{bottom:249.369564px;}
.y57{bottom:257.471811px;}
.y1e{bottom:267.374587px;}
.y82{bottom:274.576587px;}
.y1d{bottom:285.379610px;}
.y56{bottom:287.180098px;}
.y1c{bottom:303.384633px;}
.y17{bottom:304.694596px;}
.y81{bottom:314.187637px;}
.y1b{bottom:321.389655px;}
.y55{bottom:324.990646px;}
.y80{bottom:329.491906px;}
.y54{bottom:338.494413px;}
.y1a{bottom:339.394678px;}
.y53{bottom:351.998180px;}
.y7f{bottom:353.798687px;}
.y19{bottom:357.399701px;}
.y52{bottom:365.501947px;}
.y18{bottom:375.404723px;}
.y51{bottom:379.005714px;}
.y7e{bottom:388.908481px;}
.y50{bottom:403.312495px;}
.y7d{bottom:423.118024px;}
.y4f{bottom:433.020782px;}
.y7c{bottom:457.327567px;}
.y4e{bottom:479.833841px;}
.y7b{bottom:491.537110px;}
.y7a{bottom:499.639370px;}
.y79{bottom:541.050923px;}
.y4d{bottom:555.864663px;}
.y78{bottom:575.260466px;}
.y4c{bottom:582.462470px;}
.y77{bottom:609.470009px;}
.y4b{bottom:612.170758px;}
.y76{bottom:644.579803px;}
.y75{bottom:674.288091px;}
.y16{bottom:685.091107px;}
.y4a{bottom:690.002082px;}
.y49{bottom:698.594867px;}
.y74{bottom:713.899140px;}
.y15{bottom:721.101152px;}
.y48{bottom:728.303154px;}
.y73{bottom:729.203410px;}
.y14{bottom:734.604919px;}
.y72{bottom:744.507679px;}
.y13{bottom:758.911700px;}
.y12{bottom:772.415467px;}
.y71{bottom:774.215966px;}
.y11{bottom:796.722247px;}
.y43{bottom:806.134478px;}
.y10{bottom:810.226014px;}
.y70{bottom:821.029026px;}
.yf{bottom:834.532795px;}
.ye{bottom:872.343343px;}
.y6e{bottom:897.059843px;}
.y6d{bottom:905.652632px;}
.y42{bottom:908.353381px;}
.yd{bottom:908.353388px;}
.yc{bottom:921.857155px;}
.y6c{bottom:935.360920px;}
.yb{bottom:946.163936px;}
.y41{bottom:955.166440px;}
.ya{bottom:959.667703px;}
.y6b{bottom:973.171467px;}
.y9{bottom:973.171470px;}
.y6a{bottom:988.475737px;}
.y40{bottom:991.176486px;}
.y8{bottom:997.478251px;}
.y69{bottom:1003.780006px;}
.y3f{bottom:1004.680253px;}
.y7{bottom:1010.982018px;}
.y68{bottom:1017.283773px;}
.y3e{bottom:1018.184020px;}
.y6{bottom:1024.485785px;}
.y3d{bottom:1031.687787px;}
.y5{bottom:1037.989552px;}
.y67{bottom:1041.590554px;}
.y3c{bottom:1045.191554px;}
.y3b{bottom:1074.899841px;}
.y4{bottom:1075.800099px;}
.y64{bottom:1107.718609px;}
.y3a{bottom:1112.710389px;}
.y3{bottom:1124.413661px;}
.y39{bottom:1126.214156px;}
.y63{bottom:1134.316420px;}
.y38{bottom:1139.717923px;}
.y37{bottom:1153.221690px;}
.y2{bottom:1154.121948px;}
.y62{bottom:1164.024708px;}
.y36{bottom:1166.725457px;}
.h4{height:34.666702px;}
.h9{height:36.010046px;}
.h6{height:39.751714px;}
.hc{height:40.444486px;}
.h7{height:46.222269px;}
.hb{height:54.015067px;}
.ha{height:54.015068px;}
.h3{height:60.666728px;}
.hd{height:69.252522px;}
.h2{height:80.888971px;}
.h8{height:126.035159px;}
.h5{height:396.110500px;}
.h1{height:1177.528478px;}
.h0{height:1263.000000px;}
.w2{width:792.220999px;}
.w1{width:806.625017px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:7.202009px;}
.x6{left:9.002511px;}
.x5{left:11.703265px;}
.x7{left:17.104772px;}
.x3{left:27.907785px;}
.x1{left:42.750000px;}
.x9{left:45.912808px;}
.x4{left:49.952009px;}
.x8{left:462.729083px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.607143pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.172048pt;}
.ws1{word-spacing:-21.105888pt;}
.ws0{word-spacing:-16.535813pt;}
.ws8{word-spacing:-12.703544pt;}
.ws3{word-spacing:-12.598715pt;}
.ws7{word-spacing:-12.403460pt;}
.ws6{word-spacing:-11.203125pt;}
.ws9{word-spacing:-11.023875pt;}
.ws2{word-spacing:-10.903042pt;}
.wsa{word-spacing:-10.803014pt;}
.wsd{word-spacing:-10.602958pt;}
.wsc{word-spacing:-10.102818pt;}
.wsb{word-spacing:-10.002790pt;}
.ws5{word-spacing:-9.449036pt;}
.wse{word-spacing:-9.302595pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-2357.053126pt;}
._2{margin-left:-1072.594812pt;}
._36{margin-left:-932.192045pt;}
._22{margin-left:-912.064830pt;}
._30{margin-left:-841.798829pt;}
._c{margin-left:-705.427187pt;}
._9{margin-left:-699.626368pt;}
._b{margin-left:-683.994008pt;}
._31{margin-left:-671.331275pt;}
._1c{margin-left:-648.438489pt;}
._4f{margin-left:-634.777078pt;}
._11{margin-left:-633.739989pt;}
._32{margin-left:-618.323288pt;}
._4e{margin-left:-613.671190pt;}
._f{margin-left:-610.391475pt;}
._20{margin-left:-603.830845pt;}
._d{margin-left:-576.341177pt;}
._10{margin-left:-557.221443pt;}
._8{margin-left:-521.223401pt;}
._2b{margin-left:-508.328604pt;}
._1b{margin-left:-493.630104pt;}
._46{margin-left:-489.801836pt;}
._1e{margin-left:-485.794318pt;}
._33{margin-left:-472.581032pt;}
._4d{margin-left:-465.929976pt;}
._27{margin-left:-464.181889pt;}
._1f{margin-left:-457.831317pt;}
._3b{margin-left:-449.541004pt;}
._48{margin-left:-410.521720pt;}
._24{margin-left:-407.039148pt;}
._21{margin-left:-392.397063pt;}
._4b{margin-left:-379.076147pt;}
._4c{margin-left:-363.609433pt;}
._39{margin-left:-359.857986pt;}
._2f{margin-left:-351.842950pt;}
._25{margin-left:-340.550200pt;}
._2a{margin-left:-336.017736pt;}
._1d{margin-left:-332.370718pt;}
._34{margin-left:-322.842861pt;}
._29{margin-left:-309.104228pt;}
._14{margin-left:-297.082875pt;}
._23{margin-left:-288.208799pt;}
._28{margin-left:-283.484281pt;}
._3{margin-left:-272.644857pt;}
._37{margin-left:-271.474531pt;}
._26{margin-left:-266.506745pt;}
._49{margin-left:-261.052423pt;}
._1a{margin-left:-258.402084pt;}
._3d{margin-left:-242.256780pt;}
._2d{margin-left:-237.391423pt;}
._4{margin-left:-218.800637pt;}
._2e{margin-left:-215.612547pt;}
._35{margin-left:-213.192672pt;}
._6{margin-left:-211.156905pt;}
._2c{margin-left:-205.548940pt;}
._17{margin-left:-189.570083pt;}
._19{margin-left:-161.952778pt;}
._18{margin-left:-142.375717pt;}
._16{margin-left:-97.934520pt;}
._12{margin-left:-31.626022pt;}
._15{margin-left:-19.269375pt;}
._0{width:0.909454pt;}
._5{width:2.060975pt;}
._7{width:3.302921pt;}
._4a{width:4.621689pt;}
._e{width:6.221336pt;}
._13{width:10.050804pt;}
._47{width:11.151511pt;}
._a{width:12.636725pt;}
._3c{width:65.802756pt;}
._3a{width:69.061666pt;}
._38{width:71.021012pt;}
._44{width:120.058692pt;}
._42{width:145.019255pt;}
._3e{width:197.104584pt;}
._41{width:245.668532pt;}
._3f{width:289.219881pt;}
._43{width:314.180444pt;}
._45{width:400.604553pt;}
._40{width:425.565116pt;}
.fs2{font-size:38.410715pt;}
.fs4{font-size:44.812501pt;}
.fs3{font-size:51.214287pt;}
.fs1{font-size:67.218751pt;}
.fs0{font-size:89.625002pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:13.603789pt;}
.y66{bottom:13.603792pt;}
.y6f{bottom:13.603793pt;}
.y2c{bottom:13.603795pt;}
.y35{bottom:28.007807pt;}
.y46{bottom:29.608253pt;}
.y65{bottom:29.608256pt;}
.y2b{bottom:29.608260pt;}
.y61{bottom:33.609363pt;}
.y1{bottom:37.974687pt;}
.y2a{bottom:45.612724pt;}
.y34{bottom:61.617183pt;}
.y29{bottom:61.617189pt;}
.y60{bottom:65.618293pt;}
.y8a{bottom:72.020082pt;}
.y33{bottom:73.620531pt;}
.y5f{bottom:77.621641pt;}
.y45{bottom:77.621647pt;}
.y28{bottom:77.621653pt;}
.y89{bottom:85.623877pt;}
.y32{bottom:85.623880pt;}
.y5e{bottom:89.624990pt;}
.y44{bottom:93.626112pt;}
.y27{bottom:93.626118pt;}
.y31{bottom:97.627228pt;}
.y88{bottom:99.227672pt;}
.y5d{bottom:101.628338pt;}
.y30{bottom:109.630576pt;}
.y26{bottom:109.630583pt;}
.y87{bottom:122.434146pt;}
.y5c{bottom:123.234365pt;}
.y25{bottom:125.635047pt;}
.y2f{bottom:136.037943pt;}
.y24{bottom:141.639512pt;}
.y86{bottom:148.841513pt;}
.y5b{bottom:149.641732pt;}
.y23{bottom:157.643977pt;}
.y2e{bottom:169.647319pt;}
.y22{bottom:173.648441pt;}
.y85{bottom:182.450888pt;}
.y5a{bottom:183.251108pt;}
.y21{bottom:189.652906pt;}
.y59{bottom:195.254456pt;}
.y84{bottom:196.054683pt;}
.y2d{bottom:203.256695pt;}
.y20{bottom:205.657370pt;}
.y58{bottom:207.257805pt;}
.y83{bottom:217.660710pt;}
.y1f{bottom:221.661835pt;}
.y57{bottom:228.863832pt;}
.y1e{bottom:237.666300pt;}
.y82{bottom:244.068077pt;}
.y1d{bottom:253.670764pt;}
.y56{bottom:255.271198pt;}
.y1c{bottom:269.675229pt;}
.y17{bottom:270.839641pt;}
.y81{bottom:279.277899pt;}
.y1b{bottom:285.679694pt;}
.y55{bottom:288.880574pt;}
.y80{bottom:292.881694pt;}
.y54{bottom:300.883923pt;}
.y1a{bottom:301.684158pt;}
.y53{bottom:312.887271pt;}
.y7f{bottom:314.487721pt;}
.y19{bottom:317.688623pt;}
.y52{bottom:324.890619pt;}
.y18{bottom:333.693087pt;}
.y51{bottom:336.893968pt;}
.y7e{bottom:345.696427pt;}
.y50{bottom:358.499995pt;}
.y7d{bottom:376.104910pt;}
.y4f{bottom:384.907362pt;}
.y7c{bottom:406.513393pt;}
.y4e{bottom:426.518970pt;}
.y7b{bottom:436.921876pt;}
.y7a{bottom:444.123885pt;}
.y79{bottom:480.934153pt;}
.y4d{bottom:494.101923pt;}
.y78{bottom:511.342636pt;}
.y4c{bottom:517.744418pt;}
.y77{bottom:541.751119pt;}
.y4b{bottom:544.151785pt;}
.y76{bottom:572.959825pt;}
.y75{bottom:599.367192pt;}
.y16{bottom:608.969873pt;}
.y4a{bottom:613.335184pt;}
.y49{bottom:620.973215pt;}
.y74{bottom:634.577014pt;}
.y15{bottom:640.978802pt;}
.y48{bottom:647.380582pt;}
.y73{bottom:648.180809pt;}
.y14{bottom:652.982150pt;}
.y72{bottom:661.784604pt;}
.y13{bottom:674.588178pt;}
.y12{bottom:686.591526pt;}
.y71{bottom:688.191970pt;}
.y11{bottom:708.197553pt;}
.y43{bottom:716.563981pt;}
.y10{bottom:720.200902pt;}
.y70{bottom:729.803578pt;}
.yf{bottom:741.806929pt;}
.ye{bottom:775.416305pt;}
.y6e{bottom:797.386527pt;}
.y6d{bottom:805.024562pt;}
.y42{bottom:807.425228pt;}
.yd{bottom:807.425234pt;}
.yc{bottom:819.428582pt;}
.y6c{bottom:831.431929pt;}
.yb{bottom:841.034610pt;}
.y41{bottom:849.036836pt;}
.ya{bottom:853.037958pt;}
.y6b{bottom:865.041304pt;}
.y9{bottom:865.041307pt;}
.y6a{bottom:878.645099pt;}
.y40{bottom:881.045765pt;}
.y8{bottom:886.647334pt;}
.y69{bottom:892.248894pt;}
.y3f{bottom:893.049113pt;}
.y7{bottom:898.650682pt;}
.y68{bottom:904.252243pt;}
.y3e{bottom:905.052462pt;}
.y6{bottom:910.654031pt;}
.y3d{bottom:917.055810pt;}
.y5{bottom:922.657379pt;}
.y67{bottom:925.858270pt;}
.y3c{bottom:929.059159pt;}
.y3b{bottom:955.466526pt;}
.y4{bottom:956.266755pt;}
.y64{bottom:984.638764pt;}
.y3a{bottom:989.075901pt;}
.y3{bottom:999.478809pt;}
.y39{bottom:1001.079250pt;}
.y63{bottom:1008.281263pt;}
.y38{bottom:1013.082598pt;}
.y37{bottom:1025.085947pt;}
.y2{bottom:1025.886176pt;}
.y62{bottom:1034.688629pt;}
.y36{bottom:1037.089295pt;}
.h4{height:30.814846pt;}
.h9{height:32.008930pt;}
.h6{height:35.334857pt;}
.hc{height:35.950654pt;}
.h7{height:41.086462pt;}
.hb{height:48.013393pt;}
.ha{height:48.013394pt;}
.h3{height:53.925981pt;}
.hd{height:61.557797pt;}
.h2{height:71.901308pt;}
.h8{height:112.031252pt;}
.h5{height:352.098222pt;}
.h1{height:1046.691980pt;}
.h0{height:1122.666667pt;}
.w2{width:704.196443pt;}
.w1{width:717.000015pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:6.401786pt;}
.x6{left:8.002232pt;}
.x5{left:10.402902pt;}
.x7{left:15.204241pt;}
.x3{left:24.806920pt;}
.x1{left:38.000000pt;}
.x9{left:40.811385pt;}
.x4{left:44.401786pt;}
.x8{left:411.314741pt;}
}




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