
    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_0badd0f85dbeb4487f990eea.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_e1e122a5a3df1fc3ac1e0ebc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.127930;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_742a1519116f35c14e02b301.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.030273;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v8{vertical-align:-215.100000px;}
.v9{vertical-align:-93.900000px;}
.v3{vertical-align:-58.800000px;}
.va{vertical-align:-54.480000px;}
.v6{vertical-align:-42.900000px;}
.v1{vertical-align:-34.380000px;}
.v7{vertical-align:-25.500000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:34.380000px;}
.v4{vertical-align:58.800000px;}
.v5{vertical-align:118.680000px;}
.ls1a{letter-spacing:-4.068000px;}
.ls1f{letter-spacing:-3.024000px;}
.ls1c{letter-spacing:-1.560000px;}
.ls19{letter-spacing:-1.476000px;}
.ls1e{letter-spacing:-1.368000px;}
.ls18{letter-spacing:-1.332000px;}
.ls20{letter-spacing:-0.966000px;}
.ls1d{letter-spacing:-0.648000px;}
.ls24{letter-spacing:-0.498000px;}
.ls22{letter-spacing:-0.234000px;}
.ls17{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.396000px;}
.lsc{letter-spacing:0.429000px;}
.ls9{letter-spacing:0.549000px;}
.ls23{letter-spacing:1.188000px;}
.ls0{letter-spacing:2.796000px;}
.ls1{letter-spacing:6.108000px;}
.ls3{letter-spacing:8.580000px;}
.ls2{letter-spacing:9.376500px;}
.lsd{letter-spacing:9.627000px;}
.ls8{letter-spacing:11.908500px;}
.ls1b{letter-spacing:31.560000px;}
.lsa{letter-spacing:55.996500px;}
.lsb{letter-spacing:56.056500px;}
.ls6{letter-spacing:61.141500px;}
.ls16{letter-spacing:64.164000px;}
.ls11{letter-spacing:64.344000px;}
.ls10{letter-spacing:77.566500px;}
.ls15{letter-spacing:77.626500px;}
.lse{letter-spacing:80.184000px;}
.ls7{letter-spacing:99.720000px;}
.ls13{letter-spacing:121.080000px;}
.ls14{letter-spacing:177.564900px;}
.lsf{letter-spacing:205.104000px;}
.ls12{letter-spacing:222.444000px;}
.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;}
}
.ws8{word-spacing:-288.150000px;}
.ws7{word-spacing:-288.000000px;}
.wsc{word-spacing:-233.628000px;}
.ws14{word-spacing:-214.086000px;}
.ws12{word-spacing:-211.500000px;}
.ws6{word-spacing:-166.500000px;}
.wsd{word-spacing:-128.275500px;}
.ws10{word-spacing:-128.155500px;}
.wsf{word-spacing:-128.095500px;}
.ws13{word-spacing:-120.358500px;}
.wse{word-spacing:-118.975500px;}
.ws5{word-spacing:-58.464000px;}
.ws4{word-spacing:-57.816000px;}
.wsb{word-spacing:-57.498000px;}
.ws0{word-spacing:-57.132000px;}
.ws9{word-spacing:-57.126450px;}
.ws1{word-spacing:-56.988000px;}
.ws3{word-spacing:-56.934450px;}
.wsa{word-spacing:-55.440000px;}
.ws2{word-spacing:-54.396000px;}
.ws17{word-spacing:-29.262450px;}
.ws15{word-spacing:-29.232000px;}
.ws11{word-spacing:-5.400000px;}
.ws18{word-spacing:0.000000px;}
.ws16{word-spacing:719.148000px;}
._1c{margin-left:-37.959150px;}
._26{margin-left:-25.684350px;}
._25{margin-left:-24.602100px;}
._24{margin-left:-22.989000px;}
._2a{margin-left:-15.542820px;}
._28{margin-left:-13.767900px;}
._15{margin-left:-11.101350px;}
._d{margin-left:-8.326650px;}
._17{margin-left:-6.626550px;}
._5{margin-left:-5.088000px;}
._4{margin-left:-4.032000px;}
._9{margin-left:-2.593350px;}
._1{margin-left:-1.152000px;}
._0{width:1.728000px;}
._3{width:2.844000px;}
._e{width:4.104000px;}
._b{width:5.412000px;}
._7{width:7.200000px;}
._29{width:10.928400px;}
._c{width:30.156000px;}
._27{width:37.678650px;}
._13{width:39.901350px;}
._21{width:41.298000px;}
._12{width:44.892750px;}
._1f{width:47.524500px;}
._23{width:50.049000px;}
._11{width:54.396000px;}
._2{width:56.232000px;}
._16{width:89.053350px;}
._14{width:90.133350px;}
._6{width:98.472000px;}
._8{width:99.756000px;}
._18{width:102.337350px;}
._19{width:103.692000px;}
._a{width:133.159800px;}
._1b{width:134.705250px;}
._1a{width:136.299300px;}
._1d{width:138.288000px;}
._1e{width:139.428000px;}
._10{width:225.158700px;}
._f{width:226.633350px;}
._20{width:1043.866650px;}
._22{width:1074.159000px;}
.fca{color:rgb(25,107,36);}
.fc9{color:rgb(112,48,160);}
.fc8{color:rgb(255,192,0);}
.fc6{color:rgb(39,83,23);}
.fc5{color:rgb(78,167,46);}
.fc3{color:rgb(255,0,0);}
.fc4{color:rgb(21,96,130);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(120,32,110);}
.fc7{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:121.500000px;}
.fsa{font-size:144.000000px;}
.fsb{font-size:144.150000px;}
.fs2{font-size:166.500000px;}
.fs9{font-size:171.000000px;}
.fs7{font-size:193.500000px;}
.fs4{font-size:211.500000px;}
.fsc{font-size:216.150000px;}
.fs6{font-size:238.500000px;}
.fs0{font-size:288.000000px;}
.fs1{font-size:288.150000px;}
.fs5{font-size:324.000000px;}
.fs8{font-size:688.620000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:69.675000px;}
.y1b{bottom:127.050000px;}
.y1a{bottom:241.830000px;}
.y19{bottom:300.345000px;}
.yb{bottom:729.780000px;}
.ya{bottom:815.280000px;}
.y9{bottom:901.905000px;}
.y14{bottom:1068.780000px;}
.y8{bottom:1247.325000px;}
.y28{bottom:1291.155000px;}
.y7{bottom:1333.995000px;}
.y6{bottom:1420.605000px;}
.y5{bottom:1507.230000px;}
.y4{bottom:1593.870000px;}
.y3{bottom:1679.400000px;}
.y2{bottom:1766.025000px;}
.y1{bottom:1852.650000px;}
.y13{bottom:2590.230000px;}
.y10{bottom:2631.195000px;}
.y12{bottom:2676.900000px;}
.yf{bottom:2717.850000px;}
.y11{bottom:2763.525000px;}
.ye{bottom:2804.475000px;}
.yd{bottom:2891.100000px;}
.y27{bottom:2969.700000px;}
.y26{bottom:3012.450000px;}
.y22{bottom:3017.745000px;}
.y1e{bottom:3099.300000px;}
.y1f{bottom:3122.775000px;}
.y20{bottom:3147.180000px;}
.y21{bottom:3158.550000px;}
.y25{bottom:3182.700000px;}
.y24{bottom:3225.450000px;}
.y23{bottom:3268.200000px;}
.yc{bottom:3288.450000px;}
.y18{bottom:3530.175000px;}
.y15{bottom:4247.205000px;}
.y17{bottom:4487.475000px;}
.y16{bottom:4488.630000px;}
.y1d{bottom:4776.855000px;}
.ha{height:124.804688px;}
.h5{height:141.459961px;}
.h3{height:144.305420px;}
.h6{height:167.706299px;}
.h9{height:179.692383px;}
.hb{height:183.643066px;}
.h8{height:244.687500px;}
.h1{height:249.609375px;}
.h2{height:249.739380px;}
.h4{height:321.311836px;}
.h7{height:582.031846px;}
.h0{height:5055.750000px;}
.w2{width:3576.374947px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x1{left:258.494947px;}
.xd{left:296.099947px;}
.x5{left:397.574947px;}
.x2{left:531.344947px;}
.xa{left:761.444947px;}
.x3{left:863.024947px;}
.x9{left:1187.699947px;}
.x15{left:1412.399947px;}
.x8{left:1639.424947px;}
.x4{left:1702.079947px;}
.x11{left:1760.924947px;}
.xe{left:1832.129947px;}
.xc{left:2071.874947px;}
.x7{left:2095.469947px;}
.x13{left:2105.924947px;}
.x12{left:2271.479947px;}
.x6{left:2318.924947px;}
.xf{left:2623.529947px;}
.xb{left:2635.199947px;}
.x16{left:2787.854947px;}
.x14{left:2917.394947px;}
.x10{left:3049.994947px;}
@media print{
.v8{vertical-align:-191.200000pt;}
.v9{vertical-align:-83.466667pt;}
.v3{vertical-align:-52.266667pt;}
.va{vertical-align:-48.426667pt;}
.v6{vertical-align:-38.133333pt;}
.v1{vertical-align:-30.560000pt;}
.v7{vertical-align:-22.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:30.560000pt;}
.v4{vertical-align:52.266667pt;}
.v5{vertical-align:105.493333pt;}
.ls1a{letter-spacing:-3.616000pt;}
.ls1f{letter-spacing:-2.688000pt;}
.ls1c{letter-spacing:-1.386667pt;}
.ls19{letter-spacing:-1.312000pt;}
.ls1e{letter-spacing:-1.216000pt;}
.ls18{letter-spacing:-1.184000pt;}
.ls20{letter-spacing:-0.858667pt;}
.ls1d{letter-spacing:-0.576000pt;}
.ls24{letter-spacing:-0.442667pt;}
.ls22{letter-spacing:-0.208000pt;}
.ls17{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.352000pt;}
.lsc{letter-spacing:0.381333pt;}
.ls9{letter-spacing:0.488000pt;}
.ls23{letter-spacing:1.056000pt;}
.ls0{letter-spacing:2.485333pt;}
.ls1{letter-spacing:5.429333pt;}
.ls3{letter-spacing:7.626667pt;}
.ls2{letter-spacing:8.334667pt;}
.lsd{letter-spacing:8.557333pt;}
.ls8{letter-spacing:10.585333pt;}
.ls1b{letter-spacing:28.053333pt;}
.lsa{letter-spacing:49.774667pt;}
.lsb{letter-spacing:49.828000pt;}
.ls6{letter-spacing:54.348000pt;}
.ls16{letter-spacing:57.034667pt;}
.ls11{letter-spacing:57.194667pt;}
.ls10{letter-spacing:68.948000pt;}
.ls15{letter-spacing:69.001333pt;}
.lse{letter-spacing:71.274667pt;}
.ls7{letter-spacing:88.640000pt;}
.ls13{letter-spacing:107.626667pt;}
.ls14{letter-spacing:157.835467pt;}
.lsf{letter-spacing:182.314667pt;}
.ls12{letter-spacing:197.728000pt;}
.ws8{word-spacing:-256.133333pt;}
.ws7{word-spacing:-256.000000pt;}
.wsc{word-spacing:-207.669333pt;}
.ws14{word-spacing:-190.298667pt;}
.ws12{word-spacing:-188.000000pt;}
.ws6{word-spacing:-148.000000pt;}
.wsd{word-spacing:-114.022667pt;}
.ws10{word-spacing:-113.916000pt;}
.wsf{word-spacing:-113.862667pt;}
.ws13{word-spacing:-106.985333pt;}
.wse{word-spacing:-105.756000pt;}
.ws5{word-spacing:-51.968000pt;}
.ws4{word-spacing:-51.392000pt;}
.wsb{word-spacing:-51.109333pt;}
.ws0{word-spacing:-50.784000pt;}
.ws9{word-spacing:-50.779067pt;}
.ws1{word-spacing:-50.656000pt;}
.ws3{word-spacing:-50.608400pt;}
.wsa{word-spacing:-49.280000pt;}
.ws2{word-spacing:-48.352000pt;}
.ws17{word-spacing:-26.011067pt;}
.ws15{word-spacing:-25.984000pt;}
.ws11{word-spacing:-4.800000pt;}
.ws18{word-spacing:0.000000pt;}
.ws16{word-spacing:639.242667pt;}
._1c{margin-left:-33.741467pt;}
._26{margin-left:-22.830533pt;}
._25{margin-left:-21.868533pt;}
._24{margin-left:-20.434667pt;}
._2a{margin-left:-13.815840pt;}
._28{margin-left:-12.238133pt;}
._15{margin-left:-9.867867pt;}
._d{margin-left:-7.401467pt;}
._17{margin-left:-5.890267pt;}
._5{margin-left:-4.522667pt;}
._4{margin-left:-3.584000pt;}
._9{margin-left:-2.305200pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.536000pt;}
._3{width:2.528000pt;}
._e{width:3.648000pt;}
._b{width:4.810667pt;}
._7{width:6.400000pt;}
._29{width:9.714133pt;}
._c{width:26.805333pt;}
._27{width:33.492133pt;}
._13{width:35.467867pt;}
._21{width:36.709333pt;}
._12{width:39.904667pt;}
._1f{width:42.244000pt;}
._23{width:44.488000pt;}
._11{width:48.352000pt;}
._2{width:49.984000pt;}
._16{width:79.158533pt;}
._14{width:80.118533pt;}
._6{width:87.530667pt;}
._8{width:88.672000pt;}
._18{width:90.966533pt;}
._19{width:92.170667pt;}
._a{width:118.364267pt;}
._1b{width:119.738000pt;}
._1a{width:121.154933pt;}
._1d{width:122.922667pt;}
._1e{width:123.936000pt;}
._10{width:200.141067pt;}
._f{width:201.451867pt;}
._20{width:927.881467pt;}
._22{width:954.808000pt;}
.fs3{font-size:108.000000pt;}
.fsa{font-size:128.000000pt;}
.fsb{font-size:128.133333pt;}
.fs2{font-size:148.000000pt;}
.fs9{font-size:152.000000pt;}
.fs7{font-size:172.000000pt;}
.fs4{font-size:188.000000pt;}
.fsc{font-size:192.133333pt;}
.fs6{font-size:212.000000pt;}
.fs0{font-size:256.000000pt;}
.fs1{font-size:256.133333pt;}
.fs5{font-size:288.000000pt;}
.fs8{font-size:612.106667pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:61.933333pt;}
.y1b{bottom:112.933333pt;}
.y1a{bottom:214.960000pt;}
.y19{bottom:266.973333pt;}
.yb{bottom:648.693333pt;}
.ya{bottom:724.693333pt;}
.y9{bottom:801.693333pt;}
.y14{bottom:950.026667pt;}
.y8{bottom:1108.733333pt;}
.y28{bottom:1147.693333pt;}
.y7{bottom:1185.773333pt;}
.y6{bottom:1262.760000pt;}
.y5{bottom:1339.760000pt;}
.y4{bottom:1416.773333pt;}
.y3{bottom:1492.800000pt;}
.y2{bottom:1569.800000pt;}
.y1{bottom:1646.800000pt;}
.y13{bottom:2302.426667pt;}
.y10{bottom:2338.840000pt;}
.y12{bottom:2379.466667pt;}
.yf{bottom:2415.866667pt;}
.y11{bottom:2456.466667pt;}
.ye{bottom:2492.866667pt;}
.yd{bottom:2569.866667pt;}
.y27{bottom:2639.733333pt;}
.y26{bottom:2677.733333pt;}
.y22{bottom:2682.440000pt;}
.y1e{bottom:2754.933333pt;}
.y1f{bottom:2775.800000pt;}
.y20{bottom:2797.493333pt;}
.y21{bottom:2807.600000pt;}
.y25{bottom:2829.066667pt;}
.y24{bottom:2867.066667pt;}
.y23{bottom:2905.066667pt;}
.yc{bottom:2923.066667pt;}
.y18{bottom:3137.933333pt;}
.y15{bottom:3775.293333pt;}
.y17{bottom:3988.866667pt;}
.y16{bottom:3989.893333pt;}
.y1d{bottom:4246.093333pt;}
.ha{height:110.937500pt;}
.h5{height:125.742188pt;}
.h3{height:128.271484pt;}
.h6{height:149.072266pt;}
.h9{height:159.726562pt;}
.hb{height:163.238281pt;}
.h8{height:217.500000pt;}
.h1{height:221.875000pt;}
.h2{height:221.990560pt;}
.h4{height:285.610521pt;}
.h7{height:517.361641pt;}
.h0{height:4494.000000pt;}
.w2{width:3178.999953pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x1{left:229.773286pt;}
.xd{left:263.199953pt;}
.x5{left:353.399953pt;}
.x2{left:472.306619pt;}
.xa{left:676.839953pt;}
.x3{left:767.133286pt;}
.x9{left:1055.733286pt;}
.x15{left:1255.466619pt;}
.x8{left:1457.266619pt;}
.x4{left:1512.959953pt;}
.x11{left:1565.266619pt;}
.xe{left:1628.559953pt;}
.xc{left:1841.666619pt;}
.x7{left:1862.639953pt;}
.x13{left:1871.933286pt;}
.x12{left:2019.093286pt;}
.x6{left:2061.266619pt;}
.xf{left:2332.026619pt;}
.xb{left:2342.399953pt;}
.x16{left:2478.093286pt;}
.x14{left:2593.239953pt;}
.x10{left:2711.106619pt;}
}




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