
    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_36e70178639f7fd46a6cb1cd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.754000;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_f9466f31f9668befaf30a642.woff')format("woff");}.ff2{font-family:ff2;line-height:0.915000;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_3fedf047e7c8a8d43a163f6a.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0e2979aa2273b068d209d423.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_c2ddd7034f7dd41449672fa1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.899000;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_d6d1f92efca5f7cf9d289c30.woff')format("woff");}.ff6{font-family:ff6;line-height:0.928000;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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_ad71a99af0cf3e8e5e45ffd4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_398fec625dcb3eecad799c52.woff')format("woff");}.ff9{font-family:ff9;line-height:0.915000;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_db8397c146032ba45640f651.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899902;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_90a75942b9092a7e96574518.woff')format("woff");}.ffb{font-family:ffb;line-height:1.075000;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);}
.v2{vertical-align:-90.180000px;}
.v3{vertical-align:-45.000000px;}
.v7{vertical-align:-31.500000px;}
.v5{vertical-align:-9.480000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.600000px;}
.v8{vertical-align:45.000000px;}
.v1{vertical-align:90.180000px;}
.v6{vertical-align:315.000000px;}
.ls5{letter-spacing:-0.405000px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.246000px;}
.ls10{letter-spacing:0.423000px;}
.ls1{letter-spacing:0.497550px;}
.ls19{letter-spacing:0.504600px;}
.ls18{letter-spacing:0.578400px;}
.ls0{letter-spacing:0.677550px;}
.ls3{letter-spacing:0.838500px;}
.ls1b{letter-spacing:0.864000px;}
.lsf{letter-spacing:0.928500px;}
.ls2{letter-spacing:1.293900px;}
.ls1a{letter-spacing:123.172500px;}
.lsd{letter-spacing:140.415000px;}
.lsc{letter-spacing:140.467500px;}
.ls6{letter-spacing:148.342500px;}
.ls8{letter-spacing:148.350000px;}
.ls7{letter-spacing:148.402500px;}
.ls13{letter-spacing:152.895000px;}
.ls14{letter-spacing:152.947500px;}
.ls15{letter-spacing:153.067500px;}
.ls11{letter-spacing:153.075000px;}
.ls12{letter-spacing:153.127500px;}
.ls16{letter-spacing:194.415000px;}
.ls17{letter-spacing:194.467500px;}
.lsa{letter-spacing:194.475000px;}
.ls9{letter-spacing:194.527500px;}
.lsb{letter-spacing:6246.856800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-189.157500px;}
.wsc{word-spacing:-151.357500px;}
.ws5{word-spacing:-60.070800px;}
.wsa{word-spacing:-52.489200px;}
.ws7{word-spacing:-48.883800px;}
.ws6{word-spacing:-48.849900px;}
.wsb{word-spacing:-43.993200px;}
.ws4{word-spacing:-43.764900px;}
.ws8{word-spacing:-40.713900px;}
.wsd{word-spacing:-35.172600px;}
.wse{word-spacing:-35.136000px;}
.ws9{word-spacing:-32.577900px;}
.wsf{word-spacing:-24.798300px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:587.383200px;}
.ws2{word-spacing:818.695800px;}
._b{margin-left:-16.825800px;}
._12{margin-left:-15.673050px;}
._d{margin-left:-13.842000px;}
._f{margin-left:-9.044550px;}
._13{margin-left:-7.974450px;}
._c{margin-left:-6.936600px;}
._5{margin-left:-5.806050px;}
._6{margin-left:-4.584300px;}
._2{margin-left:-3.459600px;}
._3{margin-left:-2.358600px;}
._1{margin-left:-1.297350px;}
._0{width:1.729800px;}
._4{width:3.459600px;}
._e{width:4.479000px;}
._10{width:5.753400px;}
._11{width:172.223400px;}
._8{width:745.387200px;}
._9{width:765.097500px;}
._a{width:951.988050px;}
._7{width:1062.329700px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(31,73,125);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(68,101,148);}
.fc0{color:rgb(125,150,206);}
.fs14{font-size:72.000000px;}
.fs4{font-size:94.500000px;}
.fs17{font-size:94.650000px;}
.fs15{font-size:108.000000px;}
.fs16{font-size:108.150000px;}
.fs3{font-size:121.650000px;}
.fs1b{font-size:144.000000px;}
.fs5{font-size:144.150000px;}
.fsf{font-size:180.150000px;}
.fs10{font-size:180.300000px;}
.fs9{font-size:193.650000px;}
.fsa{font-size:193.800000px;}
.fs2{font-size:198.150000px;}
.fs7{font-size:211.650000px;}
.fs8{font-size:211.800000px;}
.fse{font-size:216.150000px;}
.fsd{font-size:216.300000px;}
.fs11{font-size:238.650000px;}
.fs12{font-size:238.800000px;}
.fsb{font-size:265.650000px;}
.fsc{font-size:265.800000px;}
.fs1{font-size:301.800000px;}
.fs19{font-size:396.450000px;}
.fs0{font-size:432.450000px;}
.fs6{font-size:540.450000px;}
.fs18{font-size:540.600000px;}
.fs1a{font-size:752.220000px;}
.fs13{font-size:950.400000px;}
.y0{bottom:0.000000px;}
.y41{bottom:22.087500px;}
.y40{bottom:62.625000px;}
.y3f{bottom:104.287500px;}
.y2d{bottom:111.712500px;}
.y30{bottom:113.062500px;}
.y80{bottom:135.525000px;}
.y8{bottom:138.975000px;}
.y7f{bottom:164.775000px;}
.y62{bottom:181.080000px;}
.y7{bottom:181.755000px;}
.y2c{bottom:182.355000px;}
.y2f{bottom:202.395000px;}
.y57{bottom:203.295000px;}
.y22{bottom:207.195000px;}
.y2b{bottom:236.445000px;}
.y1a{bottom:251.955000px;}
.y61{bottom:254.295000px;}
.y56{bottom:257.325000px;}
.y2e{bottom:259.800000px;}
.y21{bottom:271.350000px;}
.y2a{bottom:290.475000px;}
.y19{bottom:309.375000px;}
.y55{bottom:311.370000px;}
.y44{bottom:313.695000px;}
.y60{bottom:328.620000px;}
.y6d{bottom:335.625000px;}
.y20{bottom:336.675000px;}
.y50{bottom:339.075000px;}
.y4a{bottom:359.400000px;}
.y54{bottom:365.445000px;}
.y43{bottom:367.755000px;}
.y18{bottom:367.950000px;}
.y11{bottom:371.295000px;}
.y7b{bottom:381.900000px;}
.y4f{bottom:393.120000px;}
.y73{bottom:399.750000px;}
.y1f{bottom:402.000000px;}
.y5f{bottom:402.900000px;}
.y49{bottom:413.445000px;}
.y53{bottom:419.475000px;}
.y42{bottom:421.800000px;}
.y10{bottom:428.700000px;}
.y75{bottom:435.750000px;}
.yb{bottom:440.175000px;}
.y3a{bottom:442.950000px;}
.y5{bottom:443.700000px;}
.y7a{bottom:446.070000px;}
.y4e{bottom:447.150000px;}
.y6c{bottom:454.995000px;}
.y72{bottom:463.905000px;}
.y1e{bottom:466.155000px;}
.y35{bottom:466.725000px;}
.y48{bottom:467.475000px;}
.y5e{bottom:476.100000px;}
.y34{bottom:479.100000px;}
.y17{bottom:482.775000px;}
.yf{bottom:486.150000px;}
.y7d{bottom:488.925000px;}
.y3e{bottom:493.575000px;}
.y39{bottom:497.025000px;}
.y74{bottom:499.950000px;}
.y4d{bottom:501.225000px;}
.y79{bottom:508.005000px;}
.y59{bottom:514.470000px;}
.y68{bottom:516.300000px;}
.y47{bottom:521.550000px;}
.y71{bottom:525.870000px;}
.y1d{bottom:531.495000px;}
.y33{bottom:533.130000px;}
.y16{bottom:540.225000px;}
.y52{bottom:542.175000px;}
.y78{bottom:544.050000px;}
.y69{bottom:547.845000px;}
.y65{bottom:548.175000px;}
.y4{bottom:548.400000px;}
.y5d{bottom:550.425000px;}
.y38{bottom:551.070000px;}
.y7c{bottom:554.205000px;}
.y4c{bottom:555.255000px;}
.y70{bottom:561.900000px;}
.y67{bottom:562.455000px;}
.y6b{bottom:573.225000px;}
.y3d{bottom:576.900000px;}
.y77{bottom:580.095000px;}
.y46{bottom:584.580000px;}
.y32{bottom:587.220000px;}
.y26{bottom:597.405000px;}
.y15{bottom:597.630000px;}
.ye{bottom:602.145000px;}
.y37{bottom:605.145000px;}
.y6f{bottom:606.945000px;}
.y4b{bottom:609.345000px;}
.y66{bottom:616.530000px;}
.y64{bottom:616.830000px;}
.y5c{bottom:623.625000px;}
.y76{bottom:625.125000px;}
.y29{bottom:633.945000px;}
.y31{bottom:641.250000px;}
.y14{bottom:656.220000px;}
.y36{bottom:659.175000px;}
.yd{bottom:659.550000px;}
.y3c{bottom:660.225000px;}
.y7e{bottom:670.530000px;}
.y25{bottom:675.630000px;}
.y1c{bottom:679.005000px;}
.y3{bottom:688.155000px;}
.y6a{bottom:692.580000px;}
.y5b{bottom:697.950000px;}
.y58{bottom:703.650000px;}
.y13{bottom:713.625000px;}
.yc{bottom:717.000000px;}
.ya{bottom:723.600000px;}
.y24{bottom:729.705000px;}
.y45{bottom:742.575000px;}
.y51{bottom:744.675000px;}
.y1b{bottom:757.800000px;}
.y28{bottom:757.980000px;}
.y12{bottom:771.075000px;}
.y3b{bottom:781.830000px;}
.y23{bottom:783.750000px;}
.y27{bottom:805.275000px;}
.y5a{bottom:816.195000px;}
.y2{bottom:817.650000px;}
.y6e{bottom:907.650000px;}
.y9{bottom:933.870000px;}
.y1{bottom:947.130000px;}
.y63{bottom:1072.245000px;}
.y6{bottom:1104.255000px;}
.h16{height:75.919922px;}
.h17{height:76.069116px;}
.h2c{height:82.782000px;}
.h2d{height:82.913400px;}
.h29{height:87.344700px;}
.h4{height:90.507600px;}
.h5{height:98.375757px;}
.h2b{height:103.392000px;}
.h2a{height:103.499700px;}
.h18{height:107.419922px;}
.h1a{height:129.347700px;}
.h1d{height:129.455400px;}
.h1c{height:131.154126px;}
.h1b{height:131.263330px;}
.h28{height:139.040700px;}
.h19{height:143.375757px;}
.h12{height:154.716150px;}
.h10{height:154.825800px;}
.h22{height:155.195700px;}
.h23{height:155.303400px;}
.h21{height:157.363110px;}
.h20{height:157.472314px;}
.h8{height:164.196150px;}
.h7{height:164.425800px;}
.h13{height:171.350700px;}
.h14{height:171.458400px;}
.hf{height:179.182397px;}
.h11{height:179.331592px;}
.h26{height:184.930444px;}
.h25{height:185.046680px;}
.h1f{height:190.844400px;}
.h9{height:192.609888px;}
.ha{height:192.759082px;}
.he{height:214.989038px;}
.hd{height:215.138232px;}
.h3{height:232.271700px;}
.h2{height:232.451700px;}
.hb{height:264.223169px;}
.hc{height:264.372363px;}
.h24{height:292.976550px;}
.h1{height:319.580550px;}
.h6{height:399.392550px;}
.h1e{height:399.503400px;}
.h27{height:555.890580px;}
.h15{height:1009.742400px;}
.h0{height:1215.000000px;}
.w1{width:2159.999968px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x39{left:22.424968px;}
.x2b{left:30.674968px;}
.x48{left:80.512468px;}
.x3a{left:94.537468px;}
.x3d{left:106.537468px;}
.x47{left:119.474968px;}
.x2{left:121.574968px;}
.x1b{left:123.412468px;}
.x3{left:131.962468px;}
.x46{left:140.812468px;}
.x1{left:144.074968px;}
.x3e{left:158.324968px;}
.x6{left:162.224968px;}
.x5{left:173.954968px;}
.x2f{left:190.379968px;}
.x30{left:194.654968px;}
.x22{left:209.324968px;}
.x31{left:248.699968px;}
.x3f{left:317.699968px;}
.x3b{left:332.699968px;}
.x18{left:353.969968px;}
.x11{left:355.949968px;}
.x10{left:373.079968px;}
.x17{left:383.249968px;}
.x20{left:408.779968px;}
.x21{left:410.594968px;}
.x1f{left:426.629968px;}
.x1a{left:449.279968px;}
.x1e{left:454.724968px;}
.x13{left:477.344968px;}
.x12{left:478.724968px;}
.x19{left:485.099968px;}
.x3c{left:516.449968px;}
.x28{left:548.174968px;}
.x2e{left:553.694968px;}
.xa{left:577.244968px;}
.xc{left:599.474968px;}
.x29{left:602.219968px;}
.x49{left:605.999968px;}
.x45{left:685.199968px;}
.xf{left:708.074968px;}
.x36{left:710.729968px;}
.x37{left:714.974968px;}
.x4{left:718.499968px;}
.xb{left:724.529968px;}
.x7{left:731.099968px;}
.x4c{left:762.674968px;}
.x38{left:769.004968px;}
.x8{left:785.129968px;}
.x2a{left:814.169968px;}
.xd{left:821.294968px;}
.x35{left:826.649968px;}
.x9{left:839.174968px;}
.x41{left:840.974968px;}
.xe{left:875.324968px;}
.x40{left:895.124968px;}
.x2d{left:904.319968px;}
.x42{left:1044.869968px;}
.x4d{left:1055.369968px;}
.x2c{left:1064.024968px;}
.x4a{left:1116.599968px;}
.x26{left:1138.049968px;}
.x25{left:1162.649968px;}
.x23{left:1178.474968px;}
.x33{left:1205.324968px;}
.x27{left:1222.574968px;}
.x32{left:1232.174968px;}
.x34{left:1259.324968px;}
.x24{left:1260.944968px;}
.x1c{left:1377.824968px;}
.x15{left:1440.974968px;}
.x14{left:1445.999968px;}
.x16{left:1514.924968px;}
.x1d{left:1535.354968px;}
.x43{left:1556.849968px;}
.x4b{left:1641.524968px;}
.x44{left:1763.099968px;}
@media print{
.v2{vertical-align:-80.160000pt;}
.v3{vertical-align:-40.000000pt;}
.v7{vertical-align:-28.000000pt;}
.v5{vertical-align:-8.426667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.533333pt;}
.v8{vertical-align:40.000000pt;}
.v1{vertical-align:80.160000pt;}
.v6{vertical-align:280.000000pt;}
.ls5{letter-spacing:-0.360000pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.218667pt;}
.ls10{letter-spacing:0.376000pt;}
.ls1{letter-spacing:0.442267pt;}
.ls19{letter-spacing:0.448533pt;}
.ls18{letter-spacing:0.514133pt;}
.ls0{letter-spacing:0.602267pt;}
.ls3{letter-spacing:0.745333pt;}
.ls1b{letter-spacing:0.768000pt;}
.lsf{letter-spacing:0.825333pt;}
.ls2{letter-spacing:1.150133pt;}
.ls1a{letter-spacing:109.486667pt;}
.lsd{letter-spacing:124.813333pt;}
.lsc{letter-spacing:124.860000pt;}
.ls6{letter-spacing:131.860000pt;}
.ls8{letter-spacing:131.866667pt;}
.ls7{letter-spacing:131.913333pt;}
.ls13{letter-spacing:135.906667pt;}
.ls14{letter-spacing:135.953333pt;}
.ls15{letter-spacing:136.060000pt;}
.ls11{letter-spacing:136.066667pt;}
.ls12{letter-spacing:136.113333pt;}
.ls16{letter-spacing:172.813333pt;}
.ls17{letter-spacing:172.860000pt;}
.lsa{letter-spacing:172.866667pt;}
.ls9{letter-spacing:172.913333pt;}
.lsb{letter-spacing:5552.761600pt;}
.ws1{word-spacing:-168.140000pt;}
.wsc{word-spacing:-134.540000pt;}
.ws5{word-spacing:-53.396267pt;}
.wsa{word-spacing:-46.657067pt;}
.ws7{word-spacing:-43.452267pt;}
.ws6{word-spacing:-43.422133pt;}
.wsb{word-spacing:-39.105067pt;}
.ws4{word-spacing:-38.902133pt;}
.ws8{word-spacing:-36.190133pt;}
.wsd{word-spacing:-31.264533pt;}
.wse{word-spacing:-31.232000pt;}
.ws9{word-spacing:-28.958133pt;}
.wsf{word-spacing:-22.042933pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:522.118400pt;}
.ws2{word-spacing:727.729600pt;}
._b{margin-left:-14.956267pt;}
._12{margin-left:-13.931600pt;}
._d{margin-left:-12.304000pt;}
._f{margin-left:-8.039600pt;}
._13{margin-left:-7.088400pt;}
._c{margin-left:-6.165867pt;}
._5{margin-left:-5.160933pt;}
._6{margin-left:-4.074933pt;}
._2{margin-left:-3.075200pt;}
._3{margin-left:-2.096533pt;}
._1{margin-left:-1.153200pt;}
._0{width:1.537600pt;}
._4{width:3.075200pt;}
._e{width:3.981333pt;}
._10{width:5.114133pt;}
._11{width:153.087467pt;}
._8{width:662.566400pt;}
._9{width:680.086667pt;}
._a{width:846.211600pt;}
._7{width:944.293067pt;}
.fs14{font-size:64.000000pt;}
.fs4{font-size:84.000000pt;}
.fs17{font-size:84.133333pt;}
.fs15{font-size:96.000000pt;}
.fs16{font-size:96.133333pt;}
.fs3{font-size:108.133333pt;}
.fs1b{font-size:128.000000pt;}
.fs5{font-size:128.133333pt;}
.fsf{font-size:160.133333pt;}
.fs10{font-size:160.266667pt;}
.fs9{font-size:172.133333pt;}
.fsa{font-size:172.266667pt;}
.fs2{font-size:176.133333pt;}
.fs7{font-size:188.133333pt;}
.fs8{font-size:188.266667pt;}
.fse{font-size:192.133333pt;}
.fsd{font-size:192.266667pt;}
.fs11{font-size:212.133333pt;}
.fs12{font-size:212.266667pt;}
.fsb{font-size:236.133333pt;}
.fsc{font-size:236.266667pt;}
.fs1{font-size:268.266667pt;}
.fs19{font-size:352.400000pt;}
.fs0{font-size:384.400000pt;}
.fs6{font-size:480.400000pt;}
.fs18{font-size:480.533333pt;}
.fs1a{font-size:668.640000pt;}
.fs13{font-size:844.800000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:19.633333pt;}
.y40{bottom:55.666667pt;}
.y3f{bottom:92.700000pt;}
.y2d{bottom:99.300000pt;}
.y30{bottom:100.500000pt;}
.y80{bottom:120.466667pt;}
.y8{bottom:123.533333pt;}
.y7f{bottom:146.466667pt;}
.y62{bottom:160.960000pt;}
.y7{bottom:161.560000pt;}
.y2c{bottom:162.093333pt;}
.y2f{bottom:179.906667pt;}
.y57{bottom:180.706667pt;}
.y22{bottom:184.173333pt;}
.y2b{bottom:210.173333pt;}
.y1a{bottom:223.960000pt;}
.y61{bottom:226.040000pt;}
.y56{bottom:228.733333pt;}
.y2e{bottom:230.933333pt;}
.y21{bottom:241.200000pt;}
.y2a{bottom:258.200000pt;}
.y19{bottom:275.000000pt;}
.y55{bottom:276.773333pt;}
.y44{bottom:278.840000pt;}
.y60{bottom:292.106667pt;}
.y6d{bottom:298.333333pt;}
.y20{bottom:299.266667pt;}
.y50{bottom:301.400000pt;}
.y4a{bottom:319.466667pt;}
.y54{bottom:324.840000pt;}
.y43{bottom:326.893333pt;}
.y18{bottom:327.066667pt;}
.y11{bottom:330.040000pt;}
.y7b{bottom:339.466667pt;}
.y4f{bottom:349.440000pt;}
.y73{bottom:355.333333pt;}
.y1f{bottom:357.333333pt;}
.y5f{bottom:358.133333pt;}
.y49{bottom:367.506667pt;}
.y53{bottom:372.866667pt;}
.y42{bottom:374.933333pt;}
.y10{bottom:381.066667pt;}
.y75{bottom:387.333333pt;}
.yb{bottom:391.266667pt;}
.y3a{bottom:393.733333pt;}
.y5{bottom:394.400000pt;}
.y7a{bottom:396.506667pt;}
.y4e{bottom:397.466667pt;}
.y6c{bottom:404.440000pt;}
.y72{bottom:412.360000pt;}
.y1e{bottom:414.360000pt;}
.y35{bottom:414.866667pt;}
.y48{bottom:415.533333pt;}
.y5e{bottom:423.200000pt;}
.y34{bottom:425.866667pt;}
.y17{bottom:429.133333pt;}
.yf{bottom:432.133333pt;}
.y7d{bottom:434.600000pt;}
.y3e{bottom:438.733333pt;}
.y39{bottom:441.800000pt;}
.y74{bottom:444.400000pt;}
.y4d{bottom:445.533333pt;}
.y79{bottom:451.560000pt;}
.y59{bottom:457.306667pt;}
.y68{bottom:458.933333pt;}
.y47{bottom:463.600000pt;}
.y71{bottom:467.440000pt;}
.y1d{bottom:472.440000pt;}
.y33{bottom:473.893333pt;}
.y16{bottom:480.200000pt;}
.y52{bottom:481.933333pt;}
.y78{bottom:483.600000pt;}
.y69{bottom:486.973333pt;}
.y65{bottom:487.266667pt;}
.y4{bottom:487.466667pt;}
.y5d{bottom:489.266667pt;}
.y38{bottom:489.840000pt;}
.y7c{bottom:492.626667pt;}
.y4c{bottom:493.560000pt;}
.y70{bottom:499.466667pt;}
.y67{bottom:499.960000pt;}
.y6b{bottom:509.533333pt;}
.y3d{bottom:512.800000pt;}
.y77{bottom:515.640000pt;}
.y46{bottom:519.626667pt;}
.y32{bottom:521.973333pt;}
.y26{bottom:531.026667pt;}
.y15{bottom:531.226667pt;}
.ye{bottom:535.240000pt;}
.y37{bottom:537.906667pt;}
.y6f{bottom:539.506667pt;}
.y4b{bottom:541.640000pt;}
.y66{bottom:548.026667pt;}
.y64{bottom:548.293333pt;}
.y5c{bottom:554.333333pt;}
.y76{bottom:555.666667pt;}
.y29{bottom:563.506667pt;}
.y31{bottom:570.000000pt;}
.y14{bottom:583.306667pt;}
.y36{bottom:585.933333pt;}
.yd{bottom:586.266667pt;}
.y3c{bottom:586.866667pt;}
.y7e{bottom:596.026667pt;}
.y25{bottom:600.560000pt;}
.y1c{bottom:603.560000pt;}
.y3{bottom:611.693333pt;}
.y6a{bottom:615.626667pt;}
.y5b{bottom:620.400000pt;}
.y58{bottom:625.466667pt;}
.y13{bottom:634.333333pt;}
.yc{bottom:637.333333pt;}
.ya{bottom:643.200000pt;}
.y24{bottom:648.626667pt;}
.y45{bottom:660.066667pt;}
.y51{bottom:661.933333pt;}
.y1b{bottom:673.600000pt;}
.y28{bottom:673.760000pt;}
.y12{bottom:685.400000pt;}
.y3b{bottom:694.960000pt;}
.y23{bottom:696.666667pt;}
.y27{bottom:715.800000pt;}
.y5a{bottom:725.506667pt;}
.y2{bottom:726.800000pt;}
.y6e{bottom:806.800000pt;}
.y9{bottom:830.106667pt;}
.y1{bottom:841.893333pt;}
.y63{bottom:953.106667pt;}
.y6{bottom:981.560000pt;}
.h16{height:67.484375pt;}
.h17{height:67.616992pt;}
.h2c{height:73.584000pt;}
.h2d{height:73.700800pt;}
.h29{height:77.639733pt;}
.h4{height:80.451200pt;}
.h5{height:87.445117pt;}
.h2b{height:91.904000pt;}
.h2a{height:91.999733pt;}
.h18{height:95.484375pt;}
.h1a{height:114.975733pt;}
.h1d{height:115.071467pt;}
.h1c{height:116.581445pt;}
.h1b{height:116.678516pt;}
.h28{height:123.591733pt;}
.h19{height:127.445117pt;}
.h12{height:137.525467pt;}
.h10{height:137.622933pt;}
.h22{height:137.951733pt;}
.h23{height:138.047467pt;}
.h21{height:139.878320pt;}
.h20{height:139.975391pt;}
.h8{height:145.952133pt;}
.h7{height:146.156267pt;}
.h13{height:152.311733pt;}
.h14{height:152.407467pt;}
.hf{height:159.273242pt;}
.h11{height:159.405859pt;}
.h26{height:164.382617pt;}
.h25{height:164.485937pt;}
.h1f{height:169.639467pt;}
.h9{height:171.208789pt;}
.ha{height:171.341406pt;}
.he{height:191.101367pt;}
.hd{height:191.233984pt;}
.h3{height:206.463733pt;}
.h2{height:206.623733pt;}
.hb{height:234.865039pt;}
.hc{height:234.997656pt;}
.h24{height:260.423600pt;}
.h1{height:284.071600pt;}
.h6{height:355.015600pt;}
.h1e{height:355.114133pt;}
.h27{height:494.124960pt;}
.h15{height:897.548800pt;}
.h0{height:1080.000000pt;}
.w1{width:1919.999971pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x39{left:19.933305pt;}
.x2b{left:27.266638pt;}
.x48{left:71.566638pt;}
.x3a{left:84.033305pt;}
.x3d{left:94.699971pt;}
.x47{left:106.199971pt;}
.x2{left:108.066638pt;}
.x1b{left:109.699971pt;}
.x3{left:117.299971pt;}
.x46{left:125.166638pt;}
.x1{left:128.066638pt;}
.x3e{left:140.733305pt;}
.x6{left:144.199971pt;}
.x5{left:154.626638pt;}
.x2f{left:169.226638pt;}
.x30{left:173.026638pt;}
.x22{left:186.066638pt;}
.x31{left:221.066638pt;}
.x3f{left:282.399971pt;}
.x3b{left:295.733305pt;}
.x18{left:314.639971pt;}
.x11{left:316.399971pt;}
.x10{left:331.626638pt;}
.x17{left:340.666638pt;}
.x20{left:363.359971pt;}
.x21{left:364.973305pt;}
.x1f{left:379.226638pt;}
.x1a{left:399.359971pt;}
.x1e{left:404.199971pt;}
.x13{left:424.306638pt;}
.x12{left:425.533305pt;}
.x19{left:431.199971pt;}
.x3c{left:459.066638pt;}
.x28{left:487.266638pt;}
.x2e{left:492.173305pt;}
.xa{left:513.106638pt;}
.xc{left:532.866638pt;}
.x29{left:535.306638pt;}
.x49{left:538.666638pt;}
.x45{left:609.066638pt;}
.xf{left:629.399971pt;}
.x36{left:631.759971pt;}
.x37{left:635.533305pt;}
.x4{left:638.666638pt;}
.xb{left:644.026638pt;}
.x7{left:649.866638pt;}
.x4c{left:677.933305pt;}
.x38{left:683.559971pt;}
.x8{left:697.893305pt;}
.x2a{left:723.706638pt;}
.xd{left:730.039971pt;}
.x35{left:734.799971pt;}
.x9{left:745.933305pt;}
.x41{left:747.533305pt;}
.xe{left:778.066638pt;}
.x40{left:795.666638pt;}
.x2d{left:803.839971pt;}
.x42{left:928.773305pt;}
.x4d{left:938.106638pt;}
.x2c{left:945.799971pt;}
.x4a{left:992.533305pt;}
.x26{left:1011.599971pt;}
.x25{left:1033.466638pt;}
.x23{left:1047.533305pt;}
.x33{left:1071.399971pt;}
.x27{left:1086.733305pt;}
.x32{left:1095.266638pt;}
.x34{left:1119.399971pt;}
.x24{left:1120.839971pt;}
.x1c{left:1224.733305pt;}
.x15{left:1280.866638pt;}
.x14{left:1285.333305pt;}
.x16{left:1346.599971pt;}
.x1d{left:1364.759971pt;}
.x43{left:1383.866638pt;}
.x4b{left:1459.133305pt;}
.x44{left:1567.199971pt;}
}




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