
    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_00c7421fdb57634194ce53e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_d3c2b74d613bbba042cf04b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_0c22fa226f8f3002d04c25dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.076191;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_57ce8975ad9bdf649c9ffd57.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693359;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_9c02380cbc5545ae219d2400.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_33820e541173e56b1ecd7362.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;}
.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;}
.v1{vertical-align:12.240418px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.094301px;}
.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:-95.137901px;}
.ws3{word-spacing:-79.203150px;}
.ws2{word-spacing:-61.564985px;}
.ws0{word-spacing:-23.760900px;}
.ws5{word-spacing:-19.800788px;}
.ws4{word-spacing:0.000000px;}
._18{margin-left:-24.708459px;}
._1c{margin-left:-23.249299px;}
._19{margin-left:-15.186742px;}
._1a{margin-left:-14.118615px;}
._2{margin-left:-12.513826px;}
._c{margin-left:-11.044364px;}
._6{margin-left:-9.732502px;}
._17{margin-left:-8.489788px;}
._5{margin-left:-6.653052px;}
._3{margin-left:-5.594671px;}
._13{margin-left:-4.262576px;}
._7{margin-left:-3.261926px;}
._4{margin-left:-1.665212px;}
._0{width:1.064507px;}
._9{width:2.566177px;}
._11{width:3.814463px;}
._10{width:4.847224px;}
._f{width:6.528400px;}
._e{width:7.698532px;}
._12{width:9.219229px;}
._16{width:10.284293px;}
._d{width:11.401427px;}
._8{width:12.576199px;}
._b{width:14.146089px;}
._a{width:15.255519px;}
._14{width:16.666412px;}
._15{width:18.083426px;}
._1b{width:1663.872901px;}
._1{width:1695.553076px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:63.362250px;}
.fs0{font-size:71.282700px;}
.fs3{font-size:79.203150px;}
.fs2{font-size:95.043600px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980011px;}
.y18{bottom:41.040115px;}
.ybb{bottom:102.420043px;}
.y7a{bottom:106.380066px;}
.y93{bottom:113.220085px;}
.y3f{bottom:121.320099px;}
.y16{bottom:121.860077px;}
.yba{bottom:130.860077px;}
.y92{bottom:141.840088px;}
.y3e{bottom:149.940033px;}
.y24{bottom:150.300041px;}
.yb9{bottom:159.480079px;}
.y54{bottom:164.160049px;}
.y79{bottom:165.420043px;}
.y3d{bottom:178.560036px;}
.y15{bottom:178.920043px;}
.yb8{bottom:187.920043px;}
.y53{bottom:192.780052px;}
.y78{bottom:194.940033px;}
.y91{bottom:198.900055px;}
.y3c{bottom:207.000068px;}
.y14{bottom:207.360077px;}
.yb7{bottom:216.540047px;}
.y52{bottom:221.220085px;}
.y90{bottom:227.340088px;}
.y3b{bottom:235.620072px;}
.y13{bottom:235.980079px;}
.yb6{bottom:244.980079px;}
.y66{bottom:249.840088px;}
.y8f{bottom:255.960091px;}
.y3a{bottom:264.060036px;}
.y12{bottom:264.420043px;}
.y9a{bottom:273.600083px;}
.y65{bottom:278.280052px;}
.y77{bottom:282.420043px;}
.y8e{bottom:284.400055px;}
.y39{bottom:292.680039px;}
.y11{bottom:293.040047px;}
.y99{bottom:297.360077px;}
.yb5{bottom:302.040047px;}
.y51{bottom:306.900055px;}
.y76{bottom:311.040047px;}
.y8d{bottom:313.020058px;}
.y98{bottom:321.120072px;}
.y10{bottom:321.480079px;}
.ya7{bottom:325.800041px;}
.yb4{bottom:330.660049px;}
.y75{bottom:334.800041px;}
.y64{bottom:335.340088px;}
.y97{bottom:344.880066px;}
.y38{bottom:349.740074px;}
.yf{bottom:350.100083px;}
.y74{bottom:358.560036px;}
.yb3{bottom:359.100083px;}
.y63{bottom:363.960091px;}
.y96{bottom:368.640060px;}
.y8c{bottom:370.080093px;}
.ybc{bottom:378.180039px;}
.y23{bottom:378.540047px;}
.y73{bottom:382.320099px;}
.y50{bottom:387.720085px;}
.y62{bottom:392.400055px;}
.ya6{bottom:397.260064px;}
.y8b{bottom:398.520058px;}
.y37{bottom:406.800041px;}
.y22{bottom:407.160049px;}
.y4f{bottom:411.480079px;}
.y95{bottom:416.160049px;}
.ya5{bottom:421.020058px;}
.y8a{bottom:427.140060px;}
.y4e{bottom:435.240074px;}
.ya4{bottom:444.780052px;}
.y89{bottom:455.580093px;}
.y4d{bottom:459.000068px;}
.y72{bottom:463.140060px;}
.y36{bottom:463.860077px;}
.ya3{bottom:468.540047px;}
.yb2{bottom:473.220085px;}
.y61{bottom:478.080093px;}
.y88{bottom:484.200096px;}
.y35{bottom:492.300041px;}
.ye{bottom:492.660049px;}
.yb1{bottom:501.840088px;}
.y4c{bottom:506.520058px;}
.y87{bottom:512.640060px;}
.y34{bottom:520.920043px;}
.yd{bottom:521.280052px;}
.y71{bottom:522.180039px;}
.y4b{bottom:530.280052px;}
.y86{bottom:541.260064px;}
.y33{bottom:549.360077px;}
.y21{bottom:549.720085px;}
.y70{bottom:551.700096px;}
.y4a{bottom:554.040047px;}
.y85{bottom:569.700096px;}
.y49{bottom:577.980079px;}
.yc{bottom:578.340088px;}
.y6f{bottom:581.220085px;}
.yb0{bottom:587.340088px;}
.y60{bottom:592.200096px;}
.ya2{bottom:596.880066px;}
.y84{bottom:598.320099px;}
.y48{bottom:601.740074px;}
.y94{bottom:606.420043px;}
.y6e{bottom:610.740074px;}
.y47{bottom:625.500068px;}
.y32{bottom:635.040047px;}
.y20{bottom:635.400055px;}
.y6d{bottom:640.260064px;}
.yaf{bottom:644.400055px;}
.y46{bottom:649.260064px;}
.ya1{bottom:653.940033px;}
.y31{bottom:663.480079px;}
.yb{bottom:663.840088px;}
.y6c{bottom:669.780052px;}
.y45{bottom:673.020058px;}
.y5f{bottom:677.700096px;}
.ya0{bottom:682.560036px;}
.y30{bottom:692.100083px;}
.ya{bottom:692.460056px;}
.y5e{bottom:706.320065px;}
.y9f{bottom:711.000068px;}
.y44{bottom:720.540081px;}
.y9{bottom:720.900055px;}
.yae{bottom:730.080059px;}
.y9e{bottom:739.620072px;}
.y43{bottom:749.160049px;}
.y8{bottom:749.520058px;}
.y6b{bottom:758.340054px;}
.yad{bottom:758.520058px;}
.y5d{bottom:763.380066px;}
.y9d{bottom:768.060070px;}
.y42{bottom:777.600083px;}
.y1f{bottom:777.960056px;}
.y6a{bottom:787.860077px;}
.y5c{bottom:791.820065px;}
.y9c{bottom:796.680073px;}
.y2f{bottom:806.220051px;}
.y1e{bottom:806.580059px;}
.y69{bottom:817.380066px;}
.y83{bottom:833.760064px;}
.y2e{bottom:834.660049px;}
.y1d{bottom:835.020058px;}
.y68{bottom:846.900055px;}
.y82{bottom:862.200061px;}
.y2d{bottom:863.280052px;}
.y7{bottom:863.640060px;}
.yac{bottom:867.960056px;}
.y81{bottom:890.820065px;}
.y2c{bottom:891.720051px;}
.y1c{bottom:892.080059px;}
.y5b{bottom:901.260064px;}
.y9b{bottom:905.940067px;}
.yab{bottom:915.480079px;}
.y80{bottom:919.260064px;}
.y2b{bottom:920.340054px;}
.y6{bottom:920.700061px;}
.y5a{bottom:929.700061px;}
.yaa{bottom:939.240074px;}
.y7f{bottom:947.880066px;}
.y41{bottom:948.780053px;}
.y5{bottom:949.140060px;}
.y59{bottom:953.640060px;}
.ya9{bottom:963.000068px;}
.y2a{bottom:977.400072px;}
.y4{bottom:977.760064px;}
.ya8{bottom:986.760064px;}
.y58{bottom:1001.160067px;}
.y7e{bottom:1004.940067px;}
.y29{bottom:1005.840070px;}
.y3{bottom:1006.200061px;}
.y57{bottom:1024.920061px;}
.y7d{bottom:1033.380066px;}
.y40{bottom:1034.460074px;}
.y1b{bottom:1034.820065px;}
.y56{bottom:1048.680073px;}
.y28{bottom:1062.900072px;}
.y2{bottom:1063.260064px;}
.y55{bottom:1072.440067px;}
.y7c{bottom:1090.440067px;}
.y27{bottom:1091.520058px;}
.y1a{bottom:1091.880066px;}
.y67{bottom:1096.200061px;}
.y17{bottom:1097.100065px;}
.y7b{bottom:1119.060070px;}
.y26{bottom:1119.960065px;}
.y25{bottom:1148.580068px;}
.y19{bottom:1148.940067px;}
.h7{height:55.302981px;}
.h9{height:55.596662px;}
.h8{height:57.534328px;}
.h5{height:64.414315px;}
.h6{height:65.992187px;}
.h2{height:67.837080px;}
.ha{height:69.496123px;}
.h3{height:83.395190px;}
.h4{height:84.416166px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:89.819996px;}
.x1{left:140.939999px;}
.x4{left:166.680005px;}
.xf{left:174.240006px;}
.x10{left:224.639992px;}
.x2{left:257.400003px;}
.x18{left:266.759994px;}
.x3{left:274.139992px;}
.xb{left:290.699993px;}
.x7{left:312.300007px;}
.x13{left:314.459988px;}
.xe{left:334.980011px;}
.x16{left:365.040012px;}
.x9{left:369.000000px;}
.x6{left:375.839985px;}
.x19{left:386.639992px;}
.x5{left:395.100014px;}
.x12{left:398.879998px;}
.xa{left:410.939999px;}
.x8{left:419.579990px;}
.x15{left:449.279983px;}
.x17{left:464.399987px;}
.xc{left:532.800007px;}
.x14{left:548.100014px;}
.x11{left:665.279983px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.083823pt;}
.ws1{word-spacing:-84.567023pt;}
.ws3{word-spacing:-70.402800pt;}
.ws2{word-spacing:-54.724431pt;}
.ws0{word-spacing:-21.120800pt;}
.ws5{word-spacing:-17.600700pt;}
.ws4{word-spacing:0.000000pt;}
._18{margin-left:-21.963075pt;}
._1c{margin-left:-20.666043pt;}
._19{margin-left:-13.499326pt;}
._1a{margin-left:-12.549880pt;}
._2{margin-left:-11.123401pt;}
._c{margin-left:-9.817212pt;}
._6{margin-left:-8.651113pt;}
._17{margin-left:-7.546478pt;}
._5{margin-left:-5.913824pt;}
._3{margin-left:-4.973041pt;}
._13{margin-left:-3.788956pt;}
._7{margin-left:-2.899490pt;}
._4{margin-left:-1.480189pt;}
._0{width:0.946228pt;}
._9{width:2.281046pt;}
._11{width:3.390634pt;}
._10{width:4.308643pt;}
._f{width:5.803022pt;}
._e{width:6.843139pt;}
._12{width:8.194870pt;}
._16{width:9.141594pt;}
._d{width:10.134601pt;}
._8{width:11.178843pt;}
._b{width:12.574301pt;}
._a{width:13.560461pt;}
._14{width:14.814588pt;}
._15{width:16.074157pt;}
._1b{width:1478.998134pt;}
._1{width:1507.158290pt;}
.fs1{font-size:56.322000pt;}
.fs0{font-size:63.362400pt;}
.fs3{font-size:70.402800pt;}
.fs2{font-size:84.483200pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760010pt;}
.y18{bottom:36.480103pt;}
.ybb{bottom:91.040039pt;}
.y7a{bottom:94.560059pt;}
.y93{bottom:100.640076pt;}
.y3f{bottom:107.840088pt;}
.y16{bottom:108.320069pt;}
.yba{bottom:116.320069pt;}
.y92{bottom:126.080079pt;}
.y3e{bottom:133.280030pt;}
.y24{bottom:133.600037pt;}
.yb9{bottom:141.760071pt;}
.y54{bottom:145.920044pt;}
.y79{bottom:147.040039pt;}
.y3d{bottom:158.720032pt;}
.y15{bottom:159.040039pt;}
.yb8{bottom:167.040039pt;}
.y53{bottom:171.360047pt;}
.y78{bottom:173.280030pt;}
.y91{bottom:176.800049pt;}
.y3c{bottom:184.000061pt;}
.y14{bottom:184.320069pt;}
.yb7{bottom:192.480042pt;}
.y52{bottom:196.640076pt;}
.y90{bottom:202.080079pt;}
.y3b{bottom:209.440064pt;}
.y13{bottom:209.760071pt;}
.yb6{bottom:217.760071pt;}
.y66{bottom:222.080079pt;}
.y8f{bottom:227.520081pt;}
.y3a{bottom:234.720032pt;}
.y12{bottom:235.040039pt;}
.y9a{bottom:243.200074pt;}
.y65{bottom:247.360047pt;}
.y77{bottom:251.040039pt;}
.y8e{bottom:252.800049pt;}
.y39{bottom:260.160035pt;}
.y11{bottom:260.480042pt;}
.y99{bottom:264.320069pt;}
.yb5{bottom:268.480042pt;}
.y51{bottom:272.800049pt;}
.y76{bottom:276.480042pt;}
.y8d{bottom:278.240052pt;}
.y98{bottom:285.440064pt;}
.y10{bottom:285.760071pt;}
.ya7{bottom:289.600037pt;}
.yb4{bottom:293.920044pt;}
.y75{bottom:297.600037pt;}
.y64{bottom:298.080079pt;}
.y97{bottom:306.560059pt;}
.y38{bottom:310.880066pt;}
.yf{bottom:311.200074pt;}
.y74{bottom:318.720032pt;}
.yb3{bottom:319.200074pt;}
.y63{bottom:323.520081pt;}
.y96{bottom:327.680054pt;}
.y8c{bottom:328.960083pt;}
.ybc{bottom:336.160035pt;}
.y23{bottom:336.480042pt;}
.y73{bottom:339.840088pt;}
.y50{bottom:344.640076pt;}
.y62{bottom:348.800049pt;}
.ya6{bottom:353.120057pt;}
.y8b{bottom:354.240052pt;}
.y37{bottom:361.600037pt;}
.y22{bottom:361.920044pt;}
.y4f{bottom:365.760071pt;}
.y95{bottom:369.920044pt;}
.ya5{bottom:374.240052pt;}
.y8a{bottom:379.680054pt;}
.y4e{bottom:386.880066pt;}
.ya4{bottom:395.360047pt;}
.y89{bottom:404.960083pt;}
.y4d{bottom:408.000061pt;}
.y72{bottom:411.680054pt;}
.y36{bottom:412.320069pt;}
.ya3{bottom:416.480042pt;}
.yb2{bottom:420.640076pt;}
.y61{bottom:424.960083pt;}
.y88{bottom:430.400086pt;}
.y35{bottom:437.600037pt;}
.ye{bottom:437.920044pt;}
.yb1{bottom:446.080079pt;}
.y4c{bottom:450.240052pt;}
.y87{bottom:455.680054pt;}
.y34{bottom:463.040039pt;}
.yd{bottom:463.360047pt;}
.y71{bottom:464.160035pt;}
.y4b{bottom:471.360047pt;}
.y86{bottom:481.120057pt;}
.y33{bottom:488.320069pt;}
.y21{bottom:488.640076pt;}
.y70{bottom:490.400086pt;}
.y4a{bottom:492.480042pt;}
.y85{bottom:506.400086pt;}
.y49{bottom:513.760071pt;}
.yc{bottom:514.080079pt;}
.y6f{bottom:516.640076pt;}
.yb0{bottom:522.080079pt;}
.y60{bottom:526.400086pt;}
.ya2{bottom:530.560059pt;}
.y84{bottom:531.840088pt;}
.y48{bottom:534.880066pt;}
.y94{bottom:539.040039pt;}
.y6e{bottom:542.880066pt;}
.y47{bottom:556.000061pt;}
.y32{bottom:564.480042pt;}
.y20{bottom:564.800049pt;}
.y6d{bottom:569.120057pt;}
.yaf{bottom:572.800049pt;}
.y46{bottom:577.120057pt;}
.ya1{bottom:581.280030pt;}
.y31{bottom:589.760071pt;}
.yb{bottom:590.080079pt;}
.y6c{bottom:595.360047pt;}
.y45{bottom:598.240052pt;}
.y5f{bottom:602.400086pt;}
.ya0{bottom:606.720032pt;}
.y30{bottom:615.200074pt;}
.ya{bottom:615.520050pt;}
.y5e{bottom:627.840058pt;}
.y9f{bottom:632.000061pt;}
.y44{bottom:640.480072pt;}
.y9{bottom:640.800049pt;}
.yae{bottom:648.960053pt;}
.y9e{bottom:657.440064pt;}
.y43{bottom:665.920044pt;}
.y8{bottom:666.240052pt;}
.y6b{bottom:674.080048pt;}
.yad{bottom:674.240052pt;}
.y5d{bottom:678.560059pt;}
.y9d{bottom:682.720063pt;}
.y42{bottom:691.200074pt;}
.y1f{bottom:691.520050pt;}
.y6a{bottom:700.320069pt;}
.y5c{bottom:703.840058pt;}
.y9c{bottom:708.160065pt;}
.y2f{bottom:716.640046pt;}
.y1e{bottom:716.960053pt;}
.y69{bottom:726.560059pt;}
.y83{bottom:741.120057pt;}
.y2e{bottom:741.920044pt;}
.y1d{bottom:742.240052pt;}
.y68{bottom:752.800049pt;}
.y82{bottom:766.400055pt;}
.y2d{bottom:767.360047pt;}
.y7{bottom:767.680054pt;}
.yac{bottom:771.520050pt;}
.y81{bottom:791.840058pt;}
.y2c{bottom:792.640046pt;}
.y1c{bottom:792.960053pt;}
.y5b{bottom:801.120057pt;}
.y9b{bottom:805.280060pt;}
.yab{bottom:813.760071pt;}
.y80{bottom:817.120057pt;}
.y2b{bottom:818.080048pt;}
.y6{bottom:818.400055pt;}
.y5a{bottom:826.400055pt;}
.yaa{bottom:834.880066pt;}
.y7f{bottom:842.560059pt;}
.y41{bottom:843.360047pt;}
.y5{bottom:843.680054pt;}
.y59{bottom:847.680054pt;}
.ya9{bottom:856.000061pt;}
.y2a{bottom:868.800064pt;}
.y4{bottom:869.120057pt;}
.ya8{bottom:877.120057pt;}
.y58{bottom:889.920060pt;}
.y7e{bottom:893.280060pt;}
.y29{bottom:894.080063pt;}
.y3{bottom:894.400055pt;}
.y57{bottom:911.040055pt;}
.y7d{bottom:918.560059pt;}
.y40{bottom:919.520066pt;}
.y1b{bottom:919.840058pt;}
.y56{bottom:932.160065pt;}
.y28{bottom:944.800064pt;}
.y2{bottom:945.120057pt;}
.y55{bottom:953.280060pt;}
.y7c{bottom:969.280060pt;}
.y27{bottom:970.240052pt;}
.y1a{bottom:970.560059pt;}
.y67{bottom:974.400055pt;}
.y17{bottom:975.200058pt;}
.y7b{bottom:994.720063pt;}
.y26{bottom:995.520058pt;}
.y25{bottom:1020.960061pt;}
.y19{bottom:1021.280060pt;}
.h7{height:49.158205pt;}
.h9{height:49.419255pt;}
.h8{height:51.141625pt;}
.h5{height:57.257169pt;}
.h6{height:58.659722pt;}
.h2{height:60.299627pt;}
.ha{height:61.774332pt;}
.h3{height:74.129058pt;}
.h4{height:75.036592pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:79.839996pt;}
.x1{left:125.279999pt;}
.x4{left:148.160004pt;}
.xf{left:154.880005pt;}
.x10{left:199.679993pt;}
.x2{left:228.800003pt;}
.x18{left:237.119995pt;}
.x3{left:243.679993pt;}
.xb{left:258.399994pt;}
.x7{left:277.600006pt;}
.x13{left:279.519989pt;}
.xe{left:297.760010pt;}
.x16{left:324.480011pt;}
.x9{left:328.000000pt;}
.x6{left:334.079987pt;}
.x19{left:343.679993pt;}
.x5{left:351.200012pt;}
.x12{left:354.559998pt;}
.xa{left:365.279999pt;}
.x8{left:372.959991pt;}
.x15{left:399.359985pt;}
.x17{left:412.799988pt;}
.xc{left:473.600006pt;}
.x14{left:487.200012pt;}
.x11{left:591.359985pt;}
}




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