
    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_ef0590efec12e4cfff234ec7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5bd28ea44fa73a7c7ea509e6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bf16137283a16173ebe1aac6.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b301c0971bfb58243b051b53.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_832670bc2c5ab00d462f3e0b.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_8eac71d7e41418f7deca0f9b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_81b53e7c3e435bc77721f903.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9b97adfd190ed4196d885df8.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bf04d3d6997bb3a0e6cc3bfe.woff')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.ls2{letter-spacing:-1.488000px;}
.lsb{letter-spacing:-1.200000px;}
.ls1{letter-spacing:-0.504000px;}
.ls3{letter-spacing:-0.384000px;}
.lsa{letter-spacing:-0.024000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.024000px;}
.ls9{letter-spacing:0.060000px;}
.ls8{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.384000px;}
.ls4{letter-spacing:0.408000px;}
.ls5{letter-spacing:34.134000px;}
.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:-22.512000px;}
.ws6{word-spacing:-19.392000px;}
.ws5{word-spacing:-18.480000px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.616000px;}
.ws0{word-spacing:-15.768000px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-5.184000px;}
._4{margin-left:-3.192000px;}
._1{margin-left:-2.124000px;}
._2{margin-left:-1.068000px;}
._0{width:1.200000px;}
._3{width:2.334000px;}
._a{width:3.888000px;}
._9{width:5.712000px;}
._8{width:6.876000px;}
._f{width:7.914000px;}
._17{width:9.036000px;}
._13{width:10.104000px;}
._c{width:11.220000px;}
._b{width:12.252000px;}
._14{width:13.524000px;}
._12{width:14.700000px;}
._11{width:15.708000px;}
._10{width:16.920000px;}
._19{width:19.368000px;}
._1b{width:20.808000px;}
._1c{width:21.924000px;}
._e{width:22.986000px;}
._d{width:24.276000px;}
._1a{width:25.764000px;}
._18{width:26.784000px;}
._21{width:27.948000px;}
._20{width:29.088000px;}
._7{width:33.024000px;}
._6{width:34.272000px;}
._1f{width:35.592000px;}
._1e{width:36.648000px;}
._16{width:38.016000px;}
._15{width:39.540000px;}
._1d{width:47.808000px;}
._22{width:71.928000px;}
._28{width:137.040000px;}
._27{width:138.312000px;}
._24{width:240.300000px;}
._25{width:242.064000px;}
._26{width:294.624000px;}
._23{width:450.084000px;}
._29{width:600.492000px;}
.fc5{color:rgb(5,44,1);}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(55,6,234);}
.fc1{color:rgb(227,108,10);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.637500px;}
.y2{bottom:79.537500px;}
.y1{bottom:96.937500px;}
.y65{bottom:130.837500px;}
.y31{bottom:132.037500px;}
.y64{bottom:151.530000px;}
.y30{bottom:152.730000px;}
.y63{bottom:172.230000px;}
.y2f{bottom:173.430000px;}
.y62{bottom:192.975000px;}
.y2e{bottom:194.175000px;}
.y61{bottom:213.675000px;}
.y2d{bottom:214.875000px;}
.y60{bottom:234.375000px;}
.y2c{bottom:235.575000px;}
.y5f{bottom:255.075000px;}
.y2b{bottom:258.675000px;}
.y5e{bottom:275.475000px;}
.y2a{bottom:279.375000px;}
.y5d{bottom:296.175000px;}
.y29{bottom:300.075000px;}
.y5c{bottom:316.875000px;}
.y28{bottom:320.775000px;}
.y5b{bottom:337.575000px;}
.y27{bottom:341.475000px;}
.y5a{bottom:358.320000px;}
.y26{bottom:362.220000px;}
.y59{bottom:379.020000px;}
.y25{bottom:382.920000px;}
.y58{bottom:399.705000px;}
.y24{bottom:403.620000px;}
.y57{bottom:420.420000px;}
.y23{bottom:424.320000px;}
.y56{bottom:441.120000px;}
.y22{bottom:445.005000px;}
.y55{bottom:461.820000px;}
.y21{bottom:465.705000px;}
.y54{bottom:482.505000px;}
.y20{bottom:486.405000px;}
.y53{bottom:503.220000px;}
.y1f{bottom:507.120000px;}
.y52{bottom:523.950000px;}
.y1e{bottom:527.850000px;}
.y51{bottom:544.650000px;}
.y1d{bottom:548.550000px;}
.y50{bottom:565.350000px;}
.y1c{bottom:569.250000px;}
.y4f{bottom:586.050000px;}
.y1b{bottom:589.950000px;}
.y4e{bottom:606.750000px;}
.y1a{bottom:610.650000px;}
.y4d{bottom:627.450000px;}
.y19{bottom:631.350000px;}
.y4c{bottom:648.150000px;}
.y18{bottom:652.050000px;}
.y4b{bottom:668.850000px;}
.y17{bottom:672.750000px;}
.y4a{bottom:689.595000px;}
.y16{bottom:693.495000px;}
.y49{bottom:710.295000px;}
.y15{bottom:714.195000px;}
.y48{bottom:730.995000px;}
.y14{bottom:734.880000px;}
.y47{bottom:751.695000px;}
.y13{bottom:755.580000px;}
.y46{bottom:772.380000px;}
.y12{bottom:776.295000px;}
.y45{bottom:793.080000px;}
.y11{bottom:802.080000px;}
.y44{bottom:813.795000px;}
.y10{bottom:822.795000px;}
.y43{bottom:834.495000px;}
.yf{bottom:843.480000px;}
.y42{bottom:855.225000px;}
.ye{bottom:864.225000px;}
.y41{bottom:875.925000px;}
.yd{bottom:886.125000px;}
.y40{bottom:896.625000px;}
.yc{bottom:913.725000px;}
.y3f{bottom:917.325000px;}
.y3e{bottom:938.025000px;}
.yb{bottom:941.325000px;}
.y3d{bottom:958.725000px;}
.ya{bottom:968.925000px;}
.y3c{bottom:979.425000px;}
.y9{bottom:996.525000px;}
.y3b{bottom:1000.125000px;}
.y3a{bottom:1020.870000px;}
.y8{bottom:1024.170000px;}
.y39{bottom:1041.570000px;}
.y7{bottom:1050.570000px;}
.y38{bottom:1062.255000px;}
.y6{bottom:1071.255000px;}
.y37{bottom:1082.955000px;}
.y5{bottom:1096.455000px;}
.y36{bottom:1103.670000px;}
.y35{bottom:1124.370000px;}
.y4{bottom:1129.755000px;}
.y34{bottom:1145.955000px;}
.y33{bottom:1168.755000px;}
.y32{bottom:1191.600000px;}
.h3{height:50.273438px;}
.h5{height:50.800781px;}
.h7{height:52.417969px;}
.h8{height:59.343750px;}
.h4{height:67.734375px;}
.h1{height:71.613281px;}
.h2{height:76.201172px;}
.h6{height:86.009766px;}
.h0{height:1263.000000px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:108.037487px;}
.x11{left:109.537487px;}
.x9{left:129.037487px;}
.x12{left:135.037487px;}
.xf{left:141.337487px;}
.x13{left:162.074987px;}
.x15{left:182.474987px;}
.x10{left:192.374987px;}
.xd{left:194.774987px;}
.x4{left:249.374987px;}
.xc{left:276.119987px;}
.x14{left:339.119987px;}
.xe{left:340.319987px;}
.x5{left:357.419987px;}
.xa{left:393.749987px;}
.xb{left:415.649987px;}
.x6{left:420.449987px;}
.x2{left:432.749987px;}
.x8{left:446.249987px;}
.x7{left:514.979987px;}
.x1{left:770.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-1.322667pt;}
.lsb{letter-spacing:-1.066667pt;}
.ls1{letter-spacing:-0.448000pt;}
.ls3{letter-spacing:-0.341333pt;}
.lsa{letter-spacing:-0.021333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.021333pt;}
.ls9{letter-spacing:0.053333pt;}
.ls8{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.341333pt;}
.ls4{letter-spacing:0.362667pt;}
.ls5{letter-spacing:30.341333pt;}
.ws1{word-spacing:-20.010667pt;}
.ws6{word-spacing:-17.237333pt;}
.ws5{word-spacing:-16.426667pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.658667pt;}
.ws0{word-spacing:-14.016000pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-4.608000pt;}
._4{margin-left:-2.837333pt;}
._1{margin-left:-1.888000pt;}
._2{margin-left:-0.949333pt;}
._0{width:1.066667pt;}
._3{width:2.074667pt;}
._a{width:3.456000pt;}
._9{width:5.077333pt;}
._8{width:6.112000pt;}
._f{width:7.034667pt;}
._17{width:8.032000pt;}
._13{width:8.981333pt;}
._c{width:9.973333pt;}
._b{width:10.890667pt;}
._14{width:12.021333pt;}
._12{width:13.066667pt;}
._11{width:13.962667pt;}
._10{width:15.040000pt;}
._19{width:17.216000pt;}
._1b{width:18.496000pt;}
._1c{width:19.488000pt;}
._e{width:20.432000pt;}
._d{width:21.578667pt;}
._1a{width:22.901333pt;}
._18{width:23.808000pt;}
._21{width:24.842667pt;}
._20{width:25.856000pt;}
._7{width:29.354667pt;}
._6{width:30.464000pt;}
._1f{width:31.637333pt;}
._1e{width:32.576000pt;}
._16{width:33.792000pt;}
._15{width:35.146667pt;}
._1d{width:42.496000pt;}
._22{width:63.936000pt;}
._28{width:121.813333pt;}
._27{width:122.944000pt;}
._24{width:213.600000pt;}
._25{width:215.168000pt;}
._26{width:261.888000pt;}
._23{width:400.074667pt;}
._29{width:533.770667pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.233333pt;}
.y2{bottom:70.700000pt;}
.y1{bottom:86.166667pt;}
.y65{bottom:116.300000pt;}
.y31{bottom:117.366667pt;}
.y64{bottom:134.693333pt;}
.y30{bottom:135.760000pt;}
.y63{bottom:153.093333pt;}
.y2f{bottom:154.160000pt;}
.y62{bottom:171.533333pt;}
.y2e{bottom:172.600000pt;}
.y61{bottom:189.933333pt;}
.y2d{bottom:191.000000pt;}
.y60{bottom:208.333333pt;}
.y2c{bottom:209.400000pt;}
.y5f{bottom:226.733333pt;}
.y2b{bottom:229.933333pt;}
.y5e{bottom:244.866667pt;}
.y2a{bottom:248.333333pt;}
.y5d{bottom:263.266667pt;}
.y29{bottom:266.733333pt;}
.y5c{bottom:281.666667pt;}
.y28{bottom:285.133333pt;}
.y5b{bottom:300.066667pt;}
.y27{bottom:303.533333pt;}
.y5a{bottom:318.506667pt;}
.y26{bottom:321.973333pt;}
.y59{bottom:336.906667pt;}
.y25{bottom:340.373333pt;}
.y58{bottom:355.293333pt;}
.y24{bottom:358.773333pt;}
.y57{bottom:373.706667pt;}
.y23{bottom:377.173333pt;}
.y56{bottom:392.106667pt;}
.y22{bottom:395.560000pt;}
.y55{bottom:410.506667pt;}
.y21{bottom:413.960000pt;}
.y54{bottom:428.893333pt;}
.y20{bottom:432.360000pt;}
.y53{bottom:447.306667pt;}
.y1f{bottom:450.773333pt;}
.y52{bottom:465.733333pt;}
.y1e{bottom:469.200000pt;}
.y51{bottom:484.133333pt;}
.y1d{bottom:487.600000pt;}
.y50{bottom:502.533333pt;}
.y1c{bottom:506.000000pt;}
.y4f{bottom:520.933333pt;}
.y1b{bottom:524.400000pt;}
.y4e{bottom:539.333333pt;}
.y1a{bottom:542.800000pt;}
.y4d{bottom:557.733333pt;}
.y19{bottom:561.200000pt;}
.y4c{bottom:576.133333pt;}
.y18{bottom:579.600000pt;}
.y4b{bottom:594.533333pt;}
.y17{bottom:598.000000pt;}
.y4a{bottom:612.973333pt;}
.y16{bottom:616.440000pt;}
.y49{bottom:631.373333pt;}
.y15{bottom:634.840000pt;}
.y48{bottom:649.773333pt;}
.y14{bottom:653.226667pt;}
.y47{bottom:668.173333pt;}
.y13{bottom:671.626667pt;}
.y46{bottom:686.560000pt;}
.y12{bottom:690.040000pt;}
.y45{bottom:704.960000pt;}
.y11{bottom:712.960000pt;}
.y44{bottom:723.373333pt;}
.y10{bottom:731.373333pt;}
.y43{bottom:741.773333pt;}
.yf{bottom:749.760000pt;}
.y42{bottom:760.200000pt;}
.ye{bottom:768.200000pt;}
.y41{bottom:778.600000pt;}
.yd{bottom:787.666667pt;}
.y40{bottom:797.000000pt;}
.yc{bottom:812.200000pt;}
.y3f{bottom:815.400000pt;}
.y3e{bottom:833.800000pt;}
.yb{bottom:836.733333pt;}
.y3d{bottom:852.200000pt;}
.ya{bottom:861.266667pt;}
.y3c{bottom:870.600000pt;}
.y9{bottom:885.800000pt;}
.y3b{bottom:889.000000pt;}
.y3a{bottom:907.440000pt;}
.y8{bottom:910.373333pt;}
.y39{bottom:925.840000pt;}
.y7{bottom:933.840000pt;}
.y38{bottom:944.226667pt;}
.y6{bottom:952.226667pt;}
.y37{bottom:962.626667pt;}
.y5{bottom:974.626667pt;}
.y36{bottom:981.040000pt;}
.y35{bottom:999.440000pt;}
.y4{bottom:1004.226667pt;}
.y34{bottom:1018.626667pt;}
.y33{bottom:1038.893333pt;}
.y32{bottom:1059.200000pt;}
.h3{height:44.687500pt;}
.h5{height:45.156250pt;}
.h7{height:46.593750pt;}
.h8{height:52.750000pt;}
.h4{height:60.208333pt;}
.h1{height:63.656250pt;}
.h2{height:67.734375pt;}
.h6{height:76.453125pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:96.033322pt;}
.x11{left:97.366655pt;}
.x9{left:114.699988pt;}
.x12{left:120.033322pt;}
.xf{left:125.633322pt;}
.x13{left:144.066655pt;}
.x15{left:162.199988pt;}
.x10{left:170.999988pt;}
.xd{left:173.133322pt;}
.x4{left:221.666655pt;}
.xc{left:245.439988pt;}
.x14{left:301.439988pt;}
.xe{left:302.506655pt;}
.x5{left:317.706655pt;}
.xa{left:349.999988pt;}
.xb{left:369.466655pt;}
.x6{left:373.733322pt;}
.x2{left:384.666655pt;}
.x8{left:396.666655pt;}
.x7{left:457.759988pt;}
.x1{left:684.773322pt;}
}




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