
    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_8a7accef85b2926c7b51698a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_4d4d2f11157fad645a318418.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675000;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a2aadd8d318506634b9c4532.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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);}
.v1{vertical-align:-5.304000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:14.941368px;}
.ls2{letter-spacing:14.947368px;}
.ls1{letter-spacing:52.499421px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-16.363650px;}
.wsa{word-spacing:-14.943900px;}
.wsb{word-spacing:-0.654546px;}
.ws6{word-spacing:-0.130909px;}
.ws5{word-spacing:-0.059776px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:2.238096px;}
.wsc{word-spacing:2.241158px;}
.ws1{word-spacing:2.492964px;}
.ws7{word-spacing:2.749093px;}
.ws9{word-spacing:34.377178px;}
.ws2{word-spacing:41.825489px;}
.ws3{word-spacing:161.869226px;}
._f{margin-left:-5.825459px;}
._8{margin-left:-4.385458px;}
._b{margin-left:-3.010912px;}
._0{margin-left:-1.463312px;}
._d{width:1.112728px;}
._3{width:2.117686px;}
._4{width:3.547123px;}
._1{width:4.658908px;}
._2{width:7.094247px;}
._6{width:10.185830px;}
._10{width:15.709133px;}
._a{width:16.976270px;}
._9{width:19.112743px;}
._e{width:68.861952px;}
._c{width:71.738242px;}
._7{width:80.123750px;}
._11{width:610.784688px;}
._5{width:627.464688px;}
.fc9{color:rgb(232,103,88);}
.fc6{color:rgb(254,250,248);}
.fc5{color:rgb(224,45,48);}
.fc4{color:rgb(252,230,223);}
.fca{color:rgb(0,173,239);}
.fc3{color:transparent;}
.fc8{color:rgb(255,0,0);}
.fc2{color:rgb(82,86,109);}
.fc7{color:rgb(249,206,194);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:52.942140px;}
.fs6{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.873000px;}
.y8{bottom:20.397402px;}
.y5f{bottom:21.270000px;}
.y67{bottom:23.559000px;}
.y7f{bottom:24.049500px;}
.y7{bottom:24.288000px;}
.y3b{bottom:25.543500px;}
.y1c{bottom:35.949000px;}
.y66{bottom:42.987000px;}
.y7e{bottom:43.476000px;}
.y94{bottom:47.860500px;}
.y52{bottom:48.351000px;}
.y3a{bottom:50.350500px;}
.y5e{bottom:52.816500px;}
.y1b{bottom:60.754500px;}
.y65{bottom:62.413500px;}
.y7d{bottom:62.904000px;}
.y44{bottom:64.147500px;}
.y51{bottom:64.789500px;}
.y2d{bottom:67.996500px;}
.y93{bottom:70.276500px;}
.y71{bottom:71.995500px;}
.y5d{bottom:73.140000px;}
.y39{bottom:75.157500px;}
.y50{bottom:81.228000px;}
.y1a{bottom:84.321000px;}
.y43{bottom:84.471000px;}
.y7c{bottom:87.655500px;}
.y2c{bottom:88.320000px;}
.y88{bottom:90.007500px;}
.y92{bottom:92.692500px;}
.yf{bottom:93.681000px;}
.y38{bottom:94.078500px;}
.y5c{bottom:96.705000px;}
.y70{bottom:96.802500px;}
.y4f{bottom:97.666500px;}
.y64{bottom:103.875000px;}
.y42{bottom:104.794500px;}
.y7b{bottom:107.082000px;}
.y2b{bottom:108.645000px;}
.y4e{bottom:114.103500px;}
.y87{bottom:114.814500px;}
.y91{bottom:116.983500px;}
.y6f{bottom:121.609500px;}
.y19{bottom:122.388000px;}
.y63{bottom:124.198500px;}
.y41{bottom:125.118000px;}
.y7a{bottom:126.510000px;}
.y2a{bottom:128.968500px;}
.y4d{bottom:130.542000px;}
.y5b{bottom:130.756500px;}
.y86{bottom:135.138000px;}
.y37{bottom:136.398000px;}
.y6{bottom:140.770500px;}
.ye{bottom:141.969000px;}
.y40{bottom:145.441500px;}
.y6e{bottom:146.728500px;}
.y18{bottom:147.195000px;}
.y62{bottom:149.005500px;}
.y29{bottom:149.292000px;}
.y5a{bottom:151.080000px;}
.y36{bottom:156.723000px;}
.y85{bottom:159.945000px;}
.y4c{bottom:163.419000px;}
.y90{bottom:164.254500px;}
.y61{bottom:169.329000px;}
.y28{bottom:170.214000px;}
.y17{bottom:172.002000px;}
.y79{bottom:172.222500px;}
.y59{bottom:174.253500px;}
.y4b{bottom:179.857500px;}
.y5{bottom:180.195000px;}
.y35{bottom:184.518000px;}
.y8f{bottom:184.578000px;}
.y84{bottom:184.755000px;}
.yd{bottom:190.257000px;}
.y78{bottom:192.546000px;}
.y6d{bottom:193.999500px;}
.y60{bottom:194.137500px;}
.y4{bottom:194.392500px;}
.y16{bottom:195.175500px;}
.y4a{bottom:196.296000px;}
.y34{bottom:205.440000px;}
.y58{bottom:208.305000px;}
.y8e{bottom:209.385000px;}
.y3f{bottom:209.776500px;}
.y6c{bottom:214.323000px;}
.y77{bottom:217.353000px;}
.y21{bottom:219.165000px;}
.y83{bottom:227.460000px;}
.y33{bottom:227.856000px;}
.y3{bottom:228.106500px;}
.y15{bottom:228.385500px;}
.y57{bottom:228.628500px;}
.y49{bottom:229.173000px;}
.y8d{bottom:229.708500px;}
.y3e{bottom:234.583500px;}
.y76{bottom:237.676500px;}
.yc{bottom:238.545000px;}
.y6b{bottom:239.130000px;}
.y20{bottom:239.488500px;}
.y48{bottom:245.611500px;}
.y14{bottom:246.319500px;}
.y32{bottom:246.775500px;}
.y82{bottom:247.783500px;}
.y56{bottom:253.747500px;}
.y8c{bottom:254.515500px;}
.y6a{bottom:259.453500px;}
.y1f{bottom:259.812000px;}
.y75{bottom:262.483500px;}
.y13{bottom:264.252000px;}
.y81{bottom:268.107000px;}
.y8b{bottom:274.839000px;}
.y47{bottom:278.487000px;}
.y69{bottom:279.777000px;}
.y1e{bottom:280.135500px;}
.y3d{bottom:281.106000px;}
.y12{bottom:282.184500px;}
.y74{bottom:282.807000px;}
.y31{bottom:283.888500px;}
.yb{bottom:286.833000px;}
.y55{bottom:287.109000px;}
.y80{bottom:291.279000px;}
.y2{bottom:292.939500px;}
.y46{bottom:294.925500px;}
.y8a{bottom:295.162500px;}
.y30{bottom:300.327000px;}
.y1d{bottom:300.459000px;}
.y3c{bottom:301.429500px;}
.y73{bottom:303.130500px;}
.y68{bottom:303.342000px;}
.y54{bottom:306.535500px;}
.y45{bottom:311.364000px;}
.y2f{bottom:316.765500px;}
.y11{bottom:317.182500px;}
.y1{bottom:319.839000px;}
.y89{bottom:319.972500px;}
.y53{bottom:325.963500px;}
.y72{bottom:328.888500px;}
.y2e{bottom:333.204000px;}
.y10{bottom:337.506000px;}
.ya{bottom:362.751000px;}
.y27{bottom:3068.035185px;}
.y26{bottom:3088.358685px;}
.y25{bottom:3108.683685px;}
.y24{bottom:3129.007185px;}
.y23{bottom:3149.330685px;}
.y22{bottom:3170.252685px;}
.h8{height:26.791603px;}
.h7{height:35.259465px;}
.h5{height:35.530706px;}
.h4{height:35.721988px;}
.hd{height:39.972211px;}
.hc{height:40.187405px;}
.h9{height:43.590586px;}
.ha{height:44.652373px;}
.hb{height:48.632768px;}
.h3{height:48.894586px;}
.he{height:62.181870px;}
.h2{height:64.299668px;}
.h6{height:91.054594px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w2{width:416.724081px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.xa{left:18.136500px;}
.xb{left:43.275000px;}
.xe{left:63.465000px;}
.xc{left:71.623500px;}
.xd{left:75.247500px;}
.x12{left:76.950000px;}
.x1{left:93.063000px;}
.x11{left:107.974500px;}
.x8{left:120.988740px;}
.x7{left:131.812500px;}
.x9{left:136.401000px;}
.x5{left:206.259000px;}
.x4{left:231.963000px;}
.x10{left:273.174000px;}
.x6{left:277.206000px;}
.x3{left:278.695500px;}
.x2{left:301.777500px;}
.x13{left:393.225000px;}
.x14{left:413.574000px;}
.xf{left:3273.212685px;}
@media print{
.v1{vertical-align:-4.714667pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:13.281216pt;}
.ls2{letter-spacing:13.286549pt;}
.ls1{letter-spacing:46.666152pt;}
.ws8{word-spacing:-14.545467pt;}
.wsa{word-spacing:-13.283467pt;}
.wsb{word-spacing:-0.581819pt;}
.ws6{word-spacing:-0.116364pt;}
.ws5{word-spacing:-0.053134pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:1.989419pt;}
.wsc{word-spacing:1.992141pt;}
.ws1{word-spacing:2.215968pt;}
.ws7{word-spacing:2.443638pt;}
.ws9{word-spacing:30.557491pt;}
.ws2{word-spacing:37.178213pt;}
.ws3{word-spacing:143.883756pt;}
._f{margin-left:-5.178186pt;}
._8{margin-left:-3.898185pt;}
._b{margin-left:-2.676366pt;}
._0{margin-left:-1.300722pt;}
._d{width:0.989092pt;}
._3{width:1.882387pt;}
._4{width:3.152999pt;}
._1{width:4.141252pt;}
._2{width:6.305997pt;}
._6{width:9.054071pt;}
._10{width:13.963674pt;}
._a{width:15.090018pt;}
._9{width:16.989105pt;}
._e{width:61.210624pt;}
._c{width:63.767326pt;}
._7{width:71.221111pt;}
._11{width:542.919723pt;}
._5{width:557.746389pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.059680pt;}
.fs6{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.442667pt;}
.y8{bottom:18.131024pt;}
.y5f{bottom:18.906667pt;}
.y67{bottom:20.941333pt;}
.y7f{bottom:21.377333pt;}
.y7{bottom:21.589333pt;}
.y3b{bottom:22.705333pt;}
.y1c{bottom:31.954667pt;}
.y66{bottom:38.210667pt;}
.y7e{bottom:38.645333pt;}
.y94{bottom:42.542667pt;}
.y52{bottom:42.978667pt;}
.y3a{bottom:44.756000pt;}
.y5e{bottom:46.948000pt;}
.y1b{bottom:54.004000pt;}
.y65{bottom:55.478667pt;}
.y7d{bottom:55.914667pt;}
.y44{bottom:57.020000pt;}
.y51{bottom:57.590667pt;}
.y2d{bottom:60.441333pt;}
.y93{bottom:62.468000pt;}
.y71{bottom:63.996000pt;}
.y5d{bottom:65.013333pt;}
.y39{bottom:66.806667pt;}
.y50{bottom:72.202667pt;}
.y1a{bottom:74.952000pt;}
.y43{bottom:75.085333pt;}
.y7c{bottom:77.916000pt;}
.y2c{bottom:78.506667pt;}
.y88{bottom:80.006667pt;}
.y92{bottom:82.393333pt;}
.yf{bottom:83.272000pt;}
.y38{bottom:83.625333pt;}
.y5c{bottom:85.960000pt;}
.y70{bottom:86.046667pt;}
.y4f{bottom:86.814667pt;}
.y64{bottom:92.333333pt;}
.y42{bottom:93.150667pt;}
.y7b{bottom:95.184000pt;}
.y2b{bottom:96.573333pt;}
.y4e{bottom:101.425333pt;}
.y87{bottom:102.057333pt;}
.y91{bottom:103.985333pt;}
.y6f{bottom:108.097333pt;}
.y19{bottom:108.789333pt;}
.y63{bottom:110.398667pt;}
.y41{bottom:111.216000pt;}
.y7a{bottom:112.453333pt;}
.y2a{bottom:114.638667pt;}
.y4d{bottom:116.037333pt;}
.y5b{bottom:116.228000pt;}
.y86{bottom:120.122667pt;}
.y37{bottom:121.242667pt;}
.y6{bottom:125.129333pt;}
.ye{bottom:126.194667pt;}
.y40{bottom:129.281333pt;}
.y6e{bottom:130.425333pt;}
.y18{bottom:130.840000pt;}
.y62{bottom:132.449333pt;}
.y29{bottom:132.704000pt;}
.y5a{bottom:134.293333pt;}
.y36{bottom:139.309333pt;}
.y85{bottom:142.173333pt;}
.y4c{bottom:145.261333pt;}
.y90{bottom:146.004000pt;}
.y61{bottom:150.514667pt;}
.y28{bottom:151.301333pt;}
.y17{bottom:152.890667pt;}
.y79{bottom:153.086667pt;}
.y59{bottom:154.892000pt;}
.y4b{bottom:159.873333pt;}
.y5{bottom:160.173333pt;}
.y35{bottom:164.016000pt;}
.y8f{bottom:164.069333pt;}
.y84{bottom:164.226667pt;}
.yd{bottom:169.117333pt;}
.y78{bottom:171.152000pt;}
.y6d{bottom:172.444000pt;}
.y60{bottom:172.566667pt;}
.y4{bottom:172.793333pt;}
.y16{bottom:173.489333pt;}
.y4a{bottom:174.485333pt;}
.y34{bottom:182.613333pt;}
.y58{bottom:185.160000pt;}
.y8e{bottom:186.120000pt;}
.y3f{bottom:186.468000pt;}
.y6c{bottom:190.509333pt;}
.y77{bottom:193.202667pt;}
.y21{bottom:194.813333pt;}
.y83{bottom:202.186667pt;}
.y33{bottom:202.538667pt;}
.y3{bottom:202.761333pt;}
.y15{bottom:203.009333pt;}
.y57{bottom:203.225333pt;}
.y49{bottom:203.709333pt;}
.y8d{bottom:204.185333pt;}
.y3e{bottom:208.518667pt;}
.y76{bottom:211.268000pt;}
.yc{bottom:212.040000pt;}
.y6b{bottom:212.560000pt;}
.y20{bottom:212.878667pt;}
.y48{bottom:218.321333pt;}
.y14{bottom:218.950667pt;}
.y32{bottom:219.356000pt;}
.y82{bottom:220.252000pt;}
.y56{bottom:225.553333pt;}
.y8c{bottom:226.236000pt;}
.y6a{bottom:230.625333pt;}
.y1f{bottom:230.944000pt;}
.y75{bottom:233.318667pt;}
.y13{bottom:234.890667pt;}
.y81{bottom:238.317333pt;}
.y8b{bottom:244.301333pt;}
.y47{bottom:247.544000pt;}
.y69{bottom:248.690667pt;}
.y1e{bottom:249.009333pt;}
.y3d{bottom:249.872000pt;}
.y12{bottom:250.830667pt;}
.y74{bottom:251.384000pt;}
.y31{bottom:252.345333pt;}
.yb{bottom:254.962667pt;}
.y55{bottom:255.208000pt;}
.y80{bottom:258.914667pt;}
.y2{bottom:260.390667pt;}
.y46{bottom:262.156000pt;}
.y8a{bottom:262.366667pt;}
.y30{bottom:266.957333pt;}
.y1d{bottom:267.074667pt;}
.y3c{bottom:267.937333pt;}
.y73{bottom:269.449333pt;}
.y68{bottom:269.637333pt;}
.y54{bottom:272.476000pt;}
.y45{bottom:276.768000pt;}
.y2f{bottom:281.569333pt;}
.y11{bottom:281.940000pt;}
.y1{bottom:284.301333pt;}
.y89{bottom:284.420000pt;}
.y53{bottom:289.745333pt;}
.y72{bottom:292.345333pt;}
.y2e{bottom:296.181333pt;}
.y10{bottom:300.005333pt;}
.ya{bottom:322.445333pt;}
.y27{bottom:2727.142387pt;}
.y26{bottom:2745.207720pt;}
.y25{bottom:2763.274387pt;}
.y24{bottom:2781.339720pt;}
.y23{bottom:2799.405053pt;}
.y22{bottom:2818.002387pt;}
.h8{height:23.814758pt;}
.h7{height:31.341747pt;}
.h5{height:31.582850pt;}
.h4{height:31.752878pt;}
.hd{height:35.530854pt;}
.hc{height:35.722138pt;}
.h9{height:38.747188pt;}
.ha{height:39.690998pt;}
.hb{height:43.229127pt;}
.h3{height:43.461854pt;}
.he{height:55.272773pt;}
.h2{height:57.155261pt;}
.h6{height:80.937417pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w2{width:370.421406pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.xa{left:16.121333pt;}
.xb{left:38.466667pt;}
.xe{left:56.413333pt;}
.xc{left:63.665333pt;}
.xd{left:66.886667pt;}
.x12{left:68.400000pt;}
.x1{left:82.722667pt;}
.x11{left:95.977333pt;}
.x8{left:107.545547pt;}
.x7{left:117.166667pt;}
.x9{left:121.245333pt;}
.x5{left:183.341333pt;}
.x4{left:206.189333pt;}
.x10{left:242.821333pt;}
.x6{left:246.405333pt;}
.x3{left:247.729333pt;}
.x2{left:268.246667pt;}
.x13{left:349.533333pt;}
.x14{left:367.621333pt;}
.xf{left:2909.522387pt;}
}




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