
    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_291984ab07427b2fc5c000b1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a9a7a5dfdc31819eb6824e50.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_5eb54cebc6feaa3d116b7558.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c8eaefbe6b5d0490b922bb36.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_4d7a4599ec825b75bbc051d7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3daf8f0845df8040a682eb6e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_dd4cabd26e3a10af1c28de9e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_531be12b0847e28b120c22ee.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a200e115035ce2595f859cf9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.059082;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:-74.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls9{letter-spacing:-2.700000px;}
.lsa{letter-spacing:-1.980000px;}
.ls8{letter-spacing:-1.800000px;}
.ls6{letter-spacing:-0.924000px;}
.lsc{letter-spacing:-0.846000px;}
.ls10{letter-spacing:-0.804000px;}
.lsf{letter-spacing:-0.427800px;}
.lse{letter-spacing:-0.085200px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.869760px;}
.lsd{letter-spacing:33.984000px;}
.ls3{letter-spacing:52.668000px;}
.ls0{letter-spacing:1064.460000px;}
.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;}
}
.wsc{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.ws6{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.700000px;}
.wsb{word-spacing:-10.612800px;}
.ws8{word-spacing:-10.527600px;}
.ws9{word-spacing:-10.185000px;}
.ws2{word-spacing:-9.978240px;}
.wsa{word-spacing:-9.808800px;}
.ws7{word-spacing:0.000000px;}
._20{margin-left:-5.886000px;}
._21{margin-left:-4.402320px;}
._6{margin-left:-2.502000px;}
._2{margin-left:-1.192320px;}
._0{width:1.254960px;}
._1{width:2.742960px;}
._e{width:3.900240px;}
._c{width:5.304960px;}
._9{width:6.305040px;}
._7{width:7.344000px;}
._8{width:8.586000px;}
._b{width:10.314000px;}
._11{width:11.448000px;}
._a{width:14.675040px;}
._10{width:15.714000px;}
._5{width:17.037840px;}
._d{width:18.090000px;}
._17{width:19.157040px;}
._1b{width:20.396880px;}
._1e{width:21.502800px;}
._f{width:22.842000px;}
._22{width:24.019200px;}
._12{width:25.437600px;}
._4{width:27.000720px;}
._13{width:28.134000px;}
._18{width:29.538000px;}
._19{width:32.670000px;}
._1f{width:34.240320px;}
._16{width:35.262000px;}
._15{width:36.400320px;}
._1a{width:37.476000px;}
._1c{width:39.960000px;}
._1d{width:41.243040px;}
._14{width:61.020000px;}
._3{width:432.814560px;}
.fc6{color:transparent;}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y27{bottom:5.580000px;}
.y2a{bottom:7.740000px;}
.y26{bottom:23.400000px;}
.y29{bottom:25.560000px;}
.y25{bottom:50.400000px;}
.y49{bottom:57.060000px;}
.y24{bottom:68.220000px;}
.y48{bottom:72.540000px;}
.y4{bottom:77.220000px;}
.y23{bottom:86.040000px;}
.y46{bottom:97.560000px;}
.y22{bottom:103.860000px;}
.y6{bottom:105.120000px;}
.y45{bottom:115.560000px;}
.y21{bottom:121.680000px;}
.y42{bottom:126.000000px;}
.y44{bottom:133.560000px;}
.y20{bottom:139.680000px;}
.y41{bottom:157.320000px;}
.y1f{bottom:157.500000px;}
.y43{bottom:161.820000px;}
.y1e{bottom:175.320000px;}
.y1d{bottom:193.140000px;}
.y13{bottom:205.740000px;}
.y1c{bottom:210.960000px;}
.y40{bottom:210.990000px;}
.y3f{bottom:228.810000px;}
.y1b{bottom:228.825000px;}
.y12{bottom:232.605000px;}
.y3e{bottom:246.630000px;}
.y1a{bottom:246.825000px;}
.y11{bottom:259.425000px;}
.y3d{bottom:264.450000px;}
.y19{bottom:264.645000px;}
.y3c{bottom:282.450000px;}
.y18{bottom:282.465000px;}
.y10{bottom:285.885000px;}
.y3b{bottom:300.270000px;}
.y17{bottom:300.285000px;}
.yf{bottom:313.065000px;}
.y3a{bottom:318.090000px;}
.y16{bottom:318.105000px;}
.y39{bottom:335.910000px;}
.y15{bottom:336.105000px;}
.ye{bottom:339.165000px;}
.y38{bottom:353.730000px;}
.y14{bottom:353.925000px;}
.yd{bottom:355.005000px;}
.y37{bottom:382.170000px;}
.y36{bottom:413.490000px;}
.y35{bottom:431.310000px;}
.y34{bottom:449.175000px;}
.y33{bottom:466.995000px;}
.y32{bottom:484.815000px;}
.y31{bottom:502.815000px;}
.y30{bottom:520.635000px;}
.y2f{bottom:538.455000px;}
.y2e{bottom:556.275000px;}
.y2d{bottom:574.095000px;}
.y2c{bottom:592.095000px;}
.y2b{bottom:620.355000px;}
.y28{bottom:646.815000px;}
.yc{bottom:694.365000px;}
.yb{bottom:1075.830000px;}
.y4e{bottom:1076.730000px;}
.ya{bottom:1102.290000px;}
.y5{bottom:1112.940000px;}
.y4d{bottom:1117.590000px;}
.y9{bottom:1132.350000px;}
.y4b{bottom:1160.820000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y4a{bottom:1178.820000px;}
.y2{bottom:1181.520000px;}
.y7{bottom:1191.240000px;}
.y4c{bottom:1192.500000px;}
.y1{bottom:1196.820000px;}
.y47{bottom:1224.540000px;}
.h13{height:40.843828px;}
.h10{height:46.830000px;}
.h5{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.hd{height:48.616875px;}
.hf{height:52.971680px;}
.hb{height:52.998047px;}
.he{height:54.421875px;}
.h12{height:55.503491px;}
.h2{height:58.651172px;}
.ha{height:60.041250px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.h15{height:70.664062px;}
.h11{height:72.562500px;}
.h14{height:74.004654px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.hc{height:375.150000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w3{width:211.933500px;}
.w4{width:541.365000px;}
.w5{width:754.198500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.098500px;}
.x3{left:12.090000px;}
.x1{left:54.000000px;}
.x11{left:55.440000px;}
.x9{left:69.481500px;}
.x14{left:81.000000px;}
.xc{left:95.256000px;}
.x15{left:108.036000px;}
.xb{left:282.315000px;}
.x6{left:355.755000px;}
.x7{left:384.735000px;}
.x8{left:410.115000px;}
.x13{left:439.815000px;}
.xe{left:473.505000px;}
.xf{left:500.505000px;}
.xd{left:514.725000px;}
.x10{left:527.505000px;}
.x12{left:668.490000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-66.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls9{letter-spacing:-2.400000pt;}
.lsa{letter-spacing:-1.760000pt;}
.ls8{letter-spacing:-1.600000pt;}
.ls6{letter-spacing:-0.821333pt;}
.lsc{letter-spacing:-0.752000pt;}
.ls10{letter-spacing:-0.714667pt;}
.lsf{letter-spacing:-0.380267pt;}
.lse{letter-spacing:-0.075733pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.773120pt;}
.lsd{letter-spacing:30.208000pt;}
.ls3{letter-spacing:46.816000pt;}
.ls0{letter-spacing:946.186667pt;}
.wsc{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.ws6{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.400000pt;}
.wsb{word-spacing:-9.433600pt;}
.ws8{word-spacing:-9.357867pt;}
.ws9{word-spacing:-9.053333pt;}
.ws2{word-spacing:-8.869547pt;}
.wsa{word-spacing:-8.718933pt;}
.ws7{word-spacing:0.000000pt;}
._20{margin-left:-5.232000pt;}
._21{margin-left:-3.913173pt;}
._6{margin-left:-2.224000pt;}
._2{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._1{width:2.438187pt;}
._e{width:3.466880pt;}
._c{width:4.715520pt;}
._9{width:5.604480pt;}
._7{width:6.528000pt;}
._8{width:7.632000pt;}
._b{width:9.168000pt;}
._11{width:10.176000pt;}
._a{width:13.044480pt;}
._10{width:13.968000pt;}
._5{width:15.144747pt;}
._d{width:16.080000pt;}
._17{width:17.028480pt;}
._1b{width:18.130560pt;}
._1e{width:19.113600pt;}
._f{width:20.304000pt;}
._22{width:21.350400pt;}
._12{width:22.611200pt;}
._4{width:24.000640pt;}
._13{width:25.008000pt;}
._18{width:26.256000pt;}
._19{width:29.040000pt;}
._1f{width:30.435840pt;}
._16{width:31.344000pt;}
._15{width:32.355840pt;}
._1a{width:33.312000pt;}
._1c{width:35.520000pt;}
._1d{width:36.660480pt;}
._14{width:54.240000pt;}
._3{width:384.724053pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:4.960000pt;}
.y2a{bottom:6.880000pt;}
.y26{bottom:20.800000pt;}
.y29{bottom:22.720000pt;}
.y25{bottom:44.800000pt;}
.y49{bottom:50.720000pt;}
.y24{bottom:60.640000pt;}
.y48{bottom:64.480000pt;}
.y4{bottom:68.640000pt;}
.y23{bottom:76.480000pt;}
.y46{bottom:86.720000pt;}
.y22{bottom:92.320000pt;}
.y6{bottom:93.440000pt;}
.y45{bottom:102.720000pt;}
.y21{bottom:108.160000pt;}
.y42{bottom:112.000000pt;}
.y44{bottom:118.720000pt;}
.y20{bottom:124.160000pt;}
.y41{bottom:139.840000pt;}
.y1f{bottom:140.000000pt;}
.y43{bottom:143.840000pt;}
.y1e{bottom:155.840000pt;}
.y1d{bottom:171.680000pt;}
.y13{bottom:182.880000pt;}
.y1c{bottom:187.520000pt;}
.y40{bottom:187.546667pt;}
.y3f{bottom:203.386667pt;}
.y1b{bottom:203.400000pt;}
.y12{bottom:206.760000pt;}
.y3e{bottom:219.226667pt;}
.y1a{bottom:219.400000pt;}
.y11{bottom:230.600000pt;}
.y3d{bottom:235.066667pt;}
.y19{bottom:235.240000pt;}
.y3c{bottom:251.066667pt;}
.y18{bottom:251.080000pt;}
.y10{bottom:254.120000pt;}
.y3b{bottom:266.906667pt;}
.y17{bottom:266.920000pt;}
.yf{bottom:278.280000pt;}
.y3a{bottom:282.746667pt;}
.y16{bottom:282.760000pt;}
.y39{bottom:298.586667pt;}
.y15{bottom:298.760000pt;}
.ye{bottom:301.480000pt;}
.y38{bottom:314.426667pt;}
.y14{bottom:314.600000pt;}
.yd{bottom:315.560000pt;}
.y37{bottom:339.706667pt;}
.y36{bottom:367.546667pt;}
.y35{bottom:383.386667pt;}
.y34{bottom:399.266667pt;}
.y33{bottom:415.106667pt;}
.y32{bottom:430.946667pt;}
.y31{bottom:446.946667pt;}
.y30{bottom:462.786667pt;}
.y2f{bottom:478.626667pt;}
.y2e{bottom:494.466667pt;}
.y2d{bottom:510.306667pt;}
.y2c{bottom:526.306667pt;}
.y2b{bottom:551.426667pt;}
.y28{bottom:574.946667pt;}
.yc{bottom:617.213333pt;}
.yb{bottom:956.293333pt;}
.y4e{bottom:957.093333pt;}
.ya{bottom:979.813333pt;}
.y5{bottom:989.280000pt;}
.y4d{bottom:993.413333pt;}
.y9{bottom:1006.533333pt;}
.y4b{bottom:1031.840000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y4a{bottom:1047.840000pt;}
.y2{bottom:1050.240000pt;}
.y7{bottom:1058.880000pt;}
.y4c{bottom:1060.000000pt;}
.y1{bottom:1063.840000pt;}
.y47{bottom:1088.480000pt;}
.h13{height:36.305625pt;}
.h10{height:41.626667pt;}
.h5{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.hd{height:43.215000pt;}
.hf{height:47.085938pt;}
.hb{height:47.109375pt;}
.he{height:48.375000pt;}
.h12{height:49.336436pt;}
.h2{height:52.134375pt;}
.ha{height:53.370000pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.h15{height:62.812500pt;}
.h11{height:64.500000pt;}
.h14{height:65.781915pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.hc{height:333.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w3{width:188.385333pt;}
.w4{width:481.213333pt;}
.w5{width:670.398667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.198667pt;}
.x3{left:10.746667pt;}
.x1{left:48.000000pt;}
.x11{left:49.280000pt;}
.x9{left:61.761333pt;}
.x14{left:72.000000pt;}
.xc{left:84.672000pt;}
.x15{left:96.032000pt;}
.xb{left:250.946667pt;}
.x6{left:316.226667pt;}
.x7{left:341.986667pt;}
.x8{left:364.546667pt;}
.x13{left:390.946667pt;}
.xe{left:420.893333pt;}
.xf{left:444.893333pt;}
.xd{left:457.533333pt;}
.x10{left:468.893333pt;}
.x12{left:594.213333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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