
    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_05aaf4e1e9ec08edcdd410fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_6b54ed3a6ced08a51a3b8acf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_f36e20e13358abddab1f4da3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.041000;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_6154da88e3a0b96fb0e3acf3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979980;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_725fbe4e231644987d33ed47.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.881000;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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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:0.000000px;}
.ls1{letter-spacing:0.000422px;}
.ls0{letter-spacing:0.000930px;}
.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:-30.564000px;}
.ws3{word-spacing:-18.677171px;}
.ws4{word-spacing:-17.291233px;}
.ws7{word-spacing:-15.892633px;}
.ws6{word-spacing:-14.148000px;}
.ws0{word-spacing:-12.575233px;}
.ws2{word-spacing:-6.335719px;}
.ws5{word-spacing:0.000000px;}
._9{margin-left:-3.101862px;}
._0{margin-left:-1.944000px;}
._1{width:1.296000px;}
._f{width:2.321974px;}
._4{width:3.378024px;}
._5{width:4.541625px;}
._2{width:6.213208px;}
._3{width:7.657832px;}
._7{width:8.760753px;}
._6{width:10.012500px;}
._a{width:11.375534px;}
._11{width:12.834493px;}
._10{width:14.657432px;}
._e{width:15.937524px;}
._15{width:17.299476px;}
._8{width:19.035044px;}
._b{width:20.214036px;}
._c{width:21.968069px;}
._d{width:23.626658px;}
._16{width:25.326000px;}
._17{width:27.004500px;}
._13{width:29.698682px;}
._12{width:31.399577px;}
._14{width:33.061501px;}
._19{width:66.763927px;}
._18{width:69.402043px;}
._1a{width:140.662525px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(21,126,44);}
.fs2{font-size:47.997072px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:56.100000px;}
.fs6{font-size:56.157714px;}
.fs3{font-size:65.997072px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y4c{bottom:-0.705000px;}
.y0{bottom:0.000000px;}
.y34{bottom:36.271561px;}
.y33{bottom:51.266064px;}
.y32{bottom:79.774121px;}
.y31{bottom:94.400220px;}
.y88{bottom:107.883667px;}
.y30{bottom:109.026318px;}
.y9e{bottom:122.909010px;}
.y87{bottom:124.340088px;}
.y9d{bottom:139.365430px;}
.y86{bottom:140.796510px;}
.y9c{bottom:155.821851px;}
.y85{bottom:157.252930px;}
.y9b{bottom:172.278272px;}
.y84{bottom:173.709351px;}
.y9a{bottom:188.734692px;}
.y83{bottom:190.165772px;}
.y6a{bottom:192.622535px;}
.y99{bottom:205.191114px;}
.y69{bottom:209.078955px;}
.y2f{bottom:213.657911px;}
.y82{bottom:215.625854px;}
.yc7{bottom:218.186606px;}
.y98{bottom:221.647535px;}
.yc6{bottom:232.812705px;}
.y2e{bottom:233.770581px;}
.y68{bottom:234.539038px;}
.y81{bottom:235.738525px;}
.y24{bottom:238.079493px;}
.y97{bottom:238.103955px;}
.yc5{bottom:247.438805px;}
.y4a{bottom:253.380737px;}
.y2d{bottom:253.883252px;}
.y96{bottom:254.560376px;}
.y67{bottom:254.651709px;}
.y80{bottom:255.851197px;}
.y23{bottom:258.192163px;}
.yc4{bottom:262.064903px;}
.y49{bottom:269.837159px;}
.y95{bottom:271.016798px;}
.y2c{bottom:273.995924px;}
.y7f{bottom:275.963868px;}
.yc3{bottom:276.691002px;}
.y22{bottom:278.304834px;}
.y66{bottom:285.560718px;}
.y48{bottom:286.293580px;}
.yc2{bottom:291.317100px;}
.y2b{bottom:294.108594px;}
.y94{bottom:296.476881px;}
.y21{bottom:298.417506px;}
.y65{bottom:302.017139px;}
.y47{bottom:302.750000px;}
.yc1{bottom:305.943199px;}
.y7e{bottom:306.872876px;}
.y2a{bottom:314.221265px;}
.y64{bottom:318.473560px;}
.y20{bottom:318.530176px;}
.y46{bottom:319.206421px;}
.yc0{bottom:320.569297px;}
.y7d{bottom:323.329298px;}
.y93{bottom:327.385889px;}
.y29{bottom:334.333936px;}
.y63{bottom:334.929980px;}
.ybf{bottom:335.195396px;}
.y45{bottom:335.662842px;}
.y1f{bottom:338.642847px;}
.y7c{bottom:339.785718px;}
.y92{bottom:343.842310px;}
.ybe{bottom:349.821494px;}
.y62{bottom:351.386402px;}
.y44{bottom:352.119262px;}
.y28{bottom:354.446606px;}
.y7b{bottom:356.242139px;}
.y1e{bottom:358.755518px;}
.y91{bottom:360.298730px;}
.ybd{bottom:364.447593px;}
.y61{bottom:367.842823px;}
.y43{bottom:368.575684px;}
.y7a{bottom:372.698560px;}
.y27{bottom:374.559278px;}
.y90{bottom:376.755152px;}
.y1d{bottom:378.868188px;}
.ybc{bottom:379.073692px;}
.y60{bottom:384.299244px;}
.y79{bottom:389.154980px;}
.y8f{bottom:393.211573px;}
.ybb{bottom:393.699790px;}
.y42{bottom:394.035767px;}
.y26{bottom:394.671949px;}
.y1c{bottom:398.980860px;}
.y5f{bottom:400.755664px;}
.y78{bottom:405.611401px;}
.yba{bottom:408.325889px;}
.y8e{bottom:409.667994px;}
.y41{bottom:414.148438px;}
.y5e{bottom:417.212085px;}
.y1b{bottom:419.093531px;}
.y77{bottom:422.067823px;}
.yb9{bottom:422.951987px;}
.y25{bottom:424.160352px;}
.y8d{bottom:426.124414px;}
.y5d{bottom:433.668507px;}
.yb8{bottom:437.578086px;}
.y76{bottom:438.524244px;}
.y1a{bottom:439.206201px;}
.y8c{bottom:442.580835px;}
.y5c{bottom:450.124927px;}
.yb7{bottom:452.204184px;}
.y40{bottom:454.061108px;}
.y75{bottom:454.980664px;}
.y8b{bottom:459.037257px;}
.y19{bottom:459.318872px;}
.yb6{bottom:466.830284px;}
.y74{bottom:471.437085px;}
.y3f{bottom:474.173780px;}
.y5b{bottom:475.585010px;}
.y18{bottom:479.431544px;}
.yb5{bottom:481.456383px;}
.y8a{bottom:484.497339px;}
.y73{bottom:487.893507px;}
.y3e{bottom:494.286451px;}
.y5a{bottom:495.697681px;}
.yb4{bottom:496.082481px;}
.y17{bottom:499.544214px;}
.y72{bottom:504.349927px;}
.yb3{bottom:510.708580px;}
.y16{bottom:519.656885px;}
.y71{bottom:520.806348px;}
.y3d{bottom:523.774854px;}
.yb2{bottom:525.334678px;}
.y59{bottom:526.606689px;}
.y70{bottom:537.262769px;}
.y15{bottom:539.769556px;}
.yb1{bottom:539.960777px;}
.y58{bottom:543.063111px;}
.y8{bottom:552.596021px;}
.y6f{bottom:553.719189px;}
.yb0{bottom:554.586875px;}
.y57{bottom:559.519532px;}
.y14{bottom:559.882227px;}
.y7{bottom:567.222119px;}
.yaf{bottom:569.212974px;}
.y6e{bottom:570.175611px;}
.y3c{bottom:571.591016px;}
.y13{bottom:579.994897px;}
.yae{bottom:583.839072px;}
.y56{bottom:584.979615px;}
.y6d{bottom:586.632032px;}
.y6{bottom:586.648218px;}
.y3b{bottom:591.703687px;}
.y4b{bottom:592.828686px;}
.yad{bottom:598.465171px;}
.y12{bottom:600.107569px;}
.y5{bottom:601.274316px;}
.y6c{bottom:603.088452px;}
.y55{bottom:605.092285px;}
.yac{bottom:613.091270px;}
.y6b{bottom:619.544873px;}
.y11{bottom:620.220240px;}
.y4{bottom:626.406641px;}
.yab{bottom:627.717368px;}
.y3a{bottom:631.616357px;}
.y10{bottom:640.332910px;}
.yaa{bottom:642.343467px;}
.y54{bottom:645.004956px;}
.y3{bottom:648.348535px;}
.y39{bottom:651.729029px;}
.ya9{bottom:656.969565px;}
.yf{bottom:660.445581px;}
.y53{bottom:665.117628px;}
.y2{bottom:670.290431px;}
.ya8{bottom:671.595665px;}
.y38{bottom:671.841700px;}
.ye{bottom:680.558253px;}
.y52{bottom:685.230298px;}
.ya7{bottom:686.221763px;}
.y37{bottom:691.954370px;}
.yd{bottom:700.670923px;}
.ya6{bottom:700.847862px;}
.y89{bottom:705.342969px;}
.y1{bottom:707.992212px;}
.y36{bottom:712.067041px;}
.ya5{bottom:715.473961px;}
.yc{bottom:720.783594px;}
.y51{bottom:725.142969px;}
.ya4{bottom:730.100059px;}
.yb{bottom:740.896265px;}
.y35{bottom:741.555444px;}
.ya3{bottom:744.726158px;}
.y50{bottom:745.255640px;}
.ya2{bottom:759.352256px;}
.ya{bottom:761.008935px;}
.y4f{bottom:765.368310px;}
.ya1{bottom:773.978355px;}
.y4e{bottom:785.480982px;}
.ya0{bottom:788.604453px;}
.y9{bottom:797.257227px;}
.y4d{bottom:814.969385px;}
.y9f{bottom:822.763613px;}
.h9{height:9.817500px;}
.h6{height:36.724322px;}
.h8{height:40.338000px;}
.h4{height:40.413535px;}
.h7{height:41.040000px;}
.hb{height:44.196121px;}
.h5{height:55.569535px;}
.h3{height:56.664000px;}
.ha{height:59.858700px;}
.h2{height:84.996000px;}
.h0{height:892.913387px;}
.h1{height:893.250000px;}
.w2{width:9.817500px;}
.w0{width:1262.834646px;}
.w1{width:1263.000000px;}
.x16{left:-1.020000px;}
.x0{left:0.000000px;}
.x10{left:51.519686px;}
.x2{left:65.686750px;}
.xa{left:71.019685px;}
.x6{left:75.707380px;}
.xc{left:78.329621px;}
.xd{left:82.494685px;}
.xb{left:87.519686px;}
.x3{left:111.767255px;}
.x17{left:118.757481px;}
.x7{left:127.966047px;}
.x4{left:174.145429px;}
.x1{left:187.937116px;}
.x5{left:216.240094px;}
.x8{left:273.444257px;}
.xe{left:328.811700px;}
.x9{left:673.937008px;}
.x15{left:679.517008px;}
.x1a{left:696.451290px;}
.x11{left:697.587629px;}
.x12{left:698.687008px;}
.x19{left:704.850338px;}
.x18{left:718.937008px;}
.x14{left:733.655760px;}
.x13{left:741.174803px;}
.xf{left:1201.333881px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000375pt;}
.ls0{letter-spacing:0.000827pt;}
.ws1{word-spacing:-27.168000pt;}
.ws3{word-spacing:-16.601930pt;}
.ws4{word-spacing:-15.369985pt;}
.ws7{word-spacing:-14.126785pt;}
.ws6{word-spacing:-12.576000pt;}
.ws0{word-spacing:-11.177985pt;}
.ws2{word-spacing:-5.631750pt;}
.ws5{word-spacing:0.000000pt;}
._9{margin-left:-2.757211pt;}
._0{margin-left:-1.728000pt;}
._1{width:1.152000pt;}
._f{width:2.063977pt;}
._4{width:3.002688pt;}
._5{width:4.037000pt;}
._2{width:5.522852pt;}
._3{width:6.806961pt;}
._7{width:7.787336pt;}
._6{width:8.900000pt;}
._a{width:10.111586pt;}
._11{width:11.408438pt;}
._10{width:13.028828pt;}
._e{width:14.166688pt;}
._15{width:15.377312pt;}
._8{width:16.920039pt;}
._b{width:17.968032pt;}
._c{width:19.527172pt;}
._d{width:21.001474pt;}
._16{width:22.512000pt;}
._17{width:24.004000pt;}
._13{width:26.398829pt;}
._12{width:27.910735pt;}
._14{width:29.388001pt;}
._19{width:59.345713pt;}
._18{width:61.690705pt;}
._1a{width:125.033356pt;}
.fs2{font-size:42.664064pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:49.866667pt;}
.fs6{font-size:49.917968pt;}
.fs3{font-size:58.664064pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y4c{bottom:-0.626667pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:32.241388pt;}
.y33{bottom:45.569835pt;}
.y32{bottom:70.910330pt;}
.y31{bottom:83.911307pt;}
.y88{bottom:95.896593pt;}
.y30{bottom:96.912283pt;}
.y9e{bottom:109.252453pt;}
.y87{bottom:110.524523pt;}
.y9d{bottom:123.880382pt;}
.y86{bottom:125.152453pt;}
.y9c{bottom:138.508312pt;}
.y85{bottom:139.780382pt;}
.y9b{bottom:153.136242pt;}
.y84{bottom:154.408312pt;}
.y9a{bottom:167.764171pt;}
.y83{bottom:169.036242pt;}
.y6a{bottom:171.220031pt;}
.y99{bottom:182.392101pt;}
.y69{bottom:185.847960pt;}
.y2f{bottom:189.918143pt;}
.y82{bottom:191.667426pt;}
.yc7{bottom:193.943650pt;}
.y98{bottom:197.020031pt;}
.yc6{bottom:206.944627pt;}
.y2e{bottom:207.796072pt;}
.y68{bottom:208.479145pt;}
.y81{bottom:209.545356pt;}
.y24{bottom:211.626216pt;}
.y97{bottom:211.647960pt;}
.yc5{bottom:219.945604pt;}
.y4a{bottom:225.227322pt;}
.y2d{bottom:225.674002pt;}
.y96{bottom:226.275890pt;}
.y67{bottom:226.357075pt;}
.y80{bottom:227.423286pt;}
.y23{bottom:229.504145pt;}
.yc4{bottom:232.946580pt;}
.y49{bottom:239.855252pt;}
.y95{bottom:240.903820pt;}
.y2c{bottom:243.551932pt;}
.y7f{bottom:245.301216pt;}
.yc3{bottom:245.947557pt;}
.y22{bottom:247.382075pt;}
.y66{bottom:253.831749pt;}
.y48{bottom:254.483182pt;}
.yc2{bottom:258.948533pt;}
.y2b{bottom:261.429861pt;}
.y94{bottom:263.535005pt;}
.y21{bottom:265.260005pt;}
.y65{bottom:268.459679pt;}
.y47{bottom:269.111111pt;}
.yc1{bottom:271.949510pt;}
.y7e{bottom:272.775890pt;}
.y2a{bottom:279.307791pt;}
.y64{bottom:283.087609pt;}
.y20{bottom:283.137934pt;}
.y46{bottom:283.739041pt;}
.yc0{bottom:284.950486pt;}
.y7d{bottom:287.403820pt;}
.y93{bottom:291.009679pt;}
.y29{bottom:297.185721pt;}
.y63{bottom:297.715538pt;}
.ybf{bottom:297.951463pt;}
.y45{bottom:298.366971pt;}
.y1f{bottom:301.015864pt;}
.y7c{bottom:302.031749pt;}
.y92{bottom:305.637609pt;}
.ybe{bottom:310.952439pt;}
.y62{bottom:312.343468pt;}
.y44{bottom:312.994900pt;}
.y28{bottom:315.063650pt;}
.y7b{bottom:316.659679pt;}
.y1e{bottom:318.893794pt;}
.y91{bottom:320.265538pt;}
.ybd{bottom:323.953416pt;}
.y61{bottom:326.971398pt;}
.y43{bottom:327.622830pt;}
.y7a{bottom:331.287609pt;}
.y27{bottom:332.941580pt;}
.y90{bottom:334.893468pt;}
.y1d{bottom:336.771723pt;}
.ybc{bottom:336.954393pt;}
.y60{bottom:341.599328pt;}
.y79{bottom:345.915538pt;}
.y8f{bottom:349.521398pt;}
.ybb{bottom:349.955369pt;}
.y42{bottom:350.254015pt;}
.y26{bottom:350.819510pt;}
.y1c{bottom:354.649653pt;}
.y5f{bottom:356.227257pt;}
.y78{bottom:360.543468pt;}
.yba{bottom:362.956346pt;}
.y8e{bottom:364.149328pt;}
.y41{bottom:368.131945pt;}
.y5e{bottom:370.855187pt;}
.y1b{bottom:372.527583pt;}
.y77{bottom:375.171398pt;}
.yb9{bottom:375.957322pt;}
.y25{bottom:377.031424pt;}
.y8d{bottom:378.777257pt;}
.y5d{bottom:385.483117pt;}
.yb8{bottom:388.958299pt;}
.y76{bottom:389.799328pt;}
.y1a{bottom:390.405512pt;}
.y8c{bottom:393.405187pt;}
.y5c{bottom:400.111046pt;}
.yb7{bottom:401.959275pt;}
.y40{bottom:403.609874pt;}
.y75{bottom:404.427257pt;}
.y8b{bottom:408.033117pt;}
.y19{bottom:408.283442pt;}
.yb6{bottom:414.960252pt;}
.y74{bottom:419.055187pt;}
.y3f{bottom:421.487804pt;}
.y5b{bottom:422.742231pt;}
.y18{bottom:426.161372pt;}
.yb5{bottom:427.961229pt;}
.y8a{bottom:430.664301pt;}
.y73{bottom:433.683117pt;}
.y3e{bottom:439.365734pt;}
.y5a{bottom:440.620161pt;}
.yb4{bottom:440.962205pt;}
.y17{bottom:444.039301pt;}
.y72{bottom:448.311046pt;}
.yb3{bottom:453.963182pt;}
.y16{bottom:461.917231pt;}
.y71{bottom:462.938976pt;}
.y3d{bottom:465.577648pt;}
.yb2{bottom:466.964158pt;}
.y59{bottom:468.094835pt;}
.y70{bottom:477.566906pt;}
.y15{bottom:479.795161pt;}
.yb1{bottom:479.965135pt;}
.y58{bottom:482.722765pt;}
.y8{bottom:491.196463pt;}
.y6f{bottom:492.194835pt;}
.yb0{bottom:492.966111pt;}
.y57{bottom:497.350695pt;}
.y14{bottom:497.673091pt;}
.y7{bottom:504.197439pt;}
.yaf{bottom:505.967088pt;}
.y6e{bottom:506.822765pt;}
.y3c{bottom:508.080903pt;}
.y13{bottom:515.551020pt;}
.yae{bottom:518.968064pt;}
.y56{bottom:519.981880pt;}
.y6d{bottom:521.450695pt;}
.y6{bottom:521.465083pt;}
.y3b{bottom:525.958833pt;}
.y4b{bottom:526.958832pt;}
.yad{bottom:531.969041pt;}
.y12{bottom:533.428950pt;}
.y5{bottom:534.466059pt;}
.y6c{bottom:536.078624pt;}
.y55{bottom:537.859809pt;}
.yac{bottom:544.970018pt;}
.y6b{bottom:550.706554pt;}
.y11{bottom:551.306880pt;}
.y4{bottom:556.805903pt;}
.yab{bottom:557.970994pt;}
.y3a{bottom:561.436762pt;}
.y10{bottom:569.184809pt;}
.yaa{bottom:570.971971pt;}
.y54{bottom:573.337739pt;}
.y3{bottom:576.309809pt;}
.y39{bottom:579.314692pt;}
.ya9{bottom:583.972947pt;}
.yf{bottom:587.062739pt;}
.y53{bottom:591.215669pt;}
.y2{bottom:595.813716pt;}
.ya8{bottom:596.973924pt;}
.y38{bottom:597.192622pt;}
.ye{bottom:604.940669pt;}
.y52{bottom:609.093598pt;}
.ya7{bottom:609.974900pt;}
.y37{bottom:615.070551pt;}
.yd{bottom:622.818598pt;}
.ya6{bottom:622.975877pt;}
.y89{bottom:626.971528pt;}
.y1{bottom:629.326411pt;}
.y36{bottom:632.948481pt;}
.ya5{bottom:635.976854pt;}
.yc{bottom:640.696528pt;}
.y51{bottom:644.571528pt;}
.ya4{bottom:648.977830pt;}
.yb{bottom:658.574458pt;}
.y35{bottom:659.160395pt;}
.ya3{bottom:661.978807pt;}
.y50{bottom:662.449458pt;}
.ya2{bottom:674.979783pt;}
.ya{bottom:676.452387pt;}
.y4f{bottom:680.327387pt;}
.ya1{bottom:687.980760pt;}
.y4e{bottom:698.205317pt;}
.ya0{bottom:700.981736pt;}
.y9{bottom:708.673091pt;}
.y4d{bottom:724.417231pt;}
.y9f{bottom:731.345434pt;}
.h9{height:8.726667pt;}
.h6{height:32.643842pt;}
.h8{height:35.856000pt;}
.h4{height:35.923142pt;}
.h7{height:36.480000pt;}
.hb{height:39.285441pt;}
.h5{height:49.395142pt;}
.h3{height:50.368000pt;}
.ha{height:53.207733pt;}
.h2{height:75.552000pt;}
.h0{height:793.700788pt;}
.h1{height:794.000000pt;}
.w2{width:8.726667pt;}
.w0{width:1122.519685pt;}
.w1{width:1122.666667pt;}
.x16{left:-0.906667pt;}
.x0{left:0.000000pt;}
.x10{left:45.795276pt;}
.x2{left:58.388222pt;}
.xa{left:63.128609pt;}
.x6{left:67.295449pt;}
.xc{left:69.626330pt;}
.xd{left:73.328609pt;}
.xb{left:77.795276pt;}
.x3{left:99.348671pt;}
.x17{left:105.562205pt;}
.x7{left:113.747597pt;}
.x4{left:154.795937pt;}
.x1{left:167.055214pt;}
.x5{left:192.213417pt;}
.x8{left:243.061562pt;}
.xe{left:292.277067pt;}
.x9{left:599.055118pt;}
.x15{left:604.015119pt;}
.x1a{left:619.067813pt;}
.x11{left:620.077892pt;}
.x12{left:621.055118pt;}
.x19{left:626.533634pt;}
.x18{left:639.055118pt;}
.x14{left:652.138453pt;}
.x13{left:658.822047pt;}
.xf{left:1067.852339pt;}
}




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