
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_122cc706a03becbf74f89efb.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7c33738d6200b2d893bba298.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_36b7b96ff7612cfa0d505bc5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_b6f1725138501e2c9fe8e12f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b61b497eb5964b5e6214772e.woff')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;}
.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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.496200px;}
.ls6{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.181200px;}
.ls7{letter-spacing:-0.034560px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.144720px;}
.ls2{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.223800px;}
.ls0{letter-spacing:0.360000px;}
.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:-16.560000px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.283800px;}
.ws5{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.878800px;}
.ws0{word-spacing:-11.700000px;}
.ws6{word-spacing:-11.563800px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._3{width:2.268000px;}
._4{width:3.942000px;}
._d{width:5.382720px;}
._b{width:6.488640px;}
._a{width:7.776000px;}
._9{width:8.910000px;}
._e{width:10.098000px;}
._c{width:11.888640px;}
._16{width:13.711680px;}
._2{width:14.821680px;}
._8{width:15.822000px;}
._7{width:17.172000px;}
._17{width:18.184800px;}
._f{width:19.494000px;}
._10{width:20.511360px;}
._5{width:21.924000px;}
._6{width:23.086080px;}
._12{width:24.235680px;}
._11{width:25.434000px;}
._1a{width:26.605440px;}
._14{width:27.622080px;}
._15{width:29.122560px;}
._19{width:30.695040px;}
._1f{width:31.927680px;}
._20{width:32.987520px;}
._18{width:34.511040px;}
._1d{width:35.637120px;}
._1e{width:36.645120px;}
._1c{width:40.225680px;}
._1b{width:41.267520px;}
._21{width:133.606080px;}
._22{width:134.812800px;}
._13{width:261.136560px;}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(13,13,13);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:3.060000px;}
.y3{bottom:6.480000px;}
.y42{bottom:9.900000px;}
.y43{bottom:11.340000px;}
.ya{bottom:11.700000px;}
.y3e{bottom:18.540000px;}
.y6{bottom:25.380000px;}
.y9{bottom:28.830000px;}
.y3d{bottom:34.020000px;}
.y5{bottom:42.690000px;}
.y8{bottom:46.110000px;}
.y3c{bottom:49.500000px;}
.y4{bottom:60.690000px;}
.y7{bottom:63.390000px;}
.y3b{bottom:65.205000px;}
.yc{bottom:68.760000px;}
.y3a{bottom:80.685000px;}
.y39{bottom:96.165000px;}
.y38{bottom:111.645000px;}
.y49{bottom:114.516000px;}
.y7c{bottom:118.116000px;}
.y37{bottom:127.125000px;}
.y48{bottom:133.416000px;}
.y7b{bottom:137.196000px;}
.y36{bottom:142.785000px;}
.y47{bottom:152.490000px;}
.y7a{bottom:156.090000px;}
.y35{bottom:158.265000px;}
.y46{bottom:171.390000px;}
.y34{bottom:173.745000px;}
.y79{bottom:174.990000px;}
.y33{bottom:189.225000px;}
.y45{bottom:190.470000px;}
.y78{bottom:194.070000px;}
.y32{bottom:204.885000px;}
.y44{bottom:205.770000px;}
.y77{bottom:212.970000px;}
.y31{bottom:220.365000px;}
.y41{bottom:227.910000px;}
.y76{bottom:232.050000px;}
.y30{bottom:235.845000px;}
.y75{bottom:250.950000px;}
.y2f{bottom:251.325000px;}
.y40{bottom:261.930000px;}
.y2e{bottom:266.985000px;}
.y74{bottom:269.850000px;}
.y17{bottom:273.090000px;}
.y2d{bottom:282.465000px;}
.y73{bottom:288.930000px;}
.y2c{bottom:297.945000px;}
.y72{bottom:307.830000px;}
.y2b{bottom:313.425000px;}
.y71{bottom:326.910000px;}
.y2a{bottom:329.085000px;}
.y29{bottom:344.595000px;}
.y70{bottom:345.855000px;}
.y28{bottom:360.075000px;}
.y6f{bottom:364.755000px;}
.y27{bottom:375.555000px;}
.y6e{bottom:383.835000px;}
.y26{bottom:391.215000px;}
.y6d{bottom:402.735000px;}
.y25{bottom:406.695000px;}
.y6c{bottom:421.815000px;}
.y24{bottom:422.175000px;}
.y23{bottom:437.655000px;}
.y6b{bottom:440.715000px;}
.y22{bottom:453.315000px;}
.y6a{bottom:459.615000px;}
.y21{bottom:468.795000px;}
.y69{bottom:478.695000px;}
.y20{bottom:484.275000px;}
.y68{bottom:497.595000px;}
.y1f{bottom:499.755000px;}
.y1e{bottom:515.415000px;}
.y67{bottom:516.675000px;}
.y1d{bottom:530.895000px;}
.y66{bottom:535.575000px;}
.y1c{bottom:546.375000px;}
.y65{bottom:554.475000px;}
.y1b{bottom:561.855000px;}
.y64{bottom:573.555000px;}
.y1a{bottom:577.515000px;}
.y63{bottom:592.455000px;}
.y19{bottom:592.995000px;}
.y18{bottom:608.520000px;}
.y62{bottom:611.565000px;}
.y61{bottom:630.465000px;}
.y60{bottom:649.545000px;}
.y5f{bottom:668.445000px;}
.y5e{bottom:687.345000px;}
.y5d{bottom:706.425000px;}
.y5c{bottom:725.325000px;}
.y5b{bottom:744.405000px;}
.y5a{bottom:763.305000px;}
.y59{bottom:782.205000px;}
.y58{bottom:801.285000px;}
.y57{bottom:820.185000px;}
.y56{bottom:839.265000px;}
.y55{bottom:858.165000px;}
.y54{bottom:877.110000px;}
.y53{bottom:896.190000px;}
.y16{bottom:897.450000px;}
.y52{bottom:915.090000px;}
.y15{bottom:919.950000px;}
.y14{bottom:932.010000px;}
.y51{bottom:934.170000px;}
.y13{bottom:949.110000px;}
.y50{bottom:953.070000px;}
.y12{bottom:971.610000px;}
.y4f{bottom:971.970000px;}
.y11{bottom:984.210000px;}
.y4e{bottom:991.050000px;}
.y10{bottom:1003.110000px;}
.y4d{bottom:1009.950000px;}
.yf{bottom:1022.010000px;}
.y4c{bottom:1029.030000px;}
.ye{bottom:1041.450000px;}
.y4b{bottom:1047.930000px;}
.yd{bottom:1063.950000px;}
.y4a{bottom:1067.010000px;}
.yb{bottom:1086.810000px;}
.y2{bottom:1109.130000px;}
.y1{bottom:1194.120000px;}
.hb{height:27.147656px;}
.h12{height:31.500000px;}
.h11{height:33.683203px;}
.h13{height:34.036523px;}
.h10{height:37.705078px;}
.hf{height:38.100586px;}
.h7{height:39.147891px;}
.h4{height:42.164648px;}
.he{height:44.507812px;}
.h14{height:46.251562px;}
.h9{height:46.736719px;}
.hc{height:48.027656px;}
.h6{height:49.255313px;}
.h5{height:50.800781px;}
.ha{height:53.224453px;}
.h8{height:54.864844px;}
.h2{height:65.884219px;}
.h3{height:77.436000px;}
.hd{height:621.105000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:72.000000px;}
.w5{width:209.370000px;}
.w7{width:224.130000px;}
.w8{width:283.530000px;}
.w9{width:391.575000px;}
.w4{width:427.935000px;}
.w6{width:459.075000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x16{left:24.840000px;}
.x14{left:29.700000px;}
.x7{left:31.140000px;}
.x3{left:69.294000px;}
.x8{left:85.725000px;}
.x2{left:99.936000px;}
.xa{left:104.625000px;}
.x1{left:108.035987px;}
.xc{left:113.615987px;}
.x9{left:132.345000px;}
.x18{left:150.509987px;}
.x19{left:161.129987px;}
.x11{left:162.209987px;}
.x4{left:171.930000px;}
.x17{left:226.289987px;}
.x12{left:271.109987px;}
.x10{left:308.774987px;}
.xf{left:352.334987px;}
.xd{left:357.014987px;}
.x15{left:391.575000px;}
.xe{left:446.654987px;}
.xb{left:500.144987px;}
.x13{left:567.105000px;}
.x6{left:599.865000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.441067pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.161067pt;}
.ls7{letter-spacing:-0.030720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.128640pt;}
.ls2{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.198933pt;}
.ls0{letter-spacing:0.320000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws7{word-spacing:-10.918933pt;}
.ws5{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.558933pt;}
.ws0{word-spacing:-10.400000pt;}
.ws6{word-spacing:-10.278933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._3{width:2.016000pt;}
._4{width:3.504000pt;}
._d{width:4.784640pt;}
._b{width:5.767680pt;}
._a{width:6.912000pt;}
._9{width:7.920000pt;}
._e{width:8.976000pt;}
._c{width:10.567680pt;}
._16{width:12.188160pt;}
._2{width:13.174827pt;}
._8{width:14.064000pt;}
._7{width:15.264000pt;}
._17{width:16.164267pt;}
._f{width:17.328000pt;}
._10{width:18.232320pt;}
._5{width:19.488000pt;}
._6{width:20.520960pt;}
._12{width:21.542827pt;}
._11{width:22.608000pt;}
._1a{width:23.649280pt;}
._14{width:24.552960pt;}
._15{width:25.886720pt;}
._19{width:27.284480pt;}
._1f{width:28.380160pt;}
._20{width:29.322240pt;}
._18{width:30.676480pt;}
._1d{width:31.677440pt;}
._1e{width:32.573440pt;}
._1c{width:35.756160pt;}
._1b{width:36.682240pt;}
._21{width:118.760960pt;}
._22{width:119.833600pt;}
._13{width:232.121387pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:2.720000pt;}
.y3{bottom:5.760000pt;}
.y42{bottom:8.800000pt;}
.y43{bottom:10.080000pt;}
.ya{bottom:10.400000pt;}
.y3e{bottom:16.480000pt;}
.y6{bottom:22.560000pt;}
.y9{bottom:25.626667pt;}
.y3d{bottom:30.240000pt;}
.y5{bottom:37.946667pt;}
.y8{bottom:40.986667pt;}
.y3c{bottom:44.000000pt;}
.y4{bottom:53.946667pt;}
.y7{bottom:56.346667pt;}
.y3b{bottom:57.960000pt;}
.yc{bottom:61.120000pt;}
.y3a{bottom:71.720000pt;}
.y39{bottom:85.480000pt;}
.y38{bottom:99.240000pt;}
.y49{bottom:101.792000pt;}
.y7c{bottom:104.992000pt;}
.y37{bottom:113.000000pt;}
.y48{bottom:118.592000pt;}
.y7b{bottom:121.952000pt;}
.y36{bottom:126.920000pt;}
.y47{bottom:135.546667pt;}
.y7a{bottom:138.746667pt;}
.y35{bottom:140.680000pt;}
.y46{bottom:152.346667pt;}
.y34{bottom:154.440000pt;}
.y79{bottom:155.546667pt;}
.y33{bottom:168.200000pt;}
.y45{bottom:169.306667pt;}
.y78{bottom:172.506667pt;}
.y32{bottom:182.120000pt;}
.y44{bottom:182.906667pt;}
.y77{bottom:189.306667pt;}
.y31{bottom:195.880000pt;}
.y41{bottom:202.586667pt;}
.y76{bottom:206.266667pt;}
.y30{bottom:209.640000pt;}
.y75{bottom:223.066667pt;}
.y2f{bottom:223.400000pt;}
.y40{bottom:232.826667pt;}
.y2e{bottom:237.320000pt;}
.y74{bottom:239.866667pt;}
.y17{bottom:242.746667pt;}
.y2d{bottom:251.080000pt;}
.y73{bottom:256.826667pt;}
.y2c{bottom:264.840000pt;}
.y72{bottom:273.626667pt;}
.y2b{bottom:278.600000pt;}
.y71{bottom:290.586667pt;}
.y2a{bottom:292.520000pt;}
.y29{bottom:306.306667pt;}
.y70{bottom:307.426667pt;}
.y28{bottom:320.066667pt;}
.y6f{bottom:324.226667pt;}
.y27{bottom:333.826667pt;}
.y6e{bottom:341.186667pt;}
.y26{bottom:347.746667pt;}
.y6d{bottom:357.986667pt;}
.y25{bottom:361.506667pt;}
.y6c{bottom:374.946667pt;}
.y24{bottom:375.266667pt;}
.y23{bottom:389.026667pt;}
.y6b{bottom:391.746667pt;}
.y22{bottom:402.946667pt;}
.y6a{bottom:408.546667pt;}
.y21{bottom:416.706667pt;}
.y69{bottom:425.506667pt;}
.y20{bottom:430.466667pt;}
.y68{bottom:442.306667pt;}
.y1f{bottom:444.226667pt;}
.y1e{bottom:458.146667pt;}
.y67{bottom:459.266667pt;}
.y1d{bottom:471.906667pt;}
.y66{bottom:476.066667pt;}
.y1c{bottom:485.666667pt;}
.y65{bottom:492.866667pt;}
.y1b{bottom:499.426667pt;}
.y64{bottom:509.826667pt;}
.y1a{bottom:513.346667pt;}
.y63{bottom:526.626667pt;}
.y19{bottom:527.106667pt;}
.y18{bottom:540.906667pt;}
.y62{bottom:543.613333pt;}
.y61{bottom:560.413333pt;}
.y60{bottom:577.373333pt;}
.y5f{bottom:594.173333pt;}
.y5e{bottom:610.973333pt;}
.y5d{bottom:627.933333pt;}
.y5c{bottom:644.733333pt;}
.y5b{bottom:661.693333pt;}
.y5a{bottom:678.493333pt;}
.y59{bottom:695.293333pt;}
.y58{bottom:712.253333pt;}
.y57{bottom:729.053333pt;}
.y56{bottom:746.013333pt;}
.y55{bottom:762.813333pt;}
.y54{bottom:779.653333pt;}
.y53{bottom:796.613333pt;}
.y16{bottom:797.733333pt;}
.y52{bottom:813.413333pt;}
.y15{bottom:817.733333pt;}
.y14{bottom:828.453333pt;}
.y51{bottom:830.373333pt;}
.y13{bottom:843.653333pt;}
.y50{bottom:847.173333pt;}
.y12{bottom:863.653333pt;}
.y4f{bottom:863.973333pt;}
.y11{bottom:874.853333pt;}
.y4e{bottom:880.933333pt;}
.y10{bottom:891.653333pt;}
.y4d{bottom:897.733333pt;}
.yf{bottom:908.453333pt;}
.y4c{bottom:914.693333pt;}
.ye{bottom:925.733333pt;}
.y4b{bottom:931.493333pt;}
.yd{bottom:945.733333pt;}
.y4a{bottom:948.453333pt;}
.yb{bottom:966.053333pt;}
.y2{bottom:985.893333pt;}
.y1{bottom:1061.440000pt;}
.hb{height:24.131250pt;}
.h12{height:28.000000pt;}
.h11{height:29.940625pt;}
.h13{height:30.254687pt;}
.h10{height:33.515625pt;}
.hf{height:33.867188pt;}
.h7{height:34.798125pt;}
.h4{height:37.479688pt;}
.he{height:39.562500pt;}
.h14{height:41.112500pt;}
.h9{height:41.543750pt;}
.hc{height:42.691250pt;}
.h6{height:43.782500pt;}
.h5{height:45.156250pt;}
.ha{height:47.310625pt;}
.h8{height:48.768750pt;}
.h2{height:58.563750pt;}
.h3{height:68.832000pt;}
.hd{height:552.093333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.000000pt;}
.w5{width:186.106667pt;}
.w7{width:199.226667pt;}
.w8{width:252.026667pt;}
.w9{width:348.066667pt;}
.w4{width:380.386667pt;}
.w6{width:408.066667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x16{left:22.080000pt;}
.x14{left:26.400000pt;}
.x7{left:27.680000pt;}
.x3{left:61.594667pt;}
.x8{left:76.200000pt;}
.x2{left:88.832000pt;}
.xa{left:93.000000pt;}
.x1{left:96.031988pt;}
.xc{left:100.991988pt;}
.x9{left:117.640000pt;}
.x18{left:133.786655pt;}
.x19{left:143.226655pt;}
.x11{left:144.186655pt;}
.x4{left:152.826667pt;}
.x17{left:201.146655pt;}
.x12{left:240.986655pt;}
.x10{left:274.466655pt;}
.xf{left:313.186655pt;}
.xd{left:317.346655pt;}
.x15{left:348.066667pt;}
.xe{left:397.026655pt;}
.xb{left:444.573322pt;}
.x13{left:504.093333pt;}
.x6{left:533.213333pt;}
}




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