
    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_46edbca8350d70d096c14f3d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.083000;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_a5140b5dabcc3c8d4ae22f0c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_a532e37c56d2ea45ea5b7f63.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.137000;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_80b3d91ed4f4565fdfd08043.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983000;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_0680726a277a4d000d0aeff2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.137000;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_d3fd9acdd45901ef5bbde1e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064000;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:ff7;src:url('chunks/assets/font_ada4c8ffadbdf799f8d813c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.056000;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:ff8;src:url('chunks/assets/font_e313adc9ffc29589524db6ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.061000;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:ff9;src:url('chunks/assets/font_14501331bcc22e9fec2059d1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005000;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:ffa;src:url('chunks/assets/font_dd62baa9b3ec5c996a3a93f4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.137000;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:ffb;src:url('chunks/assets/font_74cd97b3efa3104532dcd584.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.083000;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:ffc;src:url('chunks/assets/font_6defa040b965e7465fa6fbe6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.731000;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);}
.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;}
}
.ws9{word-spacing:-39.596919px;}
.ws1{word-spacing:-23.098203px;}
.ws2{word-spacing:-18.006785px;}
.ws0{word-spacing:-16.498716px;}
.ws7{word-spacing:-15.001902px;}
.ws8{word-spacing:-12.004672px;}
.ws6{word-spacing:-10.504681px;}
.ws4{word-spacing:-6.996050px;}
.ws5{word-spacing:-5.901460px;}
.ws3{word-spacing:0.000000px;}
._29{margin-left:-1.003565px;}
._f{width:1.326248px;}
._a{width:2.965530px;}
._2e{width:4.006966px;}
._27{width:5.295190px;}
._20{width:6.819788px;}
._8{width:8.112684px;}
._10{width:9.234433px;}
._3a{width:10.566160px;}
._1{width:12.089674px;}
._23{width:13.098840px;}
._34{width:14.209787px;}
._15{width:15.268021px;}
._9{width:18.479283px;}
._1f{width:20.413003px;}
._1a{width:21.583484px;}
._22{width:22.653446px;}
._13{width:24.676402px;}
._12{width:25.913433px;}
._37{width:27.954767px;}
._24{width:29.549975px;}
._d{width:31.114637px;}
._c{width:33.152956px;}
._e{width:35.349603px;}
._11{width:36.786036px;}
._3d{width:37.859553px;}
._1d{width:39.074656px;}
._17{width:40.202531px;}
._2f{width:42.072260px;}
._2a{width:43.919024px;}
._5{width:45.789339px;}
._31{width:46.885985px;}
._18{width:48.112405px;}
._0{width:49.218867px;}
._30{width:51.397227px;}
._3{width:52.845182px;}
._28{width:55.393773px;}
._32{width:57.030281px;}
._21{width:59.699879px;}
._4{width:60.953226px;}
._33{width:63.202177px;}
._7{width:64.677126px;}
._b{width:66.178055px;}
._40{width:68.645652px;}
._3f{width:69.769421px;}
._3e{width:72.571474px;}
._25{width:73.762661px;}
._39{width:75.814688px;}
._36{width:77.269002px;}
._1b{width:78.350927px;}
._1c{width:79.731290px;}
._19{width:81.162106px;}
._26{width:84.498746px;}
._41{width:85.793226px;}
._35{width:89.295510px;}
._43{width:90.900297px;}
._38{width:95.033165px;}
._2{width:97.285194px;}
._2d{width:100.261560px;}
._3c{width:101.730582px;}
._16{width:105.453654px;}
._14{width:106.749535px;}
._2c{width:111.438123px;}
._42{width:114.824034px;}
._44{width:142.322869px;}
._6{width:143.767749px;}
._2b{width:145.547425px;}
._1e{width:202.743843px;}
._45{width:211.504459px;}
._3b{width:225.833750px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(1,52,44);}
.fc0{color:rgb(0,76,62);}
.fs5{font-size:18.675507px;}
.fs4{font-size:27.984200px;}
.fs6{font-size:29.750527px;}
.fsa{font-size:42.016298px;}
.fs7{font-size:42.018724px;}
.fs9{font-size:48.018688px;}
.fs3{font-size:54.020354px;}
.fs8{font-size:60.007609px;}
.fs1{font-size:65.994864px;}
.fs2{font-size:72.027138px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y96{bottom:5.908244px;}
.y95{bottom:15.825087px;}
.y91{bottom:20.655020px;}
.y94{bottom:25.741929px;}
.y8f{bottom:26.805576px;}
.y93{bottom:35.658772px;}
.y8e{bottom:45.161507px;}
.y92{bottom:45.575614px;}
.y90{bottom:46.034751px;}
.y8d{bottom:62.299846px;}
.y85{bottom:83.926619px;}
.y52{bottom:89.069560px;}
.y2b{bottom:89.294647px;}
.y84{bottom:106.435099px;}
.y51{bottom:111.578041px;}
.y2a{bottom:111.803128px;}
.y83{bottom:128.943580px;}
.y50{bottom:134.086522px;}
.y29{bottom:134.311608px;}
.y97{bottom:135.166209px;}
.y5e{bottom:140.406599px;}
.y82{bottom:151.452061px;}
.y28{bottom:156.820089px;}
.y5d{bottom:162.915079px;}
.y81{bottom:173.960541px;}
.y4f{bottom:179.103483px;}
.y27{bottom:179.328569px;}
.y5c{bottom:185.423560px;}
.y80{bottom:196.469022px;}
.y4e{bottom:201.611964px;}
.y26{bottom:201.837050px;}
.y5b{bottom:207.932041px;}
.y7f{bottom:218.977503px;}
.y25{bottom:224.345531px;}
.y5a{bottom:230.440521px;}
.y9b{bottom:232.332583px;}
.y7e{bottom:241.485983px;}
.y4d{bottom:246.628925px;}
.y24{bottom:246.854011px;}
.y7d{bottom:263.994464px;}
.y98{bottom:267.796056px;}
.y4c{bottom:269.137406px;}
.y23{bottom:269.362492px;}
.y86{bottom:277.633323px;}
.y7c{bottom:286.502945px;}
.y4b{bottom:291.645886px;}
.y22{bottom:291.870973px;}
.y4a{bottom:314.154367px;}
.y21{bottom:314.379453px;}
.y8c{bottom:324.000732px;}
.y7b{bottom:331.519906px;}
.y49{bottom:336.662848px;}
.y20{bottom:336.887934px;}
.y9a{bottom:340.873584px;}
.y8b{bottom:342.007517px;}
.y7a{bottom:354.028387px;}
.y48{bottom:359.171328px;}
.y1f{bottom:359.396415px;}
.y99{bottom:368.453924px;}
.y79{bottom:376.536867px;}
.y47{bottom:381.679809px;}
.y78{bottom:399.045348px;}
.y1e{bottom:404.413376px;}
.yb8{bottom:410.833000px;}
.y77{bottom:421.553829px;}
.y46{bottom:426.696770px;}
.y1d{bottom:426.921857px;}
.yb7{bottom:433.341481px;}
.y76{bottom:444.062309px;}
.y45{bottom:449.205251px;}
.y1c{bottom:449.430337px;}
.yb6{bottom:455.849962px;}
.y75{bottom:466.570790px;}
.y44{bottom:471.713732px;}
.y1b{bottom:471.938818px;}
.yb5{bottom:478.358442px;}
.y74{bottom:489.079271px;}
.y43{bottom:494.222212px;}
.y1a{bottom:494.447299px;}
.yb4{bottom:500.866923px;}
.y73{bottom:511.587751px;}
.y42{bottom:516.730693px;}
.y19{bottom:516.955779px;}
.yb3{bottom:523.375404px;}
.y72{bottom:534.096232px;}
.y41{bottom:539.239174px;}
.y18{bottom:539.464260px;}
.yb2{bottom:545.883884px;}
.y71{bottom:556.604713px;}
.y40{bottom:561.747654px;}
.y17{bottom:561.972741px;}
.y70{bottom:579.113193px;}
.y3f{bottom:584.256135px;}
.y16{bottom:584.481221px;}
.yb1{bottom:591.951290px;}
.yd0{bottom:594.789389px;}
.y6f{bottom:601.621674px;}
.y3e{bottom:606.764616px;}
.y15{bottom:606.989702px;}
.ycf{bottom:617.297870px;}
.y6e{bottom:624.130155px;}
.y3d{bottom:629.273096px;}
.y14{bottom:629.498183px;}
.yb0{bottom:638.018608px;}
.yce{bottom:639.806350px;}
.y6d{bottom:646.638635px;}
.y3c{bottom:651.781577px;}
.y13{bottom:652.006663px;}
.yaf{bottom:660.527089px;}
.ycd{bottom:662.314831px;}
.y6c{bottom:669.147116px;}
.y3b{bottom:674.290058px;}
.yae{bottom:683.035570px;}
.ycc{bottom:684.823312px;}
.y6b{bottom:691.655597px;}
.y12{bottom:697.023625px;}
.yad{bottom:705.544050px;}
.ycb{bottom:707.331792px;}
.y3a{bottom:719.307019px;}
.y11{bottom:719.532105px;}
.yac{bottom:728.052531px;}
.yca{bottom:729.840273px;}
.y6a{bottom:736.672558px;}
.y39{bottom:741.815500px;}
.y10{bottom:742.040586px;}
.yab{bottom:750.561012px;}
.yc9{bottom:752.348754px;}
.y69{bottom:759.181039px;}
.y38{bottom:764.323980px;}
.yf{bottom:764.549067px;}
.yaa{bottom:773.069492px;}
.yc8{bottom:774.857234px;}
.y68{bottom:781.689519px;}
.y37{bottom:786.832461px;}
.ye{bottom:787.057547px;}
.ya9{bottom:795.577973px;}
.y67{bottom:804.198000px;}
.y36{bottom:809.340942px;}
.yd{bottom:809.566028px;}
.ya8{bottom:818.086454px;}
.yc7{bottom:820.924547px;}
.y66{bottom:826.706481px;}
.y35{bottom:831.849422px;}
.yc{bottom:832.074509px;}
.ya7{bottom:840.594934px;}
.y65{bottom:849.214961px;}
.y34{bottom:854.357903px;}
.yb{bottom:854.582989px;}
.yc6{bottom:866.866642px;}
.y64{bottom:871.723442px;}
.y33{bottom:876.866384px;}
.ya{bottom:877.091470px;}
.ya6{bottom:886.662315px;}
.yc5{bottom:889.375123px;}
.y8a{bottom:889.437644px;}
.y63{bottom:894.231923px;}
.y32{bottom:899.374864px;}
.y9{bottom:899.599951px;}
.yc4{bottom:911.883604px;}
.y89{bottom:911.946125px;}
.y62{bottom:916.740403px;}
.y31{bottom:921.883345px;}
.y8{bottom:922.108431px;}
.ya4{bottom:932.729640px;}
.yc3{bottom:934.392084px;}
.y88{bottom:934.454606px;}
.y61{bottom:939.248884px;}
.y30{bottom:944.391826px;}
.y7{bottom:944.616912px;}
.ya3{bottom:955.238121px;}
.yc2{bottom:956.900565px;}
.y2f{bottom:966.900306px;}
.y6{bottom:967.125393px;}
.ya2{bottom:977.746602px;}
.yc1{bottom:979.409046px;}
.y87{bottom:981.868710px;}
.y60{bottom:984.265845px;}
.y2e{bottom:989.408787px;}
.y5{bottom:989.633873px;}
.ya1{bottom:1000.255082px;}
.yc0{bottom:1001.917526px;}
.y5f{bottom:1006.774326px;}
.y2d{bottom:1011.917268px;}
.ya0{bottom:1022.763563px;}
.ybf{bottom:1024.426007px;}
.y59{bottom:1029.282806px;}
.y53{bottom:1033.450376px;}
.y2c{bottom:1034.425748px;}
.y9f{bottom:1045.272044px;}
.ybe{bottom:1046.934488px;}
.y58{bottom:1051.791287px;}
.y9e{bottom:1067.780524px;}
.ybd{bottom:1069.442968px;}
.y57{bottom:1074.299768px;}
.y4{bottom:1077.751804px;}
.y9d{bottom:1090.289005px;}
.ybc{bottom:1091.951449px;}
.y56{bottom:1096.808248px;}
.y9c{bottom:1112.797486px;}
.ybb{bottom:1114.459930px;}
.y55{bottom:1119.316729px;}
.yba{bottom:1136.968410px;}
.y3{bottom:1139.147004px;}
.y54{bottom:1141.825210px;}
.ya5{bottom:1158.501519px;}
.yb9{bottom:1159.476891px;}
.y2{bottom:1168.408029px;}
.h8{height:15.033783px;}
.h7{height:22.751155px;}
.ha{height:24.187179px;}
.hb{height:34.161222px;}
.he{height:37.436521px;}
.hd{height:42.784651px;}
.h6{height:43.918547px;}
.hc{height:48.786186px;}
.h9{height:53.639998px;}
.h4{height:58.801424px;}
.h5{height:59.638470px;}
.h3{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:43.552352px;}
.x6{left:47.252981px;}
.xc{left:52.982801px;}
.x1{left:108.510420px;}
.xa{left:119.519995px;}
.xb{left:127.283452px;}
.x2{left:268.303054px;}
.x4{left:464.800938px;}
.x5{left:492.848615px;}
.x9{left:496.419632px;}
.x8{left:618.659038px;}
.x7{left:620.563834px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws9{word-spacing:-35.197261pt;}
.ws1{word-spacing:-20.531736pt;}
.ws2{word-spacing:-16.006031pt;}
.ws0{word-spacing:-14.665525pt;}
.ws7{word-spacing:-13.335024pt;}
.ws8{word-spacing:-10.670820pt;}
.ws6{word-spacing:-9.337494pt;}
.ws4{word-spacing:-6.218711pt;}
.ws5{word-spacing:-5.245742pt;}
.ws3{word-spacing:0.000000pt;}
._29{margin-left:-0.892058pt;}
._f{width:1.178887pt;}
._a{width:2.636027pt;}
._2e{width:3.561748pt;}
._27{width:4.706835pt;}
._20{width:6.062034pt;}
._8{width:7.211275pt;}
._10{width:8.208385pt;}
._3a{width:9.392142pt;}
._1{width:10.746377pt;}
._23{width:11.643413pt;}
._34{width:12.630921pt;}
._15{width:13.571575pt;}
._9{width:16.426029pt;}
._1f{width:18.144891pt;}
._1a{width:19.185319pt;}
._22{width:20.136397pt;}
._13{width:21.934579pt;}
._12{width:23.034163pt;}
._37{width:24.848681pt;}
._24{width:26.266645pt;}
._d{width:27.657455pt;}
._c{width:29.469294pt;}
._e{width:31.421869pt;}
._11{width:32.698698pt;}
._3d{width:33.652936pt;}
._1d{width:34.733027pt;}
._17{width:35.735583pt;}
._2f{width:37.397564pt;}
._2a{width:39.039132pt;}
._5{width:40.701635pt;}
._31{width:41.676431pt;}
._18{width:42.766582pt;}
._0{width:43.750104pt;}
._30{width:45.686424pt;}
._3{width:46.973495pt;}
._28{width:49.238909pt;}
._32{width:50.693583pt;}
._21{width:53.066559pt;}
._4{width:54.180646pt;}
._33{width:56.179713pt;}
._7{width:57.490779pt;}
._b{width:58.824938pt;}
._40{width:61.018357pt;}
._3f{width:62.017263pt;}
._3e{width:64.507977pt;}
._25{width:65.566809pt;}
._39{width:67.390834pt;}
._36{width:68.683557pt;}
._1b{width:69.645268pt;}
._1c{width:70.872258pt;}
._19{width:72.144094pt;}
._26{width:75.109996pt;}
._41{width:76.260645pt;}
._35{width:79.373786pt;}
._43{width:80.800264pt;}
._38{width:84.473924pt;}
._2{width:86.475728pt;}
._2d{width:89.121387pt;}
._3c{width:90.427184pt;}
._16{width:93.736581pt;}
._14{width:94.888476pt;}
._2c{width:99.056110pt;}
._42{width:102.065808pt;}
._44{width:126.509217pt;}
._6{width:127.793555pt;}
._2b{width:129.375489pt;}
._1e{width:180.216749pt;}
._45{width:188.003963pt;}
._3b{width:200.741111pt;}
.fs5{font-size:16.600451pt;}
.fs4{font-size:24.874844pt;}
.fs6{font-size:26.444913pt;}
.fsa{font-size:37.347820pt;}
.fs7{font-size:37.349977pt;}
.fs9{font-size:42.683279pt;}
.fs3{font-size:48.018092pt;}
.fs8{font-size:53.340097pt;}
.fs1{font-size:58.662102pt;}
.fs2{font-size:64.024123pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y96{bottom:5.251773pt;}
.y95{bottom:14.066744pt;}
.y91{bottom:18.360018pt;}
.y94{bottom:22.881715pt;}
.y8f{bottom:23.827178pt;}
.y93{bottom:31.696686pt;}
.y8e{bottom:40.143562pt;}
.y92{bottom:40.511657pt;}
.y90{bottom:40.919779pt;}
.y8d{bottom:55.377641pt;}
.y85{bottom:74.601439pt;}
.y52{bottom:79.172943pt;}
.y2b{bottom:79.373019pt;}
.y84{bottom:94.608977pt;}
.y51{bottom:99.180481pt;}
.y2a{bottom:99.380558pt;}
.y83{bottom:114.616516pt;}
.y50{bottom:119.188019pt;}
.y29{bottom:119.388096pt;}
.y97{bottom:120.147742pt;}
.y5e{bottom:124.805866pt;}
.y82{bottom:134.624054pt;}
.y28{bottom:139.395635pt;}
.y5d{bottom:144.813404pt;}
.y81{bottom:154.631592pt;}
.y4f{bottom:159.203096pt;}
.y27{bottom:159.403173pt;}
.y5c{bottom:164.820942pt;}
.y80{bottom:174.639131pt;}
.y4e{bottom:179.210634pt;}
.y26{bottom:179.410711pt;}
.y5b{bottom:184.828481pt;}
.y7f{bottom:194.646669pt;}
.y25{bottom:199.418250pt;}
.y5a{bottom:204.836019pt;}
.y9b{bottom:206.517851pt;}
.y7e{bottom:214.654207pt;}
.y4d{bottom:219.225711pt;}
.y24{bottom:219.425788pt;}
.y7d{bottom:234.661746pt;}
.y98{bottom:238.040939pt;}
.y4c{bottom:239.233250pt;}
.y23{bottom:239.433326pt;}
.y86{bottom:246.785176pt;}
.y7c{bottom:254.669284pt;}
.y4b{bottom:259.240788pt;}
.y22{bottom:259.440865pt;}
.y4a{bottom:279.248326pt;}
.y21{bottom:279.448403pt;}
.y8c{bottom:288.000651pt;}
.y7b{bottom:294.684361pt;}
.y49{bottom:299.255865pt;}
.y20{bottom:299.455941pt;}
.y9a{bottom:302.998741pt;}
.y8b{bottom:304.006682pt;}
.y7a{bottom:314.691899pt;}
.y48{bottom:319.263403pt;}
.y1f{bottom:319.463480pt;}
.y99{bottom:327.514599pt;}
.y79{bottom:334.699438pt;}
.y47{bottom:339.270941pt;}
.y78{bottom:354.706976pt;}
.y1e{bottom:359.478557pt;}
.yb8{bottom:365.184889pt;}
.y77{bottom:374.714514pt;}
.y46{bottom:379.286018pt;}
.y1d{bottom:379.486095pt;}
.yb7{bottom:385.192427pt;}
.y76{bottom:394.722053pt;}
.y45{bottom:399.293556pt;}
.y1c{bottom:399.493633pt;}
.yb6{bottom:405.199966pt;}
.y75{bottom:414.729591pt;}
.y44{bottom:419.301095pt;}
.y1b{bottom:419.501172pt;}
.yb5{bottom:425.207504pt;}
.y74{bottom:434.737129pt;}
.y43{bottom:439.308633pt;}
.y1a{bottom:439.508710pt;}
.yb4{bottom:445.215043pt;}
.y73{bottom:454.744668pt;}
.y42{bottom:459.316172pt;}
.y19{bottom:459.516248pt;}
.yb3{bottom:465.222581pt;}
.y72{bottom:474.752206pt;}
.y41{bottom:479.323710pt;}
.y18{bottom:479.523787pt;}
.yb2{bottom:485.230119pt;}
.y71{bottom:494.759745pt;}
.y40{bottom:499.331248pt;}
.y17{bottom:499.531325pt;}
.y70{bottom:514.767283pt;}
.y3f{bottom:519.338787pt;}
.y16{bottom:519.538863pt;}
.yb1{bottom:526.178925pt;}
.yd0{bottom:528.701679pt;}
.y6f{bottom:534.774821pt;}
.y3e{bottom:539.346325pt;}
.y15{bottom:539.546402pt;}
.ycf{bottom:548.709217pt;}
.y6e{bottom:554.782360pt;}
.y3d{bottom:559.353863pt;}
.y14{bottom:559.553940pt;}
.yb0{bottom:567.127652pt;}
.yce{bottom:568.716756pt;}
.y6d{bottom:574.789898pt;}
.y3c{bottom:579.361402pt;}
.y13{bottom:579.561479pt;}
.yaf{bottom:587.135190pt;}
.ycd{bottom:588.724294pt;}
.y6c{bottom:594.797436pt;}
.y3b{bottom:599.368940pt;}
.yae{bottom:607.142729pt;}
.ycc{bottom:608.731833pt;}
.y6b{bottom:614.804975pt;}
.y12{bottom:619.576555pt;}
.yad{bottom:627.150267pt;}
.ycb{bottom:628.739371pt;}
.y3a{bottom:639.384017pt;}
.y11{bottom:639.584094pt;}
.yac{bottom:647.157805pt;}
.yca{bottom:648.746909pt;}
.y6a{bottom:654.820051pt;}
.y39{bottom:659.391555pt;}
.y10{bottom:659.591632pt;}
.yab{bottom:667.165344pt;}
.yc9{bottom:668.754448pt;}
.y69{bottom:674.827590pt;}
.y38{bottom:679.399094pt;}
.yf{bottom:679.599170pt;}
.yaa{bottom:687.172882pt;}
.yc8{bottom:688.761986pt;}
.y68{bottom:694.835128pt;}
.y37{bottom:699.406632pt;}
.ye{bottom:699.606709pt;}
.ya9{bottom:707.180420pt;}
.y67{bottom:714.842667pt;}
.y36{bottom:719.414170pt;}
.yd{bottom:719.614247pt;}
.ya8{bottom:727.187959pt;}
.yc7{bottom:729.710708pt;}
.y66{bottom:734.850205pt;}
.y35{bottom:739.421709pt;}
.yc{bottom:739.621786pt;}
.ya7{bottom:747.195497pt;}
.y65{bottom:754.857743pt;}
.y34{bottom:759.429247pt;}
.yb{bottom:759.629324pt;}
.yc6{bottom:770.548127pt;}
.y64{bottom:774.865282pt;}
.y33{bottom:779.436785pt;}
.ya{bottom:779.636862pt;}
.ya6{bottom:788.144280pt;}
.yc5{bottom:790.555665pt;}
.y8a{bottom:790.611239pt;}
.y63{bottom:794.872820pt;}
.y32{bottom:799.444324pt;}
.y9{bottom:799.644401pt;}
.yc4{bottom:810.563203pt;}
.y89{bottom:810.618778pt;}
.y62{bottom:814.880358pt;}
.y31{bottom:819.451862pt;}
.y8{bottom:819.651939pt;}
.ya4{bottom:829.093014pt;}
.yc3{bottom:830.570742pt;}
.y88{bottom:830.626316pt;}
.y61{bottom:834.887897pt;}
.y30{bottom:839.459401pt;}
.y7{bottom:839.659477pt;}
.ya3{bottom:849.100552pt;}
.yc2{bottom:850.578280pt;}
.y2f{bottom:859.466939pt;}
.y6{bottom:859.667016pt;}
.ya2{bottom:869.108091pt;}
.yc1{bottom:870.585818pt;}
.y87{bottom:872.772187pt;}
.y60{bottom:874.902973pt;}
.y2e{bottom:879.474477pt;}
.y5{bottom:879.674554pt;}
.ya1{bottom:889.115629pt;}
.yc0{bottom:890.593357pt;}
.y5f{bottom:894.910512pt;}
.y2d{bottom:899.482016pt;}
.ya0{bottom:909.123167pt;}
.ybf{bottom:910.600895pt;}
.y59{bottom:914.918050pt;}
.y53{bottom:918.622556pt;}
.y2c{bottom:919.489554pt;}
.y9f{bottom:929.130706pt;}
.ybe{bottom:930.608434pt;}
.y58{bottom:934.925589pt;}
.y9e{bottom:949.138244pt;}
.ybd{bottom:950.615972pt;}
.y57{bottom:954.933127pt;}
.y4{bottom:958.001604pt;}
.y9d{bottom:969.145782pt;}
.ybc{bottom:970.623510pt;}
.y56{bottom:974.940665pt;}
.y9c{bottom:989.153321pt;}
.ybb{bottom:990.631049pt;}
.y55{bottom:994.948204pt;}
.yba{bottom:1010.638587pt;}
.y3{bottom:1012.575115pt;}
.y54{bottom:1014.955742pt;}
.ya5{bottom:1029.779128pt;}
.yb9{bottom:1030.646125pt;}
.y2{bottom:1038.584915pt;}
.h8{height:13.363363pt;}
.h7{height:20.223249pt;}
.ha{height:21.499714pt;}
.hb{height:30.365531pt;}
.he{height:33.276908pt;}
.hd{height:38.030801pt;}
.h6{height:39.038709pt;}
.hc{height:43.365499pt;}
.h9{height:47.679998pt;}
.h4{height:52.267933pt;}
.h5{height:53.011974pt;}
.h3{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:38.713202pt;}
.x6{left:42.002650pt;}
.xc{left:47.095823pt;}
.x1{left:96.453707pt;}
.xa{left:106.239996pt;}
.xb{left:113.140846pt;}
.x2{left:238.491603pt;}
.x4{left:413.156389pt;}
.x5{left:438.087658pt;}
.x9{left:441.261895pt;}
.x8{left:549.919145pt;}
.x7{left:551.612297pt;}
}




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