
    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_0ff5a68d066f31709421843d.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e33e7fc2052281b38825c60e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_5e5e277a974bff2286b26b5c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.721680;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_b4986c998f4f33883b61da8c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_d5654bf69d5090d73e325e47.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_789380017bf1b998ab346c8b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.062159px;}
.ls3{letter-spacing:102.455269px;}
.ls2{letter-spacing:138.455269px;}
.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.000676px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-4.298786px;}
._7{margin-left:-3.090491px;}
._1{margin-left:-1.109292px;}
._0{width:1.479712px;}
._1e{width:2.582254px;}
._c{width:3.590854px;}
._1d{width:5.245791px;}
._9{width:6.290111px;}
._8{width:7.475624px;}
._14{width:8.625980px;}
._13{width:10.448548px;}
._6{width:12.393809px;}
._5{width:13.599167px;}
._a{width:15.157975px;}
._b{width:16.642813px;}
._1b{width:19.101530px;}
._e{width:20.199852px;}
._18{width:21.231516px;}
._19{width:22.281181px;}
._20{width:23.880710px;}
._1f{width:25.421455px;}
._23{width:26.853352px;}
._11{width:28.131119px;}
._10{width:29.334914px;}
._f{width:30.480770px;}
._1c{width:31.862040px;}
._21{width:33.782488px;}
._22{width:34.841479px;}
._2{width:36.121405px;}
._12{width:37.693697px;}
._25{width:43.125120px;}
._d{width:44.404293px;}
._24{width:51.362679px;}
._17{width:53.529229px;}
._15{width:54.543455px;}
._16{width:55.835004px;}
._4{width:194.777160px;}
._3{width:196.217214px;}
._26{width:843.273886px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,32,96);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.762250px;}
.fs0{font-size:72.002705px;}
.fs1{font-size:84.243145px;}
.fs2{font-size:131.764946px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.960000px;}
.yb{bottom:7.200002px;}
.y8{bottom:15.120072px;}
.ye{bottom:18.360077px;}
.yd{bottom:40.680039px;}
.yc{bottom:51.300110px;}
.y3d{bottom:91.980011px;}
.y3c{bottom:114.300041px;}
.y3b{bottom:136.620072px;}
.y3a{bottom:158.940033px;}
.y39{bottom:181.260064px;}
.y38{bottom:203.580093px;}
.y37{bottom:225.900055px;}
.y36{bottom:248.220085px;}
.y35{bottom:270.540047px;}
.y34{bottom:292.860077px;}
.y60{bottom:315.360077px;}
.y33{bottom:316.080093px;}
.y5f{bottom:337.680039px;}
.y32{bottom:342.180039px;}
.y5e{bottom:360.000068px;}
.y31{bottom:368.280052px;}
.y78{bottom:374.040047px;}
.y5d{bottom:382.320099px;}
.y30{bottom:393.480079px;}
.y77{bottom:397.620072px;}
.y5c{bottom:404.640060px;}
.y2f{bottom:415.800041px;}
.y76{bottom:418.320099px;}
.y5b{bottom:426.960091px;}
.y2e{bottom:438.120072px;}
.y75{bottom:439.020058px;}
.y5a{bottom:449.280052px;}
.y74{bottom:459.720085px;}
.y2d{bottom:460.440033px;}
.y59{bottom:471.600083px;}
.y73{bottom:480.420043px;}
.y2c{bottom:482.760064px;}
.y58{bottom:493.920043px;}
.y72{bottom:501.120072px;}
.y2b{bottom:505.080093px;}
.y57{bottom:516.240074px;}
.y71{bottom:521.820099px;}
.y2a{bottom:527.400055px;}
.y56{bottom:538.560036px;}
.y70{bottom:542.520058px;}
.y29{bottom:549.900055px;}
.y55{bottom:561.060036px;}
.y6f{bottom:563.220085px;}
.y28{bottom:572.220085px;}
.y54{bottom:583.380066px;}
.y6e{bottom:583.920043px;}
.y27{bottom:594.540047px;}
.y6d{bottom:604.620072px;}
.y53{bottom:605.700096px;}
.y26{bottom:616.860077px;}
.y6c{bottom:625.320099px;}
.y52{bottom:628.020058px;}
.y25{bottom:639.180039px;}
.y6b{bottom:646.020058px;}
.y51{bottom:650.340088px;}
.y24{bottom:661.500068px;}
.y6a{bottom:666.720085px;}
.y50{bottom:672.660049px;}
.y23{bottom:683.820099px;}
.y69{bottom:687.420078px;}
.y4f{bottom:694.980079px;}
.y22{bottom:706.140060px;}
.y68{bottom:708.120072px;}
.y4e{bottom:717.300076px;}
.y21{bottom:728.460056px;}
.y67{bottom:728.820065px;}
.y4d{bottom:739.620072px;}
.y66{bottom:749.520058px;}
.y20{bottom:750.780052px;}
.y4c{bottom:761.940067px;}
.y65{bottom:770.220051px;}
.y1f{bottom:773.100083px;}
.y4b{bottom:784.440067px;}
.y64{bottom:790.920078px;}
.y1e{bottom:795.600083px;}
.y4a{bottom:806.760064px;}
.y63{bottom:811.620072px;}
.y1d{bottom:817.920078px;}
.y49{bottom:829.080059px;}
.y62{bottom:832.320065px;}
.y1c{bottom:840.240074px;}
.y48{bottom:851.400055px;}
.y61{bottom:853.020058px;}
.y1b{bottom:863.460056px;}
.y47{bottom:873.720051px;}
.y1a{bottom:889.380066px;}
.y46{bottom:896.040081px;}
.y19{bottom:915.480079px;}
.y45{bottom:918.360077px;}
.y18{bottom:940.680073px;}
.y17{bottom:963.000068px;}
.y16{bottom:985.320065px;}
.y44{bottom:1007.640060px;}
.y15{bottom:1008.540064px;}
.y43{bottom:1030.140060px;}
.y14{bottom:1034.640060px;}
.y42{bottom:1052.460074px;}
.y13{bottom:1060.740074px;}
.y41{bottom:1074.780069px;}
.y12{bottom:1086.660067px;}
.y40{bottom:1097.100065px;}
.y11{bottom:1112.760064px;}
.y3f{bottom:1119.420069px;}
.y10{bottom:1138.860068px;}
.y3e{bottom:1141.740066px;}
.y7{bottom:1162.260064px;}
.yf{bottom:1176.660067px;}
.y6{bottom:1184.040064px;}
.y5{bottom:1204.740066px;}
.ya{bottom:1217.880066px;}
.y3{bottom:1221.480067px;}
.y9{bottom:1225.080068px;}
.y2{bottom:1225.440067px;}
.y1{bottom:1246.140066px;}
.h4{height:20.520000px;}
.h8{height:37.260000px;}
.h9{height:42.166236px;}
.h2{height:50.275326px;}
.h3{height:50.802689px;}
.h5{height:51.365211px;}
.he{height:52.419938px;}
.hd{height:52.630883px;}
.ha{height:54.248131px;}
.hb{height:58.822118px;}
.hc{height:59.439133px;}
.h6{height:61.578120px;}
.h7{height:92.968919px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3{width:12.779983px;}
.w2{width:101.700027px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x7{left:89.280001px;}
.xe{left:138.060001px;}
.x8{left:143.459997px;}
.x9{left:223.560001px;}
.xd{left:302.579990px;}
.x12{left:335.519989px;}
.x10{left:346.860008px;}
.xc{left:351.000000px;}
.xb{left:367.740006px;}
.x11{left:371.519989px;}
.xf{left:374.040012px;}
.x13{left:385.019989px;}
.xa{left:446.040012px;}
.x6{left:471.240006px;}
.x3{left:736.379998px;}
.x2{left:790.740006px;}
.x4{left:794.340019px;}
.x5{left:823.320030px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.055252pt;}
.ls3{letter-spacing:91.071350pt;}
.ls2{letter-spacing:123.071350pt;}
.ws0{word-spacing:-16.000601pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-3.821144pt;}
._7{margin-left:-2.747103pt;}
._1{margin-left:-0.986037pt;}
._0{width:1.315299pt;}
._1e{width:2.295337pt;}
._c{width:3.191870pt;}
._1d{width:4.662925pt;}
._9{width:5.591210pt;}
._8{width:6.644999pt;}
._14{width:7.667538pt;}
._13{width:9.287599pt;}
._6{width:11.016719pt;}
._5{width:12.088149pt;}
._a{width:13.473756pt;}
._b{width:14.793612pt;}
._1b{width:16.979137pt;}
._e{width:17.955424pt;}
._18{width:18.872459pt;}
._19{width:19.805494pt;}
._20{width:21.227297pt;}
._1f{width:22.596849pt;}
._23{width:23.869646pt;}
._11{width:25.005439pt;}
._10{width:26.075479pt;}
._f{width:27.094018pt;}
._1c{width:28.321814pt;}
._21{width:30.028878pt;}
._22{width:30.970204pt;}
._2{width:32.107915pt;}
._12{width:33.505508pt;}
._25{width:38.333440pt;}
._d{width:39.470482pt;}
._24{width:45.655715pt;}
._17{width:47.581537pt;}
._15{width:48.483071pt;}
._16{width:49.631114pt;}
._4{width:173.135253pt;}
._3{width:174.415301pt;}
._26{width:749.576788pt;}
.fs3{font-size:53.122000pt;}
.fs0{font-size:64.002404pt;}
.fs1{font-size:74.882796pt;}
.fs2{font-size:117.124396pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.520000pt;}
.yb{bottom:6.400002pt;}
.y8{bottom:13.440064pt;}
.ye{bottom:16.320069pt;}
.yd{bottom:36.160035pt;}
.yc{bottom:45.600098pt;}
.y3d{bottom:81.760010pt;}
.y3c{bottom:101.600037pt;}
.y3b{bottom:121.440064pt;}
.y3a{bottom:141.280030pt;}
.y39{bottom:161.120057pt;}
.y38{bottom:180.960083pt;}
.y37{bottom:200.800049pt;}
.y36{bottom:220.640076pt;}
.y35{bottom:240.480042pt;}
.y34{bottom:260.320069pt;}
.y60{bottom:280.320069pt;}
.y33{bottom:280.960083pt;}
.y5f{bottom:300.160035pt;}
.y32{bottom:304.160035pt;}
.y5e{bottom:320.000061pt;}
.y31{bottom:327.360047pt;}
.y78{bottom:332.480042pt;}
.y5d{bottom:339.840088pt;}
.y30{bottom:349.760071pt;}
.y77{bottom:353.440064pt;}
.y5c{bottom:359.680054pt;}
.y2f{bottom:369.600037pt;}
.y76{bottom:371.840088pt;}
.y5b{bottom:379.520081pt;}
.y2e{bottom:389.440064pt;}
.y75{bottom:390.240052pt;}
.y5a{bottom:399.360047pt;}
.y74{bottom:408.640076pt;}
.y2d{bottom:409.280030pt;}
.y59{bottom:419.200074pt;}
.y73{bottom:427.040039pt;}
.y2c{bottom:429.120057pt;}
.y58{bottom:439.040039pt;}
.y72{bottom:445.440064pt;}
.y2b{bottom:448.960083pt;}
.y57{bottom:458.880066pt;}
.y71{bottom:463.840088pt;}
.y2a{bottom:468.800049pt;}
.y56{bottom:478.720032pt;}
.y70{bottom:482.240052pt;}
.y29{bottom:488.800049pt;}
.y55{bottom:498.720032pt;}
.y6f{bottom:500.640076pt;}
.y28{bottom:508.640076pt;}
.y54{bottom:518.560059pt;}
.y6e{bottom:519.040039pt;}
.y27{bottom:528.480042pt;}
.y6d{bottom:537.440064pt;}
.y53{bottom:538.400086pt;}
.y26{bottom:548.320069pt;}
.y6c{bottom:555.840088pt;}
.y52{bottom:558.240052pt;}
.y25{bottom:568.160035pt;}
.y6b{bottom:574.240052pt;}
.y51{bottom:578.080079pt;}
.y24{bottom:588.000061pt;}
.y6a{bottom:592.640076pt;}
.y50{bottom:597.920044pt;}
.y23{bottom:607.840088pt;}
.y69{bottom:611.040070pt;}
.y4f{bottom:617.760071pt;}
.y22{bottom:627.680054pt;}
.y68{bottom:629.440064pt;}
.y4e{bottom:637.600068pt;}
.y21{bottom:647.520050pt;}
.y67{bottom:647.840058pt;}
.y4d{bottom:657.440064pt;}
.y66{bottom:666.240052pt;}
.y20{bottom:667.360047pt;}
.y4c{bottom:677.280060pt;}
.y65{bottom:684.640046pt;}
.y1f{bottom:687.200074pt;}
.y4b{bottom:697.280060pt;}
.y64{bottom:703.040070pt;}
.y1e{bottom:707.200074pt;}
.y4a{bottom:717.120057pt;}
.y63{bottom:721.440064pt;}
.y1d{bottom:727.040070pt;}
.y49{bottom:736.960053pt;}
.y62{bottom:739.840058pt;}
.y1c{bottom:746.880066pt;}
.y48{bottom:756.800049pt;}
.y61{bottom:758.240052pt;}
.y1b{bottom:767.520050pt;}
.y47{bottom:776.640046pt;}
.y1a{bottom:790.560059pt;}
.y46{bottom:796.480072pt;}
.y19{bottom:813.760071pt;}
.y45{bottom:816.320069pt;}
.y18{bottom:836.160065pt;}
.y17{bottom:856.000061pt;}
.y16{bottom:875.840058pt;}
.y44{bottom:895.680054pt;}
.y15{bottom:896.480057pt;}
.y43{bottom:915.680054pt;}
.y14{bottom:919.680054pt;}
.y42{bottom:935.520066pt;}
.y13{bottom:942.880066pt;}
.y41{bottom:955.360062pt;}
.y12{bottom:965.920060pt;}
.y40{bottom:975.200058pt;}
.y11{bottom:989.120057pt;}
.y3f{bottom:995.040062pt;}
.y10{bottom:1012.320061pt;}
.y3e{bottom:1014.880059pt;}
.y7{bottom:1033.120057pt;}
.yf{bottom:1045.920060pt;}
.y6{bottom:1052.480057pt;}
.y5{bottom:1070.880059pt;}
.ya{bottom:1082.560059pt;}
.y3{bottom:1085.760060pt;}
.y9{bottom:1088.960061pt;}
.y2{bottom:1089.280060pt;}
.y1{bottom:1107.680059pt;}
.h4{height:18.240000pt;}
.h8{height:33.120000pt;}
.h9{height:37.481099pt;}
.h2{height:44.689179pt;}
.h3{height:45.157946pt;}
.h5{height:45.657965pt;}
.he{height:46.595500pt;}
.hd{height:46.783007pt;}
.ha{height:48.220561pt;}
.hb{height:52.286327pt;}
.hc{height:52.834785pt;}
.h6{height:54.736106pt;}
.h7{height:82.639039pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3{width:11.359985pt;}
.w2{width:90.400024pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x7{left:79.360001pt;}
.xe{left:122.720001pt;}
.x8{left:127.519997pt;}
.x9{left:198.720001pt;}
.xd{left:268.959991pt;}
.x12{left:298.239990pt;}
.x10{left:308.320007pt;}
.xc{left:312.000000pt;}
.xb{left:326.880005pt;}
.x11{left:330.239990pt;}
.xf{left:332.480011pt;}
.x13{left:342.239990pt;}
.xa{left:396.480011pt;}
.x6{left:418.880005pt;}
.x3{left:654.559998pt;}
.x2{left:702.880005pt;}
.x4{left:706.080017pt;}
.x5{left:731.840027pt;}
}




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