
    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_32018ce20c2c650074f4b326.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dc54a571827ee9381afa1e7d.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_59e8a8bb0e2046cf049c673a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_4e437a5ef0c5fa24adea9f5f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_361f8919156264410fbcc707.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_958f31fd41731018ac93c67b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-15.660000px;}
.ls11{letter-spacing:-3.960000px;}
.ls8{letter-spacing:-0.924000px;}
.lsb{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.460200px;}
.ls2{letter-spacing:-0.457800px;}
.lsa{letter-spacing:-0.413400px;}
.ls9{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.305400px;}
.ls3{letter-spacing:-0.208200px;}
.ls5{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.360000px;}
.lse{letter-spacing:11.466720px;}
.lsd{letter-spacing:41.850720px;}
.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:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws2{word-spacing:-16.102200px;}
.ws7{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws9{word-spacing:-10.980000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-936.230400px;}
._a{margin-left:-916.141440px;}
._22{margin-left:-915.019680px;}
._9{margin-left:-776.340000px;}
._6{margin-left:-592.908480px;}
._14{margin-left:-494.040000px;}
._15{margin-left:-475.032960px;}
._11{margin-left:-448.079040px;}
._d{margin-left:-396.181440px;}
._23{margin-left:-395.059680px;}
._b{margin-left:-386.974080px;}
._8{margin-left:-364.210560px;}
._c{margin-left:-346.320000px;}
._10{margin-left:-312.660000px;}
._7{margin-left:-277.200000px;}
._e{margin-left:-198.000000px;}
._12{margin-left:-169.243200px;}
._f{margin-left:-149.040000px;}
._13{margin-left:-82.800000px;}
._16{margin-left:-74.989680px;}
._28{margin-left:-6.583200px;}
._26{margin-left:-5.068080px;}
._21{margin-left:-3.436560px;}
._1a{margin-left:-2.380320px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._19{width:2.265840px;}
._1b{width:4.174080px;}
._1e{width:5.663040px;}
._1f{width:7.230960px;}
._20{width:8.784720px;}
._25{width:9.839520px;}
._1d{width:10.884240px;}
._1c{width:11.892240px;}
._24{width:13.565520px;}
._27{width:15.093120px;}
._17{width:16.316400px;}
._18{width:17.483520px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:57.960000px;}
.y35{bottom:86.436000px;}
.y79{bottom:92.016000px;}
.y6d{bottom:92.376000px;}
.y34{bottom:106.236000px;}
.y6c{bottom:112.176000px;}
.y33{bottom:126.036000px;}
.y6b{bottom:131.976000px;}
.y32{bottom:146.016000px;}
.y6a{bottom:151.770000px;}
.y31{bottom:165.810000px;}
.y69{bottom:171.570000px;}
.y30{bottom:185.610000px;}
.y68{bottom:191.550000px;}
.y78{bottom:196.410000px;}
.y2f{bottom:205.410000px;}
.y67{bottom:211.350000px;}
.y2e{bottom:225.210000px;}
.y77{bottom:227.010000px;}
.y66{bottom:231.150000px;}
.y2d{bottom:245.190000px;}
.y65{bottom:250.950000px;}
.y76{bottom:257.610000px;}
.y2c{bottom:264.990000px;}
.y64{bottom:270.750000px;}
.y2b{bottom:284.790000px;}
.y75{bottom:288.390000px;}
.y63{bottom:290.730000px;}
.y2a{bottom:304.590000px;}
.y62{bottom:310.530000px;}
.y74{bottom:318.990000px;}
.y29{bottom:324.390000px;}
.y61{bottom:330.375000px;}
.y28{bottom:344.415000px;}
.y73{bottom:349.635000px;}
.y60{bottom:350.175000px;}
.y27{bottom:364.215000px;}
.y5f{bottom:369.975000px;}
.y72{bottom:380.235000px;}
.y26{bottom:384.015000px;}
.y5e{bottom:389.955000px;}
.y25{bottom:403.815000px;}
.y5d{bottom:409.755000px;}
.y71{bottom:410.835000px;}
.y24{bottom:423.615000px;}
.y5c{bottom:429.555000px;}
.y70{bottom:441.435000px;}
.y23{bottom:443.595000px;}
.y5b{bottom:449.355000px;}
.y22{bottom:463.395000px;}
.y5a{bottom:469.155000px;}
.y6f{bottom:473.475000px;}
.y21{bottom:483.195000px;}
.y59{bottom:489.135000px;}
.y20{bottom:502.995000px;}
.y6e{bottom:507.315000px;}
.y58{bottom:508.935000px;}
.y1f{bottom:522.795000px;}
.y57{bottom:528.735000px;}
.y1e{bottom:542.775000px;}
.y56{bottom:548.535000px;}
.y1d{bottom:562.575000px;}
.y55{bottom:568.335000px;}
.y1c{bottom:584.535000px;}
.y54{bottom:588.315000px;}
.y53{bottom:608.145000px;}
.y1b{bottom:613.545000px;}
.y52{bottom:627.945000px;}
.y1a{bottom:633.345000px;}
.y51{bottom:647.745000px;}
.y19{bottom:653.145000px;}
.y50{bottom:667.545000px;}
.y18{bottom:672.945000px;}
.y4f{bottom:687.525000px;}
.y17{bottom:692.745000px;}
.y4e{bottom:707.325000px;}
.y16{bottom:712.725000px;}
.y4d{bottom:727.125000px;}
.y15{bottom:732.525000px;}
.y4c{bottom:746.925000px;}
.y14{bottom:752.325000px;}
.y4b{bottom:766.725000px;}
.y13{bottom:772.125000px;}
.y4a{bottom:786.705000px;}
.y12{bottom:791.925000px;}
.y49{bottom:806.505000px;}
.y11{bottom:811.905000px;}
.y48{bottom:826.305000px;}
.y10{bottom:831.705000px;}
.y47{bottom:846.105000px;}
.yf{bottom:851.505000px;}
.y46{bottom:865.950000px;}
.ye{bottom:871.350000px;}
.y45{bottom:885.930000px;}
.yd{bottom:891.150000px;}
.y44{bottom:905.730000px;}
.yc{bottom:913.290000px;}
.y43{bottom:925.530000px;}
.yb{bottom:933.090000px;}
.y42{bottom:945.330000px;}
.ya{bottom:953.610000px;}
.y41{bottom:965.130000px;}
.y9{bottom:974.850000px;}
.y40{bottom:985.110000px;}
.y8{bottom:998.250000px;}
.y3f{bottom:1004.910000px;}
.y3e{bottom:1024.710000px;}
.y7{bottom:1029.930000px;}
.y3d{bottom:1044.510000px;}
.y3c{bottom:1064.310000px;}
.y5{bottom:1067.010000px;}
.y3b{bottom:1084.290000px;}
.y4{bottom:1096.530000px;}
.y3a{bottom:1104.090000px;}
.y39{bottom:1123.890000px;}
.y3{bottom:1126.050000px;}
.y38{bottom:1143.720000px;}
.y2{bottom:1155.600000px;}
.y37{bottom:1163.520000px;}
.y1{bottom:1187.460000px;}
.y36{bottom:1194.120000px;}
.hb{height:41.493516px;}
.h9{height:43.215117px;}
.h5{height:58.651172px;}
.h6{height:60.226875px;}
.h8{height:61.423863px;}
.h4{height:65.010937px;}
.ha{height:65.884219px;}
.h3{height:66.757500px;}
.h7{height:67.824844px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:44.099987px;}
.x1{left:54.179987px;}
.x3{left:80.999987px;}
.x4{left:108.035987px;}
.x2{left:806.549987px;}
.x5{left:829.409987px;}
.x6{left:832.289987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-13.920000pt;}
.ls11{letter-spacing:-3.520000pt;}
.ls8{letter-spacing:-0.821333pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.409067pt;}
.ls2{letter-spacing:-0.406933pt;}
.lsa{letter-spacing:-0.367467pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.271467pt;}
.ls3{letter-spacing:-0.185067pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.320000pt;}
.lse{letter-spacing:10.192640pt;}
.lsd{letter-spacing:37.200640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws2{word-spacing:-14.313067pt;}
.ws7{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws9{word-spacing:-9.760000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-832.204800pt;}
._a{margin-left:-814.347947pt;}
._22{margin-left:-813.350827pt;}
._9{margin-left:-690.080000pt;}
._6{margin-left:-527.029760pt;}
._14{margin-left:-439.146667pt;}
._15{margin-left:-422.251520pt;}
._11{margin-left:-398.292480pt;}
._d{margin-left:-352.161280pt;}
._23{margin-left:-351.164160pt;}
._b{margin-left:-343.976960pt;}
._8{margin-left:-323.742720pt;}
._c{margin-left:-307.840000pt;}
._10{margin-left:-277.920000pt;}
._7{margin-left:-246.400000pt;}
._e{margin-left:-176.000000pt;}
._12{margin-left:-150.438400pt;}
._f{margin-left:-132.480000pt;}
._13{margin-left:-73.600000pt;}
._16{margin-left:-66.657493pt;}
._28{margin-left:-5.851733pt;}
._26{margin-left:-4.504960pt;}
._21{margin-left:-3.054720pt;}
._1a{margin-left:-2.115840pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._19{width:2.014080pt;}
._1b{width:3.710293pt;}
._1e{width:5.033813pt;}
._1f{width:6.427520pt;}
._20{width:7.808640pt;}
._25{width:8.746240pt;}
._1d{width:9.674880pt;}
._1c{width:10.570880pt;}
._24{width:12.058240pt;}
._27{width:13.416107pt;}
._17{width:14.503467pt;}
._18{width:15.540907pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:51.520000pt;}
.y35{bottom:76.832000pt;}
.y79{bottom:81.792000pt;}
.y6d{bottom:82.112000pt;}
.y34{bottom:94.432000pt;}
.y6c{bottom:99.712000pt;}
.y33{bottom:112.032000pt;}
.y6b{bottom:117.312000pt;}
.y32{bottom:129.792000pt;}
.y6a{bottom:134.906667pt;}
.y31{bottom:147.386667pt;}
.y69{bottom:152.506667pt;}
.y30{bottom:164.986667pt;}
.y68{bottom:170.266667pt;}
.y78{bottom:174.586667pt;}
.y2f{bottom:182.586667pt;}
.y67{bottom:187.866667pt;}
.y2e{bottom:200.186667pt;}
.y77{bottom:201.786667pt;}
.y66{bottom:205.466667pt;}
.y2d{bottom:217.946667pt;}
.y65{bottom:223.066667pt;}
.y76{bottom:228.986667pt;}
.y2c{bottom:235.546667pt;}
.y64{bottom:240.666667pt;}
.y2b{bottom:253.146667pt;}
.y75{bottom:256.346667pt;}
.y63{bottom:258.426667pt;}
.y2a{bottom:270.746667pt;}
.y62{bottom:276.026667pt;}
.y74{bottom:283.546667pt;}
.y29{bottom:288.346667pt;}
.y61{bottom:293.666667pt;}
.y28{bottom:306.146667pt;}
.y73{bottom:310.786667pt;}
.y60{bottom:311.266667pt;}
.y27{bottom:323.746667pt;}
.y5f{bottom:328.866667pt;}
.y72{bottom:337.986667pt;}
.y26{bottom:341.346667pt;}
.y5e{bottom:346.626667pt;}
.y25{bottom:358.946667pt;}
.y5d{bottom:364.226667pt;}
.y71{bottom:365.186667pt;}
.y24{bottom:376.546667pt;}
.y5c{bottom:381.826667pt;}
.y70{bottom:392.386667pt;}
.y23{bottom:394.306667pt;}
.y5b{bottom:399.426667pt;}
.y22{bottom:411.906667pt;}
.y5a{bottom:417.026667pt;}
.y6f{bottom:420.866667pt;}
.y21{bottom:429.506667pt;}
.y59{bottom:434.786667pt;}
.y20{bottom:447.106667pt;}
.y6e{bottom:450.946667pt;}
.y58{bottom:452.386667pt;}
.y1f{bottom:464.706667pt;}
.y57{bottom:469.986667pt;}
.y1e{bottom:482.466667pt;}
.y56{bottom:487.586667pt;}
.y1d{bottom:500.066667pt;}
.y55{bottom:505.186667pt;}
.y1c{bottom:519.586667pt;}
.y54{bottom:522.946667pt;}
.y53{bottom:540.573333pt;}
.y1b{bottom:545.373333pt;}
.y52{bottom:558.173333pt;}
.y1a{bottom:562.973333pt;}
.y51{bottom:575.773333pt;}
.y19{bottom:580.573333pt;}
.y50{bottom:593.373333pt;}
.y18{bottom:598.173333pt;}
.y4f{bottom:611.133333pt;}
.y17{bottom:615.773333pt;}
.y4e{bottom:628.733333pt;}
.y16{bottom:633.533333pt;}
.y4d{bottom:646.333333pt;}
.y15{bottom:651.133333pt;}
.y4c{bottom:663.933333pt;}
.y14{bottom:668.733333pt;}
.y4b{bottom:681.533333pt;}
.y13{bottom:686.333333pt;}
.y4a{bottom:699.293333pt;}
.y12{bottom:703.933333pt;}
.y49{bottom:716.893333pt;}
.y11{bottom:721.693333pt;}
.y48{bottom:734.493333pt;}
.y10{bottom:739.293333pt;}
.y47{bottom:752.093333pt;}
.yf{bottom:756.893333pt;}
.y46{bottom:769.733333pt;}
.ye{bottom:774.533333pt;}
.y45{bottom:787.493333pt;}
.yd{bottom:792.133333pt;}
.y44{bottom:805.093333pt;}
.yc{bottom:811.813333pt;}
.y43{bottom:822.693333pt;}
.yb{bottom:829.413333pt;}
.y42{bottom:840.293333pt;}
.ya{bottom:847.653333pt;}
.y41{bottom:857.893333pt;}
.y9{bottom:866.533333pt;}
.y40{bottom:875.653333pt;}
.y8{bottom:887.333333pt;}
.y3f{bottom:893.253333pt;}
.y3e{bottom:910.853333pt;}
.y7{bottom:915.493333pt;}
.y3d{bottom:928.453333pt;}
.y3c{bottom:946.053333pt;}
.y5{bottom:948.453333pt;}
.y3b{bottom:963.813333pt;}
.y4{bottom:974.693333pt;}
.y3a{bottom:981.413333pt;}
.y39{bottom:999.013333pt;}
.y3{bottom:1000.933333pt;}
.y38{bottom:1016.640000pt;}
.y2{bottom:1027.200000pt;}
.y37{bottom:1034.240000pt;}
.y1{bottom:1055.520000pt;}
.y36{bottom:1061.440000pt;}
.hb{height:36.883125pt;}
.h9{height:38.413438pt;}
.h5{height:52.134375pt;}
.h6{height:53.535000pt;}
.h8{height:54.598989pt;}
.h4{height:57.787500pt;}
.ha{height:58.563750pt;}
.h3{height:59.340000pt;}
.h7{height:60.288750pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:39.199988pt;}
.x1{left:48.159988pt;}
.x3{left:71.999988pt;}
.x4{left:96.031988pt;}
.x2{left:716.933322pt;}
.x5{left:737.253322pt;}
.x6{left:739.813322pt;}
}




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