
    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_ea63f4ede2a8126d6e40c0ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_b1c4c09f13a4f7512f6d01e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_87ed2fad67b500726f806b7b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_c91c6aa0fe3ebbb81ac9a9a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091797;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_664e815bf3dc5cca1f7f7388.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_719e82314150e6adc76cdba8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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;}
.ls1{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.720000px;}
.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;}
}
.ws5{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:0.000000px;}
._f{margin-left:-10.149840px;}
._1{margin-left:-7.948800px;}
._d{margin-left:-6.606720px;}
._5{margin-left:-5.362560px;}
._8{margin-left:-4.309200px;}
._a{margin-left:-2.681280px;}
._0{margin-left:-1.457280px;}
._4{width:1.053360px;}
._9{width:2.210880px;}
._b{width:3.438960px;}
._21{width:4.812720px;}
._14{width:6.408000px;}
._15{width:7.488000px;}
._10{width:8.568000px;}
._11{width:9.720000px;}
._18{width:11.304000px;}
._19{width:12.312000px;}
._22{width:13.502160px;}
._1a{width:14.945040px;}
._3{width:16.470720px;}
._2{width:19.152000px;}
._16{width:20.520000px;}
._17{width:21.528000px;}
._12{width:22.769280px;}
._13{width:23.958720px;}
._1e{width:25.433280px;}
._1f{width:27.288000px;}
._20{width:28.368000px;}
._23{width:29.681280px;}
._1d{width:30.744000px;}
._7{width:33.995520px;}
._e{width:38.782800px;}
._c{width:40.123440px;}
._6{width:41.272560px;}
._33{width:42.460560px;}
._1b{width:50.328000px;}
._36{width:52.097280px;}
._38{width:57.960000px;}
._39{width:59.040000px;}
._26{width:63.360000px;}
._27{width:64.368000px;}
._2f{width:77.705280px;}
._30{width:79.297440px;}
._24{width:93.055920px;}
._25{width:99.360000px;}
._2b{width:369.840000px;}
._2c{width:375.336000px;}
._2d{width:376.560000px;}
._28{width:379.855920px;}
._29{width:384.696000px;}
._2a{width:385.920000px;}
._31{width:452.736000px;}
._32{width:460.152000px;}
._34{width:512.760000px;}
._35{width:519.912000px;}
._1c{width:846.403680px;}
._2e{width:1104.048000px;}
._37{width:2433.888000px;}
.fc1{color:rgb(0,0,10);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.060000px;}
.y3{bottom:77.436000px;}
.y2{bottom:96.336000px;}
.y1{bottom:115.416000px;}
.y6c{bottom:138.816000px;}
.y2d{bottom:158.250000px;}
.y97{bottom:159.870000px;}
.y6b{bottom:169.770000px;}
.y4c{bottom:175.890000px;}
.y2c{bottom:178.950000px;}
.y96{bottom:180.570000px;}
.y89{bottom:194.790000px;}
.y6a{bottom:200.910000px;}
.y95{bottom:201.270000px;}
.y4b{bottom:206.850000px;}
.y2b{bottom:211.530000px;}
.y94{bottom:221.970000px;}
.y88{bottom:225.930000px;}
.y69{bottom:231.870000px;}
.y2a{bottom:232.230000px;}
.y4a{bottom:237.990000px;}
.y93{bottom:249.150000px;}
.y29{bottom:252.930000px;}
.y87{bottom:256.890000px;}
.y68{bottom:263.010000px;}
.y49{bottom:268.950000px;}
.y28{bottom:273.630000px;}
.y86{bottom:288.030000px;}
.y67{bottom:293.970000px;}
.y27{bottom:294.330000px;}
.yba{bottom:297.930000px;}
.y48{bottom:300.090000px;}
.y26{bottom:315.030000px;}
.y85{bottom:318.990000px;}
.y66{bottom:325.110000px;}
.yb9{bottom:330.690000px;}
.y47{bottom:331.050000px;}
.y25{bottom:335.730000px;}
.y84{bottom:350.175000px;}
.yb8{bottom:351.435000px;}
.y65{bottom:356.115000px;}
.y24{bottom:356.475000px;}
.y46{bottom:362.235000px;}
.yb7{bottom:372.135000px;}
.y23{bottom:377.175000px;}
.y83{bottom:381.135000px;}
.y64{bottom:387.255000px;}
.yb6{bottom:392.835000px;}
.y45{bottom:393.195000px;}
.y22{bottom:397.875000px;}
.y82{bottom:412.275000px;}
.y63{bottom:418.215000px;}
.y21{bottom:418.575000px;}
.y44{bottom:424.155000px;}
.yb5{bottom:425.595000px;}
.y81{bottom:443.235000px;}
.yb4{bottom:446.295000px;}
.y62{bottom:449.355000px;}
.y20{bottom:451.335000px;}
.y43{bottom:455.295000px;}
.yb3{bottom:466.995000px;}
.y92{bottom:474.375000px;}
.y61{bottom:480.315000px;}
.y80{bottom:482.475000px;}
.y1f{bottom:484.095000px;}
.y42{bottom:486.255000px;}
.yb2{bottom:487.695000px;}
.y1e{bottom:504.795000px;}
.y91{bottom:505.335000px;}
.yb1{bottom:508.395000px;}
.y60{bottom:511.455000px;}
.y41{bottom:517.395000px;}
.y7f{bottom:528.555000px;}
.yb0{bottom:529.095000px;}
.y90{bottom:536.475000px;}
.y1d{bottom:537.375000px;}
.y5f{bottom:542.415000px;}
.y40{bottom:548.355000px;}
.y1c{bottom:558.075000px;}
.y7e{bottom:559.695000px;}
.yaf{bottom:561.675000px;}
.y8f{bottom:567.435000px;}
.y5e{bottom:573.555000px;}
.y1b{bottom:578.775000px;}
.y3f{bottom:579.495000px;}
.yae{bottom:582.375000px;}
.y7d{bottom:590.655000px;}
.y8e{bottom:598.575000px;}
.y1a{bottom:599.475000px;}
.yad{bottom:603.075000px;}
.y5d{bottom:604.545000px;}
.y3e{bottom:610.485000px;}
.y19{bottom:620.205000px;}
.y7c{bottom:621.645000px;}
.yac{bottom:623.805000px;}
.y8d{bottom:629.565000px;}
.y5c{bottom:635.685000px;}
.y18{bottom:640.905000px;}
.y3d{bottom:641.625000px;}
.yab{bottom:644.505000px;}
.y7b{bottom:652.785000px;}
.y8c{bottom:660.705000px;}
.y17{bottom:661.605000px;}
.y5b{bottom:666.645000px;}
.y3c{bottom:672.585000px;}
.yaa{bottom:677.265000px;}
.y16{bottom:682.305000px;}
.y7a{bottom:683.745000px;}
.y8b{bottom:691.665000px;}
.y5a{bottom:697.785000px;}
.ya9{bottom:697.965000px;}
.y15{bottom:703.005000px;}
.y3b{bottom:703.725000px;}
.y79{bottom:714.885000px;}
.ya8{bottom:718.665000px;}
.y14{bottom:723.705000px;}
.y59{bottom:728.745000px;}
.y8a{bottom:730.905000px;}
.y3a{bottom:734.685000px;}
.y13{bottom:744.405000px;}
.y78{bottom:745.845000px;}
.ya7{bottom:751.245000px;}
.y58{bottom:759.705000px;}
.y12{bottom:765.105000px;}
.y39{bottom:765.825000px;}
.ya6{bottom:771.945000px;}
.y77{bottom:776.985000px;}
.y11{bottom:785.805000px;}
.y57{bottom:790.845000px;}
.ya5{bottom:792.645000px;}
.y38{bottom:796.785000px;}
.y10{bottom:806.505000px;}
.y76{bottom:807.945000px;}
.ya4{bottom:813.345000px;}
.y56{bottom:821.805000px;}
.yf{bottom:827.205000px;}
.y37{bottom:827.925000px;}
.ya3{bottom:834.045000px;}
.y75{bottom:839.085000px;}
.ye{bottom:848.445000px;}
.y55{bottom:852.945000px;}
.ya2{bottom:854.745000px;}
.y36{bottom:858.885000px;}
.y74{bottom:870.045000px;}
.yd{bottom:872.070000px;}
.y54{bottom:883.950000px;}
.ya1{bottom:887.550000px;}
.y35{bottom:890.070000px;}
.yc{bottom:892.770000px;}
.y73{bottom:901.230000px;}
.ya0{bottom:908.250000px;}
.y53{bottom:915.090000px;}
.y34{bottom:921.030000px;}
.yb{bottom:926.070000px;}
.y9f{bottom:928.950000px;}
.y72{bottom:932.190000px;}
.y52{bottom:946.050000px;}
.y9e{bottom:949.650000px;}
.y33{bottom:952.170000px;}
.ya{bottom:962.970000px;}
.y71{bottom:963.330000px;}
.y51{bottom:977.190000px;}
.y9d{bottom:982.410000px;}
.y32{bottom:983.130000px;}
.y9{bottom:990.510000px;}
.y70{bottom:994.290000px;}
.y9c{bottom:1003.110000px;}
.y50{bottom:1008.150000px;}
.y31{bottom:1014.270000px;}
.y8{bottom:1018.230000px;}
.y9b{bottom:1023.810000px;}
.y6f{bottom:1025.430000px;}
.y4f{bottom:1039.290000px;}
.y9a{bottom:1044.510000px;}
.y30{bottom:1045.230000px;}
.y6e{bottom:1056.390000px;}
.y7{bottom:1057.830000px;}
.y99{bottom:1065.210000px;}
.y2f{bottom:1076.370000px;}
.y4e{bottom:1084.650000px;}
.y6{bottom:1085.370000px;}
.y6d{bottom:1087.530000px;}
.y98{bottom:1097.790000px;}
.y5{bottom:1112.910000px;}
.y2e{bottom:1115.430000px;}
.y4d{bottom:1118.490000px;}
.h7{height:52.628906px;}
.h2{height:59.383125px;}
.h3{height:64.546875px;}
.h5{height:74.820586px;}
.h6{height:75.519844px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x2{left:133.415987px;}
.x5{left:147.455987px;}
.x7{left:170.129987px;}
.x8{left:180.749987px;}
.x3{left:212.249987px;}
.x6{left:285.374987px;}
.x4{left:467.924987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.640000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:0.000000pt;}
._f{margin-left:-9.022080pt;}
._1{margin-left:-7.065600pt;}
._d{margin-left:-5.872640pt;}
._5{margin-left:-4.766720pt;}
._8{margin-left:-3.830400pt;}
._a{margin-left:-2.383360pt;}
._0{margin-left:-1.295360pt;}
._4{width:0.936320pt;}
._9{width:1.965227pt;}
._b{width:3.056853pt;}
._21{width:4.277973pt;}
._14{width:5.696000pt;}
._15{width:6.656000pt;}
._10{width:7.616000pt;}
._11{width:8.640000pt;}
._18{width:10.048000pt;}
._19{width:10.944000pt;}
._22{width:12.001920pt;}
._1a{width:13.284480pt;}
._3{width:14.640640pt;}
._2{width:17.024000pt;}
._16{width:18.240000pt;}
._17{width:19.136000pt;}
._12{width:20.239360pt;}
._13{width:21.296640pt;}
._1e{width:22.607360pt;}
._1f{width:24.256000pt;}
._20{width:25.216000pt;}
._23{width:26.383360pt;}
._1d{width:27.328000pt;}
._7{width:30.218240pt;}
._e{width:34.473600pt;}
._c{width:35.665280pt;}
._6{width:36.686720pt;}
._33{width:37.742720pt;}
._1b{width:44.736000pt;}
._36{width:46.308693pt;}
._38{width:51.520000pt;}
._39{width:52.480000pt;}
._26{width:56.320000pt;}
._27{width:57.216000pt;}
._2f{width:69.071360pt;}
._30{width:70.486613pt;}
._24{width:82.716373pt;}
._25{width:88.320000pt;}
._2b{width:328.746667pt;}
._2c{width:333.632000pt;}
._2d{width:334.720000pt;}
._28{width:337.649707pt;}
._29{width:341.952000pt;}
._2a{width:343.040000pt;}
._31{width:402.432000pt;}
._32{width:409.024000pt;}
._34{width:455.786667pt;}
._35{width:462.144000pt;}
._1c{width:752.358827pt;}
._2e{width:981.376000pt;}
._37{width:2163.456000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:50.720000pt;}
.y3{bottom:68.832000pt;}
.y2{bottom:85.632000pt;}
.y1{bottom:102.592000pt;}
.y6c{bottom:123.392000pt;}
.y2d{bottom:140.666667pt;}
.y97{bottom:142.106667pt;}
.y6b{bottom:150.906667pt;}
.y4c{bottom:156.346667pt;}
.y2c{bottom:159.066667pt;}
.y96{bottom:160.506667pt;}
.y89{bottom:173.146667pt;}
.y6a{bottom:178.586667pt;}
.y95{bottom:178.906667pt;}
.y4b{bottom:183.866667pt;}
.y2b{bottom:188.026667pt;}
.y94{bottom:197.306667pt;}
.y88{bottom:200.826667pt;}
.y69{bottom:206.106667pt;}
.y2a{bottom:206.426667pt;}
.y4a{bottom:211.546667pt;}
.y93{bottom:221.466667pt;}
.y29{bottom:224.826667pt;}
.y87{bottom:228.346667pt;}
.y68{bottom:233.786667pt;}
.y49{bottom:239.066667pt;}
.y28{bottom:243.226667pt;}
.y86{bottom:256.026667pt;}
.y67{bottom:261.306667pt;}
.y27{bottom:261.626667pt;}
.yba{bottom:264.826667pt;}
.y48{bottom:266.746667pt;}
.y26{bottom:280.026667pt;}
.y85{bottom:283.546667pt;}
.y66{bottom:288.986667pt;}
.yb9{bottom:293.946667pt;}
.y47{bottom:294.266667pt;}
.y25{bottom:298.426667pt;}
.y84{bottom:311.266667pt;}
.yb8{bottom:312.386667pt;}
.y65{bottom:316.546667pt;}
.y24{bottom:316.866667pt;}
.y46{bottom:321.986667pt;}
.yb7{bottom:330.786667pt;}
.y23{bottom:335.266667pt;}
.y83{bottom:338.786667pt;}
.y64{bottom:344.226667pt;}
.yb6{bottom:349.186667pt;}
.y45{bottom:349.506667pt;}
.y22{bottom:353.666667pt;}
.y82{bottom:366.466667pt;}
.y63{bottom:371.746667pt;}
.y21{bottom:372.066667pt;}
.y44{bottom:377.026667pt;}
.yb5{bottom:378.306667pt;}
.y81{bottom:393.986667pt;}
.yb4{bottom:396.706667pt;}
.y62{bottom:399.426667pt;}
.y20{bottom:401.186667pt;}
.y43{bottom:404.706667pt;}
.yb3{bottom:415.106667pt;}
.y92{bottom:421.666667pt;}
.y61{bottom:426.946667pt;}
.y80{bottom:428.866667pt;}
.y1f{bottom:430.306667pt;}
.y42{bottom:432.226667pt;}
.yb2{bottom:433.506667pt;}
.y1e{bottom:448.706667pt;}
.y91{bottom:449.186667pt;}
.yb1{bottom:451.906667pt;}
.y60{bottom:454.626667pt;}
.y41{bottom:459.906667pt;}
.y7f{bottom:469.826667pt;}
.yb0{bottom:470.306667pt;}
.y90{bottom:476.866667pt;}
.y1d{bottom:477.666667pt;}
.y5f{bottom:482.146667pt;}
.y40{bottom:487.426667pt;}
.y1c{bottom:496.066667pt;}
.y7e{bottom:497.506667pt;}
.yaf{bottom:499.266667pt;}
.y8f{bottom:504.386667pt;}
.y5e{bottom:509.826667pt;}
.y1b{bottom:514.466667pt;}
.y3f{bottom:515.106667pt;}
.yae{bottom:517.666667pt;}
.y7d{bottom:525.026667pt;}
.y8e{bottom:532.066667pt;}
.y1a{bottom:532.866667pt;}
.yad{bottom:536.066667pt;}
.y5d{bottom:537.373333pt;}
.y3e{bottom:542.653333pt;}
.y19{bottom:551.293333pt;}
.y7c{bottom:552.573333pt;}
.yac{bottom:554.493333pt;}
.y8d{bottom:559.613333pt;}
.y5c{bottom:565.053333pt;}
.y18{bottom:569.693333pt;}
.y3d{bottom:570.333333pt;}
.yab{bottom:572.893333pt;}
.y7b{bottom:580.253333pt;}
.y8c{bottom:587.293333pt;}
.y17{bottom:588.093333pt;}
.y5b{bottom:592.573333pt;}
.y3c{bottom:597.853333pt;}
.yaa{bottom:602.013333pt;}
.y16{bottom:606.493333pt;}
.y7a{bottom:607.773333pt;}
.y8b{bottom:614.813333pt;}
.y5a{bottom:620.253333pt;}
.ya9{bottom:620.413333pt;}
.y15{bottom:624.893333pt;}
.y3b{bottom:625.533333pt;}
.y79{bottom:635.453333pt;}
.ya8{bottom:638.813333pt;}
.y14{bottom:643.293333pt;}
.y59{bottom:647.773333pt;}
.y8a{bottom:649.693333pt;}
.y3a{bottom:653.053333pt;}
.y13{bottom:661.693333pt;}
.y78{bottom:662.973333pt;}
.ya7{bottom:667.773333pt;}
.y58{bottom:675.293333pt;}
.y12{bottom:680.093333pt;}
.y39{bottom:680.733333pt;}
.ya6{bottom:686.173333pt;}
.y77{bottom:690.653333pt;}
.y11{bottom:698.493333pt;}
.y57{bottom:702.973333pt;}
.ya5{bottom:704.573333pt;}
.y38{bottom:708.253333pt;}
.y10{bottom:716.893333pt;}
.y76{bottom:718.173333pt;}
.ya4{bottom:722.973333pt;}
.y56{bottom:730.493333pt;}
.yf{bottom:735.293333pt;}
.y37{bottom:735.933333pt;}
.ya3{bottom:741.373333pt;}
.y75{bottom:745.853333pt;}
.ye{bottom:754.173333pt;}
.y55{bottom:758.173333pt;}
.ya2{bottom:759.773333pt;}
.y36{bottom:763.453333pt;}
.y74{bottom:773.373333pt;}
.yd{bottom:775.173333pt;}
.y54{bottom:785.733333pt;}
.ya1{bottom:788.933333pt;}
.y35{bottom:791.173333pt;}
.yc{bottom:793.573333pt;}
.y73{bottom:801.093333pt;}
.ya0{bottom:807.333333pt;}
.y53{bottom:813.413333pt;}
.y34{bottom:818.693333pt;}
.yb{bottom:823.173333pt;}
.y9f{bottom:825.733333pt;}
.y72{bottom:828.613333pt;}
.y52{bottom:840.933333pt;}
.y9e{bottom:844.133333pt;}
.y33{bottom:846.373333pt;}
.ya{bottom:855.973333pt;}
.y71{bottom:856.293333pt;}
.y51{bottom:868.613333pt;}
.y9d{bottom:873.253333pt;}
.y32{bottom:873.893333pt;}
.y9{bottom:880.453333pt;}
.y70{bottom:883.813333pt;}
.y9c{bottom:891.653333pt;}
.y50{bottom:896.133333pt;}
.y31{bottom:901.573333pt;}
.y8{bottom:905.093333pt;}
.y9b{bottom:910.053333pt;}
.y6f{bottom:911.493333pt;}
.y4f{bottom:923.813333pt;}
.y9a{bottom:928.453333pt;}
.y30{bottom:929.093333pt;}
.y6e{bottom:939.013333pt;}
.y7{bottom:940.293333pt;}
.y99{bottom:946.853333pt;}
.y2f{bottom:956.773333pt;}
.y4e{bottom:964.133333pt;}
.y6{bottom:964.773333pt;}
.y6d{bottom:966.693333pt;}
.y98{bottom:975.813333pt;}
.y5{bottom:989.253333pt;}
.y2e{bottom:991.493333pt;}
.y4d{bottom:994.213333pt;}
.h7{height:46.781250pt;}
.h2{height:52.785000pt;}
.h3{height:57.375000pt;}
.h5{height:66.507188pt;}
.h6{height:67.128750pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x2{left:118.591988pt;}
.x5{left:131.071988pt;}
.x7{left:151.226655pt;}
.x8{left:160.666655pt;}
.x3{left:188.666655pt;}
.x6{left:253.666655pt;}
.x4{left:415.933322pt;}
}




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