
    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_b475fdacb69b48d02721e90d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914000;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_7ef8385da1a2e4a73858a1a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.846000;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_772c00d839afa07241a8edd6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933000;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_f0a268dd425e881f65e03a55.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914000;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_7adccc6cad9e0b5f1c1e5c00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932000;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_65156893b6b4f3a2434fbe55.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932000;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_f0a268dd425e881f65e03a55.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914000;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_491d51f7512f0f74ba2b8cd2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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;}
.ls14{letter-spacing:-1.020000px;}
.ls13{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.063000px;}
.lse{letter-spacing:0.126000px;}
.ls18{letter-spacing:0.189000px;}
.ls4{letter-spacing:0.252000px;}
.ls10{letter-spacing:0.315000px;}
.lsa{letter-spacing:0.441000px;}
.ls19{letter-spacing:0.567000px;}
.lsb{letter-spacing:0.661500px;}
.ls2{letter-spacing:0.693000px;}
.ls16{letter-spacing:0.756000px;}
.ls1d{letter-spacing:0.787500px;}
.ls15{letter-spacing:0.819000px;}
.lsd{letter-spacing:0.850500px;}
.ls1a{letter-spacing:0.882000px;}
.ls20{letter-spacing:0.945000px;}
.ls9{letter-spacing:1.039500px;}
.ls8{letter-spacing:1.071000px;}
.ls17{letter-spacing:1.134000px;}
.ls11{letter-spacing:1.197000px;}
.ls7{letter-spacing:1.260000px;}
.ls1e{letter-spacing:1.323000px;}
.ls12{letter-spacing:1.386000px;}
.lsc{letter-spacing:1.449000px;}
.lsf{letter-spacing:1.575000px;}
.ls1b{letter-spacing:1.795500px;}
.ls1f{letter-spacing:1.827000px;}
.ls1c{letter-spacing:1.890000px;}
.ls6{letter-spacing:2.016000px;}
.ls5{letter-spacing:2.331000px;}
.ls3{letter-spacing:2.457000px;}
.ls0{letter-spacing:1598.923800px;}
.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;}
}
.ws2a{word-spacing:-16.680000px;}
.ws21{word-spacing:-0.315000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:0.126000px;}
.ws39{word-spacing:0.252000px;}
.ws14{word-spacing:0.378000px;}
.ws5{word-spacing:0.567000px;}
.ws19{word-spacing:0.819000px;}
.ws18{word-spacing:0.945000px;}
.ws2{word-spacing:1.020000px;}
.ws2e{word-spacing:1.071000px;}
.ws22{word-spacing:1.134000px;}
.ws12{word-spacing:1.323000px;}
.ws34{word-spacing:1.449000px;}
.ws24{word-spacing:1.575000px;}
.ws13{word-spacing:1.701000px;}
.ws28{word-spacing:1.890000px;}
.ws38{word-spacing:2.142000px;}
.ws3e{word-spacing:2.205000px;}
.ws29{word-spacing:2.268000px;}
.ws1b{word-spacing:2.583000px;}
.ws33{word-spacing:2.709000px;}
.ws1c{word-spacing:2.772000px;}
.ws3b{word-spacing:2.898000px;}
.ws26{word-spacing:2.961000px;}
.ws1f{word-spacing:3.213000px;}
.ws40{word-spacing:3.276000px;}
.ws10{word-spacing:3.339000px;}
.ws44{word-spacing:3.402000px;}
.ws41{word-spacing:3.465000px;}
.ws32{word-spacing:3.528000px;}
.ws6{word-spacing:4.221000px;}
.ws3a{word-spacing:4.410000px;}
.ws23{word-spacing:4.536000px;}
.ws30{word-spacing:4.788000px;}
.ws36{word-spacing:4.851000px;}
.ws16{word-spacing:4.914000px;}
.ws2c{word-spacing:5.103000px;}
.ws17{word-spacing:5.166000px;}
.wse{word-spacing:5.229000px;}
.wsf{word-spacing:5.355000px;}
.ws37{word-spacing:5.481000px;}
.wsa{word-spacing:5.544000px;}
.wsd{word-spacing:5.607000px;}
.ws20{word-spacing:5.670000px;}
.ws1e{word-spacing:5.733000px;}
.ws3{word-spacing:6.048000px;}
.ws3f{word-spacing:6.237000px;}
.ws1a{word-spacing:6.300000px;}
.ws11{word-spacing:6.489000px;}
.ws15{word-spacing:6.804000px;}
.wsb{word-spacing:6.930000px;}
.ws25{word-spacing:6.993000px;}
.ws2f{word-spacing:7.371000px;}
.wsc{word-spacing:7.497000px;}
.ws42{word-spacing:7.686000px;}
.ws43{word-spacing:7.749000px;}
.ws27{word-spacing:7.812000px;}
.ws3c{word-spacing:7.875000px;}
.ws2d{word-spacing:8.001000px;}
.ws8{word-spacing:8.064000px;}
.ws35{word-spacing:8.190000px;}
.ws9{word-spacing:8.253000px;}
.ws2b{word-spacing:8.316000px;}
.ws31{word-spacing:8.505000px;}
.ws3d{word-spacing:8.631000px;}
.ws1d{word-spacing:8.694000px;}
.ws7{word-spacing:8.757000px;}
.ws1{word-spacing:9.324000px;}
._2{margin-left:-23.976000px;}
._5{margin-left:-20.853000px;}
._0{margin-left:-9.324000px;}
._3{margin-left:-2.457000px;}
._4{margin-left:-1.266300px;}
._1{width:1.020000px;}
._7{width:2.772000px;}
._6{width:8.731800px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:42.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.779550px;}
.y29{bottom:104.789550px;}
.y55{bottom:104.868300px;}
.y28{bottom:122.382300px;}
.y54{bottom:122.461050px;}
.y27{bottom:139.975050px;}
.y53{bottom:140.053800px;}
.y26{bottom:157.567800px;}
.y52{bottom:157.646550px;}
.y25{bottom:175.160550px;}
.y51{bottom:175.239300px;}
.y24{bottom:192.753300px;}
.y50{bottom:192.832050px;}
.y7b{bottom:205.252650px;}
.ya1{bottom:205.299900px;}
.y23{bottom:210.346050px;}
.y4f{bottom:210.424800px;}
.ya0{bottom:222.908400px;}
.y7a{bottom:223.097400px;}
.y22{bottom:227.938800px;}
.y4e{bottom:228.017550px;}
.y9f{bottom:240.516900px;}
.y79{bottom:240.942150px;}
.y21{bottom:245.531550px;}
.y4d{bottom:245.610300px;}
.y9e{bottom:258.125400px;}
.y78{bottom:258.786900px;}
.y20{bottom:271.928550px;}
.y4c{bottom:272.007300px;}
.y77{bottom:276.631650px;}
.y1f{bottom:289.521300px;}
.y4b{bottom:289.600050px;}
.y9d{bottom:293.326650px;}
.y76{bottom:303.280650px;}
.y1e{bottom:307.114050px;}
.y4a{bottom:307.192800px;}
.y9c{bottom:310.935150px;}
.y75{bottom:321.125400px;}
.y1d{bottom:324.706800px;}
.y49{bottom:324.785550px;}
.y9b{bottom:328.543650px;}
.y74{bottom:338.970150px;}
.y1c{bottom:342.299550px;}
.y48{bottom:342.378300px;}
.y9a{bottom:346.152150px;}
.y73{bottom:356.814900px;}
.y1b{bottom:359.892300px;}
.y47{bottom:359.971050px;}
.y99{bottom:363.760650px;}
.y72{bottom:374.659650px;}
.y1a{bottom:377.485050px;}
.y46{bottom:377.563800px;}
.y98{bottom:381.369150px;}
.y71{bottom:392.504400px;}
.y19{bottom:395.077800px;}
.y45{bottom:395.156550px;}
.y97{bottom:398.977650px;}
.y70{bottom:410.349150px;}
.y18{bottom:412.670550px;}
.y44{bottom:412.749300px;}
.y96{bottom:416.586150px;}
.y6f{bottom:428.193900px;}
.y17{bottom:430.263300px;}
.y43{bottom:430.342050px;}
.y95{bottom:434.194650px;}
.y6e{bottom:446.038650px;}
.y16{bottom:447.856050px;}
.y42{bottom:447.934800px;}
.y94{bottom:451.803150px;}
.y6d{bottom:463.883400px;}
.y41{bottom:465.527550px;}
.y93{bottom:469.411650px;}
.y15{bottom:474.253050px;}
.y6c{bottom:481.728150px;}
.y40{bottom:483.120300px;}
.y92{bottom:487.020150px;}
.y14{bottom:491.845800px;}
.y6b{bottom:499.572900px;}
.y3f{bottom:500.713050px;}
.y91{bottom:504.628650px;}
.y13{bottom:509.438550px;}
.y6a{bottom:517.417650px;}
.y3e{bottom:518.305800px;}
.y90{bottom:522.237150px;}
.y12{bottom:527.031300px;}
.y69{bottom:535.262400px;}
.y3d{bottom:535.898550px;}
.y8f{bottom:539.845650px;}
.y11{bottom:544.624050px;}
.y68{bottom:553.107150px;}
.y3c{bottom:553.491300px;}
.y8e{bottom:557.454150px;}
.y10{bottom:562.216800px;}
.y67{bottom:570.951900px;}
.y3b{bottom:571.084050px;}
.y8d{bottom:575.062650px;}
.yf{bottom:579.809550px;}
.y3a{bottom:588.676800px;}
.y66{bottom:588.796650px;}
.ye{bottom:597.402300px;}
.y8c{bottom:601.475400px;}
.y39{bottom:606.269550px;}
.y65{bottom:606.641400px;}
.yd{bottom:614.995050px;}
.y8b{bottom:619.083900px;}
.y38{bottom:623.862300px;}
.y64{bottom:624.486150px;}
.yc{bottom:632.587800px;}
.y8a{bottom:636.692400px;}
.y37{bottom:641.455050px;}
.y63{bottom:642.330900px;}
.yb{bottom:650.180550px;}
.y89{bottom:654.300900px;}
.y36{bottom:659.047800px;}
.y62{bottom:660.175650px;}
.ya{bottom:667.773300px;}
.y88{bottom:671.909400px;}
.y35{bottom:685.444800px;}
.y61{bottom:686.824650px;}
.y87{bottom:689.517900px;}
.y34{bottom:703.037550px;}
.y60{bottom:704.669400px;}
.y86{bottom:707.126400px;}
.y9{bottom:719.679000px;}
.y33{bottom:720.630300px;}
.y5f{bottom:722.514150px;}
.y85{bottom:724.734900px;}
.y32{bottom:738.223050px;}
.y8{bottom:738.868500px;}
.y5e{bottom:740.358900px;}
.y84{bottom:742.343400px;}
.y31{bottom:755.815800px;}
.y5d{bottom:758.203650px;}
.y83{bottom:759.951900px;}
.y7{bottom:761.260500px;}
.y30{bottom:773.408550px;}
.y5c{bottom:776.048400px;}
.y82{bottom:777.560400px;}
.y6{bottom:783.652500px;}
.y2f{bottom:791.001300px;}
.y5b{bottom:793.893150px;}
.y81{bottom:795.168900px;}
.y2e{bottom:808.594050px;}
.y5a{bottom:811.737900px;}
.y80{bottom:812.777400px;}
.y5{bottom:818.791350px;}
.y2d{bottom:826.186800px;}
.y59{bottom:829.582650px;}
.y7f{bottom:830.385900px;}
.y2c{bottom:843.779550px;}
.y4{bottom:845.795850px;}
.y58{bottom:847.427400px;}
.y7e{bottom:847.994400px;}
.y2b{bottom:861.372300px;}
.y57{bottom:865.272150px;}
.y7d{bottom:865.602900px;}
.y3{bottom:872.800350px;}
.y2a{bottom:878.965050px;}
.y56{bottom:883.116900px;}
.y7c{bottom:883.211400px;}
.y2{bottom:927.831150px;}
.h3{height:30.324000px;}
.h6{height:44.100000px;}
.h2{height:46.200000px;}
.h5{height:50.400000px;}
.h4{height:71.400000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x7{left:103.150200px;}
.x6{left:104.536200px;}
.x9{left:106.299150px;}
.x5{left:176.932200px;}
.x3{left:193.241550px;}
.x8{left:236.908950px;}
.x4{left:241.513050px;}
.xa{left:375.797400px;}
.xb{left:397.059900px;}
.x2{left:429.161250px;}
.xe{left:430.720350px;}
.xd{left:441.619350px;}
.xc{left:489.483600px;}
.xf{left:533.331600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.906667pt;}
.ls13{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.056000pt;}
.lse{letter-spacing:0.112000pt;}
.ls18{letter-spacing:0.168000pt;}
.ls4{letter-spacing:0.224000pt;}
.ls10{letter-spacing:0.280000pt;}
.lsa{letter-spacing:0.392000pt;}
.ls19{letter-spacing:0.504000pt;}
.lsb{letter-spacing:0.588000pt;}
.ls2{letter-spacing:0.616000pt;}
.ls16{letter-spacing:0.672000pt;}
.ls1d{letter-spacing:0.700000pt;}
.ls15{letter-spacing:0.728000pt;}
.lsd{letter-spacing:0.756000pt;}
.ls1a{letter-spacing:0.784000pt;}
.ls20{letter-spacing:0.840000pt;}
.ls9{letter-spacing:0.924000pt;}
.ls8{letter-spacing:0.952000pt;}
.ls17{letter-spacing:1.008000pt;}
.ls11{letter-spacing:1.064000pt;}
.ls7{letter-spacing:1.120000pt;}
.ls1e{letter-spacing:1.176000pt;}
.ls12{letter-spacing:1.232000pt;}
.lsc{letter-spacing:1.288000pt;}
.lsf{letter-spacing:1.400000pt;}
.ls1b{letter-spacing:1.596000pt;}
.ls1f{letter-spacing:1.624000pt;}
.ls1c{letter-spacing:1.680000pt;}
.ls6{letter-spacing:1.792000pt;}
.ls5{letter-spacing:2.072000pt;}
.ls3{letter-spacing:2.184000pt;}
.ls0{letter-spacing:1421.265600pt;}
.ws2a{word-spacing:-14.826667pt;}
.ws21{word-spacing:-0.280000pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:0.112000pt;}
.ws39{word-spacing:0.224000pt;}
.ws14{word-spacing:0.336000pt;}
.ws5{word-spacing:0.504000pt;}
.ws19{word-spacing:0.728000pt;}
.ws18{word-spacing:0.840000pt;}
.ws2{word-spacing:0.906667pt;}
.ws2e{word-spacing:0.952000pt;}
.ws22{word-spacing:1.008000pt;}
.ws12{word-spacing:1.176000pt;}
.ws34{word-spacing:1.288000pt;}
.ws24{word-spacing:1.400000pt;}
.ws13{word-spacing:1.512000pt;}
.ws28{word-spacing:1.680000pt;}
.ws38{word-spacing:1.904000pt;}
.ws3e{word-spacing:1.960000pt;}
.ws29{word-spacing:2.016000pt;}
.ws1b{word-spacing:2.296000pt;}
.ws33{word-spacing:2.408000pt;}
.ws1c{word-spacing:2.464000pt;}
.ws3b{word-spacing:2.576000pt;}
.ws26{word-spacing:2.632000pt;}
.ws1f{word-spacing:2.856000pt;}
.ws40{word-spacing:2.912000pt;}
.ws10{word-spacing:2.968000pt;}
.ws44{word-spacing:3.024000pt;}
.ws41{word-spacing:3.080000pt;}
.ws32{word-spacing:3.136000pt;}
.ws6{word-spacing:3.752000pt;}
.ws3a{word-spacing:3.920000pt;}
.ws23{word-spacing:4.032000pt;}
.ws30{word-spacing:4.256000pt;}
.ws36{word-spacing:4.312000pt;}
.ws16{word-spacing:4.368000pt;}
.ws2c{word-spacing:4.536000pt;}
.ws17{word-spacing:4.592000pt;}
.wse{word-spacing:4.648000pt;}
.wsf{word-spacing:4.760000pt;}
.ws37{word-spacing:4.872000pt;}
.wsa{word-spacing:4.928000pt;}
.wsd{word-spacing:4.984000pt;}
.ws20{word-spacing:5.040000pt;}
.ws1e{word-spacing:5.096000pt;}
.ws3{word-spacing:5.376000pt;}
.ws3f{word-spacing:5.544000pt;}
.ws1a{word-spacing:5.600000pt;}
.ws11{word-spacing:5.768000pt;}
.ws15{word-spacing:6.048000pt;}
.wsb{word-spacing:6.160000pt;}
.ws25{word-spacing:6.216000pt;}
.ws2f{word-spacing:6.552000pt;}
.wsc{word-spacing:6.664000pt;}
.ws42{word-spacing:6.832000pt;}
.ws43{word-spacing:6.888000pt;}
.ws27{word-spacing:6.944000pt;}
.ws3c{word-spacing:7.000000pt;}
.ws2d{word-spacing:7.112000pt;}
.ws8{word-spacing:7.168000pt;}
.ws35{word-spacing:7.280000pt;}
.ws9{word-spacing:7.336000pt;}
.ws2b{word-spacing:7.392000pt;}
.ws31{word-spacing:7.560000pt;}
.ws3d{word-spacing:7.672000pt;}
.ws1d{word-spacing:7.728000pt;}
.ws7{word-spacing:7.784000pt;}
.ws1{word-spacing:8.288000pt;}
._2{margin-left:-21.312000pt;}
._5{margin-left:-18.536000pt;}
._0{margin-left:-8.288000pt;}
._3{margin-left:-2.184000pt;}
._4{margin-left:-1.125600pt;}
._1{width:0.906667pt;}
._7{width:2.464000pt;}
._6{width:7.761600pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.692933pt;}
.y29{bottom:93.146267pt;}
.y55{bottom:93.216267pt;}
.y28{bottom:108.784267pt;}
.y54{bottom:108.854267pt;}
.y27{bottom:124.422267pt;}
.y53{bottom:124.492267pt;}
.y26{bottom:140.060267pt;}
.y52{bottom:140.130267pt;}
.y25{bottom:155.698267pt;}
.y51{bottom:155.768267pt;}
.y24{bottom:171.336267pt;}
.y50{bottom:171.406267pt;}
.y7b{bottom:182.446800pt;}
.ya1{bottom:182.488800pt;}
.y23{bottom:186.974267pt;}
.y4f{bottom:187.044267pt;}
.ya0{bottom:198.140800pt;}
.y7a{bottom:198.308800pt;}
.y22{bottom:202.612267pt;}
.y4e{bottom:202.682267pt;}
.y9f{bottom:213.792800pt;}
.y79{bottom:214.170800pt;}
.y21{bottom:218.250267pt;}
.y4d{bottom:218.320267pt;}
.y9e{bottom:229.444800pt;}
.y78{bottom:230.032800pt;}
.y20{bottom:241.714267pt;}
.y4c{bottom:241.784267pt;}
.y77{bottom:245.894800pt;}
.y1f{bottom:257.352267pt;}
.y4b{bottom:257.422267pt;}
.y9d{bottom:260.734800pt;}
.y76{bottom:269.582800pt;}
.y1e{bottom:272.990267pt;}
.y4a{bottom:273.060267pt;}
.y9c{bottom:276.386800pt;}
.y75{bottom:285.444800pt;}
.y1d{bottom:288.628267pt;}
.y49{bottom:288.698267pt;}
.y9b{bottom:292.038800pt;}
.y74{bottom:301.306800pt;}
.y1c{bottom:304.266267pt;}
.y48{bottom:304.336267pt;}
.y9a{bottom:307.690800pt;}
.y73{bottom:317.168800pt;}
.y1b{bottom:319.904267pt;}
.y47{bottom:319.974267pt;}
.y99{bottom:323.342800pt;}
.y72{bottom:333.030800pt;}
.y1a{bottom:335.542267pt;}
.y46{bottom:335.612267pt;}
.y98{bottom:338.994800pt;}
.y71{bottom:348.892800pt;}
.y19{bottom:351.180267pt;}
.y45{bottom:351.250267pt;}
.y97{bottom:354.646800pt;}
.y70{bottom:364.754800pt;}
.y18{bottom:366.818267pt;}
.y44{bottom:366.888267pt;}
.y96{bottom:370.298800pt;}
.y6f{bottom:380.616800pt;}
.y17{bottom:382.456267pt;}
.y43{bottom:382.526267pt;}
.y95{bottom:385.950800pt;}
.y6e{bottom:396.478800pt;}
.y16{bottom:398.094267pt;}
.y42{bottom:398.164267pt;}
.y94{bottom:401.602800pt;}
.y6d{bottom:412.340800pt;}
.y41{bottom:413.802267pt;}
.y93{bottom:417.254800pt;}
.y15{bottom:421.558267pt;}
.y6c{bottom:428.202800pt;}
.y40{bottom:429.440267pt;}
.y92{bottom:432.906800pt;}
.y14{bottom:437.196267pt;}
.y6b{bottom:444.064800pt;}
.y3f{bottom:445.078267pt;}
.y91{bottom:448.558800pt;}
.y13{bottom:452.834267pt;}
.y6a{bottom:459.926800pt;}
.y3e{bottom:460.716267pt;}
.y90{bottom:464.210800pt;}
.y12{bottom:468.472267pt;}
.y69{bottom:475.788800pt;}
.y3d{bottom:476.354267pt;}
.y8f{bottom:479.862800pt;}
.y11{bottom:484.110267pt;}
.y68{bottom:491.650800pt;}
.y3c{bottom:491.992267pt;}
.y8e{bottom:495.514800pt;}
.y10{bottom:499.748267pt;}
.y67{bottom:507.512800pt;}
.y3b{bottom:507.630267pt;}
.y8d{bottom:511.166800pt;}
.yf{bottom:515.386267pt;}
.y3a{bottom:523.268267pt;}
.y66{bottom:523.374800pt;}
.ye{bottom:531.024267pt;}
.y8c{bottom:534.644800pt;}
.y39{bottom:538.906267pt;}
.y65{bottom:539.236800pt;}
.yd{bottom:546.662267pt;}
.y8b{bottom:550.296800pt;}
.y38{bottom:554.544267pt;}
.y64{bottom:555.098800pt;}
.yc{bottom:562.300267pt;}
.y8a{bottom:565.948800pt;}
.y37{bottom:570.182267pt;}
.y63{bottom:570.960800pt;}
.yb{bottom:577.938267pt;}
.y89{bottom:581.600800pt;}
.y36{bottom:585.820267pt;}
.y62{bottom:586.822800pt;}
.ya{bottom:593.576267pt;}
.y88{bottom:597.252800pt;}
.y35{bottom:609.284267pt;}
.y61{bottom:610.510800pt;}
.y87{bottom:612.904800pt;}
.y34{bottom:624.922267pt;}
.y60{bottom:626.372800pt;}
.y86{bottom:628.556800pt;}
.y9{bottom:639.714667pt;}
.y33{bottom:640.560267pt;}
.y5f{bottom:642.234800pt;}
.y85{bottom:644.208800pt;}
.y32{bottom:656.198267pt;}
.y8{bottom:656.772000pt;}
.y5e{bottom:658.096800pt;}
.y84{bottom:659.860800pt;}
.y31{bottom:671.836267pt;}
.y5d{bottom:673.958800pt;}
.y83{bottom:675.512800pt;}
.y7{bottom:676.676000pt;}
.y30{bottom:687.474267pt;}
.y5c{bottom:689.820800pt;}
.y82{bottom:691.164800pt;}
.y6{bottom:696.580000pt;}
.y2f{bottom:703.112267pt;}
.y5b{bottom:705.682800pt;}
.y81{bottom:706.816800pt;}
.y2e{bottom:718.750267pt;}
.y5a{bottom:721.544800pt;}
.y80{bottom:722.468800pt;}
.y5{bottom:727.814533pt;}
.y2d{bottom:734.388267pt;}
.y59{bottom:737.406800pt;}
.y7f{bottom:738.120800pt;}
.y2c{bottom:750.026267pt;}
.y4{bottom:751.818533pt;}
.y58{bottom:753.268800pt;}
.y7e{bottom:753.772800pt;}
.y2b{bottom:765.664267pt;}
.y57{bottom:769.130800pt;}
.y7d{bottom:769.424800pt;}
.y3{bottom:775.822533pt;}
.y2a{bottom:781.302267pt;}
.y56{bottom:784.992800pt;}
.y7c{bottom:785.076800pt;}
.y2{bottom:824.738800pt;}
.h3{height:26.954667pt;}
.h6{height:39.200000pt;}
.h2{height:41.066667pt;}
.h5{height:44.800000pt;}
.h4{height:63.466667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x7{left:91.689067pt;}
.x6{left:92.921067pt;}
.x9{left:94.488133pt;}
.x5{left:157.273067pt;}
.x3{left:171.770267pt;}
.x8{left:210.585733pt;}
.x4{left:214.678267pt;}
.xa{left:334.042133pt;}
.xb{left:352.942133pt;}
.x2{left:381.476667pt;}
.xe{left:382.862533pt;}
.xd{left:392.550533pt;}
.xc{left:435.096533pt;}
.xf{left:474.072533pt;}
}




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