
    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_6ec60086ca3d9471b338049a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_44dddbc757f706c29490c08f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_11e1f2fd404321a32124394f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_1f5e340f008fc4770ec732e6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_6a5b32f17bebb0434c4e18ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.891602;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_c770c7e572a57b45d5c9db63.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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);}
.v4{vertical-align:-31.679901px;}
.v3{vertical-align:-25.920040px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.v2{vertical-align:30.960023px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.094301px;}
.ls2{letter-spacing:0.950436px;}
.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;}
}
.ws3{word-spacing:-79.203150px;}
.ws2{word-spacing:-23.855201px;}
.ws1{word-spacing:-23.760900px;}
.ws6{word-spacing:-19.800788px;}
.ws0{word-spacing:-15.840563px;}
.ws7{word-spacing:-13.860563px;}
.ws5{word-spacing:-11.520450px;}
.ws4{word-spacing:0.000000px;}
._18{margin-left:-23.481029px;}
._7{margin-left:-13.152763px;}
._12{margin-left:-11.504824px;}
._13{margin-left:-8.365322px;}
._3{margin-left:-7.297845px;}
._5{margin-left:-5.693520px;}
._6{margin-left:-4.100947px;}
._1{margin-left:-2.366552px;}
._4{margin-left:-1.031000px;}
._0{width:1.064507px;}
._d{width:2.116297px;}
._b{width:3.153331px;}
._a{width:4.352978px;}
._10{width:5.604602px;}
._f{width:7.383700px;}
._11{width:8.713567px;}
._17{width:10.141842px;}
._8{width:11.405232px;}
._9{width:13.289211px;}
._c{width:14.626133px;}
._14{width:16.008350px;}
._15{width:17.945328px;}
._22{width:22.562387px;}
._1e{width:30.976558px;}
._1c{width:33.696239px;}
._1d{width:34.908230px;}
._e{width:37.827353px;}
._19{width:94.183600px;}
._1b{width:293.956405px;}
._1a{width:316.753865px;}
._20{width:335.693365px;}
._1f{width:450.172723px;}
._23{width:827.942689px;}
._21{width:845.213027px;}
._16{width:1666.239453px;}
._2{width:1668.399637px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:46.081800px;}
.fs4{font-size:55.442250px;}
.fs1{font-size:63.362250px;}
.fs0{font-size:71.282700px;}
.fs3{font-size:79.203150px;}
.fs2{font-size:95.043600px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980011px;}
.y1a{bottom:41.040115px;}
.y51{bottom:97.920043px;}
.y4c{bottom:121.320099px;}
.y38{bottom:121.860077px;}
.y50{bottom:128.160049px;}
.y67{bottom:141.660049px;}
.y4f{bottom:149.760064px;}
.y4b{bottom:149.940033px;}
.y37{bottom:150.300041px;}
.y66{bottom:170.100083px;}
.y4a{bottom:178.560036px;}
.y36{bottom:178.920043px;}
.y4e{bottom:180.000068px;}
.y56{bottom:181.440033px;}
.y49{bottom:207.000068px;}
.y18{bottom:207.360077px;}
.y2d{bottom:235.440033px;}
.y48{bottom:235.620072px;}
.y35{bottom:235.980079px;}
.y65{bottom:247.500068px;}
.y2c{bottom:264.060036px;}
.y17{bottom:264.420043px;}
.y2b{bottom:292.500068px;}
.y54{bottom:292.680039px;}
.y16{bottom:293.040047px;}
.y64{bottom:298.980079px;}
.y2a{bottom:321.120072px;}
.y34{bottom:321.480079px;}
.y63{bottom:324.720085px;}
.y29{bottom:349.560036px;}
.y33{bottom:350.100083px;}
.y28{bottom:378.180039px;}
.y62{bottom:401.940033px;}
.y27{bottom:406.620072px;}
.y53{bottom:406.800041px;}
.y15{bottom:407.160049px;}
.y26{bottom:435.240074px;}
.y14{bottom:435.600083px;}
.y47{bottom:463.860077px;}
.y61{bottom:479.160049px;}
.y25{bottom:492.300041px;}
.y13{bottom:492.660049px;}
.y24{bottom:520.740074px;}
.y46{bottom:520.920043px;}
.y12{bottom:521.280052px;}
.y23{bottom:549.360077px;}
.y11{bottom:549.720085px;}
.y22{bottom:577.800041px;}
.y45{bottom:577.980079px;}
.y10{bottom:578.340088px;}
.y60{bottom:582.300041px;}
.y52{bottom:606.420043px;}
.yf{bottom:606.780052px;}
.y5f{bottom:608.040047px;}
.y21{bottom:634.860077px;}
.y44{bottom:635.040047px;}
.ye{bottom:635.400055px;}
.y5e{bottom:659.520058px;}
.y20{bottom:663.480079px;}
.yd{bottom:663.840088px;}
.y5d{bottom:685.260064px;}
.y43{bottom:692.100083px;}
.yc{bottom:692.460056px;}
.y55{bottom:720.540081px;}
.y32{bottom:720.900055px;}
.y1f{bottom:748.980079px;}
.y42{bottom:749.160049px;}
.yb{bottom:749.520058px;}
.y5c{bottom:762.480079px;}
.y41{bottom:777.600083px;}
.y31{bottom:777.960056px;}
.y4d{bottom:806.220051px;}
.y30{bottom:806.580059px;}
.y5b{bottom:814.140060px;}
.y1e{bottom:834.660049px;}
.y2f{bottom:835.020058px;}
.y5a{bottom:839.880066px;}
.y1d{bottom:863.280052px;}
.ya{bottom:863.640060px;}
.y40{bottom:891.720051px;}
.y9{bottom:892.080059px;}
.y3f{bottom:920.340054px;}
.y8{bottom:920.700061px;}
.y59{bottom:942.840054px;}
.y3e{bottom:948.780053px;}
.y7{bottom:949.140060px;}
.y3d{bottom:977.400072px;}
.y6{bottom:977.760064px;}
.y1c{bottom:1005.840070px;}
.y2e{bottom:1006.200061px;}
.y58{bottom:1020.060070px;}
.y3c{bottom:1034.460074px;}
.y5{bottom:1034.820065px;}
.y1b{bottom:1062.900072px;}
.y19{bottom:1070.640060px;}
.y3b{bottom:1091.520058px;}
.y4{bottom:1091.880066px;}
.y57{bottom:1097.460074px;}
.y3a{bottom:1119.960065px;}
.y3{bottom:1120.320065px;}
.y39{bottom:1148.580068px;}
.y2{bottom:1148.940067px;}
.hb{height:43.576083px;}
.hd{height:48.647326px;}
.h6{height:55.302981px;}
.h8{height:55.596662px;}
.h7{height:57.534328px;}
.h5{height:64.414315px;}
.h9{height:65.992187px;}
.h2{height:67.837080px;}
.hc{height:69.496123px;}
.ha{height:70.346938px;}
.h4{height:83.395190px;}
.h3{height:84.416166px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:89.819996px;}
.x14{left:97.739997px;}
.x1{left:140.939999px;}
.x8{left:147.599997px;}
.x7{left:149.939999px;}
.x3{left:159.840002px;}
.x2{left:167.039996px;}
.x1a{left:168.479994px;}
.x11{left:174.240006px;}
.x18{left:202.139992px;}
.x1c{left:218.699993px;}
.x12{left:224.639992px;}
.x5{left:233.280001px;}
.x1e{left:241.199993px;}
.x13{left:252.719999px;}
.x6{left:267.840002px;}
.x1b{left:272.520006px;}
.x1d{left:279.180005px;}
.x17{left:295.920010px;}
.xd{left:309.060001px;}
.x16{left:324.540012px;}
.x10{left:338.579990px;}
.xa{left:355.139992px;}
.x9{left:370.439999px;}
.x4{left:401.579990px;}
.xc{left:410.939999px;}
.xb{left:419.579990px;}
.xe{left:533.339985px;}
.x15{left:544.500000px;}
.x19{left:733.679970px;}
@media print{
.v4{vertical-align:-28.159912pt;}
.v3{vertical-align:-23.040036pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v2{vertical-align:27.520020pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.083823pt;}
.ls2{letter-spacing:0.844832pt;}
.ws3{word-spacing:-70.402800pt;}
.ws2{word-spacing:-21.204623pt;}
.ws1{word-spacing:-21.120800pt;}
.ws6{word-spacing:-17.600700pt;}
.ws0{word-spacing:-14.080500pt;}
.ws7{word-spacing:-12.320500pt;}
.ws5{word-spacing:-10.240400pt;}
.ws4{word-spacing:0.000000pt;}
._18{margin-left:-20.872026pt;}
._7{margin-left:-11.691345pt;}
._12{margin-left:-10.226510pt;}
._13{margin-left:-7.435842pt;}
._3{margin-left:-6.486973pt;}
._5{margin-left:-5.060907pt;}
._6{margin-left:-3.645287pt;}
._1{margin-left:-2.103602pt;}
._4{margin-left:-0.916445pt;}
._0{width:0.946228pt;}
._d{width:1.881153pt;}
._b{width:2.802961pt;}
._a{width:3.869314pt;}
._10{width:4.981869pt;}
._f{width:6.563289pt;}
._11{width:7.745393pt;}
._17{width:9.014971pt;}
._8{width:10.137984pt;}
._9{width:11.812632pt;}
._c{width:13.001007pt;}
._14{width:14.229644pt;}
._15{width:15.951402pt;}
._22{width:20.055456pt;}
._1e{width:27.534718pt;}
._1c{width:29.952212pt;}
._1d{width:31.029538pt;}
._e{width:33.624314pt;}
._19{width:83.718755pt;}
._1b{width:261.294583pt;}
._1a{width:281.558991pt;}
._20{width:298.394102pt;}
._1f{width:400.153532pt;}
._23{width:735.949057pt;}
._21{width:751.300469pt;}
._16{width:1481.101736pt;}
._2{width:1483.021900pt;}
.fs5{font-size:40.961600pt;}
.fs4{font-size:49.282000pt;}
.fs1{font-size:56.322000pt;}
.fs0{font-size:63.362400pt;}
.fs3{font-size:70.402800pt;}
.fs2{font-size:84.483200pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760010pt;}
.y1a{bottom:36.480103pt;}
.y51{bottom:87.040039pt;}
.y4c{bottom:107.840088pt;}
.y38{bottom:108.320069pt;}
.y50{bottom:113.920044pt;}
.y67{bottom:125.920044pt;}
.y4f{bottom:133.120057pt;}
.y4b{bottom:133.280030pt;}
.y37{bottom:133.600037pt;}
.y66{bottom:151.200074pt;}
.y4a{bottom:158.720032pt;}
.y36{bottom:159.040039pt;}
.y4e{bottom:160.000061pt;}
.y56{bottom:161.280030pt;}
.y49{bottom:184.000061pt;}
.y18{bottom:184.320069pt;}
.y2d{bottom:209.280030pt;}
.y48{bottom:209.440064pt;}
.y35{bottom:209.760071pt;}
.y65{bottom:220.000061pt;}
.y2c{bottom:234.720032pt;}
.y17{bottom:235.040039pt;}
.y2b{bottom:260.000061pt;}
.y54{bottom:260.160035pt;}
.y16{bottom:260.480042pt;}
.y64{bottom:265.760071pt;}
.y2a{bottom:285.440064pt;}
.y34{bottom:285.760071pt;}
.y63{bottom:288.640076pt;}
.y29{bottom:310.720032pt;}
.y33{bottom:311.200074pt;}
.y28{bottom:336.160035pt;}
.y62{bottom:357.280030pt;}
.y27{bottom:361.440064pt;}
.y53{bottom:361.600037pt;}
.y15{bottom:361.920044pt;}
.y26{bottom:386.880066pt;}
.y14{bottom:387.200074pt;}
.y47{bottom:412.320069pt;}
.y61{bottom:425.920044pt;}
.y25{bottom:437.600037pt;}
.y13{bottom:437.920044pt;}
.y24{bottom:462.880066pt;}
.y46{bottom:463.040039pt;}
.y12{bottom:463.360047pt;}
.y23{bottom:488.320069pt;}
.y11{bottom:488.640076pt;}
.y22{bottom:513.600037pt;}
.y45{bottom:513.760071pt;}
.y10{bottom:514.080079pt;}
.y60{bottom:517.600037pt;}
.y52{bottom:539.040039pt;}
.yf{bottom:539.360047pt;}
.y5f{bottom:540.480042pt;}
.y21{bottom:564.320069pt;}
.y44{bottom:564.480042pt;}
.ye{bottom:564.800049pt;}
.y5e{bottom:586.240052pt;}
.y20{bottom:589.760071pt;}
.yd{bottom:590.080079pt;}
.y5d{bottom:609.120057pt;}
.y43{bottom:615.200074pt;}
.yc{bottom:615.520050pt;}
.y55{bottom:640.480072pt;}
.y32{bottom:640.800049pt;}
.y1f{bottom:665.760071pt;}
.y42{bottom:665.920044pt;}
.yb{bottom:666.240052pt;}
.y5c{bottom:677.760071pt;}
.y41{bottom:691.200074pt;}
.y31{bottom:691.520050pt;}
.y4d{bottom:716.640046pt;}
.y30{bottom:716.960053pt;}
.y5b{bottom:723.680054pt;}
.y1e{bottom:741.920044pt;}
.y2f{bottom:742.240052pt;}
.y5a{bottom:746.560059pt;}
.y1d{bottom:767.360047pt;}
.ya{bottom:767.680054pt;}
.y40{bottom:792.640046pt;}
.y9{bottom:792.960053pt;}
.y3f{bottom:818.080048pt;}
.y8{bottom:818.400055pt;}
.y59{bottom:838.080048pt;}
.y3e{bottom:843.360047pt;}
.y7{bottom:843.680054pt;}
.y3d{bottom:868.800064pt;}
.y6{bottom:869.120057pt;}
.y1c{bottom:894.080063pt;}
.y2e{bottom:894.400055pt;}
.y58{bottom:906.720063pt;}
.y3c{bottom:919.520066pt;}
.y5{bottom:919.840058pt;}
.y1b{bottom:944.800064pt;}
.y19{bottom:951.680054pt;}
.y3b{bottom:970.240052pt;}
.y4{bottom:970.560059pt;}
.y57{bottom:975.520066pt;}
.y3a{bottom:995.520058pt;}
.y3{bottom:995.840058pt;}
.y39{bottom:1020.960061pt;}
.y2{bottom:1021.280060pt;}
.hb{height:38.734296pt;}
.hd{height:43.242067pt;}
.h6{height:49.158205pt;}
.h8{height:49.419255pt;}
.h7{height:51.141625pt;}
.h5{height:57.257169pt;}
.h9{height:58.659722pt;}
.h2{height:60.299627pt;}
.hc{height:61.774332pt;}
.ha{height:62.530612pt;}
.h4{height:74.129058pt;}
.h3{height:75.036592pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:79.839996pt;}
.x14{left:86.879997pt;}
.x1{left:125.279999pt;}
.x8{left:131.199997pt;}
.x7{left:133.279999pt;}
.x3{left:142.080002pt;}
.x2{left:148.479996pt;}
.x1a{left:149.759995pt;}
.x11{left:154.880005pt;}
.x18{left:179.679993pt;}
.x1c{left:194.399994pt;}
.x12{left:199.679993pt;}
.x5{left:207.360001pt;}
.x1e{left:214.399994pt;}
.x13{left:224.639999pt;}
.x6{left:238.080002pt;}
.x1b{left:242.240005pt;}
.x1d{left:248.160004pt;}
.x17{left:263.040009pt;}
.xd{left:274.720001pt;}
.x16{left:288.480011pt;}
.x10{left:300.959991pt;}
.xa{left:315.679993pt;}
.x9{left:329.279999pt;}
.x4{left:356.959991pt;}
.xc{left:365.279999pt;}
.xb{left:372.959991pt;}
.xe{left:474.079987pt;}
.x15{left:484.000000pt;}
.x19{left:652.159973pt;}
}




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