
    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_108d6181cdd1174fe120302d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_4878e76d7b9127a01c2fe6c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_3236918eb682ea64d188e68a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_4045b16687760d718dc5cf4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.891602;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_8eb27e37e0ca999ee2cafa2c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_4e661c2247c9e01e6ec19980.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_495d862db37710bb72c4140c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_df62f31909abc090fe917072.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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:-25.044871px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321678px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000034px;}
.ls2{letter-spacing:4.488315px;}
.ls1{letter-spacing:13.488270px;}
.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;}
}
.ws6{word-spacing:-33.000001px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.500000px;}
.ws2{word-spacing:-15.000000px;}
.ws1{word-spacing:-10.800000px;}
.ws3{word-spacing:-9.900000px;}
.ws4{word-spacing:0.000000px;}
._10{margin-left:-8.742531px;}
._f{margin-left:-7.509219px;}
._8{margin-left:-6.404515px;}
._2{margin-left:-5.343701px;}
._1{margin-left:-3.972671px;}
._c{margin-left:-2.486638px;}
._0{margin-left:-1.300780px;}
._6{width:3.499399px;}
._5{width:4.553862px;}
._4{width:8.881834px;}
._a{width:9.950068px;}
._3{width:13.405751px;}
._7{width:17.941527px;}
._9{width:22.500001px;}
._b{width:26.999999px;}
._d{width:31.410184px;}
._e{width:36.000000px;}
._17{width:44.478518px;}
._12{width:45.521483px;}
._11{width:49.227537px;}
._14{width:63.521483px;}
._13{width:67.227537px;}
._15{width:74.542968px;}
._16{width:78.184569px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:39.600001px;}
.fs3{font-size:43.200002px;}
.fs5{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.999997px;}
.fs1{font-size:132.000003px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.496571px;}
.y73{bottom:3.496581px;}
.y2b{bottom:3.496583px;}
.y99{bottom:3.569461px;}
.ya0{bottom:11.971442px;}
.y93{bottom:12.043933px;}
.y85{bottom:12.044165px;}
.ya2{bottom:12.044531px;}
.yac{bottom:12.044668px;}
.y98{bottom:22.542856px;}
.y92{bottom:31.017328px;}
.y9f{bottom:39.492186px;}
.yab{bottom:39.492913px;}
.y97{bottom:49.991086px;}
.y91{bottom:58.465573px;}
.y9e{bottom:58.465575px;}
.yaa{bottom:66.941158px;}
.y96{bottom:68.964331px;}
.y90{bottom:77.438953px;}
.y9d{bottom:85.914550px;}
.y29{bottom:88.171514px;}
.y4c{bottom:88.171694px;}
.y71{bottom:88.171874px;}
.ya9{bottom:94.389763px;}
.y8f{bottom:96.412348px;}
.y9c{bottom:104.887938px;}
.y28{bottom:114.284450px;}
.y8e{bottom:115.385743px;}
.ya8{bottom:121.838008px;}
.y4b{bottom:121.877011px;}
.ye1{bottom:122.474859px;}
.y70{bottom:122.628659px;}
.ybe{bottom:129.815914px;}
.y9b{bottom:132.336181px;}
.y95{bottom:133.197507px;}
.y27{bottom:139.519056px;}
.y10b{bottom:141.226312px;}
.y8d{bottom:142.833973px;}
.ya7{bottom:149.286253px;}
.y4a{bottom:152.924374px;}
.ye0{bottom:153.522223px;}
.y6f{bottom:153.676027px;}
.ybd{bottom:160.863278px;}
.y8c{bottom:161.807368px;}
.y10a{bottom:161.924558px;}
.ya6{bottom:176.734498px;}
.y109{bottom:182.622803px;}
.y49{bottom:183.971738px;}
.ydf{bottom:184.569586px;}
.y6e{bottom:184.723394px;}
.y8b{bottom:189.256348px;}
.ybc{bottom:191.910651px;}
.y108{bottom:203.321050px;}
.ya5{bottom:204.183103px;}
.y8a{bottom:208.229368px;}
.y48{bottom:215.019119px;}
.yde{bottom:215.616949px;}
.y6d{bottom:215.770750px;}
.ybb{bottom:222.958014px;}
.y26{bottom:223.100471px;}
.y107{bottom:224.019293px;}
.y94{bottom:227.166142px;}
.ya4{bottom:231.631198px;}
.y89{bottom:235.677973px;}
.y106{bottom:244.717523px;}
.y47{bottom:246.066291px;}
.ydd{bottom:246.664313px;}
.y6c{bottom:246.818118px;}
.yba{bottom:254.005378px;}
.y88{bottom:254.651368px;}
.y25{bottom:259.352419px;}
.y86{bottom:264.214605px;}
.y105{bottom:265.415768px;}
.y87{bottom:273.624973px;}
.y46{bottom:277.113654px;}
.ydc{bottom:277.711668px;}
.y6b{bottom:277.865481px;}
.yb9{bottom:285.052741px;}
.y24{bottom:285.600946px;}
.y104{bottom:286.114015px;}
.y23{bottom:302.849490px;}
.y103{bottom:306.812257px;}
.y45{bottom:308.161018px;}
.ydb{bottom:308.759031px;}
.y6a{bottom:308.912844px;}
.yb8{bottom:316.100104px;}
.y22{bottom:320.098026px;}
.y102{bottom:327.510503px;}
.y21{bottom:337.346561px;}
.y44{bottom:339.208381px;}
.yda{bottom:339.806394px;}
.y69{bottom:339.960208px;}
.yb7{bottom:347.147468px;}
.y101{bottom:348.208748px;}
.y20{bottom:354.595096px;}
.y100{bottom:368.906978px;}
.y43{bottom:370.255744px;}
.yd9{bottom:370.853758px;}
.y68{bottom:371.007571px;}
.y1f{bottom:371.843631px;}
.yb6{bottom:378.194815px;}
.y1e{bottom:389.092167px;}
.yff{bottom:389.605225px;}
.y42{bottom:401.303107px;}
.yd8{bottom:401.901121px;}
.y67{bottom:402.054934px;}
.y1d{bottom:406.340699px;}
.yb5{bottom:409.242183px;}
.yfe{bottom:410.303468px;}
.y1c{bottom:423.589234px;}
.y41{bottom:431.001338px;}
.yfd{bottom:431.001713px;}
.yd7{bottom:432.948484px;}
.y66{bottom:433.102298px;}
.yb4{bottom:440.289546px;}
.yfc{bottom:451.699957px;}
.y1b{bottom:458.837763px;}
.yd6{bottom:463.995848px;}
.y65{bottom:464.149649px;}
.yb3{bottom:471.336909px;}
.yfb{bottom:472.398188px;}
.y40{bottom:480.048703px;}
.y1a{bottom:485.086308px;}
.yfa{bottom:493.096438px;}
.yd5{bottom:493.694092px;}
.y64{bottom:495.197039px;}
.yb2{bottom:502.384273px;}
.y3f{bottom:511.096066px;}
.y19{bottom:511.334879px;}
.yf9{bottom:513.794680px;}
.y63{bottom:526.244395px;}
.y18{bottom:528.583414px;}
.yb1{bottom:533.431636px;}
.yf8{bottom:534.492923px;}
.y3e{bottom:542.143429px;}
.yd4{bottom:542.741454px;}
.y17{bottom:545.831966px;}
.yf7{bottom:555.191167px;}
.y62{bottom:557.291752px;}
.y84{bottom:562.843867px;}
.y16{bottom:563.080501px;}
.yb0{bottom:564.478999px;}
.y3d{bottom:573.190792px;}
.yd3{bottom:573.788818px;}
.yf6{bottom:575.889397px;}
.y15{bottom:580.329036px;}
.y61{bottom:588.339119px;}
.yaf{bottom:595.526363px;}
.yf5{bottom:596.587643px;}
.y14{bottom:597.577572px;}
.y3c{bottom:604.238154px;}
.yd2{bottom:604.836181px;}
.y83{bottom:608.285888px;}
.y13{bottom:614.826098px;}
.yf4{bottom:617.285888px;}
.y60{bottom:619.386480px;}
.y12{bottom:632.074634px;}
.yae{bottom:633.900139px;}
.y3b{bottom:635.285518px;}
.yd1{bottom:635.883544px;}
.yf3{bottom:637.984132px;}
.y82{bottom:648.333256px;}
.y11{bottom:649.323173px;}
.y5f{bottom:650.433835px;}
.yad{bottom:652.873527px;}
.yf2{bottom:658.682378px;}
.y3a{bottom:666.332881px;}
.y10{bottom:666.571708px;}
.yd0{bottom:666.930907px;}
.ya3{bottom:673.902105px;}
.y81{bottom:679.380619px;}
.yf1{bottom:679.380622px;}
.y5e{bottom:681.481198px;}
.yf{bottom:683.820288px;}
.ycf{bottom:696.304692px;}
.y39{bottom:697.380244px;}
.yf0{bottom:700.078852px;}
.y80{bottom:710.427982px;}
.y5d{bottom:712.528570px;}
.yce{bottom:715.278080px;}
.ye{bottom:719.717738px;}
.yef{bottom:720.777098px;}
.y38{bottom:728.427608px;}
.ycd{bottom:734.251469px;}
.yee{bottom:741.475343px;}
.y7f{bottom:741.475348px;}
.y5c{bottom:743.575744px;}
.ycc{bottom:753.224858px;}
.yd{bottom:758.415983px;}
.y37{bottom:759.474981px;}
.yed{bottom:762.173581px;}
.ycb{bottom:772.198249px;}
.y7e{bottom:772.522711px;}
.y5b{bottom:774.623108px;}
.yec{bottom:782.871823px;}
.y36{bottom:790.522344px;}
.yca{bottom:791.171637px;}
.yc{bottom:797.114227px;}
.yeb{bottom:803.570065px;}
.y7d{bottom:803.570074px;}
.y5a{bottom:803.996898px;}
.y35{bottom:821.569708px;}
.y59{bottom:822.970278px;}
.yea{bottom:824.268307px;}
.yc9{bottom:829.818607px;}
.y7c{bottom:834.617438px;}
.yb{bottom:835.812473px;}
.y58{bottom:841.943667px;}
.ye9{bottom:844.966553px;}
.y34{bottom:852.617071px;}
.yc8{bottom:859.192388px;}
.y57{bottom:860.917055px;}
.ye8{bottom:865.664797px;}
.y7b{bottom:865.664799px;}
.ya{bottom:874.510705px;}
.yc7{bottom:878.165777px;}
.y56{bottom:879.890444px;}
.y33{bottom:883.664434px;}
.ye7{bottom:886.363033px;}
.y9{bottom:895.208948px;}
.y7a{bottom:896.712163px;}
.yc6{bottom:897.139166px;}
.y55{bottom:898.863833px;}
.ye6{bottom:907.061275px;}
.y32{bottom:914.711797px;}
.yc5{bottom:916.112546px;}
.y54{bottom:917.837224px;}
.ye5{bottom:927.759518px;}
.y79{bottom:927.759526px;}
.ya1{bottom:930.537601px;}
.y8{bottom:933.907195px;}
.yc4{bottom:935.085934px;}
.y53{bottom:936.810612px;}
.y31{bottom:945.759154px;}
.yc3{bottom:954.059322px;}
.y7{bottom:954.605437px;}
.ye4{bottom:957.457762px;}
.y78{bottom:958.806889px;}
.y9a{bottom:967.586427px;}
.yc2{bottom:973.032712px;}
.y52{bottom:975.457579px;}
.y30{bottom:976.806518px;}
.y77{bottom:989.854253px;}
.yc1{bottom:992.006100px;}
.y6{bottom:993.303681px;}
.y51{bottom:1006.504943px;}
.ye3{bottom:1006.505128px;}
.y2f{bottom:1007.853881px;}
.yc0{bottom:1010.979492px;}
.y76{bottom:1019.552490px;}
.ybf{bottom:1029.952880px;}
.y5{bottom:1032.001923px;}
.y50{bottom:1037.552306px;}
.ye2{bottom:1037.552491px;}
.y2e{bottom:1038.901244px;}
.y4{bottom:1061.700153px;}
.y4f{bottom:1068.599669px;}
.y75{bottom:1068.599854px;}
.y2d{bottom:1069.948608px;}
.y3{bottom:1085.643026px;}
.y2c{bottom:1099.646850px;}
.y4e{bottom:1099.647033px;}
.y74{bottom:1099.647217px;}
.y2a{bottom:1116.451538px;}
.y1{bottom:1116.451618px;}
.y4d{bottom:1116.451720px;}
.y72{bottom:1116.451905px;}
.hb{height:35.500782px;}
.h12{height:35.923463px;}
.h18{height:35.923829px;}
.h2{height:43.989259px;}
.h17{height:45.826173px;}
.h7{height:48.796875px;}
.h9{height:49.992188px;}
.ha{height:53.789061px;}
.h13{height:58.620119px;}
.hc{height:59.167970px;}
.h8{height:62.999998px;}
.h5{height:63.949219px;}
.h4{height:64.546875px;}
.h6{height:65.691211px;}
.h15{height:92.843628px;}
.hf{height:110.174925px;}
.hd{height:110.175105px;}
.h1a{height:110.175300px;}
.h3{height:118.335940px;}
.h11{height:146.548095px;}
.h10{height:146.548280px;}
.h1{height:146.548382px;}
.he{height:146.548462px;}
.h16{height:147.740478px;}
.h19{height:255.510495px;}
.h14{height:297.504270px;}
.h0{height:1263.000000px;}
.w2{width:675.000090px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x11{left:16.875000px;}
.x12{left:41.625000px;}
.x14{left:46.125000px;}
.x15{left:114.313500px;}
.x13{left:121.978514px;}
.x1{left:127.575005px;}
.xf{left:129.825005px;}
.x6{left:135.163045px;}
.x3{left:147.028279px;}
.x10{left:176.471157px;}
.xe{left:205.356895px;}
.xc{left:213.075005px;}
.x9{left:225.368277px;}
.x2{left:282.239210px;}
.xd{left:297.450005px;}
.xb{left:301.950005px;}
.x5{left:309.085408px;}
.x7{left:426.959920px;}
.x4{left:467.719205px;}
.xa{left:600.309668px;}
.x8{left:807.863416px;}
@media print{
.v2{vertical-align:-22.262108pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285936pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000030pt;}
.ls2{letter-spacing:3.989613pt;}
.ls1{letter-spacing:11.989573pt;}
.ws6{word-spacing:-29.333334pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.666667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-9.600000pt;}
.ws3{word-spacing:-8.800000pt;}
.ws4{word-spacing:0.000000pt;}
._10{margin-left:-7.771139pt;}
._f{margin-left:-6.674861pt;}
._8{margin-left:-5.692902pt;}
._2{margin-left:-4.749956pt;}
._1{margin-left:-3.531264pt;}
._c{margin-left:-2.210345pt;}
._0{margin-left:-1.156249pt;}
._6{width:3.110577pt;}
._5{width:4.047877pt;}
._4{width:7.894963pt;}
._a{width:8.844505pt;}
._3{width:11.916223pt;}
._7{width:15.948024pt;}
._9{width:20.000001pt;}
._b{width:23.999999pt;}
._d{width:27.920164pt;}
._e{width:32.000000pt;}
._17{width:39.536461pt;}
._12{width:40.463540pt;}
._11{width:43.757811pt;}
._14{width:56.463540pt;}
._13{width:59.757811pt;}
._15{width:66.260416pt;}
._16{width:69.497395pt;}
.fs6{font-size:35.200001pt;}
.fs3{font-size:38.400002pt;}
.fs5{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.666664pt;}
.fs1{font-size:117.333336pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.108063pt;}
.y73{bottom:3.108072pt;}
.y2b{bottom:3.108073pt;}
.y99{bottom:3.172855pt;}
.ya0{bottom:10.641281pt;}
.y93{bottom:10.705719pt;}
.y85{bottom:10.705925pt;}
.ya2{bottom:10.706250pt;}
.yac{bottom:10.706372pt;}
.y98{bottom:20.038095pt;}
.y92{bottom:27.570959pt;}
.y9f{bottom:35.104165pt;}
.yab{bottom:35.104812pt;}
.y97{bottom:44.436521pt;}
.y91{bottom:51.969399pt;}
.y9e{bottom:51.969400pt;}
.yaa{bottom:59.503252pt;}
.y96{bottom:61.301628pt;}
.y90{bottom:68.834625pt;}
.y9d{bottom:76.368489pt;}
.y29{bottom:78.374679pt;}
.y4c{bottom:78.374839pt;}
.y71{bottom:78.374999pt;}
.ya9{bottom:83.902012pt;}
.y8f{bottom:85.699865pt;}
.y9c{bottom:93.233723pt;}
.y28{bottom:101.586178pt;}
.y8e{bottom:102.565105pt;}
.ya8{bottom:108.300452pt;}
.y4b{bottom:108.335121pt;}
.ye1{bottom:108.866541pt;}
.y70{bottom:109.003253pt;}
.ybe{bottom:115.391924pt;}
.y9b{bottom:117.632161pt;}
.y95{bottom:118.397784pt;}
.y27{bottom:124.016939pt;}
.y10b{bottom:125.534500pt;}
.y8d{bottom:126.963532pt;}
.ya7{bottom:132.698892pt;}
.y4a{bottom:135.932777pt;}
.ye0{bottom:136.464198pt;}
.y6f{bottom:136.600913pt;}
.ybd{bottom:142.989580pt;}
.y8c{bottom:143.828772pt;}
.y10a{bottom:143.932940pt;}
.ya6{bottom:157.097332pt;}
.y109{bottom:162.331380pt;}
.y49{bottom:163.530433pt;}
.ydf{bottom:164.061854pt;}
.y6e{bottom:164.198573pt;}
.y8b{bottom:168.227865pt;}
.ybc{bottom:170.587245pt;}
.y108{bottom:180.729823pt;}
.ya5{bottom:181.496092pt;}
.y8a{bottom:185.092772pt;}
.y48{bottom:191.128106pt;}
.yde{bottom:191.659510pt;}
.y6d{bottom:191.796223pt;}
.ybb{bottom:198.184901pt;}
.y26{bottom:198.311530pt;}
.y107{bottom:199.128260pt;}
.y94{bottom:201.925460pt;}
.ya4{bottom:205.894398pt;}
.y89{bottom:209.491532pt;}
.y106{bottom:217.526687pt;}
.y47{bottom:218.725592pt;}
.ydd{bottom:219.257167pt;}
.y6c{bottom:219.393883pt;}
.yba{bottom:225.782558pt;}
.y88{bottom:226.356772pt;}
.y25{bottom:230.535484pt;}
.y86{bottom:234.857427pt;}
.y105{bottom:235.925127pt;}
.y87{bottom:243.222198pt;}
.y46{bottom:246.323248pt;}
.ydc{bottom:246.854816pt;}
.y6b{bottom:246.991539pt;}
.yb9{bottom:253.380214pt;}
.y24{bottom:253.867508pt;}
.y104{bottom:254.323569pt;}
.y23{bottom:269.199547pt;}
.y103{bottom:272.722007pt;}
.y45{bottom:273.920905pt;}
.ydb{bottom:274.452472pt;}
.y6a{bottom:274.589195pt;}
.yb8{bottom:280.977870pt;}
.y22{bottom:284.531579pt;}
.y102{bottom:291.120447pt;}
.y21{bottom:299.863610pt;}
.y44{bottom:301.518561pt;}
.yda{bottom:302.050128pt;}
.y69{bottom:302.186852pt;}
.yb7{bottom:308.575527pt;}
.y101{bottom:309.518887pt;}
.y20{bottom:315.195641pt;}
.y100{bottom:327.917313pt;}
.y43{bottom:329.116217pt;}
.yd9{bottom:329.647785pt;}
.y68{bottom:329.784508pt;}
.y1f{bottom:330.527672pt;}
.yb6{bottom:336.173169pt;}
.y1e{bottom:345.859704pt;}
.yff{bottom:346.315756pt;}
.y42{bottom:356.713873pt;}
.yd8{bottom:357.245441pt;}
.y67{bottom:357.382164pt;}
.y1d{bottom:361.191733pt;}
.yb5{bottom:363.770829pt;}
.yfe{bottom:364.714193pt;}
.y1c{bottom:376.523764pt;}
.y41{bottom:383.112300pt;}
.yfd{bottom:383.112633pt;}
.yd7{bottom:384.843097pt;}
.y66{bottom:384.979820pt;}
.yb4{bottom:391.368485pt;}
.yfc{bottom:401.511073pt;}
.y1b{bottom:407.855790pt;}
.yd6{bottom:412.440753pt;}
.y65{bottom:412.577466pt;}
.yb3{bottom:418.966141pt;}
.yfb{bottom:419.909500pt;}
.y40{bottom:426.709958pt;}
.y1a{bottom:431.187830pt;}
.yfa{bottom:438.307945pt;}
.yd5{bottom:438.839193pt;}
.y64{bottom:440.175146pt;}
.yb2{bottom:446.563798pt;}
.y3f{bottom:454.307614pt;}
.y19{bottom:454.519892pt;}
.yf9{bottom:456.706383pt;}
.y63{bottom:467.772796pt;}
.y18{bottom:469.851923pt;}
.yb1{bottom:474.161454pt;}
.yf8{bottom:475.104820pt;}
.y3e{bottom:481.905270pt;}
.yd4{bottom:482.436848pt;}
.y17{bottom:485.183970pt;}
.yf7{bottom:493.503260pt;}
.y62{bottom:495.370446pt;}
.y84{bottom:500.305660pt;}
.y16{bottom:500.516001pt;}
.yb0{bottom:501.759110pt;}
.y3d{bottom:509.502927pt;}
.yd3{bottom:510.034505pt;}
.yf6{bottom:511.901687pt;}
.y15{bottom:515.848032pt;}
.y61{bottom:522.968106pt;}
.yaf{bottom:529.356767pt;}
.yf5{bottom:530.300127pt;}
.y14{bottom:531.180064pt;}
.y3c{bottom:537.100581pt;}
.yd2{bottom:537.632161pt;}
.y83{bottom:540.698567pt;}
.y13{bottom:546.512087pt;}
.yf4{bottom:548.698567pt;}
.y60{bottom:550.565760pt;}
.y12{bottom:561.844119pt;}
.yae{bottom:563.466790pt;}
.y3b{bottom:564.698238pt;}
.yd1{bottom:565.229817pt;}
.yf3{bottom:567.097007pt;}
.y82{bottom:576.296227pt;}
.y11{bottom:577.176154pt;}
.y5f{bottom:578.163409pt;}
.yad{bottom:580.332024pt;}
.yf2{bottom:585.495447pt;}
.y3a{bottom:592.295894pt;}
.y10{bottom:592.508185pt;}
.yd0{bottom:592.827473pt;}
.ya3{bottom:599.024093pt;}
.y81{bottom:603.893884pt;}
.yf1{bottom:603.893887pt;}
.y5e{bottom:605.761065pt;}
.yf{bottom:607.840256pt;}
.ycf{bottom:618.937504pt;}
.y39{bottom:619.893550pt;}
.yf0{bottom:622.292313pt;}
.y80{bottom:631.491540pt;}
.y5d{bottom:633.358729pt;}
.yce{bottom:635.802738pt;}
.ye{bottom:639.749100pt;}
.yef{bottom:640.690753pt;}
.y38{bottom:647.491207pt;}
.ycd{bottom:652.667973pt;}
.yee{bottom:659.089193pt;}
.y7f{bottom:659.089198pt;}
.y5c{bottom:660.956217pt;}
.ycc{bottom:669.533207pt;}
.yd{bottom:674.147540pt;}
.y37{bottom:675.088872pt;}
.yed{bottom:677.487627pt;}
.ycb{bottom:686.398444pt;}
.y7e{bottom:686.686854pt;}
.y5b{bottom:688.553873pt;}
.yec{bottom:695.886064pt;}
.y36{bottom:702.686528pt;}
.yca{bottom:703.263678pt;}
.yc{bottom:708.545980pt;}
.yeb{bottom:714.284502pt;}
.y7d{bottom:714.284510pt;}
.y5a{bottom:714.663909pt;}
.y35{bottom:730.284185pt;}
.y59{bottom:731.529136pt;}
.yea{bottom:732.682940pt;}
.yc9{bottom:737.616540pt;}
.y7c{bottom:741.882167pt;}
.yb{bottom:742.944420pt;}
.y58{bottom:748.394370pt;}
.ye9{bottom:751.081380pt;}
.y34{bottom:757.881841pt;}
.yc8{bottom:763.726567pt;}
.y57{bottom:765.259604pt;}
.ye8{bottom:769.479820pt;}
.y7b{bottom:769.479821pt;}
.ya{bottom:777.342849pt;}
.yc7{bottom:780.591802pt;}
.y56{bottom:782.124839pt;}
.y33{bottom:785.479497pt;}
.ye7{bottom:787.878251pt;}
.y9{bottom:795.741287pt;}
.y7a{bottom:797.077478pt;}
.yc6{bottom:797.457036pt;}
.y55{bottom:798.990073pt;}
.ye6{bottom:806.276689pt;}
.y32{bottom:813.077153pt;}
.yc5{bottom:814.322263pt;}
.y54{bottom:815.855310pt;}
.ye5{bottom:824.675127pt;}
.y79{bottom:824.675134pt;}
.ya1{bottom:827.144535pt;}
.y8{bottom:830.139729pt;}
.yc4{bottom:831.187497pt;}
.y53{bottom:832.720544pt;}
.y31{bottom:840.674804pt;}
.yc3{bottom:848.052731pt;}
.y7{bottom:848.538167pt;}
.ye4{bottom:851.073567pt;}
.y78{bottom:852.272790pt;}
.y9a{bottom:860.076824pt;}
.yc2{bottom:864.917966pt;}
.y52{bottom:867.073404pt;}
.y30{bottom:868.272461pt;}
.y77{bottom:879.870447pt;}
.yc1{bottom:881.783200pt;}
.y6{bottom:882.936605pt;}
.y51{bottom:894.671061pt;}
.ye3{bottom:894.671225pt;}
.y2f{bottom:895.870117pt;}
.yc0{bottom:898.648437pt;}
.y76{bottom:906.268880pt;}
.ybf{bottom:915.513671pt;}
.y5{bottom:917.335043pt;}
.y50{bottom:922.268717pt;}
.ye2{bottom:922.268881pt;}
.y2e{bottom:923.467773pt;}
.y4{bottom:943.733469pt;}
.y4f{bottom:949.866373pt;}
.y75{bottom:949.866537pt;}
.y2d{bottom:951.065429pt;}
.y3{bottom:965.016023pt;}
.y2c{bottom:977.463867pt;}
.y4e{bottom:977.464029pt;}
.y74{bottom:977.464193pt;}
.y2a{bottom:992.401367pt;}
.y1{bottom:992.401439pt;}
.y4d{bottom:992.401529pt;}
.y72{bottom:992.401693pt;}
.hb{height:31.556251pt;}
.h12{height:31.931967pt;}
.h18{height:31.932292pt;}
.h2{height:39.101563pt;}
.h17{height:40.734376pt;}
.h7{height:43.375000pt;}
.h9{height:44.437500pt;}
.ha{height:47.812499pt;}
.h13{height:52.106772pt;}
.hc{height:52.593751pt;}
.h8{height:55.999998pt;}
.h5{height:56.843750pt;}
.h4{height:57.375000pt;}
.h6{height:58.392187pt;}
.h15{height:82.527669pt;}
.hf{height:97.933267pt;}
.hd{height:97.933427pt;}
.h1a{height:97.933600pt;}
.h3{height:105.187502pt;}
.h11{height:130.264973pt;}
.h10{height:130.265137pt;}
.h1{height:130.265228pt;}
.he{height:130.265300pt;}
.h16{height:131.324869pt;}
.h19{height:227.120440pt;}
.h14{height:264.448240pt;}
.h0{height:1122.666667pt;}
.w2{width:600.000080pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x11{left:15.000000pt;}
.x12{left:37.000000pt;}
.x14{left:41.000000pt;}
.x15{left:101.612000pt;}
.x13{left:108.425346pt;}
.x1{left:113.400004pt;}
.xf{left:115.400004pt;}
.x6{left:120.144929pt;}
.x3{left:130.691804pt;}
.x10{left:156.863251pt;}
.xe{left:182.539462pt;}
.xc{left:189.400004pt;}
.x9{left:200.327357pt;}
.x2{left:250.879298pt;}
.xd{left:264.400004pt;}
.xb{left:268.400004pt;}
.x5{left:274.742585pt;}
.x7{left:379.519929pt;}
.x4{left:415.750404pt;}
.xa{left:533.608594pt;}
.x8{left:718.100814pt;}
}




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