
    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_51b989cfc069616b65be2eb8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_594f8889cefade9c65a98935.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_1ec425cec244d074ee341ec1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_f90a9b75a86d63e68ad519e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_eedf194fe830ad62e95ac08b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213379;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:ff6;src:url('chunks/assets/font_62c18e95f2e0c4c053fb318f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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:ff7;src:url('chunks/assets/font_8b340fdb8b4ec1b15dcc6de9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-110.400000px;}
.v1{vertical-align:-75.600000px;}
.v4{vertical-align:-69.540000px;}
.v5{vertical-align:-6.060000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.660000px;}
.lsd{letter-spacing:-0.912000px;}
.ls8{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.378000px;}
.lsb{letter-spacing:-0.144000px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.300000px;}
.ls10{letter-spacing:0.528000px;}
.ls4{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.600000px;}
.lsf{letter-spacing:0.720000px;}
.ls6{letter-spacing:1.500000px;}
.ls5{letter-spacing:17.100000px;}
.ls1{letter-spacing:48.000000px;}
.ls2{letter-spacing:65.400000px;}
.ls0{letter-spacing:305.970000px;}
.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;}
}
.ws9{word-spacing:-17.028000px;}
.ws1{word-spacing:-16.500000px;}
.ws8{word-spacing:-16.122000px;}
.ws0{word-spacing:-15.000000px;}
.ws5{word-spacing:-12.900000px;}
.ws6{word-spacing:-12.300000px;}
.ws2{word-spacing:-12.288000px;}
.ws3{word-spacing:-12.000000px;}
.ws4{word-spacing:-11.088000px;}
.ws7{word-spacing:0.000000px;}
._9{margin-left:-2.940000px;}
._1{margin-left:-1.830000px;}
._0{width:1.260000px;}
._5{width:2.556000px;}
._c{width:3.930000px;}
._19{width:4.980000px;}
._b{width:6.006000px;}
._12{width:7.260000px;}
._d{width:8.316000px;}
._e{width:9.474000px;}
._16{width:10.548000px;}
._14{width:11.706000px;}
._15{width:13.044000px;}
._10{width:14.058000px;}
._11{width:15.132000px;}
._f{width:17.646000px;}
._7{width:19.500000px;}
._8{width:20.754000px;}
._13{width:22.194000px;}
._a{width:23.286000px;}
._1a{width:25.170000px;}
._18{width:26.718000px;}
._17{width:28.296000px;}
._1c{width:29.484000px;}
._1b{width:31.050000px;}
._2{width:187.200000px;}
._3{width:194.400000px;}
._1d{width:195.900000px;}
._4{width:200.400000px;}
._6{width:1606.350000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:24.000000px;}
.fs6{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:51.600000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y32{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y36{bottom:3.315000px;}
.y35{bottom:18.000000px;}
.y34{bottom:31.500000px;}
.y2{bottom:56.437500px;}
.y1{bottom:73.837500px;}
.y6e{bottom:116.437500px;}
.y30{bottom:119.437500px;}
.y73{bottom:122.737500px;}
.y88{bottom:123.037500px;}
.y6d{bottom:135.637500px;}
.y2f{bottom:138.637500px;}
.y72{bottom:140.137500px;}
.y87{bottom:141.937500px;}
.y6c{bottom:154.530000px;}
.y71{bottom:155.430000px;}
.y2e{bottom:157.530000px;}
.y70{bottom:160.530000px;}
.y86{bottom:160.830000px;}
.y6b{bottom:173.475000px;}
.y2d{bottom:176.475000px;}
.y85{bottom:180.075000px;}
.y6a{bottom:192.375000px;}
.y2c{bottom:195.375000px;}
.y84{bottom:198.975000px;}
.y69{bottom:211.575000px;}
.y2b{bottom:214.575000px;}
.y83{bottom:217.875000px;}
.y68{bottom:230.475000px;}
.y2a{bottom:233.475000px;}
.y82{bottom:236.775000px;}
.y67{bottom:249.375000px;}
.y29{bottom:252.375000px;}
.y81{bottom:255.675000px;}
.y66{bottom:268.275000px;}
.y28{bottom:271.275000px;}
.y80{bottom:274.575000px;}
.y65{bottom:287.175000px;}
.y27{bottom:290.475000px;}
.y7f{bottom:293.775000px;}
.y64{bottom:306.375000px;}
.y26{bottom:309.375000px;}
.y7e{bottom:312.675000px;}
.y63{bottom:325.275000px;}
.y25{bottom:328.275000px;}
.y7d{bottom:331.875000px;}
.y62{bottom:344.205000px;}
.y24{bottom:347.205000px;}
.y7c{bottom:350.805000px;}
.y61{bottom:363.120000px;}
.y23{bottom:366.405000px;}
.y7b{bottom:369.705000px;}
.y60{bottom:382.320000px;}
.y22{bottom:385.305000px;}
.y7a{bottom:388.305000px;}
.y5f{bottom:401.205000px;}
.y21{bottom:404.205000px;}
.y79{bottom:407.820000px;}
.y5e{bottom:420.120000px;}
.y20{bottom:423.120000px;}
.y78{bottom:426.705000px;}
.y5d{bottom:439.005000px;}
.y1f{bottom:442.320000px;}
.y77{bottom:445.320000px;}
.y5c{bottom:458.205000px;}
.y76{bottom:460.620000px;}
.y1e{bottom:461.205000px;}
.y75{bottom:465.705000px;}
.y5b{bottom:477.120000px;}
.y1d{bottom:479.820000px;}
.y5a{bottom:496.005000px;}
.y1c{bottom:499.005000px;}
.y59{bottom:514.650000px;}
.y1b{bottom:518.250000px;}
.y58{bottom:534.150000px;}
.y1a{bottom:540.750000px;}
.y57{bottom:553.050000px;}
.y19{bottom:559.650000px;}
.y56{bottom:571.950000px;}
.y18{bottom:576.750000px;}
.y55{bottom:590.550000px;}
.y17{bottom:593.850000px;}
.y54{bottom:610.050000px;}
.y16{bottom:611.250000px;}
.y15{bottom:628.650000px;}
.y53{bottom:628.950000px;}
.y14{bottom:645.750000px;}
.y52{bottom:647.550000px;}
.y13{bottom:662.850000px;}
.y51{bottom:666.450000px;}
.y12{bottom:680.580000px;}
.y50{bottom:685.695000px;}
.y11{bottom:703.380000px;}
.y4f{bottom:704.880000px;}
.y4e{bottom:723.780000px;}
.y10{bottom:739.380000px;}
.y4d{bottom:742.695000px;}
.yf{bottom:756.480000px;}
.y4c{bottom:761.880000px;}
.ye{bottom:773.880000px;}
.y4b{bottom:780.780000px;}
.yd{bottom:790.995000px;}
.y4a{bottom:799.380000px;}
.yc{bottom:808.080000px;}
.y49{bottom:818.295000px;}
.yb{bottom:826.380000px;}
.y48{bottom:837.795000px;}
.ya{bottom:846.525000px;}
.y47{bottom:856.725000px;}
.y9{bottom:865.425000px;}
.y46{bottom:875.625000px;}
.y8{bottom:885.825000px;}
.y45{bottom:894.525000px;}
.y44{bottom:913.725000px;}
.y43{bottom:932.625000px;}
.y7{bottom:941.025000px;}
.y42{bottom:951.525000px;}
.y6{bottom:967.125000px;}
.y41{bottom:970.425000px;}
.y40{bottom:989.625000px;}
.y5{bottom:1003.125000px;}
.y3f{bottom:1008.525000px;}
.y3e{bottom:1027.455000px;}
.y4{bottom:1028.355000px;}
.y74{bottom:1037.355000px;}
.y3{bottom:1039.455000px;}
.y3d{bottom:1046.370000px;}
.y3c{bottom:1065.570000px;}
.y6f{bottom:1075.455000px;}
.y3b{bottom:1084.455000px;}
.y31{bottom:1100.970000px;}
.y3a{bottom:1103.355000px;}
.y33{bottom:1108.755000px;}
.y39{bottom:1122.255000px;}
.y38{bottom:1141.455000px;}
.y37{bottom:1196.100000px;}
.h10{height:23.554688px;}
.h11{height:24.187500px;}
.hb{height:24.600000px;}
.hc{height:42.000000px;}
.hd{height:47.109375px;}
.h5{height:48.375000px;}
.he{height:50.642578px;}
.h2{height:58.857422px;}
.h3{height:58.886719px;}
.hf{height:60.070312px;}
.h9{height:60.468750px;}
.h7{height:64.775391px;}
.ha{height:66.515625px;}
.h4{height:72.562500px;}
.h8{height:74.769375px;}
.h6{height:96.750000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:98.437500px;}
.w3{width:300.675000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:10.800000px;}
.x1{left:84.937500px;}
.xa{left:87.630000px;}
.x8{left:135.937500px;}
.xe{left:138.037500px;}
.x4{left:142.837500px;}
.x2{left:192.975000px;}
.x7{left:257.175000px;}
.xf{left:268.575000px;}
.xb{left:296.220000px;}
.x5{left:349.620000px;}
.xd{left:409.320000px;}
.x6{left:419.250000px;}
.x3{left:446.250000px;}
.x9{left:720.525000px;}
.x10{left:785.370000px;}
.x12{left:791.370000px;}
.x11{left:795.870000px;}
@media print{
.v2{vertical-align:-98.133333pt;}
.v1{vertical-align:-67.200000pt;}
.v4{vertical-align:-61.813333pt;}
.v5{vertical-align:-5.386667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.586667pt;}
.lsd{letter-spacing:-0.810667pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.336000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.266667pt;}
.ls10{letter-spacing:0.469333pt;}
.ls4{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.533333pt;}
.lsf{letter-spacing:0.640000pt;}
.ls6{letter-spacing:1.333333pt;}
.ls5{letter-spacing:15.200000pt;}
.ls1{letter-spacing:42.666667pt;}
.ls2{letter-spacing:58.133333pt;}
.ls0{letter-spacing:271.973333pt;}
.ws9{word-spacing:-15.136000pt;}
.ws1{word-spacing:-14.666667pt;}
.ws8{word-spacing:-14.330667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws5{word-spacing:-11.466667pt;}
.ws6{word-spacing:-10.933333pt;}
.ws2{word-spacing:-10.922667pt;}
.ws3{word-spacing:-10.666667pt;}
.ws4{word-spacing:-9.856000pt;}
.ws7{word-spacing:0.000000pt;}
._9{margin-left:-2.613333pt;}
._1{margin-left:-1.626667pt;}
._0{width:1.120000pt;}
._5{width:2.272000pt;}
._c{width:3.493333pt;}
._19{width:4.426667pt;}
._b{width:5.338667pt;}
._12{width:6.453333pt;}
._d{width:7.392000pt;}
._e{width:8.421333pt;}
._16{width:9.376000pt;}
._14{width:10.405333pt;}
._15{width:11.594667pt;}
._10{width:12.496000pt;}
._11{width:13.450667pt;}
._f{width:15.685333pt;}
._7{width:17.333333pt;}
._8{width:18.448000pt;}
._13{width:19.728000pt;}
._a{width:20.698667pt;}
._1a{width:22.373333pt;}
._18{width:23.749333pt;}
._17{width:25.152000pt;}
._1c{width:26.208000pt;}
._1b{width:27.600000pt;}
._2{width:166.400000pt;}
._3{width:172.800000pt;}
._1d{width:174.133333pt;}
._4{width:178.133333pt;}
._6{width:1427.866667pt;}
.fs7{font-size:21.333333pt;}
.fs6{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:45.866667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y32{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:2.946667pt;}
.y35{bottom:16.000000pt;}
.y34{bottom:28.000000pt;}
.y2{bottom:50.166667pt;}
.y1{bottom:65.633333pt;}
.y6e{bottom:103.500000pt;}
.y30{bottom:106.166667pt;}
.y73{bottom:109.100000pt;}
.y88{bottom:109.366667pt;}
.y6d{bottom:120.566667pt;}
.y2f{bottom:123.233333pt;}
.y72{bottom:124.566667pt;}
.y87{bottom:126.166667pt;}
.y6c{bottom:137.360000pt;}
.y71{bottom:138.160000pt;}
.y2e{bottom:140.026667pt;}
.y70{bottom:142.693333pt;}
.y86{bottom:142.960000pt;}
.y6b{bottom:154.200000pt;}
.y2d{bottom:156.866667pt;}
.y85{bottom:160.066667pt;}
.y6a{bottom:171.000000pt;}
.y2c{bottom:173.666667pt;}
.y84{bottom:176.866667pt;}
.y69{bottom:188.066667pt;}
.y2b{bottom:190.733333pt;}
.y83{bottom:193.666667pt;}
.y68{bottom:204.866667pt;}
.y2a{bottom:207.533333pt;}
.y82{bottom:210.466667pt;}
.y67{bottom:221.666667pt;}
.y29{bottom:224.333333pt;}
.y81{bottom:227.266667pt;}
.y66{bottom:238.466667pt;}
.y28{bottom:241.133333pt;}
.y80{bottom:244.066667pt;}
.y65{bottom:255.266667pt;}
.y27{bottom:258.200000pt;}
.y7f{bottom:261.133333pt;}
.y64{bottom:272.333333pt;}
.y26{bottom:275.000000pt;}
.y7e{bottom:277.933333pt;}
.y63{bottom:289.133333pt;}
.y25{bottom:291.800000pt;}
.y7d{bottom:295.000000pt;}
.y62{bottom:305.960000pt;}
.y24{bottom:308.626667pt;}
.y7c{bottom:311.826667pt;}
.y61{bottom:322.773333pt;}
.y23{bottom:325.693333pt;}
.y7b{bottom:328.626667pt;}
.y60{bottom:339.840000pt;}
.y22{bottom:342.493333pt;}
.y7a{bottom:345.160000pt;}
.y5f{bottom:356.626667pt;}
.y21{bottom:359.293333pt;}
.y79{bottom:362.506667pt;}
.y5e{bottom:373.440000pt;}
.y20{bottom:376.106667pt;}
.y78{bottom:379.293333pt;}
.y5d{bottom:390.226667pt;}
.y1f{bottom:393.173333pt;}
.y77{bottom:395.840000pt;}
.y5c{bottom:407.293333pt;}
.y76{bottom:409.440000pt;}
.y1e{bottom:409.960000pt;}
.y75{bottom:413.960000pt;}
.y5b{bottom:424.106667pt;}
.y1d{bottom:426.506667pt;}
.y5a{bottom:440.893333pt;}
.y1c{bottom:443.560000pt;}
.y59{bottom:457.466667pt;}
.y1b{bottom:460.666667pt;}
.y58{bottom:474.800000pt;}
.y1a{bottom:480.666667pt;}
.y57{bottom:491.600000pt;}
.y19{bottom:497.466667pt;}
.y56{bottom:508.400000pt;}
.y18{bottom:512.666667pt;}
.y55{bottom:524.933333pt;}
.y17{bottom:527.866667pt;}
.y54{bottom:542.266667pt;}
.y16{bottom:543.333333pt;}
.y15{bottom:558.800000pt;}
.y53{bottom:559.066667pt;}
.y14{bottom:574.000000pt;}
.y52{bottom:575.600000pt;}
.y13{bottom:589.200000pt;}
.y51{bottom:592.400000pt;}
.y12{bottom:604.960000pt;}
.y50{bottom:609.506667pt;}
.y11{bottom:625.226667pt;}
.y4f{bottom:626.560000pt;}
.y4e{bottom:643.360000pt;}
.y10{bottom:657.226667pt;}
.y4d{bottom:660.173333pt;}
.yf{bottom:672.426667pt;}
.y4c{bottom:677.226667pt;}
.ye{bottom:687.893333pt;}
.y4b{bottom:694.026667pt;}
.yd{bottom:703.106667pt;}
.y4a{bottom:710.560000pt;}
.yc{bottom:718.293333pt;}
.y49{bottom:727.373333pt;}
.yb{bottom:734.560000pt;}
.y48{bottom:744.706667pt;}
.ya{bottom:752.466667pt;}
.y47{bottom:761.533333pt;}
.y9{bottom:769.266667pt;}
.y46{bottom:778.333333pt;}
.y8{bottom:787.400000pt;}
.y45{bottom:795.133333pt;}
.y44{bottom:812.200000pt;}
.y43{bottom:829.000000pt;}
.y7{bottom:836.466667pt;}
.y42{bottom:845.800000pt;}
.y6{bottom:859.666667pt;}
.y41{bottom:862.600000pt;}
.y40{bottom:879.666667pt;}
.y5{bottom:891.666667pt;}
.y3f{bottom:896.466667pt;}
.y3e{bottom:913.293333pt;}
.y4{bottom:914.093333pt;}
.y74{bottom:922.093333pt;}
.y3{bottom:923.960000pt;}
.y3d{bottom:930.106667pt;}
.y3c{bottom:947.173333pt;}
.y6f{bottom:955.960000pt;}
.y3b{bottom:963.960000pt;}
.y31{bottom:978.640000pt;}
.y3a{bottom:980.760000pt;}
.y33{bottom:985.560000pt;}
.y39{bottom:997.560000pt;}
.y38{bottom:1014.626667pt;}
.y37{bottom:1063.200000pt;}
.h10{height:20.937500pt;}
.h11{height:21.500000pt;}
.hb{height:21.866667pt;}
.hc{height:37.333333pt;}
.hd{height:41.875000pt;}
.h5{height:43.000000pt;}
.he{height:45.015625pt;}
.h2{height:52.317708pt;}
.h3{height:52.343750pt;}
.hf{height:53.395833pt;}
.h9{height:53.750000pt;}
.h7{height:57.578125pt;}
.ha{height:59.125000pt;}
.h4{height:64.500000pt;}
.h8{height:66.461667pt;}
.h6{height:86.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:87.500000pt;}
.w3{width:267.266667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:9.600000pt;}
.x1{left:75.500000pt;}
.xa{left:77.893333pt;}
.x8{left:120.833333pt;}
.xe{left:122.700000pt;}
.x4{left:126.966667pt;}
.x2{left:171.533333pt;}
.x7{left:228.600000pt;}
.xf{left:238.733333pt;}
.xb{left:263.306667pt;}
.x5{left:310.773333pt;}
.xd{left:363.840000pt;}
.x6{left:372.666667pt;}
.x3{left:396.666667pt;}
.x9{left:640.466667pt;}
.x10{left:698.106667pt;}
.x12{left:703.440000pt;}
.x11{left:707.440000pt;}
}




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