
    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_588bc18c9814d3ff7e3ce90a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_86a203c48c0008f83cfac340.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_6f00f650c5ca938db077d442.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921000;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_dd41b45ee72ed8e8fc01d256.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_f704ffda03138874f09cac76.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.851000;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_fa88dd4c3e54fda818a2a58d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727000;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;}
.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;}
}
.wsc{word-spacing:-16.605662px;}
.ws17{word-spacing:-15.278643px;}
.wsb{word-spacing:-3.335478px;}
.ws3{word-spacing:-3.275703px;}
.ws26{word-spacing:-2.737722px;}
.ws6e{word-spacing:-2.618171px;}
.ws4{word-spacing:-1.362884px;}
.ws48{word-spacing:-1.064006px;}
.ws4d{word-spacing:-0.346698px;}
.ws22{word-spacing:0.000000px;}
.ws47{word-spacing:0.251058px;}
.ws38{word-spacing:0.310833px;}
.wsd{word-spacing:0.490160px;}
.ws68{word-spacing:0.609711px;}
.ws3d{word-spacing:1.028140px;}
.ws34{word-spacing:1.147692px;}
.ws56{word-spacing:1.207467px;}
.ws2f{word-spacing:1.327018px;}
.ws64{word-spacing:1.625896px;}
.ws60{word-spacing:1.685672px;}
.ws6b{word-spacing:1.805223px;}
.ws69{word-spacing:1.924774px;}
.ws2d{word-spacing:1.984550px;}
.ws57{word-spacing:2.283428px;}
.ws37{word-spacing:2.343204px;}
.ws50{word-spacing:2.402979px;}
.ws25{word-spacing:2.582306px;}
.ws2c{word-spacing:2.642082px;}
.ws51{word-spacing:2.761633px;}
.ws3b{word-spacing:2.881184px;}
.ws61{word-spacing:3.239838px;}
.ws5{word-spacing:3.299613px;}
.ws14{word-spacing:3.359389px;}
.ws62{word-spacing:3.478940px;}
.ws3c{word-spacing:3.538716px;}
.ws28{word-spacing:3.598491px;}
.ws3e{word-spacing:3.658267px;}
.ws41{word-spacing:3.718042px;}
.ws32{word-spacing:3.837594px;}
.ws55{word-spacing:4.136472px;}
.ws27{word-spacing:4.196247px;}
.ws58{word-spacing:4.256023px;}
.ws39{word-spacing:4.435350px;}
.ws6c{word-spacing:4.554901px;}
.ws3a{word-spacing:4.614676px;}
.ws42{word-spacing:4.674452px;}
.ws4a{word-spacing:4.734228px;}
.ws6a{word-spacing:4.794003px;}
.ws16{word-spacing:4.805958px;}
.ws2b{word-spacing:4.973330px;}
.wsa{word-spacing:5.033106px;}
.wse{word-spacing:5.092881px;}
.ws46{word-spacing:5.212432px;}
.ws31{word-spacing:5.331984px;}
.ws2{word-spacing:5.391759px;}
.ws10{word-spacing:5.451535px;}
.ws19{word-spacing:5.511310px;}
.ws2e{word-spacing:5.690637px;}
.ws49{word-spacing:5.810188px;}
.ws20{word-spacing:5.989515px;}
.ws45{word-spacing:6.049291px;}
.ws7{word-spacing:6.121021px;}
.ws29{word-spacing:6.168842px;}
.ws65{word-spacing:6.228618px;}
.ws67{word-spacing:6.527496px;}
.ws54{word-spacing:6.647047px;}
.ws52{word-spacing:6.826374px;}
.ws4c{word-spacing:6.945925px;}
.ws66{word-spacing:7.065476px;}
.ws4f{word-spacing:7.125252px;}
.ws21{word-spacing:7.364354px;}
.ws63{word-spacing:7.424130px;}
.ws1d{word-spacing:7.483905px;}
.ws30{word-spacing:7.782783px;}
.ws5a{word-spacing:7.902334px;}
.wsf{word-spacing:8.021886px;}
.ws1c{word-spacing:8.141437px;}
.ws36{word-spacing:8.189257px;}
.ws33{word-spacing:8.249033px;}
.ws2a{word-spacing:8.260988px;}
.ws9{word-spacing:8.679417px;}
.ws1f{word-spacing:8.798968px;}
.ws5e{word-spacing:8.858744px;}
.ws59{word-spacing:9.217398px;}
.ws1{word-spacing:9.635827px;}
.ws5b{word-spacing:9.755378px;}
.ws44{word-spacing:9.815154px;}
.ws40{word-spacing:10.114032px;}
.ws6d{word-spacing:10.353134px;}
.ws35{word-spacing:10.711788px;}
.ws6f{word-spacing:10.831339px;}
.ws43{word-spacing:10.891114px;}
.ws1b{word-spacing:11.130217px;}
.ws11{word-spacing:11.249768px;}
.ws5f{word-spacing:11.309544px;}
.ws4e{word-spacing:11.369319px;}
.ws5c{word-spacing:11.608422px;}
.ws53{word-spacing:11.967075px;}
.ws4b{word-spacing:12.026851px;}
.ws1a{word-spacing:12.744158px;}
.ws3f{word-spacing:13.282138px;}
.ws5d{word-spacing:14.955855px;}
.ws15{word-spacing:19.845499px;}
.ws13{word-spacing:19.905275px;}
.ws12{word-spacing:22.834279px;}
.ws18{word-spacing:25.404630px;}
.ws6{word-spacing:26.827469px;}
.ws8{word-spacing:28.991166px;}
.ws1e{word-spacing:29.170493px;}
.ws0{word-spacing:30.987792px;}
.ws24{word-spacing:32.192873px;}
.ws23{word-spacing:44.071526px;}
._1{margin-left:-5.336786px;}
._b{margin-left:-3.842396px;}
._3{margin-left:-2.668393px;}
._6{margin-left:-1.059203px;}
._5{width:1.673717px;}
._2{width:2.840548px;}
._13{width:4.303843px;}
._17{width:5.826914px;}
._8{width:14.384411px;}
._a{width:17.074313px;}
._d{width:18.150274px;}
._12{width:19.644664px;}
._f{width:20.959727px;}
._15{width:22.155239px;}
._1c{width:23.632871px;}
._9{width:24.986201px;}
._16{width:26.241488px;}
._4{width:27.295940px;}
._18{width:28.534470px;}
._e{width:30.762925px;}
._7{width:32.876580px;}
._14{width:34.782144px;}
._11{width:36.142729px;}
._c{width:38.294651px;}
._1a{width:39.511672px;}
._1b{width:44.092884px;}
._1d{width:48.836665px;}
._10{width:50.211504px;}
._19{width:51.863712px;}
._0{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y24{bottom:134.047500px;}
.y92{bottom:178.879500px;}
.y6d{bottom:184.857000px;}
.y91{bottom:196.812000px;}
.y6c{bottom:202.789500px;}
.y90{bottom:214.744500px;}
.y47{bottom:214.890000px;}
.y6b{bottom:220.722000px;}
.y23{bottom:227.136000px;}
.y8f{bottom:232.677000px;}
.y46{bottom:232.822500px;}
.y6a{bottom:238.654500px;}
.y22{bottom:245.068500px;}
.y45{bottom:250.755000px;}
.y8e{bottom:260.391000px;}
.y21{bottom:263.001000px;}
.y69{bottom:268.542000px;}
.y44{bottom:268.689000px;}
.y8d{bottom:278.323500px;}
.y20{bottom:280.933500px;}
.y68{bottom:286.476000px;}
.y8c{bottom:296.257500px;}
.y43{bottom:298.576500px;}
.y1f{bottom:298.867500px;}
.y67{bottom:304.408500px;}
.y42{bottom:316.509000px;}
.y66{bottom:322.341000px;}
.y8b{bottom:323.971500px;}
.y1e{bottom:326.451000px;}
.y41{bottom:334.441500px;}
.y8a{bottom:341.904000px;}
.y65{bottom:352.228500px;}
.y40{bottom:352.374000px;}
.y89{bottom:359.836500px;}
.y1d{bottom:368.283000px;}
.y64{bottom:370.161000px;}
.y3f{bottom:382.261500px;}
.y1c{bottom:386.217000px;}
.y88{bottom:387.550500px;}
.y63{bottom:388.095000px;}
.y3e{bottom:400.195500px;}
.y1b{bottom:404.149500px;}
.y87{bottom:405.483000px;}
.y62{bottom:417.982500px;}
.y3d{bottom:418.128000px;}
.y1a{bottom:422.082000px;}
.y86{bottom:423.417000px;}
.y61{bottom:435.915000px;}
.y3c{bottom:436.060500px;}
.y19{bottom:440.014500px;}
.y85{bottom:441.349500px;}
.y60{bottom:453.847500px;}
.y18{bottom:457.947000px;}
.y3b{bottom:465.948000px;}
.y84{bottom:469.063500px;}
.y5f{bottom:471.780000px;}
.y17{bottom:475.879500px;}
.y3a{bottom:483.880500px;}
.y83{bottom:486.996000px;}
.y16{bottom:493.813500px;}
.y5e{bottom:501.669000px;}
.y39{bottom:501.814500px;}
.y82{bottom:504.928500px;}
.y5d{bottom:519.601500px;}
.y15{bottom:521.397000px;}
.y38{bottom:531.702000px;}
.y81{bottom:532.644000px;}
.y5c{bottom:537.534000px;}
.y37{bottom:549.634500px;}
.y80{bottom:550.576500px;}
.y14{bottom:563.229000px;}
.y5b{bottom:567.421500px;}
.y36{bottom:567.567000px;}
.y7f{bottom:568.509000px;}
.y13{bottom:581.163000px;}
.y5a{bottom:585.355500px;}
.y7e{bottom:596.223000px;}
.y35{bottom:597.456000px;}
.y59{bottom:603.288000px;}
.y12{bottom:608.746500px;}
.y7d{bottom:614.155500px;}
.y34{bottom:615.388500px;}
.y97{bottom:621.220500px;}
.y7c{bottom:632.088000px;}
.y58{bottom:633.175500px;}
.y33{bottom:633.321000px;}
.y96{bottom:639.153000px;}
.y11{bottom:650.578500px;}
.y57{bottom:651.108000px;}
.y7b{bottom:659.803500px;}
.y32{bottom:663.208500px;}
.y10{bottom:668.512500px;}
.y56{bottom:669.040500px;}
.y7a{bottom:677.736000px;}
.y31{bottom:681.141000px;}
.yf{bottom:686.445000px;}
.y95{bottom:686.974500px;}
.y79{bottom:695.668500px;}
.y55{bottom:698.929500px;}
.y30{bottom:699.075000px;}
.ye{bottom:704.377500px;}
.y94{bottom:704.907000px;}
.y54{bottom:716.862000px;}
.y2f{bottom:717.007500px;}
.yd{bottom:722.310000px;}
.y78{bottom:723.382500px;}
.y53{bottom:734.794500px;}
.yc{bottom:740.242500px;}
.y77{bottom:741.315000px;}
.y2e{bottom:746.895000px;}
.y52{bottom:752.727000px;}
.yb{bottom:758.175000px;}
.y76{bottom:759.247500px;}
.y2d{bottom:764.827500px;}
.y93{bottom:770.659500px;}
.ya{bottom:776.109000px;}
.y75{bottom:777.181500px;}
.y51{bottom:782.614500px;}
.y2c{bottom:782.760000px;}
.y9{bottom:794.041500px;}
.y74{bottom:795.114000px;}
.y50{bottom:800.548500px;}
.y8{bottom:811.974000px;}
.y2b{bottom:812.649000px;}
.y4f{bottom:818.481000px;}
.y73{bottom:822.828000px;}
.y2a{bottom:830.581500px;}
.y4e{bottom:836.413500px;}
.y7{bottom:839.557500px;}
.y72{bottom:840.760500px;}
.y71{bottom:858.693000px;}
.y29{bottom:860.469000px;}
.y4d{bottom:866.301000px;}
.y28{bottom:878.401500px;}
.y6{bottom:881.391000px;}
.y4c{bottom:884.233500px;}
.y70{bottom:886.407000px;}
.y5{bottom:899.323500px;}
.y4b{bottom:902.167500px;}
.y6f{bottom:904.341000px;}
.y27{bottom:908.290500px;}
.y4{bottom:917.256000px;}
.y4a{bottom:920.100000px;}
.y6e{bottom:922.273500px;}
.y26{bottom:926.223000px;}
.y3{bottom:935.188500px;}
.y49{bottom:949.987500px;}
.y2{bottom:953.121000px;}
.y25{bottom:958.954500px;}
.y48{bottom:967.920000px;}
.y1{bottom:985.852500px;}
.h4{height:42.799330px;}
.h2{height:44.831700px;}
.h3{height:50.211840px;}
.h1{height:60.254040px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:200.652000px;}
.x7{left:211.446000px;}
.x5{left:218.917500px;}
.x2{left:223.068000px;}
.x6{left:238.012500px;}
.x4{left:242.071500px;}
.x3{left:454.699500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsc{word-spacing:-14.760588pt;}
.ws17{word-spacing:-13.581016pt;}
.wsb{word-spacing:-2.964870pt;}
.ws3{word-spacing:-2.911736pt;}
.ws26{word-spacing:-2.433531pt;}
.ws6e{word-spacing:-2.327263pt;}
.ws4{word-spacing:-1.211452pt;}
.ws48{word-spacing:-0.945783pt;}
.ws4d{word-spacing:-0.308176pt;}
.ws22{word-spacing:0.000000pt;}
.ws47{word-spacing:0.223162pt;}
.ws38{word-spacing:0.276296pt;}
.wsd{word-spacing:0.435698pt;}
.ws68{word-spacing:0.541965pt;}
.ws3d{word-spacing:0.913903pt;}
.ws34{word-spacing:1.020170pt;}
.ws56{word-spacing:1.073304pt;}
.ws2f{word-spacing:1.179572pt;}
.ws64{word-spacing:1.445241pt;}
.ws60{word-spacing:1.498375pt;}
.ws6b{word-spacing:1.604643pt;}
.ws69{word-spacing:1.710911pt;}
.ws2d{word-spacing:1.764044pt;}
.ws57{word-spacing:2.029714pt;}
.ws37{word-spacing:2.082848pt;}
.ws50{word-spacing:2.135981pt;}
.ws25{word-spacing:2.295383pt;}
.ws2c{word-spacing:2.348517pt;}
.ws51{word-spacing:2.454785pt;}
.ws3b{word-spacing:2.561052pt;}
.ws61{word-spacing:2.879856pt;}
.ws5{word-spacing:2.932989pt;}
.ws14{word-spacing:2.986123pt;}
.ws62{word-spacing:3.092391pt;}
.ws3c{word-spacing:3.145525pt;}
.ws28{word-spacing:3.198659pt;}
.ws3e{word-spacing:3.251793pt;}
.ws41{word-spacing:3.304927pt;}
.ws32{word-spacing:3.411194pt;}
.ws55{word-spacing:3.676864pt;}
.ws27{word-spacing:3.729997pt;}
.ws58{word-spacing:3.783131pt;}
.ws39{word-spacing:3.942533pt;}
.ws6c{word-spacing:4.048801pt;}
.ws3a{word-spacing:4.101935pt;}
.ws42{word-spacing:4.155068pt;}
.ws4a{word-spacing:4.208202pt;}
.ws6a{word-spacing:4.261336pt;}
.ws16{word-spacing:4.271963pt;}
.ws2b{word-spacing:4.420738pt;}
.wsa{word-spacing:4.473872pt;}
.wse{word-spacing:4.527005pt;}
.ws46{word-spacing:4.633273pt;}
.ws31{word-spacing:4.739541pt;}
.ws2{word-spacing:4.792675pt;}
.ws10{word-spacing:4.845809pt;}
.ws19{word-spacing:4.898943pt;}
.ws2e{word-spacing:5.058344pt;}
.ws49{word-spacing:5.164612pt;}
.ws20{word-spacing:5.324013pt;}
.ws45{word-spacing:5.377147pt;}
.ws7{word-spacing:5.440908pt;}
.ws29{word-spacing:5.483415pt;}
.ws65{word-spacing:5.536549pt;}
.ws67{word-spacing:5.802218pt;}
.ws54{word-spacing:5.908486pt;}
.ws52{word-spacing:6.067888pt;}
.ws4c{word-spacing:6.174155pt;}
.ws66{word-spacing:6.280423pt;}
.ws4f{word-spacing:6.333557pt;}
.ws21{word-spacing:6.546092pt;}
.ws63{word-spacing:6.599226pt;}
.ws1d{word-spacing:6.652360pt;}
.ws30{word-spacing:6.918029pt;}
.ws5a{word-spacing:7.024297pt;}
.wsf{word-spacing:7.130565pt;}
.ws1c{word-spacing:7.236833pt;}
.ws36{word-spacing:7.279340pt;}
.ws33{word-spacing:7.332474pt;}
.ws2a{word-spacing:7.343100pt;}
.ws9{word-spacing:7.715037pt;}
.ws1f{word-spacing:7.821305pt;}
.ws5e{word-spacing:7.874439pt;}
.ws59{word-spacing:8.193242pt;}
.ws1{word-spacing:8.565179pt;}
.ws5b{word-spacing:8.671447pt;}
.ws44{word-spacing:8.724581pt;}
.ws40{word-spacing:8.990250pt;}
.ws6d{word-spacing:9.202786pt;}
.ws35{word-spacing:9.521589pt;}
.ws6f{word-spacing:9.627857pt;}
.ws43{word-spacing:9.680991pt;}
.ws1b{word-spacing:9.893526pt;}
.ws11{word-spacing:9.999794pt;}
.ws5f{word-spacing:10.052928pt;}
.ws4e{word-spacing:10.106061pt;}
.ws5c{word-spacing:10.318597pt;}
.ws53{word-spacing:10.637400pt;}
.ws4b{word-spacing:10.690534pt;}
.ws1a{word-spacing:11.328140pt;}
.ws3f{word-spacing:11.806345pt;}
.ws5d{word-spacing:13.294093pt;}
.ws15{word-spacing:17.640444pt;}
.ws13{word-spacing:17.693578pt;}
.ws12{word-spacing:20.297137pt;}
.ws18{word-spacing:22.581893pt;}
.ws6{word-spacing:23.846639pt;}
.ws8{word-spacing:25.769925pt;}
.ws1e{word-spacing:25.929327pt;}
.ws0{word-spacing:27.544704pt;}
.ws24{word-spacing:28.615887pt;}
.ws23{word-spacing:39.174690pt;}
._1{margin-left:-4.743810pt;}
._b{margin-left:-3.415463pt;}
._3{margin-left:-2.371905pt;}
._6{margin-left:-0.941514pt;}
._5{width:1.487748pt;}
._2{width:2.524931pt;}
._13{width:3.825638pt;}
._17{width:5.179479pt;}
._8{width:12.786143pt;}
._a{width:15.177167pt;}
._d{width:16.133577pt;}
._12{width:17.461923pt;}
._f{width:18.630868pt;}
._15{width:19.693546pt;}
._1c{width:21.006996pt;}
._9{width:22.209956pt;}
._16{width:23.325767pt;}
._4{width:24.263058pt;}
._18{width:25.363973pt;}
._e{width:27.344822pt;}
._7{width:29.223627pt;}
._14{width:30.917461pt;}
._11{width:32.126870pt;}
._c{width:34.039690pt;}
._1a{width:35.121486pt;}
._1b{width:39.193675pt;}
._1d{width:43.410369pt;}
._10{width:44.632448pt;}
._19{width:46.101077pt;}
._0{width:86.077200pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:119.153333pt;}
.y92{bottom:159.004000pt;}
.y6d{bottom:164.317333pt;}
.y91{bottom:174.944000pt;}
.y6c{bottom:180.257333pt;}
.y90{bottom:190.884000pt;}
.y47{bottom:191.013333pt;}
.y6b{bottom:196.197333pt;}
.y23{bottom:201.898667pt;}
.y8f{bottom:206.824000pt;}
.y46{bottom:206.953333pt;}
.y6a{bottom:212.137333pt;}
.y22{bottom:217.838667pt;}
.y45{bottom:222.893333pt;}
.y8e{bottom:231.458667pt;}
.y21{bottom:233.778667pt;}
.y69{bottom:238.704000pt;}
.y44{bottom:238.834667pt;}
.y8d{bottom:247.398667pt;}
.y20{bottom:249.718667pt;}
.y68{bottom:254.645333pt;}
.y8c{bottom:263.340000pt;}
.y43{bottom:265.401333pt;}
.y1f{bottom:265.660000pt;}
.y67{bottom:270.585333pt;}
.y42{bottom:281.341333pt;}
.y66{bottom:286.525333pt;}
.y8b{bottom:287.974667pt;}
.y1e{bottom:290.178667pt;}
.y41{bottom:297.281333pt;}
.y8a{bottom:303.914667pt;}
.y65{bottom:313.092000pt;}
.y40{bottom:313.221333pt;}
.y89{bottom:319.854667pt;}
.y1d{bottom:327.362667pt;}
.y64{bottom:329.032000pt;}
.y3f{bottom:339.788000pt;}
.y1c{bottom:343.304000pt;}
.y88{bottom:344.489333pt;}
.y63{bottom:344.973333pt;}
.y3e{bottom:355.729333pt;}
.y1b{bottom:359.244000pt;}
.y87{bottom:360.429333pt;}
.y62{bottom:371.540000pt;}
.y3d{bottom:371.669333pt;}
.y1a{bottom:375.184000pt;}
.y86{bottom:376.370667pt;}
.y61{bottom:387.480000pt;}
.y3c{bottom:387.609333pt;}
.y19{bottom:391.124000pt;}
.y85{bottom:392.310667pt;}
.y60{bottom:403.420000pt;}
.y18{bottom:407.064000pt;}
.y3b{bottom:414.176000pt;}
.y84{bottom:416.945333pt;}
.y5f{bottom:419.360000pt;}
.y17{bottom:423.004000pt;}
.y3a{bottom:430.116000pt;}
.y83{bottom:432.885333pt;}
.y16{bottom:438.945333pt;}
.y5e{bottom:445.928000pt;}
.y39{bottom:446.057333pt;}
.y82{bottom:448.825333pt;}
.y5d{bottom:461.868000pt;}
.y15{bottom:463.464000pt;}
.y38{bottom:472.624000pt;}
.y81{bottom:473.461333pt;}
.y5c{bottom:477.808000pt;}
.y37{bottom:488.564000pt;}
.y80{bottom:489.401333pt;}
.y14{bottom:500.648000pt;}
.y5b{bottom:504.374667pt;}
.y36{bottom:504.504000pt;}
.y7f{bottom:505.341333pt;}
.y13{bottom:516.589333pt;}
.y5a{bottom:520.316000pt;}
.y7e{bottom:529.976000pt;}
.y35{bottom:531.072000pt;}
.y59{bottom:536.256000pt;}
.y12{bottom:541.108000pt;}
.y7d{bottom:545.916000pt;}
.y34{bottom:547.012000pt;}
.y97{bottom:552.196000pt;}
.y7c{bottom:561.856000pt;}
.y58{bottom:562.822667pt;}
.y33{bottom:562.952000pt;}
.y96{bottom:568.136000pt;}
.y11{bottom:578.292000pt;}
.y57{bottom:578.762667pt;}
.y7b{bottom:586.492000pt;}
.y32{bottom:589.518667pt;}
.y10{bottom:594.233333pt;}
.y56{bottom:594.702667pt;}
.y7a{bottom:602.432000pt;}
.y31{bottom:605.458667pt;}
.yf{bottom:610.173333pt;}
.y95{bottom:610.644000pt;}
.y79{bottom:618.372000pt;}
.y55{bottom:621.270667pt;}
.y30{bottom:621.400000pt;}
.ye{bottom:626.113333pt;}
.y94{bottom:626.584000pt;}
.y54{bottom:637.210667pt;}
.y2f{bottom:637.340000pt;}
.yd{bottom:642.053333pt;}
.y78{bottom:643.006667pt;}
.y53{bottom:653.150667pt;}
.yc{bottom:657.993333pt;}
.y77{bottom:658.946667pt;}
.y2e{bottom:663.906667pt;}
.y52{bottom:669.090667pt;}
.yb{bottom:673.933333pt;}
.y76{bottom:674.886667pt;}
.y2d{bottom:679.846667pt;}
.y93{bottom:685.030667pt;}
.ya{bottom:689.874667pt;}
.y75{bottom:690.828000pt;}
.y51{bottom:695.657333pt;}
.y2c{bottom:695.786667pt;}
.y9{bottom:705.814667pt;}
.y74{bottom:706.768000pt;}
.y50{bottom:711.598667pt;}
.y8{bottom:721.754667pt;}
.y2b{bottom:722.354667pt;}
.y4f{bottom:727.538667pt;}
.y73{bottom:731.402667pt;}
.y2a{bottom:738.294667pt;}
.y4e{bottom:743.478667pt;}
.y7{bottom:746.273333pt;}
.y72{bottom:747.342667pt;}
.y71{bottom:763.282667pt;}
.y29{bottom:764.861333pt;}
.y4d{bottom:770.045333pt;}
.y28{bottom:780.801333pt;}
.y6{bottom:783.458667pt;}
.y4c{bottom:785.985333pt;}
.y70{bottom:787.917333pt;}
.y5{bottom:799.398667pt;}
.y4b{bottom:801.926667pt;}
.y6f{bottom:803.858667pt;}
.y27{bottom:807.369333pt;}
.y4{bottom:815.338667pt;}
.y4a{bottom:817.866667pt;}
.y6e{bottom:819.798667pt;}
.y26{bottom:823.309333pt;}
.y3{bottom:831.278667pt;}
.y49{bottom:844.433333pt;}
.y2{bottom:847.218667pt;}
.y25{bottom:852.404000pt;}
.y48{bottom:860.373333pt;}
.y1{bottom:876.313333pt;}
.h4{height:38.043849pt;}
.h2{height:39.850400pt;}
.h3{height:44.632747pt;}
.h1{height:53.559147pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:178.357333pt;}
.x7{left:187.952000pt;}
.x5{left:194.593333pt;}
.x2{left:198.282667pt;}
.x6{left:211.566667pt;}
.x4{left:215.174667pt;}
.x3{left:404.177333pt;}
}




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