
    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_3d59900e8899d712735fc016.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.926270;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_609e507989a723cd9c0676be.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_b088123b23dd0390b7842932.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_4ff01f8e6fb83460662a7278.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_cd48103b035cae58a92f3246.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-18.336914px;}
.ws1{word-spacing:0.000000px;}
._5{margin-left:-7.344087px;}
._2{margin-left:-4.645309px;}
._1{margin-left:-3.167978px;}
._0{margin-left:-1.856166px;}
._3{width:34.620116px;}
._4{width:49.798827px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(67,67,67);}
.fs3{font-size:54.000000px;}
.fs2{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y19{bottom:117.041564px;}
.yaf{bottom:120.338384px;}
.ydf{bottom:124.382084px;}
.y67{bottom:128.881349px;}
.y8a{bottom:132.062984px;}
.y18{bottom:138.860969px;}
.yae{bottom:142.157954px;}
.yde{bottom:146.200934px;}
.y66{bottom:150.700934px;}
.y89{bottom:153.882569px;}
.y51{bottom:159.758797px;}
.y17{bottom:160.680359px;}
.yad{bottom:163.976803px;}
.ydd{bottom:168.021239px;}
.y65{bottom:172.520144px;}
.y88{bottom:175.701779px;}
.y50{bottom:181.578374px;}
.y16{bottom:182.499757px;}
.yac{bottom:185.796385px;}
.ydc{bottom:189.840089px;}
.ycb{bottom:194.069099px;}
.y64{bottom:194.339354px;}
.y87{bottom:197.520997px;}
.y4f{bottom:203.397944px;}
.y15{bottom:204.319154px;}
.yab{bottom:207.615967px;}
.ydb{bottom:211.660394px;}
.yca{bottom:215.887945px;}
.y63{bottom:216.158939px;}
.y86{bottom:219.340574px;}
.y4e{bottom:224.063963px;}
.y14{bottom:226.138544px;}
.yaa{bottom:229.435544px;}
.yda{bottom:233.479244px;}
.yc9{bottom:237.707527px;}
.y62{bottom:237.978509px;}
.y85{bottom:241.160159px;}
.y4d{bottom:243.069585px;}
.y13{bottom:247.957949px;}
.ya9{bottom:251.831536px;}
.yd9{bottom:255.298829px;}
.yc8{bottom:259.527104px;}
.y61{bottom:260.374516px;}
.y84{bottom:262.979369px;}
.y12{bottom:269.777339px;}
.ya8{bottom:275.634526px;}
.yd8{bottom:277.117672px;}
.yc7{bottom:281.345954px;}
.y60{bottom:283.600709px;}
.y83{bottom:284.798590px;}
.y11{bottom:290.443538px;}
.ya7{bottom:298.861079px;}
.yd7{bottom:298.937249px;}
.yc6{bottom:302.012693px;}
.y5f{bottom:304.267088px;}
.y82{bottom:306.618172px;}
.y10{bottom:309.448976px;}
.ya6{bottom:320.679929px;}
.yd6{bottom:320.756099px;}
.yc5{bottom:321.594714px;}
.y5e{bottom:323.272335px;}
.y81{bottom:328.437749px;}
.ya5{bottom:342.499504px;}
.y80{bottom:350.833741px;}
.y4c{bottom:356.286997px;}
.yd5{bottom:356.605219px;}
.ya4{bottom:364.319086px;}
.y7f{bottom:374.636716px;}
.yd4{bottom:375.578608px;}
.y4b{bottom:378.106574px;}
.ya3{bottom:386.137934px;}
.y39{bottom:388.121894px;}
.y7e{bottom:397.862917px;}
.y4a{bottom:399.925784px;}
.ya2{bottom:407.957519px;}
.y38{bottom:409.941292px;}
.yd3{bottom:413.120363px;}
.y7d{bottom:419.682134px;}
.y49{bottom:421.745362px;}
.ya1{bottom:429.777097px;}
.y37{bottom:431.760689px;}
.yd2{bottom:432.125246px;}
.y7c{bottom:441.501704px;}
.y48{bottom:443.564579px;}
.ya0{bottom:451.596674px;}
.y36{bottom:453.580079px;}
.y7b{bottom:463.321289px;}
.y5d{bottom:464.615114px;}
.y47{bottom:465.384149px;}
.y9f{bottom:473.416259px;}
.y35{bottom:475.399469px;}
.y7a{bottom:485.140507px;}
.y5c{bottom:485.281133px;}
.y46{bottom:487.203374px;}
.y9e{bottom:495.235109px;}
.y34{bottom:497.218874px;}
.y5b{bottom:503.133548px;}
.y79{bottom:506.959724px;}
.y45{bottom:507.869753px;}
.y9d{bottom:517.054694px;}
.y33{bottom:519.038264px;}
.y5a{bottom:522.138791px;}
.y44{bottom:526.875000px;}
.y78{bottom:528.779302px;}
.y9c{bottom:538.874264px;}
.y32{bottom:540.857669px;}
.y77{bottom:550.598879px;}
.y9b{bottom:560.693114px;}
.y31{bottom:562.677067px;}
.y76{bottom:572.418090px;}
.yc4{bottom:576.561764px;}
.y9a{bottom:582.512699px;}
.y43{bottom:583.842404px;}
.y30{bottom:584.496464px;}
.y75{bottom:594.237307px;}
.yc3{bottom:598.381349px;}
.y99{bottom:604.332269px;}
.y42{bottom:605.661990px;}
.y2f{bottom:606.315854px;}
.y74{bottom:616.056884px;}
.yc2{bottom:620.200934px;}
.y98{bottom:626.151854px;}
.y41{bottom:627.481207px;}
.y2e{bottom:628.135252px;}
.y73{bottom:637.876469px;}
.yc1{bottom:642.020504px;}
.y97{bottom:647.971439px;}
.y40{bottom:649.300784px;}
.y2d{bottom:649.954649px;}
.y72{bottom:659.695679px;}
.yc0{bottom:663.840089px;}
.y96{bottom:669.790282px;}
.y3f{bottom:671.120002px;}
.y2c{bottom:671.774054px;}
.y71{bottom:681.514889px;}
.ybf{bottom:685.658939px;}
.y95{bottom:691.609859px;}
.y3e{bottom:692.939579px;}
.y2b{bottom:693.593445px;}
.y70{bottom:703.334474px;}
.ybe{bottom:707.478509px;}
.y94{bottom:713.429444px;}
.y3d{bottom:714.758789px;}
.y2a{bottom:715.412842px;}
.yf{bottom:715.743166px;}
.ybd{bottom:729.298096px;}
.y93{bottom:735.248294px;}
.y3c{bottom:736.578374px;}
.y29{bottom:737.232239px;}
.ye{bottom:739.546141px;}
.ybc{bottom:751.116944px;}
.y92{bottom:757.067879px;}
.y3b{bottom:757.244378px;}
.y28{bottom:759.051629px;}
.y6f{bottom:760.605463px;}
.yd{bottom:763.349116px;}
.ybb{bottom:772.936522px;}
.y3a{bottom:776.249996px;}
.y91{bottom:779.463871px;}
.y27{bottom:780.871034px;}
.y6e{bottom:784.408441px;}
.yc{bottom:786.575504px;}
.yd1{bottom:790.593014px;}
.yba{bottom:794.756099px;}
.y26{bottom:802.690424px;}
.yb{bottom:808.394902px;}
.yd0{bottom:812.989021px;}
.yb9{bottom:816.575684px;}
.y59{bottom:824.356207px;}
.y25{bottom:824.509829px;}
.y6d{bottom:824.510002px;}
.y90{bottom:824.510011px;}
.ya{bottom:830.214299px;}
.ycf{bottom:836.791996px;}
.yb8{bottom:838.395269px;}
.y58{bottom:846.175784px;}
.y8f{bottom:846.328859px;}
.y24{bottom:846.329219px;}
.y9{bottom:852.033689px;}
.yce{bottom:860.594971px;}
.yb7{bottom:860.790526px;}
.y57{bottom:867.994994px;}
.y6c{bottom:868.148437px;}
.y8e{bottom:868.148444px;}
.y23{bottom:868.148624px;}
.ye4{bottom:868.149164px;}
.y8{bottom:873.853089px;}
.ycd{bottom:882.667973px;}
.yb6{bottom:884.017090px;}
.y56{bottom:889.814579px;}
.y22{bottom:889.968014px;}
.y7{bottom:895.672486px;}
.ycc{bottom:902.250000px;}
.yb5{bottom:905.836672px;}
.y55{bottom:911.633789px;}
.ye3{bottom:911.786864px;}
.y21{bottom:911.787419px;}
.y6b{bottom:911.787595px;}
.y8d{bottom:911.787599px;}
.y6{bottom:917.491883px;}
.yb4{bottom:927.656254px;}
.y54{bottom:933.453369px;}
.y20{bottom:933.606812px;}
.y8c{bottom:933.607178px;}
.y5{bottom:939.311280px;}
.yb3{bottom:949.475831px;}
.y53{bottom:954.119384px;}
.y6a{bottom:955.426026px;}
.y1f{bottom:955.426209px;}
.ye2{bottom:955.426758px;}
.y4{bottom:961.130677px;}
.yb2{bottom:971.871094px;}
.y52{bottom:973.125000px;}
.y1e{bottom:977.245605px;}
.y3{bottom:982.950074px;}
.yb1{bottom:995.674804px;}
.ye1{bottom:999.064454px;}
.y1d{bottom:999.065003px;}
.y69{bottom:999.065186px;}
.y2{bottom:1005.346069px;}
.yb0{bottom:1019.477051px;}
.y8b{bottom:1020.884034px;}
.y1c{bottom:1020.884400px;}
.y1{bottom:1036.302244px;}
.y68{bottom:1042.703613px;}
.y1b{bottom:1042.703796px;}
.ye0{bottom:1042.704347px;}
.y1a{bottom:1064.523194px;}
.h4{height:39.339844px;}
.h5{height:48.049806px;}
.h3{height:48.082032px;}
.h2{height:52.453125px;}
.h1{height:60.128904px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x4{left:135.000000px;}
.x5{left:162.000000px;}
.x6{left:189.000000px;}
.x7{left:216.000000px;}
.x9{left:285.777466px;}
.xa{left:301.198973px;}
.x3{left:323.541866px;}
.x12{left:326.323609px;}
.x11{left:328.416503px;}
.xe{left:330.684086px;}
.xc{left:332.925289px;}
.x14{left:356.942509px;}
.xd{left:384.687383px;}
.x15{left:388.840208px;}
.xf{left:459.000000px;}
.x13{left:704.250000px;}
.x10{left:725.625000px;}
.x8{left:727.312500px;}
.x2{left:814.500000px;}
.xb{left:868.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-16.299479pt;}
.ws1{word-spacing:0.000000pt;}
._5{margin-left:-6.528077pt;}
._2{margin-left:-4.129163pt;}
._1{margin-left:-2.815980pt;}
._0{margin-left:-1.649925pt;}
._3{width:30.773436pt;}
._4{width:44.265624pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:104.036945pt;}
.yaf{bottom:106.967452pt;}
.ydf{bottom:110.561852pt;}
.y67{bottom:114.561199pt;}
.y8a{bottom:117.389319pt;}
.y18{bottom:123.431972pt;}
.yae{bottom:126.362625pt;}
.yde{bottom:129.956385pt;}
.y66{bottom:133.956385pt;}
.y89{bottom:136.784505pt;}
.y51{bottom:142.007820pt;}
.y17{bottom:142.826985pt;}
.yad{bottom:145.757158pt;}
.ydd{bottom:149.352212pt;}
.y65{bottom:153.351239pt;}
.y88{bottom:156.179359pt;}
.y50{bottom:161.402999pt;}
.y16{bottom:162.222006pt;}
.yac{bottom:165.152342pt;}
.ydc{bottom:168.746745pt;}
.ycb{bottom:172.505865pt;}
.y64{bottom:172.746092pt;}
.y87{bottom:175.574220pt;}
.y4f{bottom:180.798172pt;}
.y15{bottom:181.617025pt;}
.yab{bottom:184.547526pt;}
.ydb{bottom:188.142572pt;}
.yca{bottom:191.900396pt;}
.y63{bottom:192.141279pt;}
.y86{bottom:194.969399pt;}
.y4e{bottom:199.167967pt;}
.y14{bottom:201.012039pt;}
.yaa{bottom:203.942705pt;}
.yda{bottom:207.537105pt;}
.yc9{bottom:211.295580pt;}
.y62{bottom:211.536452pt;}
.y85{bottom:214.364585pt;}
.y4d{bottom:216.061854pt;}
.y13{bottom:220.407065pt;}
.ya9{bottom:223.850254pt;}
.yd9{bottom:226.932292pt;}
.yc8{bottom:230.690759pt;}
.y61{bottom:231.444014pt;}
.y84{bottom:233.759439pt;}
.y12{bottom:239.802079pt;}
.ya8{bottom:245.008468pt;}
.yd8{bottom:246.326820pt;}
.yc7{bottom:250.085292pt;}
.y60{bottom:252.089519pt;}
.y83{bottom:253.154302pt;}
.y11{bottom:258.172034pt;}
.ya7{bottom:265.654292pt;}
.yd7{bottom:265.721999pt;}
.yc6{bottom:268.455727pt;}
.y5f{bottom:270.459634pt;}
.y82{bottom:272.549486pt;}
.y10{bottom:275.065756pt;}
.ya6{bottom:285.048825pt;}
.yd6{bottom:285.116532pt;}
.yc5{bottom:285.861968pt;}
.y5e{bottom:287.353187pt;}
.y81{bottom:291.944665pt;}
.ya5{bottom:304.444004pt;}
.y80{bottom:311.852214pt;}
.y4c{bottom:316.699553pt;}
.yd5{bottom:316.982417pt;}
.ya4{bottom:323.839188pt;}
.y7f{bottom:333.010414pt;}
.yd4{bottom:333.847651pt;}
.y4b{bottom:336.094732pt;}
.ya3{bottom:343.233719pt;}
.y39{bottom:344.997239pt;}
.y7e{bottom:353.655926pt;}
.y4a{bottom:355.489585pt;}
.ya2{bottom:362.628905pt;}
.y38{bottom:364.392260pt;}
.yd3{bottom:367.218101pt;}
.y7d{bottom:373.050785pt;}
.y49{bottom:374.884766pt;}
.ya1{bottom:382.024086pt;}
.y37{bottom:383.787279pt;}
.yd2{bottom:384.111330pt;}
.y7c{bottom:392.445959pt;}
.y48{bottom:394.279625pt;}
.ya0{bottom:401.419265pt;}
.y36{bottom:403.182292pt;}
.y7b{bottom:411.841145pt;}
.y5d{bottom:412.991212pt;}
.y47{bottom:413.674799pt;}
.y9f{bottom:420.814452pt;}
.y35{bottom:422.577305pt;}
.y7a{bottom:431.236006pt;}
.y5c{bottom:431.361007pt;}
.y46{bottom:433.069665pt;}
.y9e{bottom:440.208985pt;}
.y34{bottom:441.972332pt;}
.y5b{bottom:447.229821pt;}
.y79{bottom:450.630865pt;}
.y45{bottom:451.439781pt;}
.y9d{bottom:459.604172pt;}
.y33{bottom:461.367345pt;}
.y5a{bottom:464.123370pt;}
.y44{bottom:468.333334pt;}
.y78{bottom:470.026046pt;}
.y9c{bottom:478.999345pt;}
.y32{bottom:480.762372pt;}
.y77{bottom:489.421225pt;}
.y9b{bottom:498.393879pt;}
.y31{bottom:500.157393pt;}
.y76{bottom:508.816080pt;}
.yc4{bottom:512.499345pt;}
.y9a{bottom:517.789065pt;}
.y43{bottom:518.971025pt;}
.y30{bottom:519.552412pt;}
.y75{bottom:528.210940pt;}
.yc3{bottom:531.894532pt;}
.y99{bottom:537.184239pt;}
.y42{bottom:538.366213pt;}
.y2f{bottom:538.947425pt;}
.y74{bottom:547.606119pt;}
.yc2{bottom:551.289719pt;}
.y98{bottom:556.579425pt;}
.y41{bottom:557.761073pt;}
.y2e{bottom:558.342446pt;}
.y73{bottom:567.001305pt;}
.yc1{bottom:570.684892pt;}
.y97{bottom:575.974612pt;}
.y40{bottom:577.156252pt;}
.y2d{bottom:577.737465pt;}
.y72{bottom:586.396159pt;}
.yc0{bottom:590.080079pt;}
.y96{bottom:595.369140pt;}
.y3f{bottom:596.551113pt;}
.y2c{bottom:597.132492pt;}
.y71{bottom:605.791012pt;}
.ybf{bottom:609.474612pt;}
.y95{bottom:614.764319pt;}
.y3e{bottom:615.946292pt;}
.y2b{bottom:616.527506pt;}
.y70{bottom:625.186199pt;}
.ybe{bottom:628.869785pt;}
.y94{bottom:634.159505pt;}
.y3d{bottom:635.341145pt;}
.y2a{bottom:635.922526pt;}
.yf{bottom:636.216148pt;}
.ybd{bottom:648.264974pt;}
.y93{bottom:653.554039pt;}
.y3c{bottom:654.736332pt;}
.y29{bottom:655.317545pt;}
.ye{bottom:657.374347pt;}
.ybc{bottom:667.659505pt;}
.y92{bottom:672.949225pt;}
.y3b{bottom:673.106114pt;}
.y28{bottom:674.712559pt;}
.y6f{bottom:676.093744pt;}
.yd{bottom:678.532547pt;}
.ybb{bottom:687.054686pt;}
.y3a{bottom:689.999996pt;}
.y91{bottom:692.856774pt;}
.y27{bottom:694.107585pt;}
.y6e{bottom:697.251948pt;}
.yc{bottom:699.178225pt;}
.yd1{bottom:702.749345pt;}
.yba{bottom:706.449865pt;}
.y26{bottom:713.502599pt;}
.yb{bottom:718.573246pt;}
.yd0{bottom:722.656907pt;}
.yb9{bottom:725.845052pt;}
.y59{bottom:732.761073pt;}
.y25{bottom:732.897625pt;}
.y6d{bottom:732.897780pt;}
.y90{bottom:732.897788pt;}
.ya{bottom:737.968265pt;}
.ycf{bottom:743.815107pt;}
.yb8{bottom:745.240239pt;}
.y58{bottom:752.156252pt;}
.y8f{bottom:752.292319pt;}
.y24{bottom:752.292639pt;}
.y9{bottom:757.363279pt;}
.yce{bottom:764.973307pt;}
.yb7{bottom:765.147134pt;}
.y57{bottom:771.551105pt;}
.y6c{bottom:771.687500pt;}
.y8e{bottom:771.687505pt;}
.y23{bottom:771.687665pt;}
.ye4{bottom:771.688145pt;}
.y8{bottom:776.758302pt;}
.ycd{bottom:784.593754pt;}
.yb6{bottom:785.792969pt;}
.y56{bottom:790.946292pt;}
.y22{bottom:791.082679pt;}
.y7{bottom:796.153321pt;}
.ycc{bottom:802.000000pt;}
.yb5{bottom:805.188153pt;}
.y55{bottom:810.341145pt;}
.ye3{bottom:810.477212pt;}
.y21{bottom:810.477705pt;}
.y6b{bottom:810.477862pt;}
.y8d{bottom:810.477865pt;}
.y6{bottom:815.548341pt;}
.yb4{bottom:824.583337pt;}
.y54{bottom:829.736328pt;}
.y20{bottom:829.872721pt;}
.y8c{bottom:829.873047pt;}
.y5{bottom:834.943360pt;}
.yb3{bottom:843.978516pt;}
.y53{bottom:848.106119pt;}
.y6a{bottom:849.267579pt;}
.y1f{bottom:849.267741pt;}
.ye2{bottom:849.268229pt;}
.y4{bottom:854.338380pt;}
.yb2{bottom:863.885417pt;}
.y52{bottom:865.000000pt;}
.y1e{bottom:868.662760pt;}
.y3{bottom:873.733399pt;}
.yb1{bottom:885.044270pt;}
.ye1{bottom:888.057292pt;}
.y1d{bottom:888.057780pt;}
.y69{bottom:888.057943pt;}
.y2{bottom:893.640950pt;}
.yb0{bottom:906.201823pt;}
.y8b{bottom:907.452475pt;}
.y1c{bottom:907.452800pt;}
.y1{bottom:921.157550pt;}
.y68{bottom:926.847656pt;}
.y1b{bottom:926.847819pt;}
.ye0{bottom:926.848308pt;}
.y1a{bottom:946.242839pt;}
.h4{height:34.968750pt;}
.h5{height:42.710938pt;}
.h3{height:42.739584pt;}
.h2{height:46.625000pt;}
.h1{height:53.447915pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x4{left:120.000000pt;}
.x5{left:144.000000pt;}
.x6{left:168.000000pt;}
.x7{left:192.000000pt;}
.x9{left:254.024414pt;}
.xa{left:267.732420pt;}
.x3{left:287.592770pt;}
.x12{left:290.065430pt;}
.x11{left:291.925780pt;}
.xe{left:293.941410pt;}
.xc{left:295.933590pt;}
.x14{left:317.282230pt;}
.xd{left:341.944340pt;}
.x15{left:345.635740pt;}
.xf{left:408.000000pt;}
.x13{left:626.000000pt;}
.x10{left:645.000000pt;}
.x8{left:646.500000pt;}
.x2{left:724.000000pt;}
.xb{left:772.000000pt;}
}




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