
    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_92182813b0fce692de50489d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_2ce5d230d874dd4abb2957bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001465;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_3a123ef1513715bafee471d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.006348;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_ffd5ac2aab7676d85bc2fcf8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011230;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_dc017a255b68bcfe6d7e7695.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_6354b258cfb644ac9675d5aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.691895;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);}
.v1{vertical-align:-12.142090px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.ws4{word-spacing:-13.500000px;}
.ws2{word-spacing:-9.000000px;}
.ws3{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
._c{margin-left:-4.271575px;}
._15{margin-left:-2.902694px;}
._0{margin-left:-1.845703px;}
._2{width:4.237489px;}
._5{width:5.273455px;}
._1{width:8.954982px;}
._4{width:13.366502px;}
._3{width:17.924541px;}
._16{width:18.945111px;}
._9{width:22.394741px;}
._12{width:26.874262px;}
._b{width:30.873062px;}
._10{width:31.901942px;}
._a{width:35.839286px;}
._7{width:40.329259px;}
._8{width:41.366250px;}
._6{width:44.891128px;}
._d{width:62.850525px;}
._11{width:67.500001px;}
._14{width:72.000000px;}
._f{width:73.089845px;}
._13{width:201.000000px;}
._e{width:2526.977490px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:48.000002px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.999999px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:39.570556px;}
.y31{bottom:39.570739px;}
.y58{bottom:39.570922px;}
.y2{bottom:39.746487px;}
.ya7{bottom:48.444939px;}
.y56{bottom:48.445314px;}
.y2f{bottom:48.935218px;}
.y75{bottom:77.511114px;}
.y2e{bottom:87.603338px;}
.y74{bottom:102.247920px;}
.ya6{bottom:104.045651px;}
.y2d{bottom:107.840154px;}
.ya5{bottom:122.258786px;}
.y73{bottom:122.484741px;}
.y2c{bottom:128.076968px;}
.ya4{bottom:140.471922px;}
.y72{bottom:142.721557px;}
.y2b{bottom:148.313784px;}
.ya3{bottom:158.685056px;}
.y71{bottom:162.958373px;}
.y2a{bottom:168.550597px;}
.ya2{bottom:176.898191px;}
.y70{bottom:183.195189px;}
.y29{bottom:188.787413px;}
.ya1{bottom:195.111326px;}
.y6f{bottom:208.784540px;}
.y28{bottom:209.024229px;}
.ya0{bottom:213.324461px;}
.y9f{bottom:231.537596px;}
.y6e{bottom:236.716194px;}
.y27{bottom:239.113580px;}
.y9e{bottom:249.750731px;}
.y6d{bottom:261.453009px;}
.y9d{bottom:267.963866px;}
.y26{bottom:280.545232px;}
.y6c{bottom:281.689821px;}
.y9c{bottom:286.177001px;}
.y25{bottom:300.782048px;}
.y6b{bottom:301.926637px;}
.y9b{bottom:304.390137px;}
.y24{bottom:321.018864px;}
.y6a{bottom:322.163454px;}
.y9a{bottom:322.603271px;}
.y55{bottom:330.245176px;}
.y99{bottom:340.816406px;}
.y23{bottom:341.255677px;}
.y69{bottom:342.400266px;}
.y54{bottom:350.481997px;}
.y98{bottom:359.029541px;}
.y22{bottom:361.492493px;}
.y68{bottom:362.637082px;}
.y53{bottom:370.718813px;}
.y97{bottom:377.242676px;}
.y21{bottom:381.729309px;}
.y67{bottom:382.873899px;}
.y52{bottom:390.955629px;}
.y96{bottom:395.455811px;}
.y20{bottom:401.966124px;}
.y66{bottom:403.110725px;}
.y51{bottom:411.192444px;}
.y95{bottom:413.668946px;}
.y1f{bottom:422.202945px;}
.y65{bottom:423.347541px;}
.y50{bottom:431.429258px;}
.y94{bottom:431.882081px;}
.y1e{bottom:442.439762px;}
.y64{bottom:443.584357px;}
.y93{bottom:450.095216px;}
.y4f{bottom:451.666074px;}
.y1d{bottom:462.676579px;}
.y63{bottom:463.821174px;}
.y92{bottom:478.586795px;}
.y4e{bottom:481.755425px;}
.y1c{bottom:482.913395px;}
.y62{bottom:493.910525px;}
.y1b{bottom:503.150258px;}
.y91{bottom:519.592166px;}
.y4d{bottom:523.187070px;}
.y1a{bottom:523.387074px;}
.y61{bottom:534.915898px;}
.y4c{bottom:543.423891px;}
.y90{bottom:546.805302px;}
.y60{bottom:553.129032px;}
.y19{bottom:553.476425px;}
.y4b{bottom:563.660707px;}
.y8f{bottom:565.018436px;}
.y5f{bottom:571.342167px;}
.y8e{bottom:583.231571px;}
.y4a{bottom:583.897523px;}
.y5e{bottom:589.555301px;}
.y18{bottom:597.158064px;}
.y49{bottom:604.134339px;}
.y5d{bottom:607.768436px;}
.y8d{bottom:610.444706px;}
.y17{bottom:617.394876px;}
.y5c{bottom:625.981572px;}
.y48{bottom:634.223690px;}
.y16{bottom:637.631693px;}
.y8c{bottom:637.657841px;}
.y5b{bottom:644.194706px;}
.y8b{bottom:655.870976px;}
.y15{bottom:657.868508px;}
.y5a{bottom:662.407841px;}
.y47{bottom:675.655328px;}
.y8a{bottom:683.084111px;}
.y59{bottom:690.899784px;}
.y46{bottom:695.892144px;}
.y14{bottom:696.105332px;}
.y89{bottom:701.297246px;}
.y45{bottom:716.128973px;}
.y13{bottom:716.342147px;}
.y88{bottom:728.510381px;}
.y44{bottom:736.365789px;}
.y12{bottom:736.578964px;}
.y87{bottom:746.723516px;}
.y43{bottom:756.602604px;}
.y11{bottom:756.815780px;}
.y86{bottom:764.936652px;}
.y42{bottom:776.839417px;}
.y10{bottom:777.052587px;}
.y85{bottom:783.149786px;}
.y41{bottom:797.076233px;}
.yf{bottom:797.289404px;}
.y84{bottom:801.362921px;}
.y40{bottom:817.313049px;}
.ye{bottom:817.526220px;}
.y3f{bottom:837.549864px;}
.yd{bottom:837.763041px;}
.y83{bottom:838.002315px;}
.y3e{bottom:857.786678px;}
.yc{bottom:857.999857px;}
.y82{bottom:858.239136px;}
.y3d{bottom:878.023494px;}
.yb{bottom:878.236673px;}
.y81{bottom:878.475952px;}
.y3c{bottom:898.260309px;}
.ya{bottom:898.473489px;}
.y80{bottom:898.712768px;}
.y7f{bottom:918.949584px;}
.y3b{bottom:922.997137px;}
.y9{bottom:927.710318px;}
.y3a{bottom:943.233954px;}
.y7e{bottom:949.038935px;}
.yb3{bottom:960.355224px;}
.y39{bottom:963.470769px;}
.y8{bottom:965.520866px;}
.yb2{bottom:978.568360px;}
.y38{bottom:983.707584px;}
.y7d{bottom:990.470577px;}
.y7{bottom:993.160239px;}
.yb1{bottom:996.781495px;}
.y37{bottom:1008.444397px;}
.y7c{bottom:1010.707394px;}
.yb0{bottom:1014.994629px;}
.y7b{bottom:1030.944210px;}
.y6{bottom:1034.807217px;}
.y36{bottom:1038.533753px;}
.y7a{bottom:1051.181031px;}
.yaf{bottom:1051.207763px;}
.yae{bottom:1069.420898px;}
.y5{bottom:1071.233482px;}
.y79{bottom:1071.417847px;}
.y35{bottom:1079.965394px;}
.yad{bottom:1087.634033px;}
.y78{bottom:1091.654663px;}
.y34{bottom:1100.202211px;}
.yac{bottom:1105.847168px;}
.y4{bottom:1107.659764px;}
.y77{bottom:1111.891479px;}
.y33{bottom:1120.439026px;}
.yab{bottom:1124.060303px;}
.y76{bottom:1137.480836px;}
.y32{bottom:1140.675843px;}
.y3{bottom:1140.675876px;}
.yaa{bottom:1142.273438px;}
.y57{bottom:1156.649781px;}
.y30{bottom:1156.649964px;}
.y1{bottom:1156.649997px;}
.ya8{bottom:1156.650147px;}
.ha{height:35.039064px;}
.h2{height:35.991211px;}
.h6{height:39.418945px;}
.hf{height:39.761719px;}
.h3{height:43.212890px;}
.h7{height:43.798827px;}
.h5{height:44.179686px;}
.he{height:52.558594px;}
.h8{height:53.015625px;}
.hc{height:67.649775px;}
.h10{height:67.650150px;}
.h9{height:70.714515px;}
.h4{height:79.523438px;}
.h11{height:106.349853px;}
.h1{height:106.350003px;}
.hb{height:106.350036px;}
.hd{height:106.350219px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x2{left:114.825005px;}
.x3{left:146.325005px;}
.x5{left:168.825005px;}
.x1{left:446.456690px;}
.x4{left:632.644190px;}
@media print{
.v1{vertical-align:-10.792969pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.000000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws3{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
._c{margin-left:-3.796955pt;}
._15{margin-left:-2.580173pt;}
._0{margin-left:-1.640625pt;}
._2{width:3.766657pt;}
._5{width:4.687516pt;}
._1{width:7.959984pt;}
._4{width:11.881335pt;}
._3{width:15.932925pt;}
._16{width:16.840099pt;}
._9{width:19.906436pt;}
._12{width:23.888232pt;}
._b{width:27.442722pt;}
._10{width:28.357282pt;}
._a{width:31.857143pt;}
._7{width:35.848231pt;}
._8{width:36.770000pt;}
._6{width:39.903225pt;}
._d{width:55.867133pt;}
._11{width:60.000001pt;}
._14{width:64.000000pt;}
._f{width:64.968751pt;}
._13{width:178.666667pt;}
._e{width:2246.202213pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:42.666668pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333332pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:35.173828pt;}
.y31{bottom:35.173990pt;}
.y58{bottom:35.174153pt;}
.y2{bottom:35.330211pt;}
.ya7{bottom:43.062168pt;}
.y56{bottom:43.062502pt;}
.y2f{bottom:43.497972pt;}
.y75{bottom:68.898768pt;}
.y2e{bottom:77.869634pt;}
.y74{bottom:90.887040pt;}
.ya6{bottom:92.485024pt;}
.y2d{bottom:95.857915pt;}
.ya5{bottom:108.674476pt;}
.y73{bottom:108.875325pt;}
.y2c{bottom:113.846194pt;}
.ya4{bottom:124.863931pt;}
.y72{bottom:126.863606pt;}
.y2b{bottom:131.834475pt;}
.ya3{bottom:141.053384pt;}
.y71{bottom:144.851887pt;}
.y2a{bottom:149.822753pt;}
.ya2{bottom:157.242836pt;}
.y70{bottom:162.840168pt;}
.y29{bottom:167.811034pt;}
.ya1{bottom:173.432290pt;}
.y6f{bottom:185.586257pt;}
.y28{bottom:185.799315pt;}
.ya0{bottom:189.621743pt;}
.y9f{bottom:205.811197pt;}
.y6e{bottom:210.414395pt;}
.y27{bottom:212.545404pt;}
.y9e{bottom:222.000650pt;}
.y6d{bottom:232.402675pt;}
.y9d{bottom:238.190104pt;}
.y26{bottom:249.373540pt;}
.y6c{bottom:250.390952pt;}
.y9c{bottom:254.379556pt;}
.y25{bottom:267.361821pt;}
.y6b{bottom:268.379233pt;}
.y9b{bottom:270.569011pt;}
.y24{bottom:285.350101pt;}
.y6a{bottom:286.367515pt;}
.y9a{bottom:286.758464pt;}
.y55{bottom:293.551268pt;}
.y99{bottom:302.947916pt;}
.y23{bottom:303.338380pt;}
.y69{bottom:304.355792pt;}
.y54{bottom:311.539553pt;}
.y98{bottom:319.137370pt;}
.y22{bottom:321.326660pt;}
.y68{bottom:322.344073pt;}
.y53{bottom:329.527834pt;}
.y97{bottom:335.326823pt;}
.y21{bottom:339.314941pt;}
.y67{bottom:340.332355pt;}
.y52{bottom:347.516115pt;}
.y96{bottom:351.516277pt;}
.y20{bottom:357.303221pt;}
.y66{bottom:358.320644pt;}
.y51{bottom:365.504395pt;}
.y95{bottom:367.705730pt;}
.y1f{bottom:375.291507pt;}
.y65{bottom:376.308925pt;}
.y50{bottom:383.492674pt;}
.y94{bottom:383.895184pt;}
.y1e{bottom:393.279789pt;}
.y64{bottom:394.297206pt;}
.y93{bottom:400.084636pt;}
.y4f{bottom:401.480955pt;}
.y1d{bottom:411.268070pt;}
.y63{bottom:412.285488pt;}
.y92{bottom:425.410484pt;}
.y4e{bottom:428.227044pt;}
.y1c{bottom:429.256351pt;}
.y62{bottom:439.031577pt;}
.y1b{bottom:447.244674pt;}
.y91{bottom:461.859703pt;}
.y4d{bottom:465.055173pt;}
.y1a{bottom:465.232955pt;}
.y61{bottom:475.480798pt;}
.y4c{bottom:483.043459pt;}
.y90{bottom:486.049157pt;}
.y60{bottom:491.670251pt;}
.y19{bottom:491.979044pt;}
.y4b{bottom:501.031739pt;}
.y8f{bottom:502.238610pt;}
.y5f{bottom:507.859704pt;}
.y8e{bottom:518.428063pt;}
.y4a{bottom:519.020020pt;}
.y5e{bottom:524.049157pt;}
.y18{bottom:530.807168pt;}
.y49{bottom:537.008301pt;}
.y5d{bottom:540.238610pt;}
.y8d{bottom:542.617516pt;}
.y17{bottom:548.795446pt;}
.y5c{bottom:556.428064pt;}
.y48{bottom:563.754391pt;}
.y16{bottom:566.783727pt;}
.y8c{bottom:566.806970pt;}
.y5b{bottom:572.617517pt;}
.y8b{bottom:582.996423pt;}
.y15{bottom:584.772007pt;}
.y5a{bottom:588.806970pt;}
.y47{bottom:600.582514pt;}
.y8a{bottom:607.185877pt;}
.y59{bottom:614.133141pt;}
.y46{bottom:618.570795pt;}
.y14{bottom:618.760295pt;}
.y89{bottom:623.375330pt;}
.y45{bottom:636.559087pt;}
.y13{bottom:636.748575pt;}
.y88{bottom:647.564783pt;}
.y44{bottom:654.547368pt;}
.y12{bottom:654.736856pt;}
.y87{bottom:663.754236pt;}
.y43{bottom:672.535648pt;}
.y11{bottom:672.725137pt;}
.y86{bottom:679.943690pt;}
.y42{bottom:690.523926pt;}
.y10{bottom:690.713410pt;}
.y85{bottom:696.133143pt;}
.y41{bottom:708.512207pt;}
.yf{bottom:708.701692pt;}
.y84{bottom:712.322596pt;}
.y40{bottom:726.500488pt;}
.ye{bottom:726.689973pt;}
.y3f{bottom:744.488768pt;}
.yd{bottom:744.678258pt;}
.y83{bottom:744.890947pt;}
.y3e{bottom:762.477047pt;}
.yc{bottom:762.666539pt;}
.y82{bottom:762.879232pt;}
.y3d{bottom:780.465328pt;}
.yb{bottom:780.654820pt;}
.y81{bottom:780.867513pt;}
.y3c{bottom:798.453608pt;}
.ya{bottom:798.643101pt;}
.y80{bottom:798.855794pt;}
.y7f{bottom:816.844075pt;}
.y3b{bottom:820.441900pt;}
.y9{bottom:824.631394pt;}
.y3a{bottom:838.430181pt;}
.y7e{bottom:843.590164pt;}
.yb3{bottom:853.649088pt;}
.y39{bottom:856.418461pt;}
.y8{bottom:858.240770pt;}
.yb2{bottom:869.838542pt;}
.y38{bottom:874.406741pt;}
.y7d{bottom:880.418291pt;}
.y7{bottom:882.809101pt;}
.yb1{bottom:886.027995pt;}
.y37{bottom:896.395020pt;}
.y7c{bottom:898.406573pt;}
.yb0{bottom:902.217448pt;}
.y7b{bottom:916.394854pt;}
.y6{bottom:919.828637pt;}
.y36{bottom:923.141113pt;}
.y7a{bottom:934.383138pt;}
.yaf{bottom:934.406901pt;}
.yae{bottom:950.596354pt;}
.y5{bottom:952.207539pt;}
.y79{bottom:952.371420pt;}
.y35{bottom:959.969239pt;}
.yad{bottom:966.785808pt;}
.y78{bottom:970.359701pt;}
.y34{bottom:977.957520pt;}
.yac{bottom:982.975260pt;}
.y4{bottom:984.586457pt;}
.y77{bottom:988.347981pt;}
.y33{bottom:995.945801pt;}
.yab{bottom:999.164714pt;}
.y76{bottom:1011.094076pt;}
.y32{bottom:1013.934083pt;}
.y3{bottom:1013.934112pt;}
.yaa{bottom:1015.354167pt;}
.y57{bottom:1028.133139pt;}
.y30{bottom:1028.133301pt;}
.y1{bottom:1028.133331pt;}
.ya8{bottom:1028.133464pt;}
.ha{height:31.145834pt;}
.h2{height:31.992188pt;}
.h6{height:35.039063pt;}
.hf{height:35.343750pt;}
.h3{height:38.411457pt;}
.h7{height:38.932291pt;}
.h5{height:39.270832pt;}
.he{height:46.718750pt;}
.h8{height:47.125000pt;}
.hc{height:60.133133pt;}
.h10{height:60.133467pt;}
.h9{height:62.857347pt;}
.h4{height:70.687500pt;}
.h11{height:94.533203pt;}
.h1{height:94.533336pt;}
.hb{height:94.533365pt;}
.hd{height:94.533528pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x2{left:102.066671pt;}
.x3{left:130.066671pt;}
.x5{left:150.066671pt;}
.x1{left:396.850391pt;}
.x4{left:562.350391pt;}
}




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