
    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_47a45d7e6b85e6302e2f7bd9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_6e4a561817401caeac0207e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_dc8e738e0e36fb34c97e9fe9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_536ce14df6bf1572a3c783b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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);}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.770000px;}
.v2{vertical-align:73.122000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:19.011739px;}
.ls1{letter-spacing:35.865276px;}
.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;}
}
.ws2f{word-spacing:-148.722300px;}
.ws12{word-spacing:-113.475115px;}
.ws4{word-spacing:-103.292640px;}
.ws2{word-spacing:-75.920090px;}
.ws13{word-spacing:-71.731020px;}
.ws1{word-spacing:-65.676904px;}
.ws29{word-spacing:-65.454540px;}
.ws3{word-spacing:-63.266742px;}
.ws1a{word-spacing:-54.730768px;}
.ws20{word-spacing:-53.152686px;}
.ws24{word-spacing:-52.865762px;}
.ws6{word-spacing:-52.794031px;}
.ws16{word-spacing:-52.722464px;}
.ws30{word-spacing:-52.722351px;}
.ws5{word-spacing:-52.722300px;}
.ws1e{word-spacing:-49.945630px;}
.wsc{word-spacing:-49.090905px;}
.wsf{word-spacing:-49.070708px;}
.wse{word-spacing:-49.066894px;}
.wsd{word-spacing:-49.061424px;}
.ws7{word-spacing:-48.109087px;}
.ws0{word-spacing:-47.170306px;}
.ws10{word-spacing:-35.865203px;}
.wsa{word-spacing:-35.864686px;}
.wsb{word-spacing:-35.863051px;}
.ws32{word-spacing:-35.150755px;}
.ws22{word-spacing:-11.979070px;}
.ws18{word-spacing:-0.001990px;}
.ws9{word-spacing:0.000000px;}
.ws31{word-spacing:91.754235px;}
.ws2e{word-spacing:181.114973px;}
.ws19{word-spacing:241.372969px;}
.ws2d{word-spacing:270.475354px;}
.ws2c{word-spacing:359.838017px;}
.ws2b{word-spacing:449.195724px;}
.ws2a{word-spacing:538.558044px;}
.ws28{word-spacing:627.919077px;}
.ws27{word-spacing:717.283436px;}
.ws26{word-spacing:806.640719px;}
.ws25{word-spacing:896.000153px;}
.ws23{word-spacing:985.331448px;}
.ws21{word-spacing:1074.693881px;}
.ws1f{word-spacing:1164.057494px;}
.ws1d{word-spacing:1253.414156px;}
.ws1c{word-spacing:1342.777864px;}
.ws1b{word-spacing:1432.140184px;}
.ws17{word-spacing:1521.501217px;}
.ws15{word-spacing:1610.859575px;}
.ws14{word-spacing:1700.222858px;}
.ws11{word-spacing:1789.582293px;}
.ws8{word-spacing:1878.945201px;}
._8{margin-left:-8.263411px;}
._3{margin-left:-7.023900px;}
._10{margin-left:-5.061339px;}
._4{margin-left:-3.615242px;}
._0{margin-left:-2.582316px;}
._2{margin-left:-1.549390px;}
._d{width:1.004233px;}
._11{width:2.697085px;}
._7{width:23.331405px;}
._6{width:24.718509px;}
._c{width:25.794474px;}
._5{width:29.954866px;}
._b{width:36.462302px;}
._1{width:64.127514px;}
._e{width:265.978781px;}
._f{width:338.391462px;}
._9{width:470.631488px;}
._a{width:951.086105px;}
.fc3{color:transparent;}
.fc2{color:rgb(45,45,45);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(239,239,239);}
.fs6{font-size:35.865480px;}
.fs4{font-size:47.820660px;}
.fs3{font-size:65.454540px;}
.fs2{font-size:71.731020px;}
.fs0{font-size:86.077200px;}
.fs1{font-size:103.292640px;}
.fs5{font-size:148.722300px;}
.y0{bottom:0.000000px;}
.y13{bottom:6.468000px;}
.y79{bottom:24.022500px;}
.y70{bottom:28.506000px;}
.y38{bottom:38.034000px;}
.y48{bottom:39.261000px;}
.y78{bottom:45.691500px;}
.y6f{bottom:50.175000px;}
.y68{bottom:51.223500px;}
.y51{bottom:54.324000px;}
.y37{bottom:59.703000px;}
.y5d{bottom:67.360500px;}
.y6{bottom:70.527000px;}
.y6e{bottom:71.844000px;}
.y50{bottom:75.993000px;}
.y7a{bottom:76.945500px;}
.y6d{bottom:80.062500px;}
.y36{bottom:81.372000px;}
.y5c{bottom:89.029500px;}
.y12{bottom:91.420500px;}
.y67{bottom:93.511500px;}
.y29{bottom:94.606500px;}
.y4f{bottom:97.662000px;}
.y6c{bottom:101.731500px;}
.y5{bottom:109.033500px;}
.y11{bottom:113.088000px;}
.y5b{bottom:115.180500px;}
.y28{bottom:116.275500px;}
.y35{bottom:118.854000px;}
.y2b{bottom:118.873500px;}
.y6b{bottom:127.884000px;}
.y5f{bottom:129.618000px;}
.y4{bottom:135.933000px;}
.y5a{bottom:136.849500px;}
.y27{bottom:137.944500px;}
.y34{bottom:140.523000px;}
.y66{bottom:140.586000px;}
.y22{bottom:141.333000px;}
.y10{bottom:141.483000px;}
.y6a{bottom:149.551500px;}
.y5e{bottom:151.287000px;}
.y2c{bottom:156.702000px;}
.y59{bottom:158.518500px;}
.yf{bottom:161.806500px;}
.y65{bottom:162.255000px;}
.y33{bottom:162.789000px;}
.y21{bottom:163.002000px;}
.y1a{bottom:163.599000px;}
.y58{bottom:172.954500px;}
.y47{bottom:175.704000px;}
.y46{bottom:177.496500px;}
.y3{bottom:179.271000px;}
.y49{bottom:180.187500px;}
.ye{bottom:182.877000px;}
.y20{bottom:184.671000px;}
.y30{bottom:189.153000px;}
.y3f{bottom:190.348500px;}
.y64{bottom:190.648500px;}
.y19{bottom:191.992500px;}
.y57{bottom:194.623500px;}
.y45{bottom:195.579000px;}
.y69{bottom:197.373000px;}
.y32{bottom:201.856500px;}
.y4e{bottom:202.644000px;}
.yd{bottom:203.200500px;}
.y1f{bottom:206.338500px;}
.y63{bottom:208.729500px;}
.y18{bottom:210.075000px;}
.y3e{bottom:210.673500px;}
.y2f{bottom:210.822000px;}
.y56{bottom:216.292500px;}
.y44{bottom:218.145000px;}
.y31{bottom:223.524000px;}
.y4d{bottom:224.313000px;}
.yc{bottom:228.007500px;}
.y62{bottom:231.295500px;}
.y3d{bottom:231.744000px;}
.y1e{bottom:232.491000px;}
.y17{bottom:232.641000px;}
.y55{bottom:237.961500px;}
.y43{bottom:238.468500px;}
.y4c{bottom:245.982000px;}
.y1b{bottom:247.009500px;}
.yb{bottom:249.676500px;}
.y16{bottom:250.722000px;}
.y61{bottom:251.619000px;}
.y1d{bottom:254.160000px;}
.y42{bottom:256.551000px;}
.y3c{bottom:258.792000px;}
.y54{bottom:259.630500px;}
.y2{bottom:264.924000px;}
.y4b{bottom:267.651000px;}
.ya{bottom:271.345500px;}
.y60{bottom:272.691000px;}
.y15{bottom:273.288000px;}
.y1c{bottom:275.829000px;}
.y3b{bottom:276.874500px;}
.y41{bottom:279.115500px;}
.y53{bottom:281.299500px;}
.y4a{bottom:289.318500px;}
.y2a{bottom:293.014500px;}
.y14{bottom:294.358500px;}
.y9{bottom:297.496500px;}
.y3a{bottom:299.440500px;}
.y40{bottom:300.187500px;}
.y2e{bottom:301.980000px;}
.y1{bottom:309.756000px;}
.y52{bottom:310.984500px;}
.y8{bottom:319.165500px;}
.y39{bottom:320.511000px;}
.y2d{bottom:323.649000px;}
.y7{bottom:376.672500px;}
.y26{bottom:3094.645185px;}
.y77{bottom:3101.770185px;}
.y25{bottom:3116.314185px;}
.y76{bottom:3127.922685px;}
.y24{bottom:3137.983185px;}
.y75{bottom:3149.590185px;}
.y23{bottom:3159.652185px;}
.y74{bottom:3175.742685px;}
.y73{bottom:3197.411685px;}
.y72{bottom:3228.046185px;}
.y71{bottom:3249.715185px;}
.h6{height:18.614400px;}
.hd{height:37.658754px;}
.h7{height:50.211693px;}
.h5{height:59.757267px;}
.h8{height:59.763267px;}
.h9{height:68.727267px;}
.h4{height:75.317571px;}
.hc{height:80.087571px;}
.h2{height:90.381060px;}
.h3{height:108.457272px;}
.hb{height:148.439571px;}
.ha{height:156.158415px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x1{left:31.890000px;}
.x4{left:33.988500px;}
.xd{left:38.166000px;}
.x6{left:41.614500px;}
.x5{left:42.924000px;}
.x9{left:53.149500px;}
.x8{left:55.456500px;}
.x2{left:63.780000px;}
.xb{left:77.892000px;}
.x3{left:80.860500px;}
.x7{left:99.645000px;}
.x11{left:104.356500px;}
.x29{left:120.906000px;}
.xf{left:122.548500px;}
.x12{left:125.571000px;}
.x13{left:144.291000px;}
.x1a{left:149.242500px;}
.x14{left:167.719500px;}
.x15{left:188.841000px;}
.x17{left:211.491000px;}
.xe{left:213.184500px;}
.x18{left:227.806500px;}
.x1b{left:252.442500px;}
.x10{left:253.521000px;}
.x1c{left:273.795000px;}
.x21{left:284.295000px;}
.x19{left:287.431500px;}
.x1d{left:296.230500px;}
.xc{left:314.646000px;}
.x1e{left:318.522000px;}
.x1f{left:340.887000px;}
.x27{left:341.964000px;}
.x16{left:355.560000px;}
.x20{left:362.629500px;}
.x22{left:386.058000px;}
.x23{left:407.178000px;}
.x24{left:429.829500px;}
.x26{left:450.328500px;}
.x28{left:475.251000px;}
.x2a{left:496.324500px;}
.x25{left:3063.818685px;}
.xa{left:3314.684685px;}
@media print{
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.240000pt;}
.v2{vertical-align:64.997333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:16.899324pt;}
.ls1{letter-spacing:31.880245pt;}
.ws2f{word-spacing:-132.197600pt;}
.ws12{word-spacing:-100.866769pt;}
.ws4{word-spacing:-91.815680pt;}
.ws2{word-spacing:-67.484525pt;}
.ws13{word-spacing:-63.760907pt;}
.ws1{word-spacing:-58.379470pt;}
.ws29{word-spacing:-58.181813pt;}
.ws3{word-spacing:-56.237104pt;}
.ws1a{word-spacing:-48.649572pt;}
.ws20{word-spacing:-47.246832pt;}
.ws24{word-spacing:-46.991788pt;}
.ws6{word-spacing:-46.928027pt;}
.ws16{word-spacing:-46.864412pt;}
.ws30{word-spacing:-46.864312pt;}
.ws5{word-spacing:-46.864266pt;}
.ws1e{word-spacing:-44.396115pt;}
.wsc{word-spacing:-43.636360pt;}
.wsf{word-spacing:-43.618407pt;}
.wse{word-spacing:-43.615017pt;}
.wsd{word-spacing:-43.610155pt;}
.ws7{word-spacing:-42.763633pt;}
.ws0{word-spacing:-41.929161pt;}
.ws10{word-spacing:-31.880180pt;}
.wsa{word-spacing:-31.879721pt;}
.wsb{word-spacing:-31.878267pt;}
.ws32{word-spacing:-31.245115pt;}
.ws22{word-spacing:-10.648063pt;}
.ws18{word-spacing:-0.001769pt;}
.ws9{word-spacing:0.000000pt;}
.ws31{word-spacing:81.559320pt;}
.ws2e{word-spacing:160.991087pt;}
.ws19{word-spacing:214.553750pt;}
.ws2d{word-spacing:240.422537pt;}
.ws2c{word-spacing:319.856015pt;}
.ws2b{word-spacing:399.285088pt;}
.ws2a{word-spacing:478.718262pt;}
.ws28{word-spacing:558.150291pt;}
.ws27{word-spacing:637.585277pt;}
.ws26{word-spacing:717.013972pt;}
.ws25{word-spacing:796.444581pt;}
.ws23{word-spacing:875.850176pt;}
.ws21{word-spacing:955.283450pt;}
.ws1f{word-spacing:1034.717772pt;}
.ws1d{word-spacing:1114.145917pt;}
.ws1c{word-spacing:1193.580323pt;}
.ws1b{word-spacing:1273.013497pt;}
.ws17{word-spacing:1352.445526pt;}
.ws15{word-spacing:1431.875178pt;}
.ws14{word-spacing:1511.309207pt;}
.ws11{word-spacing:1590.739816pt;}
.ws8{word-spacing:1670.173512pt;}
._8{margin-left:-7.345254pt;}
._3{margin-left:-6.243466pt;}
._10{margin-left:-4.498968pt;}
._4{margin-left:-3.213549pt;}
._0{margin-left:-2.295392pt;}
._2{margin-left:-1.377235pt;}
._d{width:0.892651pt;}
._11{width:2.397409pt;}
._7{width:20.739027pt;}
._6{width:21.972008pt;}
._c{width:22.928422pt;}
._5{width:26.626547pt;}
._b{width:32.410935pt;}
._1{width:57.002235pt;}
._e{width:236.425583pt;}
._f{width:300.792411pt;}
._9{width:418.339100pt;}
._a{width:845.409871pt;}
.fs6{font-size:31.880427pt;}
.fs4{font-size:42.507253pt;}
.fs3{font-size:58.181813pt;}
.fs2{font-size:63.760907pt;}
.fs0{font-size:76.513067pt;}
.fs1{font-size:91.815680pt;}
.fs5{font-size:132.197600pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:5.749333pt;}
.y79{bottom:21.353333pt;}
.y70{bottom:25.338667pt;}
.y38{bottom:33.808000pt;}
.y48{bottom:34.898667pt;}
.y78{bottom:40.614667pt;}
.y6f{bottom:44.600000pt;}
.y68{bottom:45.532000pt;}
.y51{bottom:48.288000pt;}
.y37{bottom:53.069333pt;}
.y5d{bottom:59.876000pt;}
.y6{bottom:62.690667pt;}
.y6e{bottom:63.861333pt;}
.y50{bottom:67.549333pt;}
.y7a{bottom:68.396000pt;}
.y6d{bottom:71.166667pt;}
.y36{bottom:72.330667pt;}
.y5c{bottom:79.137333pt;}
.y12{bottom:81.262667pt;}
.y67{bottom:83.121333pt;}
.y29{bottom:84.094667pt;}
.y4f{bottom:86.810667pt;}
.y6c{bottom:90.428000pt;}
.y5{bottom:96.918667pt;}
.y11{bottom:100.522667pt;}
.y5b{bottom:102.382667pt;}
.y28{bottom:103.356000pt;}
.y35{bottom:105.648000pt;}
.y2b{bottom:105.665333pt;}
.y6b{bottom:113.674667pt;}
.y5f{bottom:115.216000pt;}
.y4{bottom:120.829333pt;}
.y5a{bottom:121.644000pt;}
.y27{bottom:122.617333pt;}
.y34{bottom:124.909333pt;}
.y66{bottom:124.965333pt;}
.y22{bottom:125.629333pt;}
.y10{bottom:125.762667pt;}
.y6a{bottom:132.934667pt;}
.y5e{bottom:134.477333pt;}
.y2c{bottom:139.290667pt;}
.y59{bottom:140.905333pt;}
.yf{bottom:143.828000pt;}
.y65{bottom:144.226667pt;}
.y33{bottom:144.701333pt;}
.y21{bottom:144.890667pt;}
.y1a{bottom:145.421333pt;}
.y58{bottom:153.737333pt;}
.y47{bottom:156.181333pt;}
.y46{bottom:157.774667pt;}
.y3{bottom:159.352000pt;}
.y49{bottom:160.166667pt;}
.ye{bottom:162.557333pt;}
.y20{bottom:164.152000pt;}
.y30{bottom:168.136000pt;}
.y3f{bottom:169.198667pt;}
.y64{bottom:169.465333pt;}
.y19{bottom:170.660000pt;}
.y57{bottom:172.998667pt;}
.y45{bottom:173.848000pt;}
.y69{bottom:175.442667pt;}
.y32{bottom:179.428000pt;}
.y4e{bottom:180.128000pt;}
.yd{bottom:180.622667pt;}
.y1f{bottom:183.412000pt;}
.y63{bottom:185.537333pt;}
.y18{bottom:186.733333pt;}
.y3e{bottom:187.265333pt;}
.y2f{bottom:187.397333pt;}
.y56{bottom:192.260000pt;}
.y44{bottom:193.906667pt;}
.y31{bottom:198.688000pt;}
.y4d{bottom:199.389333pt;}
.yc{bottom:202.673333pt;}
.y62{bottom:205.596000pt;}
.y3d{bottom:205.994667pt;}
.y1e{bottom:206.658667pt;}
.y17{bottom:206.792000pt;}
.y55{bottom:211.521333pt;}
.y43{bottom:211.972000pt;}
.y4c{bottom:218.650667pt;}
.y1b{bottom:219.564000pt;}
.yb{bottom:221.934667pt;}
.y16{bottom:222.864000pt;}
.y61{bottom:223.661333pt;}
.y1d{bottom:225.920000pt;}
.y42{bottom:228.045333pt;}
.y3c{bottom:230.037333pt;}
.y54{bottom:230.782667pt;}
.y2{bottom:235.488000pt;}
.y4b{bottom:237.912000pt;}
.ya{bottom:241.196000pt;}
.y60{bottom:242.392000pt;}
.y15{bottom:242.922667pt;}
.y1c{bottom:245.181333pt;}
.y3b{bottom:246.110667pt;}
.y41{bottom:248.102667pt;}
.y53{bottom:250.044000pt;}
.y4a{bottom:257.172000pt;}
.y2a{bottom:260.457333pt;}
.y14{bottom:261.652000pt;}
.y9{bottom:264.441333pt;}
.y3a{bottom:266.169333pt;}
.y40{bottom:266.833333pt;}
.y2e{bottom:268.426667pt;}
.y1{bottom:275.338667pt;}
.y52{bottom:276.430667pt;}
.y8{bottom:283.702667pt;}
.y39{bottom:284.898667pt;}
.y2d{bottom:287.688000pt;}
.y7{bottom:334.820000pt;}
.y26{bottom:2750.795720pt;}
.y77{bottom:2757.129053pt;}
.y25{bottom:2770.057053pt;}
.y76{bottom:2780.375720pt;}
.y24{bottom:2789.318387pt;}
.y75{bottom:2799.635720pt;}
.y23{bottom:2808.579720pt;}
.y74{bottom:2822.882387pt;}
.y73{bottom:2842.143720pt;}
.y72{bottom:2869.374387pt;}
.y71{bottom:2888.635720pt;}
.h6{height:16.546133pt;}
.hd{height:33.474448pt;}
.h7{height:44.632616pt;}
.h5{height:53.117571pt;}
.h8{height:53.122904pt;}
.h9{height:61.090904pt;}
.h4{height:66.948952pt;}
.hc{height:71.188952pt;}
.h2{height:80.338720pt;}
.h3{height:96.406464pt;}
.hb{height:131.946285pt;}
.ha{height:138.807480pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x1{left:28.346667pt;}
.x4{left:30.212000pt;}
.xd{left:33.925333pt;}
.x6{left:36.990667pt;}
.x5{left:38.154667pt;}
.x9{left:47.244000pt;}
.x8{left:49.294667pt;}
.x2{left:56.693333pt;}
.xb{left:69.237333pt;}
.x3{left:71.876000pt;}
.x7{left:88.573333pt;}
.x11{left:92.761333pt;}
.x29{left:107.472000pt;}
.xf{left:108.932000pt;}
.x12{left:111.618667pt;}
.x13{left:128.258667pt;}
.x1a{left:132.660000pt;}
.x14{left:149.084000pt;}
.x15{left:167.858667pt;}
.x17{left:187.992000pt;}
.xe{left:189.497333pt;}
.x18{left:202.494667pt;}
.x1b{left:224.393333pt;}
.x10{left:225.352000pt;}
.x1c{left:243.373333pt;}
.x21{left:252.706667pt;}
.x19{left:255.494667pt;}
.x1d{left:263.316000pt;}
.xc{left:279.685333pt;}
.x1e{left:283.130667pt;}
.x1f{left:303.010667pt;}
.x27{left:303.968000pt;}
.x16{left:316.053333pt;}
.x20{left:322.337333pt;}
.x22{left:343.162667pt;}
.x23{left:361.936000pt;}
.x24{left:382.070667pt;}
.x26{left:400.292000pt;}
.x28{left:422.445333pt;}
.x2a{left:441.177333pt;}
.x25{left:2723.394387pt;}
.xa{left:2946.386387pt;}
}




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