
    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_f64e05775eca1651022ac920.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_8ad00b1a87933a4bba68b516.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984863;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_f2729f05f54ea09beb429cb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.934000;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_fda66abdbe4548f8552a85cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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_8ad22e37fa2e83f6b439a4f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984863;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_3f225665f72624309991e44d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.248630,0.000000,-0.026133,0.248630,0,0);-ms-transform:matrix(0.248630,0.000000,-0.026133,0.248630,0,0);-webkit-transform:matrix(0.248630,0.000000,-0.026133,0.248630,0,0);}
.m1{transform:matrix(0.248631,0.000000,-0.026131,0.248631,0,0);-ms-transform:matrix(0.248631,0.000000,-0.026131,0.248631,0,0);-webkit-transform:matrix(0.248631,0.000000,-0.026131,0.248631,0,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;}
.v2{vertical-align:22.099051px;}
.v1{vertical-align:23.976000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000936px;}
.ls0{letter-spacing:2.400000px;}
.ls2{letter-spacing:9.600000px;}
.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;}
}
.ws5{word-spacing:-46.368000px;}
.ws44{word-spacing:-23.184000px;}
.ws45{word-spacing:-19.872000px;}
.ws1a{word-spacing:-19.728000px;}
.wsd{word-spacing:-5.472000px;}
.ws8{word-spacing:-3.168000px;}
.ws17{word-spacing:-3.096000px;}
.ws42{word-spacing:-3.024000px;}
.ws2d{word-spacing:-2.952000px;}
.ws46{word-spacing:-2.880000px;}
.ws25{word-spacing:-2.664000px;}
.ws22{word-spacing:-2.304000px;}
.ws29{word-spacing:-1.944000px;}
.ws1d{word-spacing:-1.800000px;}
.ws1e{word-spacing:-1.512000px;}
.ws35{word-spacing:-1.440000px;}
.ws34{word-spacing:-0.864000px;}
.ws36{word-spacing:-0.720000px;}
.ws6{word-spacing:-0.648000px;}
.ws43{word-spacing:-0.576000px;}
.ws7{word-spacing:-0.504000px;}
.ws38{word-spacing:-0.288000px;}
.ws0{word-spacing:0.000000px;}
.ws1b{word-spacing:0.504000px;}
.wse{word-spacing:0.936000px;}
.ws3d{word-spacing:1.080000px;}
.ws40{word-spacing:1.224000px;}
.ws3e{word-spacing:1.296000px;}
.wsb{word-spacing:1.440000px;}
.ws2e{word-spacing:1.584000px;}
.ws3{word-spacing:1.656000px;}
.ws3f{word-spacing:1.800000px;}
.ws28{word-spacing:2.160000px;}
.ws26{word-spacing:2.232000px;}
.ws32{word-spacing:2.304000px;}
.ws19{word-spacing:2.520000px;}
.ws21{word-spacing:2.592000px;}
.ws20{word-spacing:2.664000px;}
.ws18{word-spacing:3.096000px;}
.ws37{word-spacing:3.168000px;}
.ws3b{word-spacing:3.312000px;}
.ws27{word-spacing:3.456000px;}
.ws3a{word-spacing:3.600000px;}
.ws41{word-spacing:4.248000px;}
.ws4{word-spacing:4.464000px;}
.ws2f{word-spacing:4.608000px;}
.ws9{word-spacing:4.752000px;}
.ws2a{word-spacing:5.112000px;}
.ws2{word-spacing:5.544000px;}
.ws30{word-spacing:5.616000px;}
.ws3c{word-spacing:5.688000px;}
.ws16{word-spacing:5.904000px;}
.ws24{word-spacing:6.192000px;}
.ws1f{word-spacing:7.128000px;}
.wsa{word-spacing:7.272000px;}
.ws39{word-spacing:7.416000px;}
.ws1c{word-spacing:7.776000px;}
.ws23{word-spacing:7.920000px;}
.wsc{word-spacing:8.856000px;}
.ws10{word-spacing:9.144000px;}
.ws31{word-spacing:9.576000px;}
.ws1{word-spacing:9.648000px;}
.ws15{word-spacing:11.952000px;}
.ws33{word-spacing:13.680000px;}
.ws13{word-spacing:14.256000px;}
.ws11{word-spacing:14.400000px;}
.ws2c{word-spacing:14.688000px;}
.ws2b{word-spacing:14.760000px;}
.wsf{word-spacing:16.704000px;}
.ws14{word-spacing:22.104000px;}
.ws12{word-spacing:24.984000px;}
._10{margin-left:-2101.421400px;}
._b{margin-left:-16.888200px;}
._0{margin-left:-12.441600px;}
._7{margin-left:-9.600000px;}
._6{margin-left:-7.104000px;}
._2{margin-left:-5.491800px;}
._5{margin-left:-3.947400px;}
._1{margin-left:-2.122200px;}
._4{margin-left:-1.114200px;}
._3{width:1.999800px;}
._9{width:3.022200px;}
._c{width:4.941000px;}
._e{width:7.154400px;}
._f{width:8.274000px;}
._8{width:9.600000px;}
._11{width:11.109600px;}
._d{width:14.685000px;}
._a{width:57.744000px;}
.fc4{color:rgb(50,185,212);}
.fc2{color:rgb(2,80,126);}
.fc5{color:rgb(13,81,127);}
.fc1{color:rgb(111,198,41);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:31.655423px;}
.fs8{font-size:38.689927px;}
.fs7{font-size:41.976000px;}
.fsa{font-size:54.297423px;}
.fs6{font-size:66.363517px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fsc{font-size:102.000000px;}
.fs5{font-size:120.000000px;}
.fsb{font-size:138.000000px;}
.fs0{font-size:162.000000px;}
.fs4{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:35.393850px;}
.y95{bottom:70.497600px;}
.y5d{bottom:72.019950px;}
.y91{bottom:88.971900px;}
.y94{bottom:92.097600px;}
.y3c{bottom:93.223800px;}
.y5c{bottom:93.619950px;}
.y4a{bottom:105.565350px;}
.y70{bottom:109.808850px;}
.y1c{bottom:111.137700px;}
.y93{bottom:113.697600px;}
.y49{bottom:120.565350px;}
.y24{bottom:122.321700px;}
.y48{bottom:125.060850px;}
.y2d{bottom:125.084550px;}
.y5b{bottom:127.975800px;}
.y86{bottom:128.837250px;}
.y6f{bottom:131.408850px;}
.y1b{bottom:132.737700px;}
.y23{bottom:143.921700px;}
.y85{bottom:150.438000px;}
.y47{bottom:150.565500px;}
.y92{bottom:152.305500px;}
.y6e{bottom:153.009000px;}
.y1a{bottom:154.338000px;}
.y5a{bottom:162.331500px;}
.y22{bottom:165.522000px;}
.y46{bottom:165.565500px;}
.y45{bottom:170.061000px;}
.y84{bottom:172.038000px;}
.y6d{bottom:174.609000px;}
.y19{bottom:175.938000px;}
.y7f{bottom:182.115000px;}
.y21{bottom:187.122000px;}
.y83{bottom:193.638000px;}
.y6c{bottom:196.209000px;}
.y59{bottom:196.687500px;}
.y18{bottom:197.538000px;}
.y9{bottom:199.311000px;}
.y7e{bottom:203.715000px;}
.y20{bottom:208.722000px;}
.y82{bottom:215.236500px;}
.y6b{bottom:217.809000px;}
.y17{bottom:219.138000px;}
.y7d{bottom:225.315000px;}
.y1f{bottom:230.322000px;}
.y58{bottom:231.043500px;}
.y6a{bottom:239.409000px;}
.y16{bottom:246.138000px;}
.y7c{bottom:246.915000px;}
.y1e{bottom:251.922000px;}
.y57{bottom:252.643500px;}
.y81{bottom:253.071000px;}
.y69{bottom:261.009000px;}
.y9a{bottom:262.933500px;}
.y7b{bottom:268.515000px;}
.y15{bottom:271.338000px;}
.y1d{bottom:273.522000px;}
.y8{bottom:279.972000px;}
.y68{bottom:282.609000px;}
.y99{bottom:284.533500px;}
.y7a{bottom:290.115000px;}
.y44{bottom:290.940000px;}
.y56{bottom:300.600000px;}
.y67{bottom:320.442000px;}
.y79{bottom:324.471000px;}
.y87{bottom:345.153000px;}
.y78{bottom:346.071000px;}
.y7{bottom:360.771000px;}
.y77{bottom:367.671000px;}
.y55{bottom:377.397000px;}
.y6{bottom:382.371000px;}
.y76{bottom:389.271000px;}
.y64{bottom:400.074000px;}
.y5{bottom:403.971000px;}
.y75{bottom:410.871000px;}
.y4{bottom:425.571000px;}
.y98{bottom:429.820500px;}
.y74{bottom:432.471000px;}
.y3{bottom:447.171000px;}
.y73{bottom:454.071000px;}
.y97{bottom:455.671500px;}
.y72{bottom:475.671000px;}
.y8f{bottom:492.040500px;}
.y2{bottom:492.724500px;}
.y96{bottom:494.280000px;}
.y71{bottom:513.504000px;}
.y8e{bottom:513.640500px;}
.y8d{bottom:535.240500px;}
.y1{bottom:541.324500px;}
.y8c{bottom:556.840500px;}
.y8b{bottom:578.440500px;}
.y8a{bottom:600.040500px;}
.y80{bottom:628.972500px;}
.y89{bottom:634.827000px;}
.y63{bottom:653.802000px;}
.y88{bottom:670.827000px;}
.y62{bottom:675.402000px;}
.y3b{bottom:709.719000px;}
.y61{bottom:709.758000px;}
.y3a{bottom:731.319000px;}
.y60{bottom:731.358000px;}
.y90{bottom:738.460500px;}
.y39{bottom:752.919000px;}
.y5f{bottom:752.958000px;}
.y38{bottom:787.275000px;}
.y5e{bottom:792.411000px;}
.y43{bottom:802.296000px;}
.y37{bottom:808.875000px;}
.y42{bottom:823.896000px;}
.y54{bottom:824.986500px;}
.y2c{bottom:827.575500px;}
.y36{bottom:830.475000px;}
.y53{bottom:846.586500px;}
.y2b{bottom:849.175500px;}
.y14{bottom:855.105000px;}
.y41{bottom:858.252000px;}
.y35{bottom:864.831000px;}
.y2a{bottom:870.775500px;}
.y13{bottom:876.705000px;}
.y40{bottom:879.852000px;}
.y52{bottom:880.942500px;}
.y34{bottom:886.431000px;}
.y29{bottom:892.375500px;}
.y12{bottom:898.305000px;}
.y51{bottom:902.542500px;}
.y33{bottom:908.031000px;}
.y28{bottom:913.975500px;}
.y3f{bottom:914.208000px;}
.y66{bottom:914.625000px;}
.y11{bottom:919.905000px;}
.y3e{bottom:935.806500px;}
.y50{bottom:936.898500px;}
.y32{bottom:942.387000px;}
.y10{bottom:954.261000px;}
.y65{bottom:956.025000px;}
.y27{bottom:957.175500px;}
.y3d{bottom:957.408000px;}
.y4f{bottom:958.498500px;}
.y31{bottom:963.987000px;}
.yf{bottom:975.861000px;}
.y30{bottom:985.587000px;}
.y4e{bottom:992.854500px;}
.ye{bottom:997.461000px;}
.y4d{bottom:1014.454500px;}
.yd{bottom:1019.061000px;}
.y26{bottom:1027.723500px;}
.y2f{bottom:1028.787000px;}
.y4c{bottom:1055.112000px;}
.y25{bottom:1078.123500px;}
.y2e{bottom:1079.187000px;}
.yc{bottom:1080.249000px;}
.y4b{bottom:1091.112000px;}
.yb{bottom:1191.709500px;}
.he{height:23.726110px;}
.hf{height:40.696555px;}
.h9{height:49.902254px;}
.hd{height:51.097605px;}
.h3{height:53.964844px;}
.hb{height:54.070312px;}
.ha{height:54.140625px;}
.hc{height:55.498992px;}
.h5{height:61.236000px;}
.h7{height:63.164062px;}
.h4{height:69.984000px;}
.h11{height:76.699219px;}
.h8{height:90.234375px;}
.h10{height:103.634766px;}
.h2{height:121.816406px;}
.h6{height:126.328125px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:58.110300px;}
.x3{left:63.779550px;}
.x9{left:64.842450px;}
.xf{left:66.730950px;}
.x10{left:67.926150px;}
.x11{left:69.448800px;}
.xc{left:87.803100px;}
.x12{left:93.472350px;}
.x8{left:102.897600px;}
.x1d{left:106.299150px;}
.xd{left:114.803100px;}
.x2{left:118.603800px;}
.x13{left:120.472350px;}
.xe{left:161.473500px;}
.x1e{left:186.378000px;}
.x1{left:189.004500px;}
.x16{left:191.143500px;}
.x1a{left:206.610000px;}
.x14{left:210.493500px;}
.x4{left:228.865500px;}
.x17{left:236.347500px;}
.xb{left:258.418500px;}
.x1b{left:275.196000px;}
.x18{left:281.868000px;}
.xa{left:465.361500px;}
.x1c{left:518.740500px;}
.x7{left:565.608000px;}
.x5{left:691.951500px;}
.x19{left:777.175500px;}
.x6{left:788.851500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.643601pt;}
.v1{vertical-align:21.312000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000832pt;}
.ls0{letter-spacing:2.133333pt;}
.ls2{letter-spacing:8.533333pt;}
.ws5{word-spacing:-41.216000pt;}
.ws44{word-spacing:-20.608000pt;}
.ws45{word-spacing:-17.664000pt;}
.ws1a{word-spacing:-17.536000pt;}
.wsd{word-spacing:-4.864000pt;}
.ws8{word-spacing:-2.816000pt;}
.ws17{word-spacing:-2.752000pt;}
.ws42{word-spacing:-2.688000pt;}
.ws2d{word-spacing:-2.624000pt;}
.ws46{word-spacing:-2.560000pt;}
.ws25{word-spacing:-2.368000pt;}
.ws22{word-spacing:-2.048000pt;}
.ws29{word-spacing:-1.728000pt;}
.ws1d{word-spacing:-1.600000pt;}
.ws1e{word-spacing:-1.344000pt;}
.ws35{word-spacing:-1.280000pt;}
.ws34{word-spacing:-0.768000pt;}
.ws36{word-spacing:-0.640000pt;}
.ws6{word-spacing:-0.576000pt;}
.ws43{word-spacing:-0.512000pt;}
.ws7{word-spacing:-0.448000pt;}
.ws38{word-spacing:-0.256000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.448000pt;}
.wse{word-spacing:0.832000pt;}
.ws3d{word-spacing:0.960000pt;}
.ws40{word-spacing:1.088000pt;}
.ws3e{word-spacing:1.152000pt;}
.wsb{word-spacing:1.280000pt;}
.ws2e{word-spacing:1.408000pt;}
.ws3{word-spacing:1.472000pt;}
.ws3f{word-spacing:1.600000pt;}
.ws28{word-spacing:1.920000pt;}
.ws26{word-spacing:1.984000pt;}
.ws32{word-spacing:2.048000pt;}
.ws19{word-spacing:2.240000pt;}
.ws21{word-spacing:2.304000pt;}
.ws20{word-spacing:2.368000pt;}
.ws18{word-spacing:2.752000pt;}
.ws37{word-spacing:2.816000pt;}
.ws3b{word-spacing:2.944000pt;}
.ws27{word-spacing:3.072000pt;}
.ws3a{word-spacing:3.200000pt;}
.ws41{word-spacing:3.776000pt;}
.ws4{word-spacing:3.968000pt;}
.ws2f{word-spacing:4.096000pt;}
.ws9{word-spacing:4.224000pt;}
.ws2a{word-spacing:4.544000pt;}
.ws2{word-spacing:4.928000pt;}
.ws30{word-spacing:4.992000pt;}
.ws3c{word-spacing:5.056000pt;}
.ws16{word-spacing:5.248000pt;}
.ws24{word-spacing:5.504000pt;}
.ws1f{word-spacing:6.336000pt;}
.wsa{word-spacing:6.464000pt;}
.ws39{word-spacing:6.592000pt;}
.ws1c{word-spacing:6.912000pt;}
.ws23{word-spacing:7.040000pt;}
.wsc{word-spacing:7.872000pt;}
.ws10{word-spacing:8.128000pt;}
.ws31{word-spacing:8.512000pt;}
.ws1{word-spacing:8.576000pt;}
.ws15{word-spacing:10.624000pt;}
.ws33{word-spacing:12.160000pt;}
.ws13{word-spacing:12.672000pt;}
.ws11{word-spacing:12.800000pt;}
.ws2c{word-spacing:13.056000pt;}
.ws2b{word-spacing:13.120000pt;}
.wsf{word-spacing:14.848000pt;}
.ws14{word-spacing:19.648000pt;}
.ws12{word-spacing:22.208000pt;}
._10{margin-left:-1867.930133pt;}
._b{margin-left:-15.011733pt;}
._0{margin-left:-11.059200pt;}
._7{margin-left:-8.533333pt;}
._6{margin-left:-6.314667pt;}
._2{margin-left:-4.881600pt;}
._5{margin-left:-3.508800pt;}
._1{margin-left:-1.886400pt;}
._4{margin-left:-0.990400pt;}
._3{width:1.777600pt;}
._9{width:2.686400pt;}
._c{width:4.392000pt;}
._e{width:6.359467pt;}
._f{width:7.354667pt;}
._8{width:8.533333pt;}
._11{width:9.875200pt;}
._d{width:13.053333pt;}
._a{width:51.328000pt;}
.fs9{font-size:28.138154pt;}
.fs8{font-size:34.391046pt;}
.fs7{font-size:37.312000pt;}
.fsa{font-size:48.264376pt;}
.fs6{font-size:58.989793pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fsc{font-size:90.666667pt;}
.fs5{font-size:106.666667pt;}
.fsb{font-size:122.666667pt;}
.fs0{font-size:144.000000pt;}
.fs4{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:31.461200pt;}
.y95{bottom:62.664533pt;}
.y5d{bottom:64.017733pt;}
.y91{bottom:79.086133pt;}
.y94{bottom:81.864533pt;}
.y3c{bottom:82.865600pt;}
.y5c{bottom:83.217733pt;}
.y4a{bottom:93.835867pt;}
.y70{bottom:97.607867pt;}
.y1c{bottom:98.789067pt;}
.y93{bottom:101.064533pt;}
.y49{bottom:107.169200pt;}
.y24{bottom:108.730400pt;}
.y48{bottom:111.165200pt;}
.y2d{bottom:111.186267pt;}
.y5b{bottom:113.756267pt;}
.y86{bottom:114.522000pt;}
.y6f{bottom:116.807867pt;}
.y1b{bottom:117.989067pt;}
.y23{bottom:127.930400pt;}
.y85{bottom:133.722667pt;}
.y47{bottom:133.836000pt;}
.y92{bottom:135.382667pt;}
.y6e{bottom:136.008000pt;}
.y1a{bottom:137.189333pt;}
.y5a{bottom:144.294667pt;}
.y22{bottom:147.130667pt;}
.y46{bottom:147.169333pt;}
.y45{bottom:151.165333pt;}
.y84{bottom:152.922667pt;}
.y6d{bottom:155.208000pt;}
.y19{bottom:156.389333pt;}
.y7f{bottom:161.880000pt;}
.y21{bottom:166.330667pt;}
.y83{bottom:172.122667pt;}
.y6c{bottom:174.408000pt;}
.y59{bottom:174.833333pt;}
.y18{bottom:175.589333pt;}
.y9{bottom:177.165333pt;}
.y7e{bottom:181.080000pt;}
.y20{bottom:185.530667pt;}
.y82{bottom:191.321333pt;}
.y6b{bottom:193.608000pt;}
.y17{bottom:194.789333pt;}
.y7d{bottom:200.280000pt;}
.y1f{bottom:204.730667pt;}
.y58{bottom:205.372000pt;}
.y6a{bottom:212.808000pt;}
.y16{bottom:218.789333pt;}
.y7c{bottom:219.480000pt;}
.y1e{bottom:223.930667pt;}
.y57{bottom:224.572000pt;}
.y81{bottom:224.952000pt;}
.y69{bottom:232.008000pt;}
.y9a{bottom:233.718667pt;}
.y7b{bottom:238.680000pt;}
.y15{bottom:241.189333pt;}
.y1d{bottom:243.130667pt;}
.y8{bottom:248.864000pt;}
.y68{bottom:251.208000pt;}
.y99{bottom:252.918667pt;}
.y7a{bottom:257.880000pt;}
.y44{bottom:258.613333pt;}
.y56{bottom:267.200000pt;}
.y67{bottom:284.837333pt;}
.y79{bottom:288.418667pt;}
.y87{bottom:306.802667pt;}
.y78{bottom:307.618667pt;}
.y7{bottom:320.685333pt;}
.y77{bottom:326.818667pt;}
.y55{bottom:335.464000pt;}
.y6{bottom:339.885333pt;}
.y76{bottom:346.018667pt;}
.y64{bottom:355.621333pt;}
.y5{bottom:359.085333pt;}
.y75{bottom:365.218667pt;}
.y4{bottom:378.285333pt;}
.y98{bottom:382.062667pt;}
.y74{bottom:384.418667pt;}
.y3{bottom:397.485333pt;}
.y73{bottom:403.618667pt;}
.y97{bottom:405.041333pt;}
.y72{bottom:422.818667pt;}
.y8f{bottom:437.369333pt;}
.y2{bottom:437.977333pt;}
.y96{bottom:439.360000pt;}
.y71{bottom:456.448000pt;}
.y8e{bottom:456.569333pt;}
.y8d{bottom:475.769333pt;}
.y1{bottom:481.177333pt;}
.y8c{bottom:494.969333pt;}
.y8b{bottom:514.169333pt;}
.y8a{bottom:533.369333pt;}
.y80{bottom:559.086667pt;}
.y89{bottom:564.290667pt;}
.y63{bottom:581.157333pt;}
.y88{bottom:596.290667pt;}
.y62{bottom:600.357333pt;}
.y3b{bottom:630.861333pt;}
.y61{bottom:630.896000pt;}
.y3a{bottom:650.061333pt;}
.y60{bottom:650.096000pt;}
.y90{bottom:656.409333pt;}
.y39{bottom:669.261333pt;}
.y5f{bottom:669.296000pt;}
.y38{bottom:699.800000pt;}
.y5e{bottom:704.365333pt;}
.y43{bottom:713.152000pt;}
.y37{bottom:719.000000pt;}
.y42{bottom:732.352000pt;}
.y54{bottom:733.321333pt;}
.y2c{bottom:735.622667pt;}
.y36{bottom:738.200000pt;}
.y53{bottom:752.521333pt;}
.y2b{bottom:754.822667pt;}
.y14{bottom:760.093333pt;}
.y41{bottom:762.890667pt;}
.y35{bottom:768.738667pt;}
.y2a{bottom:774.022667pt;}
.y13{bottom:779.293333pt;}
.y40{bottom:782.090667pt;}
.y52{bottom:783.060000pt;}
.y34{bottom:787.938667pt;}
.y29{bottom:793.222667pt;}
.y12{bottom:798.493333pt;}
.y51{bottom:802.260000pt;}
.y33{bottom:807.138667pt;}
.y28{bottom:812.422667pt;}
.y3f{bottom:812.629333pt;}
.y66{bottom:813.000000pt;}
.y11{bottom:817.693333pt;}
.y3e{bottom:831.828000pt;}
.y50{bottom:832.798667pt;}
.y32{bottom:837.677333pt;}
.y10{bottom:848.232000pt;}
.y65{bottom:849.800000pt;}
.y27{bottom:850.822667pt;}
.y3d{bottom:851.029333pt;}
.y4f{bottom:851.998667pt;}
.y31{bottom:856.877333pt;}
.yf{bottom:867.432000pt;}
.y30{bottom:876.077333pt;}
.y4e{bottom:882.537333pt;}
.ye{bottom:886.632000pt;}
.y4d{bottom:901.737333pt;}
.yd{bottom:905.832000pt;}
.y26{bottom:913.532000pt;}
.y2f{bottom:914.477333pt;}
.y4c{bottom:937.877333pt;}
.y25{bottom:958.332000pt;}
.y2e{bottom:959.277333pt;}
.yc{bottom:960.221333pt;}
.y4b{bottom:969.877333pt;}
.yb{bottom:1059.297333pt;}
.he{height:21.089876pt;}
.hf{height:36.174716pt;}
.h9{height:44.357559pt;}
.hd{height:45.420093pt;}
.h3{height:47.968750pt;}
.hb{height:48.062500pt;}
.ha{height:48.125000pt;}
.hc{height:49.332438pt;}
.h5{height:54.432000pt;}
.h7{height:56.145833pt;}
.h4{height:62.208000pt;}
.h11{height:68.177083pt;}
.h8{height:80.208333pt;}
.h10{height:92.119792pt;}
.h2{height:108.281250pt;}
.h6{height:112.291667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:51.653600pt;}
.x3{left:56.692933pt;}
.x9{left:57.637733pt;}
.xf{left:59.316400pt;}
.x10{left:60.378800pt;}
.x11{left:61.732267pt;}
.xc{left:78.047200pt;}
.x12{left:83.086533pt;}
.x8{left:91.464533pt;}
.x1d{left:94.488133pt;}
.xd{left:102.047200pt;}
.x2{left:105.425600pt;}
.x13{left:107.086533pt;}
.xe{left:143.532000pt;}
.x1e{left:165.669333pt;}
.x1{left:168.004000pt;}
.x16{left:169.905333pt;}
.x1a{left:183.653333pt;}
.x14{left:187.105333pt;}
.x4{left:203.436000pt;}
.x17{left:210.086667pt;}
.xb{left:229.705333pt;}
.x1b{left:244.618667pt;}
.x18{left:250.549333pt;}
.xa{left:413.654667pt;}
.x1c{left:461.102667pt;}
.x7{left:502.762667pt;}
.x5{left:615.068000pt;}
.x19{left:690.822667pt;}
.x6{left:701.201333pt;}
}




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