
    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_59f45b0f4717dc532341083a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.220000;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_44e855188b18fde034fcb151.woff')format("woff");}.ff2{font-family:ff2;line-height:1.052000;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_1320ec49c462ee7d69a30dff.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_32332fda8c6bdd310d995544.woff')format("woff");}.ff4{font-family:ff4;line-height:1.188000;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_ba26db330885faef446cb669.woff')format("woff");}.ff5{font-family:ff5;line-height:1.216000;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);}
.v2{vertical-align:-81.000003px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:117.000004px;}
.v6{vertical-align:130.500004px;}
.v7{vertical-align:137.250004px;}
.v3{vertical-align:151.676960px;}
.v4{vertical-align:184.499988px;}
.v5{vertical-align:274.499991px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000446px;}
.ls1{letter-spacing:107.994023px;}
.ls2{letter-spacing:108.000705px;}
.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;}
}
.ws9{word-spacing:-60.056886px;}
.ws0{word-spacing:-55.536007px;}
.ws3{word-spacing:-49.920003px;}
.ws2{word-spacing:-48.969461px;}
.ws1{word-spacing:-38.448003px;}
.wsa{word-spacing:0.000000px;}
.ws8{word-spacing:1496.262110px;}
.ws7{word-spacing:1700.139651px;}
.ws5{word-spacing:2975.158840px;}
.ws4{word-spacing:2984.271338px;}
.ws6{word-spacing:4087.989131px;}
._2a{width:3.695808px;}
._11{width:8.777545px;}
._26{width:10.163473px;}
._1f{width:11.318413px;}
._c{width:21.712874px;}
._8{width:27.949551px;}
._e{width:29.744844px;}
._17{width:31.697970px;}
._28{width:32.978676px;}
._a{width:39.960928px;}
._1c{width:42.270808px;}
._14{width:43.425748px;}
._16{width:52.665269px;}
._6{width:63.290718px;}
._12{width:66.755538px;}
._15{width:68.603443px;}
._29{width:69.916415px;}
._24{width:72.761227px;}
._1a{width:76.688023px;}
._25{width:80.845808px;}
._18{width:83.786877px;}
._1b{width:95.860029px;}
._27{width:109.257335px;}
._13{width:110.643263px;}
._1e{width:113.877095px;}
._d{width:115.032035px;}
._0{width:119.882784px;}
._19{width:125.426496px;}
._b{width:127.505388px;}
._5{width:148.063322px;}
._9{width:158.919759px;}
._20{width:160.305688px;}
._2{width:163.308532px;}
._4{width:170.652964px;}
._f{width:193.738762px;}
._7{width:208.351196px;}
._1d{width:220.131585px;}
._1{width:336.549549px;}
._10{width:430.561674px;}
._3{width:610.732331px;}
._23{width:2366.469076px;}
._21{width:2891.411643px;}
._22{width:3645.189117px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,151,167);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(197,37,143);}
.fs3{font-size:144.000012px;}
.fs9{font-size:180.000006px;}
.fs7{font-size:192.000012px;}
.fs2{font-size:208.000025px;}
.fs4{font-size:216.000007px;}
.fs8{font-size:228.000013px;}
.fs5{font-size:230.988022px;}
.fs6{font-size:277.185609px;}
.fs1{font-size:312.000022px;}
.fs0{font-size:446.576999px;}
.y0{bottom:0.000000px;}
.y37{bottom:139.833314px;}
.y3a{bottom:191.937308px;}
.y39{bottom:200.794028px;}
.y36{bottom:245.086810px;}
.y38{bottom:275.314021px;}
.y28{bottom:543.876792px;}
.y1d{bottom:556.555141px;}
.y6e{bottom:597.667480px;}
.y1c{bottom:636.246093px;}
.y6d{bottom:677.358353px;}
.y5c{bottom:686.768799px;}
.y56{bottom:713.768800px;}
.y1b{bottom:715.936933px;}
.y5b{bottom:748.868778px;}
.y6c{bottom:757.049227px;}
.y55{bottom:775.868779px;}
.y1a{bottom:795.627773px;}
.y54{bottom:837.968770px;}
.y5a{bottom:846.968770px;}
.y6b{bottom:893.740095px;}
.y57{bottom:900.068749px;}
.y59{bottom:909.068750px;}
.y19{bottom:932.318653px;}
.y53{bottom:945.068751px;}
.y58{bottom:971.168752px;}
.y6a{bottom:973.430980px;}
.y5f{bottom:979.268741px;}
.y52{bottom:1007.168753px;}
.y18{bottom:1012.009493px;}
.y51{bottom:1069.268743px;}
.y5e{bottom:1086.368744px;}
.y17{bottom:1091.700333px;}
.y69{bottom:1118.628109px;}
.y50{bottom:1131.368745px;}
.y4f{bottom:1193.468738px;}
.y16{bottom:1228.391212px;}
.y4d{bottom:1304.262272px;}
.y4e{bottom:1304.262418px;}
.y15{bottom:1308.082052px;}
.y5d{bottom:1338.574915px;}
.y4c{bottom:1372.887269px;}
.y14{bottom:1387.772915px;}
.y13{bottom:1467.463789px;}
.y68{bottom:1489.163296px;}
.y12{bottom:1547.154674px;}
.y67{bottom:1568.854136px;}
.y11{bottom:1692.351802px;}
.y66{bottom:1705.545015px;}
.y3e{bottom:1771.473538px;}
.y65{bottom:1785.235855px;}
.y3d{bottom:1851.164409px;}
.y27{bottom:1877.694208px;}
.y64{bottom:1921.926768px;}
.y26{bottom:1950.455430px;}
.y63{bottom:2001.617642px;}
.y4b{bottom:2016.761222px;}
.y25{bottom:2023.216675px;}
.y4a{bottom:2082.011225px;}
.y62{bottom:2138.308510px;}
.y24{bottom:2152.977892px;}
.y61{bottom:2217.999395px;}
.y23{bottom:2225.739182px;}
.y48{bottom:2285.110856px;}
.y22{bottom:2298.500393px;}
.y47{bottom:2350.360858px;}
.y60{bottom:2363.196524px;}
.y21{bottom:2428.261598px;}
.y20{bottom:2501.022820px;}
.y1f{bottom:2573.784032px;}
.y46{bottom:2586.085491px;}
.y35{bottom:2665.393403px;}
.y1e{bottom:2709.621160px;}
.y34{bottom:2745.084243px;}
.y3f{bottom:2772.417314px;}
.y33{bottom:2824.775083px;}
.y10{bottom:2904.465923px;}
.y32{bottom:2904.466036px;}
.yf{bottom:2984.156763px;}
.y31{bottom:2984.156876px;}
.y45{bottom:3003.446835px;}
.y44{bottom:3025.946836px;}
.ye{bottom:3063.847603px;}
.y30{bottom:3063.847716px;}
.y49{bottom:3072.071833px;}
.y43{bottom:3094.571834px;}
.yd{bottom:3143.538477px;}
.y2f{bottom:3200.538595px;}
.yc{bottom:3223.229329px;}
.y2e{bottom:3280.229435px;}
.y29{bottom:3316.830656px;}
.yb{bottom:3359.920163px;}
.y2d{bottom:3359.920275px;}
.ya{bottom:3439.611116px;}
.y3c{bottom:3469.739168px;}
.y2c{bottom:3496.611155px;}
.y9{bottom:3519.301989px;}
.y42{bottom:3528.285328px;}
.y3b{bottom:3549.430038px;}
.y2b{bottom:3576.301995px;}
.y8{bottom:3598.992863px;}
.y41{bottom:3607.976199px;}
.y2a{bottom:3655.992857px;}
.y7{bottom:3735.683731px;}
.y6{bottom:3815.374616px;}
.y40{bottom:3869.617761px;}
.y5{bottom:3960.571745px;}
.y4{bottom:4136.526925px;}
.y3{bottom:4211.046916px;}
.y2{bottom:4312.896916px;}
.y1{bottom:4467.071533px;}
.h3{height:112.608009px;}
.h10{height:169.920005px;}
.hd{height:197.208006px;}
.h9{height:203.904007px;}
.h7{height:204.552007px;}
.ha{height:215.916013px;}
.h5{height:218.052693px;}
.h6{height:262.494772px;}
.h2{height:279.656023px;}
.h4{height:295.464021px;}
.he{height:327.708010px;}
.h8{height:332.924971px;}
.h11{height:353.166017px;}
.hb{height:400.416000px;}
.h1{height:422.908418px;}
.hc{height:490.416003px;}
.hf{height:490.416588px;}
.h0{height:4752.000000px;}
.w0{width:6480.000000px;}
.x0{left:0.000000px;}
.x6{left:154.122310px;}
.x7{left:216.000007px;}
.x12{left:351.880695px;}
.x5{left:648.165429px;}
.x9{left:724.443661px;}
.x8{left:729.117417px;}
.x1{left:1107.981317px;}
.x2{left:1535.530493px;}
.x23{left:1878.119435px;}
.x24{left:1932.299612px;}
.x22{left:2040.483268px;}
.x15{left:2044.465547px;}
.x18{left:2055.915848px;}
.xa{left:2076.914406px;}
.x3{left:2079.231479px;}
.x1b{left:2092.527434px;}
.x1c{left:2098.368737px;}
.x20{left:2110.527434px;}
.x21{left:2116.368737px;}
.x16{left:2245.155484px;}
.x1f{left:2275.964848px;}
.x17{left:2329.180078px;}
.x14{left:2565.146388px;}
.x13{left:2566.907598px;}
.x25{left:2580.788157px;}
.x26{left:2634.968334px;}
.x4{left:2682.169848px;}
.xb{left:2721.920712px;}
.x10{left:2785.399492px;}
.xf{left:2891.590945px;}
.x1d{left:3089.889670px;}
.x2a{left:3265.136929px;}
.x28{left:3418.872409px;}
.x19{left:3430.609310px;}
.x1a{left:3433.464672px;}
.x27{left:3949.665539px;}
.x1e{left:4085.748078px;}
.x29{left:4108.223377px;}
.x11{left:4480.352693px;}
.xd{left:4852.122460px;}
.xe{left:4914.000157px;}
.x2d{left:5076.000162px;}
.x2c{left:5327.213064px;}
.x2b{left:5380.171012px;}
.xc{left:5415.892306px;}
@media print{
.v2{vertical-align:-72.000002pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:104.000003pt;}
.v6{vertical-align:116.000004pt;}
.v7{vertical-align:122.000004pt;}
.v3{vertical-align:134.823964pt;}
.v4{vertical-align:163.999989pt;}
.v5{vertical-align:243.999992pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000396pt;}
.ls1{letter-spacing:95.994687pt;}
.ls2{letter-spacing:96.000627pt;}
.ws9{word-spacing:-53.383899pt;}
.ws0{word-spacing:-49.365339pt;}
.ws3{word-spacing:-44.373336pt;}
.ws2{word-spacing:-43.528410pt;}
.ws1{word-spacing:-34.176003pt;}
.wsa{word-spacing:0.000000pt;}
.ws8{word-spacing:1330.010764pt;}
.ws7{word-spacing:1511.235246pt;}
.ws5{word-spacing:2644.585636pt;}
.ws4{word-spacing:2652.685634pt;}
.ws6{word-spacing:3633.768116pt;}
._2a{width:3.285163pt;}
._11{width:7.802262pt;}
._26{width:9.034198pt;}
._1f{width:10.060812pt;}
._c{width:19.300333pt;}
._8{width:24.844045pt;}
._e{width:26.439861pt;}
._17{width:28.175973pt;}
._28{width:29.314379pt;}
._a{width:35.520825pt;}
._1c{width:37.574052pt;}
._14{width:38.600665pt;}
._16{width:46.813573pt;}
._6{width:56.258416pt;}
._12{width:59.338256pt;}
._15{width:60.980838pt;}
._29{width:62.147924pt;}
._24{width:64.676646pt;}
._1a{width:68.167132pt;}
._25{width:71.862940pt;}
._18{width:74.477224pt;}
._1b{width:85.208915pt;}
._27{width:97.117631pt;}
._13{width:98.349567pt;}
._1e{width:101.224084pt;}
._d{width:102.250698pt;}
._0{width:106.562474pt;}
._19{width:111.490219pt;}
._b{width:113.338123pt;}
._5{width:131.611842pt;}
._9{width:141.262008pt;}
._20{width:142.493944pt;}
._2{width:145.163139pt;}
._4{width:151.691524pt;}
._f{width:172.212233pt;}
._7{width:185.201063pt;}
._1d{width:195.672520pt;}
._1{width:299.155154pt;}
._10{width:382.721488pt;}
._3{width:542.873183pt;}
._23{width:2103.528067pt;}
._21{width:2570.143682pt;}
._22{width:3240.168104pt;}
.fs3{font-size:128.000010pt;}
.fs9{font-size:160.000005pt;}
.fs7{font-size:170.666677pt;}
.fs2{font-size:184.888911pt;}
.fs4{font-size:192.000006pt;}
.fs8{font-size:202.666678pt;}
.fs5{font-size:205.322687pt;}
.fs6{font-size:246.387208pt;}
.fs1{font-size:277.333353pt;}
.fs0{font-size:396.957333pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:124.296279pt;}
.y3a{bottom:170.610940pt;}
.y39{bottom:178.483581pt;}
.y36{bottom:217.854942pt;}
.y38{bottom:244.723575pt;}
.y28{bottom:483.446037pt;}
.y1d{bottom:494.715681pt;}
.y6e{bottom:531.259982pt;}
.y1c{bottom:565.552083pt;}
.y6d{bottom:602.096314pt;}
.y5c{bottom:610.461154pt;}
.y56{bottom:634.461155pt;}
.y1b{bottom:636.388385pt;}
.y5b{bottom:665.661136pt;}
.y6c{bottom:672.932646pt;}
.y55{bottom:689.661137pt;}
.y1a{bottom:707.224687pt;}
.y54{bottom:744.861129pt;}
.y5a{bottom:752.861129pt;}
.y6b{bottom:794.435640pt;}
.y57{bottom:800.061110pt;}
.y59{bottom:808.061111pt;}
.y19{bottom:828.727691pt;}
.y53{bottom:840.061112pt;}
.y58{bottom:863.261112pt;}
.y6a{bottom:865.271983pt;}
.y5f{bottom:870.461103pt;}
.y52{bottom:895.261113pt;}
.y18{bottom:899.563994pt;}
.y51{bottom:950.461105pt;}
.y5e{bottom:965.661106pt;}
.y17{bottom:970.400296pt;}
.y69{bottom:994.336097pt;}
.y50{bottom:1005.661107pt;}
.y4f{bottom:1060.861101pt;}
.y16{bottom:1091.903300pt;}
.y4d{bottom:1159.344242pt;}
.y4e{bottom:1159.344372pt;}
.y15{bottom:1162.739602pt;}
.y5d{bottom:1189.844369pt;}
.y4c{bottom:1220.344239pt;}
.y14{bottom:1233.575924pt;}
.y13{bottom:1304.412257pt;}
.y68{bottom:1323.700707pt;}
.y12{bottom:1375.248599pt;}
.y67{bottom:1394.537009pt;}
.y11{bottom:1504.312713pt;}
.y66{bottom:1516.040013pt;}
.y3e{bottom:1574.643145pt;}
.y65{bottom:1586.876316pt;}
.y3d{bottom:1645.479474pt;}
.y27{bottom:1669.061518pt;}
.y64{bottom:1708.379350pt;}
.y26{bottom:1733.738160pt;}
.y63{bottom:1779.215682pt;}
.y4b{bottom:1792.676642pt;}
.y25{bottom:1798.414822pt;}
.y4a{bottom:1850.676644pt;}
.y62{bottom:1900.718676pt;}
.y24{bottom:1913.758126pt;}
.y61{bottom:1971.555018pt;}
.y23{bottom:1978.434828pt;}
.y48{bottom:2031.209650pt;}
.y22{bottom:2043.111460pt;}
.y47{bottom:2089.209652pt;}
.y60{bottom:2100.619132pt;}
.y21{bottom:2158.454754pt;}
.y20{bottom:2223.131396pt;}
.y1f{bottom:2287.808028pt;}
.y46{bottom:2298.742658pt;}
.y35{bottom:2369.238581pt;}
.y1e{bottom:2408.552142pt;}
.y34{bottom:2440.074883pt;}
.y3f{bottom:2464.370946pt;}
.y33{bottom:2510.911185pt;}
.y10{bottom:2581.747487pt;}
.y32{bottom:2581.747587pt;}
.yf{bottom:2652.583790pt;}
.y31{bottom:2652.583890pt;}
.y45{bottom:2669.730520pt;}
.y44{bottom:2689.730521pt;}
.ye{bottom:2723.420092pt;}
.y30{bottom:2723.420192pt;}
.y49{bottom:2730.730518pt;}
.y43{bottom:2750.730519pt;}
.yd{bottom:2794.256424pt;}
.y2f{bottom:2844.923196pt;}
.yc{bottom:2865.092737pt;}
.y2e{bottom:2915.759498pt;}
.y29{bottom:2948.293916pt;}
.yb{bottom:2986.595700pt;}
.y2d{bottom:2986.595800pt;}
.ya{bottom:3057.432103pt;}
.y3c{bottom:3084.212594pt;}
.y2c{bottom:3108.098804pt;}
.y9{bottom:3128.268435pt;}
.y42{bottom:3136.253625pt;}
.y3b{bottom:3155.048923pt;}
.y2b{bottom:3178.935107pt;}
.y8{bottom:3199.104767pt;}
.y41{bottom:3207.089954pt;}
.y2a{bottom:3249.771429pt;}
.y7{bottom:3320.607761pt;}
.y6{bottom:3391.444103pt;}
.y40{bottom:3439.660232pt;}
.y5{bottom:3520.508217pt;}
.y4{bottom:3676.912822pt;}
.y3{bottom:3743.152815pt;}
.y2{bottom:3833.686148pt;}
.y1{bottom:3970.730252pt;}
.h3{height:100.096008pt;}
.h10{height:151.040005pt;}
.hd{height:175.296006pt;}
.h9{height:181.248006pt;}
.h7{height:181.824006pt;}
.ha{height:191.925345pt;}
.h5{height:193.824616pt;}
.h6{height:233.328686pt;}
.h2{height:248.583132pt;}
.h4{height:262.634685pt;}
.he{height:291.296009pt;}
.h8{height:295.933308pt;}
.h11{height:313.925348pt;}
.hb{height:355.925334pt;}
.h1{height:375.918594pt;}
.hc{height:435.925336pt;}
.hf{height:435.925856pt;}
.h0{height:4224.000000pt;}
.w0{width:5760.000000pt;}
.x0{left:0.000000pt;}
.x6{left:136.997609pt;}
.x7{left:192.000006pt;}
.x12{left:312.782840pt;}
.x5{left:576.147048pt;}
.x9{left:643.949921pt;}
.x8{left:648.104371pt;}
.x1{left:984.872282pt;}
.x2{left:1364.915994pt;}
.x23{left:1669.439497pt;}
.x24{left:1717.599655pt;}
.x22{left:1813.762905pt;}
.x15{left:1817.302708pt;}
.x18{left:1827.480753pt;}
.xa{left:1846.146139pt;}
.x3{left:1848.205759pt;}
.x1b{left:1860.024386pt;}
.x1c{left:1865.216655pt;}
.x20{left:1876.024386pt;}
.x21{left:1881.216655pt;}
.x16{left:1995.693764pt;}
.x1f{left:2023.079865pt;}
.x17{left:2070.382291pt;}
.x14{left:2280.130123pt;}
.x13{left:2281.695643pt;}
.x25{left:2294.033917pt;}
.x26{left:2342.194075pt;}
.x4{left:2384.150976pt;}
.xb{left:2419.485077pt;}
.x10{left:2475.910659pt;}
.xf{left:2570.303062pt;}
.x1d{left:2746.568596pt;}
.x2a{left:2902.343937pt;}
.x28{left:3038.997697pt;}
.x19{left:3049.430498pt;}
.x1a{left:3051.968598pt;}
.x27{left:3510.813812pt;}
.x1e{left:3631.776069pt;}
.x29{left:3651.754113pt;}
.x11{left:3982.535727pt;}
.xd{left:4312.997742pt;}
.xe{left:4368.000140pt;}
.x2d{left:4512.000144pt;}
.x2c{left:4735.300502pt;}
.x2b{left:4782.374233pt;}
.xc{left:4814.126494pt;}
}




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