
    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_257c55a22a30c2c78f657b24.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.947000;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_a75e973182129e75a1f05d62.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100000;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_a46f0fdd2a890c56da240c7b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.911000;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_4f5d74d037c6ed5b0f6578c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.658000;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_d8222e528d1b45c05950711a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.758790px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010800px;}
.ls1{letter-spacing:0.012000px;}
.ls5{letter-spacing:0.019140px;}
.ls3{letter-spacing:1.422539px;}
.ls4{letter-spacing:3.197999px;}
.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;}
}
.ws2{word-spacing:-17.999993px;}
.ws0{word-spacing:-14.999994px;}
.ws6{word-spacing:-13.499995px;}
.ws4{word-spacing:-10.439996px;}
.ws3{word-spacing:-0.072000px;}
.ws5{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
._9{margin-left:-19.843277px;}
._12{margin-left:-18.820180px;}
._f{margin-left:-17.666705px;}
._10{margin-left:-14.654274px;}
._4{margin-left:-13.494703px;}
._e{margin-left:-7.273196px;}
._3{margin-left:-5.404912px;}
._6{margin-left:-3.586824px;}
._1{margin-left:-2.267836px;}
._0{margin-left:-1.059000px;}
._2{width:1.344022px;}
._5{width:3.298584px;}
._7{width:4.370362px;}
._8{width:5.392791px;}
._a{width:7.041489px;}
._b{width:8.060011px;}
._c{width:9.091246px;}
._d{width:10.140512px;}
._11{width:11.243072px;}
.fc3{color:rgb(239,48,52);}
.fc2{color:rgb(239,47,51);}
.fc1{color:rgb(239,48,51);}
.fc0{color:rgb(29,25,26);}
.fs4{font-size:41.759983px;}
.fs0{font-size:53.999978px;}
.fs1{font-size:59.999976px;}
.fs3{font-size:71.999971px;}
.fs2{font-size:107.999957px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.060000px;}
.y2{bottom:66.015331px;}
.ybb{bottom:66.069331px;}
.y2e{bottom:66.075331px;}
.ydd{bottom:66.211831px;}
.y5{bottom:66.216331px;}
.y6c{bottom:106.083015px;}
.y86{bottom:113.872961px;}
.y92{bottom:114.699461px;}
.yab{bottom:114.758561px;}
.y1b{bottom:115.120661px;}
.y9e{bottom:115.442261px;}
.yb9{bottom:116.275810px;}
.y4{bottom:116.329810px;}
.yda{bottom:118.460860px;}
.y2d{bottom:124.140007px;}
.y4d{bottom:126.628806px;}
.y6b{bottom:127.683006px;}
.y85{bottom:135.472953px;}
.y91{bottom:136.299452px;}
.yaa{bottom:136.355702px;}
.y9d{bottom:137.042252px;}
.yb8{bottom:137.875802px;}
.yd9{bottom:140.060851px;}
.y6a{bottom:143.882999px;}
.y2c{bottom:145.739999px;}
.y4c{bottom:148.228798px;}
.y1a{bottom:149.476797px;}
.y84{bottom:157.072944px;}
.y90{bottom:157.899444px;}
.ya9{bottom:157.955694px;}
.y9c{bottom:158.642244px;}
.yb7{bottom:159.475793px;}
.y69{bottom:160.082993px;}
.yd8{bottom:161.660842px;}
.y4b{bottom:169.828789px;}
.y19{bottom:171.076789px;}
.y68{bottom:176.282986px;}
.y83{bottom:178.672936px;}
.y8f{bottom:179.499435px;}
.ya8{bottom:179.555685px;}
.y2b{bottom:180.096135px;}
.yb6{bottom:181.075785px;}
.yd7{bottom:183.260834px;}
.y9b{bottom:188.744382px;}
.y4a{bottom:191.428780px;}
.y67{bottom:192.482980px;}
.y18{bottom:192.676780px;}
.y82{bottom:200.272927px;}
.y8e{bottom:201.099427px;}
.ya7{bottom:201.158527px;}
.y2a{bottom:201.696126px;}
.yb5{bottom:202.675776px;}
.yd6{bottom:204.860825px;}
.y66{bottom:208.682974px;}
.y49{bottom:213.028772px;}
.y17{bottom:214.276771px;}
.y81{bottom:221.872918px;}
.y8d{bottom:222.699418px;}
.ya6{bottom:222.759868px;}
.y29{bottom:223.296118px;}
.yb4{bottom:224.275767px;}
.y65{bottom:224.882967px;}
.yd5{bottom:226.460816px;}
.y9a{bottom:231.606114px;}
.y48{bottom:234.628763px;}
.y16{bottom:235.876763px;}
.y64{bottom:241.082961px;}
.y80{bottom:243.472910px;}
.y8c{bottom:244.299409px;}
.ya5{bottom:244.358509px;}
.y28{bottom:244.896109px;}
.yb3{bottom:245.875759px;}
.yd4{bottom:248.060808px;}
.y99{bottom:253.206856px;}
.y47{bottom:256.228755px;}
.y63{bottom:257.282954px;}
.y15{bottom:257.476754px;}
.y7f{bottom:265.072901px;}
.y8b{bottom:265.899401px;}
.ya4{bottom:265.958501px;}
.y27{bottom:266.496100px;}
.yb2{bottom:267.475750px;}
.yd3{bottom:269.660799px;}
.y62{bottom:273.482948px;}
.y98{bottom:274.806097px;}
.y46{bottom:277.828746px;}
.y14{bottom:279.076745px;}
.y7e{bottom:286.672892px;}
.y8a{bottom:287.499392px;}
.ya3{bottom:287.559842px;}
.yb1{bottom:289.075741px;}
.y61{bottom:289.682941px;}
.yd2{bottom:291.260790px;}
.y45{bottom:299.428737px;}
.y13{bottom:300.676737px;}
.y26{bottom:300.853587px;}
.y7d{bottom:308.272884px;}
.y89{bottom:309.099383px;}
.y97{bottom:309.160733px;}
.ya2{bottom:309.161183px;}
.yb0{bottom:310.675733px;}
.yd1{bottom:312.860782px;}
.y44{bottom:321.028729px;}
.y12{bottom:322.276728px;}
.y25{bottom:322.453578px;}
.y60{bottom:325.958927px;}
.y7c{bottom:329.872875px;}
.y88{bottom:330.699375px;}
.y96{bottom:330.762075px;}
.ya1{bottom:330.762525px;}
.yaf{bottom:332.275724px;}
.yd0{bottom:334.460773px;}
.y43{bottom:342.628720px;}
.y11{bottom:343.876719px;}
.y24{bottom:344.053569px;}
.y5f{bottom:347.558918px;}
.y7b{bottom:351.472866px;}
.y87{bottom:352.299366px;}
.y95{bottom:352.360716px;}
.ya0{bottom:352.361166px;}
.yae{bottom:353.875715px;}
.ycf{bottom:356.060765px;}
.y42{bottom:364.228711px;}
.y10{bottom:365.476711px;}
.y23{bottom:365.653561px;}
.y7a{bottom:373.072858px;}
.y94{bottom:373.960707px;}
.y9f{bottom:373.961157px;}
.yad{bottom:375.475707px;}
.yce{bottom:377.660756px;}
.y5e{bottom:381.915054px;}
.y41{bottom:385.828703px;}
.yf{bottom:387.076702px;}
.y22{bottom:387.253552px;}
.y79{bottom:394.672849px;}
.ycd{bottom:399.260747px;}
.y5d{bottom:403.515046px;}
.y93{bottom:406.527194px;}
.y40{bottom:407.428694px;}
.ye{bottom:408.676694px;}
.y21{bottom:408.853543px;}
.y78{bottom:416.272840px;}
.ycc{bottom:420.860739px;}
.y5c{bottom:425.115037px;}
.y3f{bottom:429.028685px;}
.yd{bottom:430.276685px;}
.y20{bottom:430.453535px;}
.yac{bottom:432.039184px;}
.yba{bottom:433.021684px;}
.y77{bottom:437.872832px;}
.ycb{bottom:442.460730px;}
.y5b{bottom:446.715028px;}
.y3e{bottom:450.628677px;}
.yc{bottom:451.876676px;}
.y1f{bottom:452.053526px;}
.y76{bottom:459.472823px;}
.yca{bottom:464.060721px;}
.y5a{bottom:468.315020px;}
.y3d{bottom:472.228668px;}
.yb{bottom:473.476668px;}
.y1e{bottom:473.653518px;}
.y75{bottom:481.072815px;}
.yc9{bottom:485.660713px;}
.y59{bottom:489.915011px;}
.y3c{bottom:493.828659px;}
.ya{bottom:495.076659px;}
.y1d{bottom:495.253509px;}
.y74{bottom:502.672806px;}
.yc8{bottom:507.260704px;}
.y58{bottom:511.515002px;}
.y3b{bottom:515.428651px;}
.y9{bottom:516.676650px;}
.y1c{bottom:516.853500px;}
.y73{bottom:524.272797px;}
.yc7{bottom:528.860695px;}
.y3a{bottom:537.028642px;}
.y57{bottom:545.872489px;}
.y72{bottom:545.872789px;}
.yc6{bottom:550.460687px;}
.y39{bottom:558.628634px;}
.y56{bottom:567.472480px;}
.y71{bottom:567.472780px;}
.yc5{bottom:572.060678px;}
.y38{bottom:580.228625px;}
.y55{bottom:589.072471px;}
.yc4{bottom:593.660670px;}
.y37{bottom:601.828616px;}
.y70{bottom:601.828916px;}
.y54{bottom:610.672463px;}
.yc3{bottom:615.260661px;}
.y36{bottom:623.428608px;}
.y6f{bottom:623.428908px;}
.y53{bottom:632.272454px;}
.yc2{bottom:636.860652px;}
.y35{bottom:645.028599px;}
.y6e{bottom:645.028899px;}
.yc1{bottom:658.460644px;}
.y34{bottom:666.628590px;}
.y6d{bottom:666.628890px;}
.y52{bottom:688.228582px;}
.y33{bottom:688.228882px;}
.yc0{bottom:688.564282px;}
.y8{bottom:704.625075px;}
.y51{bottom:709.828573px;}
.y32{bottom:709.828873px;}
.ybf{bottom:731.423314px;}
.y50{bottom:731.428564px;}
.y31{bottom:731.428864px;}
.ybe{bottom:753.023306px;}
.ydc{bottom:753.023606px;}
.y4f{bottom:753.028556px;}
.y30{bottom:753.028856px;}
.y7{bottom:768.745100px;}
.ybd{bottom:774.623297px;}
.ydb{bottom:774.623597px;}
.y4e{bottom:774.628547px;}
.y2f{bottom:774.628847px;}
.y3{bottom:829.679725px;}
.ybc{bottom:829.734175px;}
.y6{bottom:829.739725px;}
.h2{height:37.637985px;}
.h4{height:45.197982px;}
.h7{height:47.231981px;}
.h9{height:50.183980px;}
.h3{height:50.219980px;}
.h6{height:60.263976px;}
.h8{height:60.271176px;}
.h5{height:75.275970px;}
.h1{height:892.440000px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:85.055516px;}
.x6{left:119.071002px;}
.x7{left:652.692999px;}
.x8{left:686.709685px;}
.xa{left:823.685671px;}
.x2{left:876.632649px;}
.x9{left:882.893647px;}
.x5{left:969.429662px;}
.x4{left:1132.502547px;}
.x3{left:1158.826036px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.118925pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009600pt;}
.ls1{letter-spacing:0.010667pt;}
.ls5{letter-spacing:0.017013pt;}
.ls3{letter-spacing:1.264479pt;}
.ls4{letter-spacing:2.842666pt;}
.ws2{word-spacing:-15.999994pt;}
.ws0{word-spacing:-13.333328pt;}
.ws6{word-spacing:-11.999995pt;}
.ws4{word-spacing:-9.279996pt;}
.ws3{word-spacing:-0.064000pt;}
.ws5{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
._9{margin-left:-17.638469pt;}
._12{margin-left:-16.729049pt;}
._f{margin-left:-15.703738pt;}
._10{margin-left:-13.026021pt;}
._4{margin-left:-11.995291pt;}
._e{margin-left:-6.465063pt;}
._3{margin-left:-4.804366pt;}
._6{margin-left:-3.188288pt;}
._1{margin-left:-2.015855pt;}
._0{margin-left:-0.941333pt;}
._2{width:1.194686pt;}
._5{width:2.932075pt;}
._7{width:3.884766pt;}
._8{width:4.793592pt;}
._a{width:6.259101pt;}
._b{width:7.164454pt;}
._c{width:8.081107pt;}
._d{width:9.013789pt;}
._11{width:9.993842pt;}
.fs4{font-size:37.119985pt;}
.fs0{font-size:47.999981pt;}
.fs1{font-size:53.333312pt;}
.fs3{font-size:63.999974pt;}
.fs2{font-size:95.999962pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.053333pt;}
.y2{bottom:58.680294pt;}
.ybb{bottom:58.728294pt;}
.y2e{bottom:58.733627pt;}
.ydd{bottom:58.854960pt;}
.y5{bottom:58.858960pt;}
.y6c{bottom:94.296013pt;}
.y86{bottom:101.220410pt;}
.y92{bottom:101.955077pt;}
.yab{bottom:102.007610pt;}
.y1b{bottom:102.329476pt;}
.y9e{bottom:102.615343pt;}
.yb9{bottom:103.356276pt;}
.y4{bottom:103.404276pt;}
.yda{bottom:105.298542pt;}
.y2d{bottom:110.346673pt;}
.y4d{bottom:112.558939pt;}
.y6b{bottom:113.496005pt;}
.y85{bottom:120.420402pt;}
.y91{bottom:121.155069pt;}
.yaa{bottom:121.205069pt;}
.y9d{bottom:121.815335pt;}
.yb8{bottom:122.556268pt;}
.yd9{bottom:124.498534pt;}
.y6a{bottom:127.896000pt;}
.y2c{bottom:129.546666pt;}
.y4c{bottom:131.758931pt;}
.y1a{bottom:132.868264pt;}
.y84{bottom:139.620395pt;}
.y90{bottom:140.355061pt;}
.ya9{bottom:140.405061pt;}
.y9c{bottom:141.015328pt;}
.yb7{bottom:141.756261pt;}
.y69{bottom:142.295994pt;}
.yd8{bottom:143.698527pt;}
.y4b{bottom:150.958924pt;}
.y19{bottom:152.068257pt;}
.y68{bottom:156.695988pt;}
.y83{bottom:158.820387pt;}
.y8f{bottom:159.555054pt;}
.ya8{bottom:159.605053pt;}
.y2b{bottom:160.085453pt;}
.yb6{bottom:160.956253pt;}
.yd7{bottom:162.898519pt;}
.y9b{bottom:167.772784pt;}
.y4a{bottom:170.158916pt;}
.y67{bottom:171.095982pt;}
.y18{bottom:171.268249pt;}
.y82{bottom:178.020379pt;}
.y8e{bottom:178.755046pt;}
.ya7{bottom:178.807579pt;}
.y2a{bottom:179.285446pt;}
.yb5{bottom:180.156245pt;}
.yd6{bottom:182.098511pt;}
.y66{bottom:185.495976pt;}
.y49{bottom:189.358908pt;}
.y17{bottom:190.468241pt;}
.y81{bottom:197.220372pt;}
.y8d{bottom:197.955038pt;}
.ya6{bottom:198.008771pt;}
.y29{bottom:198.485438pt;}
.yb4{bottom:199.356238pt;}
.y65{bottom:199.895971pt;}
.yd5{bottom:201.298503pt;}
.y9a{bottom:205.872102pt;}
.y48{bottom:208.558901pt;}
.y16{bottom:209.668233pt;}
.y64{bottom:214.295965pt;}
.y80{bottom:216.420364pt;}
.y8c{bottom:217.155030pt;}
.ya5{bottom:217.207564pt;}
.y28{bottom:217.685430pt;}
.yb3{bottom:218.556230pt;}
.yd4{bottom:220.498496pt;}
.y99{bottom:225.072761pt;}
.y47{bottom:227.758893pt;}
.y63{bottom:228.695959pt;}
.y15{bottom:228.868226pt;}
.y7f{bottom:235.620356pt;}
.y8b{bottom:236.355023pt;}
.ya4{bottom:236.407556pt;}
.y27{bottom:236.885423pt;}
.yb2{bottom:237.756222pt;}
.yd3{bottom:239.698488pt;}
.y62{bottom:243.095953pt;}
.y98{bottom:244.272086pt;}
.y46{bottom:246.958885pt;}
.y14{bottom:248.068218pt;}
.y7e{bottom:254.820349pt;}
.y8a{bottom:255.555015pt;}
.ya3{bottom:255.608748pt;}
.yb1{bottom:256.956215pt;}
.y61{bottom:257.495948pt;}
.yd2{bottom:258.898480pt;}
.y45{bottom:266.158878pt;}
.y13{bottom:267.268210pt;}
.y26{bottom:267.425410pt;}
.y7d{bottom:274.020341pt;}
.y89{bottom:274.755007pt;}
.y97{bottom:274.809541pt;}
.ya2{bottom:274.809941pt;}
.yb0{bottom:276.156207pt;}
.yd1{bottom:278.098473pt;}
.y44{bottom:285.358870pt;}
.y12{bottom:286.468203pt;}
.y25{bottom:286.625403pt;}
.y60{bottom:289.741268pt;}
.y7c{bottom:293.220333pt;}
.y88{bottom:293.955000pt;}
.y96{bottom:294.010733pt;}
.ya1{bottom:294.011133pt;}
.yaf{bottom:295.356199pt;}
.yd0{bottom:297.298465pt;}
.y43{bottom:304.558862pt;}
.y11{bottom:305.668195pt;}
.y24{bottom:305.825395pt;}
.y5f{bottom:308.941260pt;}
.y7b{bottom:312.420326pt;}
.y87{bottom:313.154992pt;}
.y95{bottom:313.209525pt;}
.ya0{bottom:313.209925pt;}
.yae{bottom:314.556192pt;}
.ycf{bottom:316.498457pt;}
.y42{bottom:323.758854pt;}
.y10{bottom:324.868187pt;}
.y23{bottom:325.025387pt;}
.y7a{bottom:331.620318pt;}
.y94{bottom:332.409518pt;}
.y9f{bottom:332.409918pt;}
.yad{bottom:333.756184pt;}
.yce{bottom:335.698450pt;}
.y5e{bottom:339.480048pt;}
.y41{bottom:342.958847pt;}
.yf{bottom:344.068180pt;}
.y22{bottom:344.225380pt;}
.y79{bottom:350.820310pt;}
.ycd{bottom:354.898442pt;}
.y5d{bottom:358.680041pt;}
.y93{bottom:361.357506pt;}
.y40{bottom:362.158839pt;}
.ye{bottom:363.268172pt;}
.y21{bottom:363.425372pt;}
.y78{bottom:370.020303pt;}
.ycc{bottom:374.098434pt;}
.y5c{bottom:377.880033pt;}
.y3f{bottom:381.358831pt;}
.yd{bottom:382.468164pt;}
.y20{bottom:382.625364pt;}
.yac{bottom:384.034830pt;}
.yba{bottom:384.908163pt;}
.y77{bottom:389.220295pt;}
.ycb{bottom:393.298427pt;}
.y5b{bottom:397.080025pt;}
.y3e{bottom:400.558824pt;}
.yc{bottom:401.668157pt;}
.y1f{bottom:401.825357pt;}
.y76{bottom:408.420287pt;}
.yca{bottom:412.498419pt;}
.y5a{bottom:416.280017pt;}
.y3d{bottom:419.758816pt;}
.yb{bottom:420.868149pt;}
.y1e{bottom:421.025349pt;}
.y75{bottom:427.620280pt;}
.yc9{bottom:431.698411pt;}
.y59{bottom:435.480010pt;}
.y3c{bottom:438.958808pt;}
.ya{bottom:440.068141pt;}
.y1d{bottom:440.225341pt;}
.y74{bottom:446.820272pt;}
.yc8{bottom:450.898404pt;}
.y58{bottom:454.680002pt;}
.y3b{bottom:458.158801pt;}
.y9{bottom:459.268134pt;}
.y1c{bottom:459.425334pt;}
.y73{bottom:466.020264pt;}
.yc7{bottom:470.098396pt;}
.y3a{bottom:477.358793pt;}
.y57{bottom:485.219990pt;}
.y72{bottom:485.220257pt;}
.yc6{bottom:489.298388pt;}
.y39{bottom:496.558785pt;}
.y56{bottom:504.419982pt;}
.y71{bottom:504.420249pt;}
.yc5{bottom:508.498381pt;}
.y38{bottom:515.758778pt;}
.y55{bottom:523.619975pt;}
.yc4{bottom:527.698373pt;}
.y37{bottom:534.958770pt;}
.y70{bottom:534.959037pt;}
.y54{bottom:542.819967pt;}
.yc3{bottom:546.898365pt;}
.y36{bottom:554.158762pt;}
.y6f{bottom:554.159029pt;}
.y53{bottom:562.019959pt;}
.yc2{bottom:566.098358pt;}
.y35{bottom:573.358755pt;}
.y6e{bottom:573.359021pt;}
.yc1{bottom:585.298350pt;}
.y34{bottom:592.558747pt;}
.y6d{bottom:592.559014pt;}
.y52{bottom:611.758739pt;}
.y33{bottom:611.759006pt;}
.yc0{bottom:612.057139pt;}
.y8{bottom:626.333400pt;}
.y51{bottom:630.958732pt;}
.y32{bottom:630.958998pt;}
.ybf{bottom:650.154057pt;}
.y50{bottom:650.158724pt;}
.y31{bottom:650.158991pt;}
.ybe{bottom:669.354050pt;}
.ydc{bottom:669.354316pt;}
.y4f{bottom:669.358716pt;}
.y30{bottom:669.358983pt;}
.y7{bottom:683.328977pt;}
.ybd{bottom:688.554042pt;}
.ydb{bottom:688.554309pt;}
.y4e{bottom:688.558709pt;}
.y2f{bottom:688.558975pt;}
.y3{bottom:737.493089pt;}
.ybc{bottom:737.541489pt;}
.y6{bottom:737.546422pt;}
.h2{height:33.455987pt;}
.h4{height:40.175984pt;}
.h7{height:41.983983pt;}
.h9{height:44.607982pt;}
.h3{height:44.639982pt;}
.h6{height:53.567979pt;}
.h8{height:53.574379pt;}
.h5{height:66.911973pt;}
.h1{height:793.280000pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.604903pt;}
.x6{left:105.840891pt;}
.x7{left:580.171555pt;}
.x8{left:610.408609pt;}
.xa{left:732.165040pt;}
.x2{left:779.229022pt;}
.x9{left:784.794353pt;}
.x5{left:861.715255pt;}
.x4{left:1006.668931pt;}
.x3{left:1030.067588pt;}
}




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