
    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_4c64d3e89b0a1bed687cc5b8.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_0107529bc370a3955c914b23.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cbf9ae7e07553fe789dca364.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fa34cadfb858a499237cd20c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_db030f50ce1fff4c1084ba5f.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.ls6{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:64.421280px;}
.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:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws5{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._7{margin-left:-4.320000px;}
._a{margin-left:-2.862720px;}
._0{margin-left:-1.457280px;}
._1{width:1.422240px;}
._8{width:3.384000px;}
._9{width:4.608000px;}
._5{width:6.480000px;}
._6{width:8.064000px;}
._13{width:9.072000px;}
._12{width:10.512000px;}
._10{width:12.312000px;}
._11{width:13.320000px;}
._17{width:14.345760px;}
._c{width:16.776000px;}
._14{width:19.800000px;}
._15{width:20.952000px;}
._19{width:22.656000px;}
._18{width:24.264000px;}
._16{width:25.522560px;}
._b{width:26.568000px;}
._f{width:27.792000px;}
._e{width:28.800000px;}
._2{width:36.786000px;}
._3{width:37.920960px;}
._d{width:39.382080px;}
._4{width:111.766080px;}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,10);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y90{bottom:3.960000px;}
.y93{bottom:20.160000px;}
.y5{bottom:82.116000px;}
.y4{bottom:108.396000px;}
.y3{bottom:127.476000px;}
.y2{bottom:146.556000px;}
.yab{bottom:170.130000px;}
.y91{bottom:171.390000px;}
.y47{bottom:174.810000px;}
.y2f{bottom:180.750000px;}
.yaa{bottom:190.830000px;}
.y2e{bottom:201.450000px;}
.y46{bottom:205.770000px;}
.ya9{bottom:211.530000px;}
.y78{bottom:213.690000px;}
.y62{bottom:219.630000px;}
.y2d{bottom:222.150000px;}
.y8f{bottom:231.330000px;}
.ya8{bottom:232.230000px;}
.y2c{bottom:242.850000px;}
.y77{bottom:244.650000px;}
.y61{bottom:250.590000px;}
.ya7{bottom:252.930000px;}
.y2b{bottom:263.550000px;}
.y8e{bottom:271.290000px;}
.ya6{bottom:273.630000px;}
.y45{bottom:273.990000px;}
.y60{bottom:281.730000px;}
.y2a{bottom:284.250000px;}
.ya5{bottom:294.330000px;}
.y44{bottom:301.170000px;}
.y29{bottom:304.950000px;}
.y8d{bottom:308.370000px;}
.y5f{bottom:312.690000px;}
.ya4{bottom:315.030000px;}
.y28{bottom:325.650000px;}
.y43{bottom:333.750000px;}
.ya3{bottom:335.730000px;}
.y5e{bottom:343.875000px;}
.y8c{bottom:345.495000px;}
.y27{bottom:346.395000px;}
.ya2{bottom:362.955000px;}
.y26{bottom:367.095000px;}
.y42{bottom:370.875000px;}
.y5d{bottom:374.835000px;}
.y8b{bottom:376.455000px;}
.y25{bottom:387.795000px;}
.y5c{bottom:405.975000px;}
.y8a{bottom:407.595000px;}
.y41{bottom:407.955000px;}
.y24{bottom:408.495000px;}
.y76{bottom:411.915000px;}
.y23{bottom:429.195000px;}
.y5b{bottom:436.935000px;}
.y89{bottom:438.555000px;}
.y75{bottom:443.055000px;}
.y40{bottom:444.855000px;}
.y22{bottom:449.895000px;}
.y5a{bottom:468.075000px;}
.y21{bottom:470.595000px;}
.y74{bottom:474.015000px;}
.y88{bottom:475.635000px;}
.y3f{bottom:481.935000px;}
.y20{bottom:491.295000px;}
.y59{bottom:499.035000px;}
.y73{bottom:505.155000px;}
.y87{bottom:506.775000px;}
.y1f{bottom:511.995000px;}
.y3e{bottom:519.015000px;}
.y58{bottom:530.175000px;}
.y1e{bottom:532.695000px;}
.y72{bottom:536.115000px;}
.y86{bottom:537.735000px;}
.y3d{bottom:550.155000px;}
.y1d{bottom:553.395000px;}
.y57{bottom:561.135000px;}
.y71{bottom:567.255000px;}
.y85{bottom:568.875000px;}
.y1c{bottom:574.095000px;}
.y3c{bottom:587.055000px;}
.y56{bottom:592.275000px;}
.y1b{bottom:594.795000px;}
.y70{bottom:598.215000px;}
.y84{bottom:599.835000px;}
.y1a{bottom:615.525000px;}
.y55{bottom:623.265000px;}
.y3b{bottom:624.165000px;}
.y6f{bottom:629.385000px;}
.y19{bottom:636.225000px;}
.y83{bottom:636.945000px;}
.y96{bottom:647.745000px;}
.y54{bottom:654.405000px;}
.y18{bottom:656.925000px;}
.y6e{bottom:660.345000px;}
.y3a{bottom:661.245000px;}
.y82{bottom:674.025000px;}
.y17{bottom:677.625000px;}
.y53{bottom:685.365000px;}
.y95{bottom:685.545000px;}
.y39{bottom:692.385000px;}
.y6d{bottom:697.425000px;}
.y16{bottom:698.325000px;}
.y81{bottom:711.105000px;}
.y52{bottom:716.505000px;}
.y15{bottom:719.025000px;}
.y38{bottom:723.345000px;}
.yb8{bottom:724.065000px;}
.y6c{bottom:728.385000px;}
.y14{bottom:739.725000px;}
.ya1{bottom:743.685000px;}
.yb7{bottom:744.765000px;}
.y51{bottom:747.465000px;}
.y80{bottom:748.005000px;}
.y6b{bottom:759.525000px;}
.y13{bottom:760.425000px;}
.y94{bottom:761.145000px;}
.yb6{bottom:765.465000px;}
.y50{bottom:778.605000px;}
.y12{bottom:781.125000px;}
.y7f{bottom:785.085000px;}
.yb5{bottom:786.165000px;}
.ya0{bottom:786.705000px;}
.y6a{bottom:790.485000px;}
.y37{bottom:791.385000px;}
.y92{bottom:798.945000px;}
.y11{bottom:801.825000px;}
.yb4{bottom:806.865000px;}
.y4f{bottom:809.565000px;}
.y7e{bottom:822.165000px;}
.y10{bottom:822.525000px;}
.y9f{bottom:823.605000px;}
.y69{bottom:827.565000px;}
.yf{bottom:843.225000px;}
.y4e{bottom:846.645000px;}
.yb3{bottom:848.265000px;}
.y7d{bottom:848.805000px;}
.y36{bottom:853.485000px;}
.y9e{bottom:854.745000px;}
.y68{bottom:858.705000px;}
.ye{bottom:863.925000px;}
.yb2{bottom:868.965000px;}
.y4d{bottom:877.650000px;}
.yd{bottom:884.670000px;}
.y9d{bottom:885.750000px;}
.y7c{bottom:885.930000px;}
.y67{bottom:889.710000px;}
.yc{bottom:905.370000px;}
.yb1{bottom:910.410000px;}
.y4c{bottom:914.730000px;}
.y9c{bottom:916.890000px;}
.y7b{bottom:917.070000px;}
.y66{bottom:920.850000px;}
.y35{bottom:921.750000px;}
.yb0{bottom:931.110000px;}
.yb{bottom:933.090000px;}
.y4b{bottom:945.870000px;}
.y9b{bottom:947.850000px;}
.y7a{bottom:948.030000px;}
.y65{bottom:951.810000px;}
.y34{bottom:952.710000px;}
.ya{bottom:960.990000px;}
.yaf{bottom:972.510000px;}
.y79{bottom:975.210000px;}
.y4a{bottom:976.830000px;}
.y9a{bottom:978.990000px;}
.y64{bottom:982.950000px;}
.y33{bottom:983.850000px;}
.y9{bottom:988.530000px;}
.yae{bottom:993.210000px;}
.y49{bottom:1007.970000px;}
.y63{bottom:1013.910000px;}
.y32{bottom:1014.810000px;}
.y99{bottom:1016.070000px;}
.y8{bottom:1022.010000px;}
.y98{bottom:1033.530000px;}
.yad{bottom:1034.610000px;}
.y48{bottom:1045.050000px;}
.y31{bottom:1045.950000px;}
.y7{bottom:1049.730000px;}
.yac{bottom:1055.310000px;}
.y97{bottom:1063.590000px;}
.y30{bottom:1073.130000px;}
.y6{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.ha{height:29.160000px;}
.h9{height:29.340000px;}
.hb{height:36.900000px;}
.h6{height:52.628906px;}
.h3{height:59.383125px;}
.h8{height:63.949219px;}
.h2{height:64.546875px;}
.h5{height:69.996445px;}
.h7{height:74.820586px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:89.460000px;}
.w8{width:89.496000px;}
.wa{width:89.676000px;}
.w3{width:96.336000px;}
.w4{width:96.480000px;}
.w6{width:96.660000px;}
.w5{width:96.696000px;}
.wb{width:106.956000px;}
.w7{width:119.520000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:21.600000px;}
.x11{left:23.940000px;}
.x12{left:28.080000px;}
.xe{left:43.920000px;}
.x19{left:50.265000px;}
.x13{left:54.540000px;}
.x1a{left:56.160000px;}
.x1b{left:59.085000px;}
.x15{left:61.605000px;}
.x2{left:106.415987px;}
.x4{left:110.015987px;}
.x8{left:148.895987px;}
.x6{left:152.849987px;}
.x9{left:232.049987px;}
.xb{left:252.930000px;}
.x14{left:272.550000px;}
.x7{left:283.754987px;}
.xa{left:304.634987px;}
.xd{left:349.635000px;}
.x16{left:362.955000px;}
.x5{left:415.514987px;}
.xf{left:446.475000px;}
.x17{left:453.135000px;}
.x1{left:467.744987px;}
.x10{left:543.525000px;}
.x18{left:633.885000px;}
.x3{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:57.263360pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._7{margin-left:-3.840000pt;}
._a{margin-left:-2.544640pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.264213pt;}
._8{width:3.008000pt;}
._9{width:4.096000pt;}
._5{width:5.760000pt;}
._6{width:7.168000pt;}
._13{width:8.064000pt;}
._12{width:9.344000pt;}
._10{width:10.944000pt;}
._11{width:11.840000pt;}
._17{width:12.751787pt;}
._c{width:14.912000pt;}
._14{width:17.600000pt;}
._15{width:18.624000pt;}
._19{width:20.138667pt;}
._18{width:21.568000pt;}
._16{width:22.686720pt;}
._b{width:23.616000pt;}
._f{width:24.704000pt;}
._e{width:25.600000pt;}
._2{width:32.698667pt;}
._3{width:33.707520pt;}
._d{width:35.006293pt;}
._4{width:99.347627pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:3.520000pt;}
.y93{bottom:17.920000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:96.352000pt;}
.y3{bottom:113.312000pt;}
.y2{bottom:130.272000pt;}
.yab{bottom:151.226667pt;}
.y91{bottom:152.346667pt;}
.y47{bottom:155.386667pt;}
.y2f{bottom:160.666667pt;}
.yaa{bottom:169.626667pt;}
.y2e{bottom:179.066667pt;}
.y46{bottom:182.906667pt;}
.ya9{bottom:188.026667pt;}
.y78{bottom:189.946667pt;}
.y62{bottom:195.226667pt;}
.y2d{bottom:197.466667pt;}
.y8f{bottom:205.626667pt;}
.ya8{bottom:206.426667pt;}
.y2c{bottom:215.866667pt;}
.y77{bottom:217.466667pt;}
.y61{bottom:222.746667pt;}
.ya7{bottom:224.826667pt;}
.y2b{bottom:234.266667pt;}
.y8e{bottom:241.146667pt;}
.ya6{bottom:243.226667pt;}
.y45{bottom:243.546667pt;}
.y60{bottom:250.426667pt;}
.y2a{bottom:252.666667pt;}
.ya5{bottom:261.626667pt;}
.y44{bottom:267.706667pt;}
.y29{bottom:271.066667pt;}
.y8d{bottom:274.106667pt;}
.y5f{bottom:277.946667pt;}
.ya4{bottom:280.026667pt;}
.y28{bottom:289.466667pt;}
.y43{bottom:296.666667pt;}
.ya3{bottom:298.426667pt;}
.y5e{bottom:305.666667pt;}
.y8c{bottom:307.106667pt;}
.y27{bottom:307.906667pt;}
.ya2{bottom:322.626667pt;}
.y26{bottom:326.306667pt;}
.y42{bottom:329.666667pt;}
.y5d{bottom:333.186667pt;}
.y8b{bottom:334.626667pt;}
.y25{bottom:344.706667pt;}
.y5c{bottom:360.866667pt;}
.y8a{bottom:362.306667pt;}
.y41{bottom:362.626667pt;}
.y24{bottom:363.106667pt;}
.y76{bottom:366.146667pt;}
.y23{bottom:381.506667pt;}
.y5b{bottom:388.386667pt;}
.y89{bottom:389.826667pt;}
.y75{bottom:393.826667pt;}
.y40{bottom:395.426667pt;}
.y22{bottom:399.906667pt;}
.y5a{bottom:416.066667pt;}
.y21{bottom:418.306667pt;}
.y74{bottom:421.346667pt;}
.y88{bottom:422.786667pt;}
.y3f{bottom:428.386667pt;}
.y20{bottom:436.706667pt;}
.y59{bottom:443.586667pt;}
.y73{bottom:449.026667pt;}
.y87{bottom:450.466667pt;}
.y1f{bottom:455.106667pt;}
.y3e{bottom:461.346667pt;}
.y58{bottom:471.266667pt;}
.y1e{bottom:473.506667pt;}
.y72{bottom:476.546667pt;}
.y86{bottom:477.986667pt;}
.y3d{bottom:489.026667pt;}
.y1d{bottom:491.906667pt;}
.y57{bottom:498.786667pt;}
.y71{bottom:504.226667pt;}
.y85{bottom:505.666667pt;}
.y1c{bottom:510.306667pt;}
.y3c{bottom:521.826667pt;}
.y56{bottom:526.466667pt;}
.y1b{bottom:528.706667pt;}
.y70{bottom:531.746667pt;}
.y84{bottom:533.186667pt;}
.y1a{bottom:547.133333pt;}
.y55{bottom:554.013333pt;}
.y3b{bottom:554.813333pt;}
.y6f{bottom:559.453333pt;}
.y19{bottom:565.533333pt;}
.y83{bottom:566.173333pt;}
.y96{bottom:575.773333pt;}
.y54{bottom:581.693333pt;}
.y18{bottom:583.933333pt;}
.y6e{bottom:586.973333pt;}
.y3a{bottom:587.773333pt;}
.y82{bottom:599.133333pt;}
.y17{bottom:602.333333pt;}
.y53{bottom:609.213333pt;}
.y95{bottom:609.373333pt;}
.y39{bottom:615.453333pt;}
.y6d{bottom:619.933333pt;}
.y16{bottom:620.733333pt;}
.y81{bottom:632.093333pt;}
.y52{bottom:636.893333pt;}
.y15{bottom:639.133333pt;}
.y38{bottom:642.973333pt;}
.yb8{bottom:643.613333pt;}
.y6c{bottom:647.453333pt;}
.y14{bottom:657.533333pt;}
.ya1{bottom:661.053333pt;}
.yb7{bottom:662.013333pt;}
.y51{bottom:664.413333pt;}
.y80{bottom:664.893333pt;}
.y6b{bottom:675.133333pt;}
.y13{bottom:675.933333pt;}
.y94{bottom:676.573333pt;}
.yb6{bottom:680.413333pt;}
.y50{bottom:692.093333pt;}
.y12{bottom:694.333333pt;}
.y7f{bottom:697.853333pt;}
.yb5{bottom:698.813333pt;}
.ya0{bottom:699.293333pt;}
.y6a{bottom:702.653333pt;}
.y37{bottom:703.453333pt;}
.y92{bottom:710.173333pt;}
.y11{bottom:712.733333pt;}
.yb4{bottom:717.213333pt;}
.y4f{bottom:719.613333pt;}
.y7e{bottom:730.813333pt;}
.y10{bottom:731.133333pt;}
.y9f{bottom:732.093333pt;}
.y69{bottom:735.613333pt;}
.yf{bottom:749.533333pt;}
.y4e{bottom:752.573333pt;}
.yb3{bottom:754.013333pt;}
.y7d{bottom:754.493333pt;}
.y36{bottom:758.653333pt;}
.y9e{bottom:759.773333pt;}
.y68{bottom:763.293333pt;}
.ye{bottom:767.933333pt;}
.yb2{bottom:772.413333pt;}
.y4d{bottom:780.133333pt;}
.yd{bottom:786.373333pt;}
.y9d{bottom:787.333333pt;}
.y7c{bottom:787.493333pt;}
.y67{bottom:790.853333pt;}
.yc{bottom:804.773333pt;}
.yb1{bottom:809.253333pt;}
.y4c{bottom:813.093333pt;}
.y9c{bottom:815.013333pt;}
.y7b{bottom:815.173333pt;}
.y66{bottom:818.533333pt;}
.y35{bottom:819.333333pt;}
.yb0{bottom:827.653333pt;}
.yb{bottom:829.413333pt;}
.y4b{bottom:840.773333pt;}
.y9b{bottom:842.533333pt;}
.y7a{bottom:842.693333pt;}
.y65{bottom:846.053333pt;}
.y34{bottom:846.853333pt;}
.ya{bottom:854.213333pt;}
.yaf{bottom:864.453333pt;}
.y79{bottom:866.853333pt;}
.y4a{bottom:868.293333pt;}
.y9a{bottom:870.213333pt;}
.y64{bottom:873.733333pt;}
.y33{bottom:874.533333pt;}
.y9{bottom:878.693333pt;}
.yae{bottom:882.853333pt;}
.y49{bottom:895.973333pt;}
.y63{bottom:901.253333pt;}
.y32{bottom:902.053333pt;}
.y99{bottom:903.173333pt;}
.y8{bottom:908.453333pt;}
.y98{bottom:918.693333pt;}
.yad{bottom:919.653333pt;}
.y48{bottom:928.933333pt;}
.y31{bottom:929.733333pt;}
.y7{bottom:933.093333pt;}
.yac{bottom:938.053333pt;}
.y97{bottom:945.413333pt;}
.y30{bottom:953.893333pt;}
.y6{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.ha{height:25.920000pt;}
.h9{height:26.080000pt;}
.hb{height:32.800000pt;}
.h6{height:46.781250pt;}
.h3{height:52.785000pt;}
.h8{height:56.843750pt;}
.h2{height:57.375000pt;}
.h5{height:62.219062pt;}
.h7{height:66.507188pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:79.520000pt;}
.w8{width:79.552000pt;}
.wa{width:79.712000pt;}
.w3{width:85.632000pt;}
.w4{width:85.760000pt;}
.w6{width:85.920000pt;}
.w5{width:85.952000pt;}
.wb{width:95.072000pt;}
.w7{width:106.240000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:19.200000pt;}
.x11{left:21.280000pt;}
.x12{left:24.960000pt;}
.xe{left:39.040000pt;}
.x19{left:44.680000pt;}
.x13{left:48.480000pt;}
.x1a{left:49.920000pt;}
.x1b{left:52.520000pt;}
.x15{left:54.760000pt;}
.x2{left:94.591988pt;}
.x4{left:97.791988pt;}
.x8{left:132.351988pt;}
.x6{left:135.866655pt;}
.x9{left:206.266655pt;}
.xb{left:224.826667pt;}
.x14{left:242.266667pt;}
.x7{left:252.226655pt;}
.xa{left:270.786655pt;}
.xd{left:310.786667pt;}
.x16{left:322.626667pt;}
.x5{left:369.346655pt;}
.xf{left:396.866667pt;}
.x17{left:402.786667pt;}
.x1{left:415.773322pt;}
.x10{left:483.133333pt;}
.x18{left:563.453333pt;}
.x3{left:699.333322pt;}
}




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