
    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_69366b465eaa2788fe2e209b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_1d423275a594856bb6dc02b6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_9b956c763c3cbf2c16eda7ef.woff')format("woff");}.ff3{font-family:ff3;line-height:1.272949;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_eccfac7ea1980be495bee274.woff')format("woff");}.ff4{font-family:ff4;line-height:1.156889;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_4601181748846d6a8b66decf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.880000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004682px;}
.ls3{letter-spacing:0.723183px;}
.ls1{letter-spacing:0.723428px;}
.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;}
}
.ws2{word-spacing:-19.440000px;}
.ws4{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.120000px;}
.ws1{word-spacing:-13.305600px;}
.ws3{word-spacing:0.000000px;}
._24{margin-left:-4.652789px;}
._a{margin-left:-2.957760px;}
._0{margin-left:-1.935360px;}
._1{width:1.330560px;}
._8{width:2.508480px;}
._f{width:3.942720px;}
._5{width:5.788800px;}
._6{width:6.868800px;}
._7{width:8.421120px;}
._14{width:9.429120px;}
._13{width:10.452089px;}
._12{width:11.615040px;}
._11{width:12.844800px;}
._b{width:14.780160px;}
._9{width:15.805440px;}
._c{width:16.983360px;}
._18{width:19.981440px;}
._19{width:21.545280px;}
._1b{width:23.227200px;}
._1a{width:24.618240px;}
._1c{width:26.107200px;}
._22{width:27.446400px;}
._23{width:28.650240px;}
._e{width:30.168000px;}
._d{width:31.204800px;}
._25{width:32.253120px;}
._10{width:33.269760px;}
._1d{width:34.758720px;}
._21{width:36.532800px;}
._20{width:37.615680px;}
._2a{width:38.864197px;}
._2b{width:39.882750px;}
._2c{width:41.277301px;}
._26{width:42.984000px;}
._28{width:44.165448px;}
._27{width:45.714240px;}
._1e{width:52.444800px;}
._1f{width:53.510649px;}
._29{width:218.908800px;}
._4{width:220.296321px;}
._17{width:221.736321px;}
._2{width:1206.725121px;}
._15{width:1208.493441px;}
._3{width:2032.598913px;}
._16{width:2033.621313px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs4{font-size:54.719940px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.240000px;}
.ya{bottom:3.960000px;}
.y9{bottom:41.040000px;}
.y7{bottom:41.760000px;}
.y6{bottom:58.680000px;}
.y2c{bottom:138.240000px;}
.y94{bottom:138.960000px;}
.y82{bottom:140.040000px;}
.y98{bottom:141.840000px;}
.y58{bottom:144.360000px;}
.y2b{bottom:149.400000px;}
.y93{bottom:159.840000px;}
.y81{bottom:160.560000px;}
.y6b{bottom:162.360000px;}
.yb9{bottom:164.880000px;}
.y57{bottom:165.240000px;}
.y2a{bottom:169.560000px;}
.y92{bottom:180.360000px;}
.y80{bottom:181.440000px;}
.y6a{bottom:183.240000px;}
.y56{bottom:185.760000px;}
.ye5{bottom:189.360000px;}
.y29{bottom:190.080000px;}
.yca{bottom:196.560000px;}
.y91{bottom:201.240000px;}
.y7f{bottom:201.960000px;}
.y69{bottom:203.760000px;}
.yaf{bottom:206.640000px;}
.ye4{bottom:210.240000px;}
.y28{bottom:210.960000px;}
.yc9{bottom:217.440000px;}
.y90{bottom:221.760000px;}
.y7e{bottom:222.840000px;}
.y55{bottom:224.640000px;}
.yae{bottom:227.160000px;}
.y27{bottom:231.480000px;}
.yc8{bottom:237.960000px;}
.y8f{bottom:242.640000px;}
.y7d{bottom:243.360000px;}
.y54{bottom:245.160000px;}
.yad{bottom:248.040000px;}
.ye3{bottom:248.760000px;}
.y26{bottom:252.360000px;}
.y7c{bottom:264.240000px;}
.y53{bottom:266.040000px;}
.yac{bottom:268.560000px;}
.ye2{bottom:269.640000px;}
.yc7{bottom:276.840000px;}
.y8e{bottom:281.160000px;}
.y7b{bottom:284.760000px;}
.y52{bottom:286.560000px;}
.yab{bottom:289.440000px;}
.y25{bottom:290.880000px;}
.yc6{bottom:297.360000px;}
.y8d{bottom:302.040000px;}
.y7a{bottom:305.640000px;}
.y51{bottom:307.440000px;}
.ye1{bottom:308.160000px;}
.yaa{bottom:309.960000px;}
.y8c{bottom:322.560000px;}
.y79{bottom:326.160000px;}
.y50{bottom:327.960000px;}
.ye0{bottom:329.040000px;}
.y24{bottom:330.840000px;}
.yc5{bottom:336.240000px;}
.y8b{bottom:343.440000px;}
.y78{bottom:347.040000px;}
.y23{bottom:348.120000px;}
.y4f{bottom:348.840000px;}
.yc4{bottom:356.760000px;}
.y8a{bottom:363.960000px;}
.y22{bottom:365.400000px;}
.y77{bottom:367.560000px;}
.y4e{bottom:369.360000px;}
.y89{bottom:384.840000px;}
.ydf{bottom:388.440000px;}
.y4d{bottom:390.240000px;}
.yc3{bottom:395.640000px;}
.y21{bottom:401.040000px;}
.y88{bottom:405.360000px;}
.y76{bottom:406.440000px;}
.yde{bottom:408.960000px;}
.y4c{bottom:410.760000px;}
.yc2{bottom:416.160000px;}
.y87{bottom:426.240000px;}
.ydd{bottom:429.840000px;}
.y4b{bottom:431.640000px;}
.yc1{bottom:437.040000px;}
.y20{bottom:441.360000px;}
.y75{bottom:446.760000px;}
.y97{bottom:449.280000px;}
.y4a{bottom:452.160000px;}
.y1f{bottom:462.240000px;}
.y74{bottom:467.640000px;}
.ydc{bottom:468.360000px;}
.yb8{bottom:470.160000px;}
.y49{bottom:473.040000px;}
.yc0{bottom:475.560000px;}
.y1e{bottom:482.760000px;}
.y73{bottom:488.160000px;}
.ydb{bottom:489.240000px;}
.y68{bottom:491.040000px;}
.y48{bottom:493.560000px;}
.ybf{bottom:496.440000px;}
.y1d{bottom:503.640000px;}
.y72{bottom:509.040000px;}
.yda{bottom:509.760000px;}
.y67{bottom:511.560000px;}
.y47{bottom:514.440000px;}
.y1c{bottom:524.160000px;}
.y71{bottom:529.560000px;}
.y66{bottom:532.440000px;}
.ya9{bottom:534.960000px;}
.y1b{bottom:545.040000px;}
.yd9{bottom:548.640000px;}
.y70{bottom:550.440000px;}
.y46{bottom:552.600000px;}
.y65{bottom:552.960000px;}
.ya8{bottom:555.840000px;}
.y1a{bottom:565.560000px;}
.yd8{bottom:569.160000px;}
.y6f{bottom:570.960000px;}
.y64{bottom:573.840000px;}
.ya7{bottom:576.360000px;}
.y19{bottom:586.440000px;}
.y45{bottom:591.840000px;}
.ybe{bottom:594.000000px;}
.y63{bottom:594.360000px;}
.ya6{bottom:597.240000px;}
.y18{bottom:606.960000px;}
.yd7{bottom:608.040000px;}
.y44{bottom:612.360000px;}
.y62{bottom:615.240000px;}
.ya5{bottom:617.760000px;}
.yd6{bottom:628.560000px;}
.y86{bottom:630.360000px;}
.y43{bottom:633.240000px;}
.y61{bottom:635.760000px;}
.ya4{bottom:638.640000px;}
.y17{bottom:645.840000px;}
.y85{bottom:651.240000px;}
.y42{bottom:653.760000px;}
.y60{bottom:656.640000px;}
.ya3{bottom:659.160000px;}
.yd5{bottom:667.440000px;}
.y84{bottom:671.760000px;}
.y41{bottom:674.640000px;}
.y5f{bottom:677.160000px;}
.ya2{bottom:680.040000px;}
.y16{bottom:686.160000px;}
.yd4{bottom:687.960000px;}
.y83{bottom:692.640000px;}
.y40{bottom:695.160000px;}
.y5e{bottom:698.040000px;}
.ya1{bottom:700.560000px;}
.ye9{bottom:711.360000px;}
.y6e{bottom:713.160000px;}
.y3f{bottom:716.040000px;}
.yb7{bottom:718.560000px;}
.y15{bottom:726.840000px;}
.y6d{bottom:734.040000px;}
.y5d{bottom:736.200000px;}
.y3e{bottom:736.560000px;}
.ya0{bottom:739.080000px;}
.yb6{bottom:739.440000px;}
.yd3{bottom:747.360000px;}
.y14{bottom:749.520000px;}
.ye8{bottom:749.880000px;}
.y6c{bottom:754.560000px;}
.y3d{bottom:757.440000px;}
.yb5{bottom:759.960000px;}
.yd2{bottom:767.880000px;}
.y13{bottom:772.200000px;}
.y5c{bottom:775.440000px;}
.y3c{bottom:777.960000px;}
.yb4{bottom:780.840000px;}
.ye7{bottom:788.760000px;}
.y5b{bottom:795.960000px;}
.y3b{bottom:798.840000px;}
.yb3{bottom:801.360000px;}
.yd1{bottom:806.760000px;}
.y12{bottom:813.960000px;}
.y5a{bottom:816.840000px;}
.y3a{bottom:819.360000px;}
.yb2{bottom:821.880000px;}
.yd0{bottom:827.280000px;}
.y11{bottom:836.280000px;}
.y59{bottom:837.360000px;}
.y96{bottom:839.880000px;}
.yb1{bottom:842.760000px;}
.ye6{bottom:848.160000px;}
.y39{bottom:857.880000px;}
.y10{bottom:858.960000px;}
.y95{bottom:860.760000px;}
.ycf{bottom:866.160000px;}
.y38{bottom:878.760000px;}
.yb0{bottom:880.920000px;}
.y9f{bottom:881.280000px;}
.yce{bottom:886.680000px;}
.y37{bottom:899.280000px;}
.y9e{bottom:902.160000px;}
.yf{bottom:902.880000px;}
.ycd{bottom:907.560000px;}
.y36{bottom:920.160000px;}
.y9d{bottom:922.680000px;}
.y35{bottom:940.680000px;}
.y9c{bottom:943.560000px;}
.ycc{bottom:946.080000px;}
.ye{bottom:955.440000px;}
.y34{bottom:961.560000px;}
.y9b{bottom:964.080000px;}
.ycb{bottom:966.960000px;}
.y33{bottom:982.080000px;}
.y9a{bottom:984.960000px;}
.yd{bottom:990.000000px;}
.y32{bottom:1002.960000px;}
.y99{bottom:1005.480000px;}
.y31{bottom:1023.480000px;}
.yc{bottom:1024.560000px;}
.ybd{bottom:1026.360000px;}
.y30{bottom:1044.360000px;}
.ybc{bottom:1046.880000px;}
.y2f{bottom:1064.880000px;}
.ybb{bottom:1067.760000px;}
.yb{bottom:1076.760000px;}
.y2e{bottom:1085.760000px;}
.yba{bottom:1105.920000px;}
.y2d{bottom:1106.280000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1161.000000px;}
.y2{bottom:1178.280000px;}
.y1{bottom:1195.560000px;}
.h4{height:17.280000px;}
.h6{height:18.000000px;}
.he{height:38.158594px;}
.h5{height:56.542080px;}
.h1{height:59.357813px;}
.h2{height:60.952500px;}
.h7{height:61.365938px;}
.h3{height:67.210313px;}
.hd{height:70.664062px;}
.hf{height:72.562500px;}
.ha{height:76.317188px;}
.hc{height:78.367500px;}
.hb{height:81.970312px;}
.h9{height:92.584629px;}
.h8{height:120.453750px;}
.h0{height:1263.000000px;}
.w2{width:9.000000px;}
.w1{width:24.840000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:55.800000px;}
.x3{left:80.640000px;}
.x1{left:127.440000px;}
.xd{left:148.680000px;}
.xc{left:159.480000px;}
.x6{left:167.760000px;}
.x9{left:169.920000px;}
.x5{left:174.960000px;}
.xb{left:180.720000px;}
.x7{left:288.360000px;}
.x8{left:371.520000px;}
.xa{left:410.400000px;}
.x4{left:456.840000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.560000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004162pt;}
.ls3{letter-spacing:0.642829pt;}
.ls1{letter-spacing:0.643047pt;}
.ws2{word-spacing:-17.280000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws1{word-spacing:-11.827200pt;}
.ws3{word-spacing:0.000000pt;}
._24{margin-left:-4.135813pt;}
._a{margin-left:-2.629120pt;}
._0{margin-left:-1.720320pt;}
._1{width:1.182720pt;}
._8{width:2.229760pt;}
._f{width:3.504640pt;}
._5{width:5.145600pt;}
._6{width:6.105600pt;}
._7{width:7.485440pt;}
._14{width:8.381440pt;}
._13{width:9.290745pt;}
._12{width:10.324480pt;}
._11{width:11.417600pt;}
._b{width:13.137920pt;}
._9{width:14.049280pt;}
._c{width:15.096320pt;}
._18{width:17.761280pt;}
._19{width:19.151360pt;}
._1b{width:20.646400pt;}
._1a{width:21.882880pt;}
._1c{width:23.206400pt;}
._22{width:24.396800pt;}
._23{width:25.466880pt;}
._e{width:26.816000pt;}
._d{width:27.737600pt;}
._25{width:28.669440pt;}
._10{width:29.573120pt;}
._1d{width:30.896640pt;}
._21{width:32.473600pt;}
._20{width:33.436160pt;}
._2a{width:34.545953pt;}
._2b{width:35.451334pt;}
._2c{width:36.690934pt;}
._26{width:38.208000pt;}
._28{width:39.258176pt;}
._27{width:40.634880pt;}
._1e{width:46.617600pt;}
._1f{width:47.565021pt;}
._29{width:194.585600pt;}
._4{width:195.818952pt;}
._17{width:197.098952pt;}
._2{width:1072.644552pt;}
._15{width:1074.216392pt;}
._3{width:1806.754590pt;}
._16{width:1807.663390pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:48.639947pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.880000pt;}
.ya{bottom:3.520000pt;}
.y9{bottom:36.480000pt;}
.y7{bottom:37.120000pt;}
.y6{bottom:52.160000pt;}
.y2c{bottom:122.880000pt;}
.y94{bottom:123.520000pt;}
.y82{bottom:124.480000pt;}
.y98{bottom:126.080000pt;}
.y58{bottom:128.320000pt;}
.y2b{bottom:132.800000pt;}
.y93{bottom:142.080000pt;}
.y81{bottom:142.720000pt;}
.y6b{bottom:144.320000pt;}
.yb9{bottom:146.560000pt;}
.y57{bottom:146.880000pt;}
.y2a{bottom:150.720000pt;}
.y92{bottom:160.320000pt;}
.y80{bottom:161.280000pt;}
.y6a{bottom:162.880000pt;}
.y56{bottom:165.120000pt;}
.ye5{bottom:168.320000pt;}
.y29{bottom:168.960000pt;}
.yca{bottom:174.720000pt;}
.y91{bottom:178.880000pt;}
.y7f{bottom:179.520000pt;}
.y69{bottom:181.120000pt;}
.yaf{bottom:183.680000pt;}
.ye4{bottom:186.880000pt;}
.y28{bottom:187.520000pt;}
.yc9{bottom:193.280000pt;}
.y90{bottom:197.120000pt;}
.y7e{bottom:198.080000pt;}
.y55{bottom:199.680000pt;}
.yae{bottom:201.920000pt;}
.y27{bottom:205.760000pt;}
.yc8{bottom:211.520000pt;}
.y8f{bottom:215.680000pt;}
.y7d{bottom:216.320000pt;}
.y54{bottom:217.920000pt;}
.yad{bottom:220.480000pt;}
.ye3{bottom:221.120000pt;}
.y26{bottom:224.320000pt;}
.y7c{bottom:234.880000pt;}
.y53{bottom:236.480000pt;}
.yac{bottom:238.720000pt;}
.ye2{bottom:239.680000pt;}
.yc7{bottom:246.080000pt;}
.y8e{bottom:249.920000pt;}
.y7b{bottom:253.120000pt;}
.y52{bottom:254.720000pt;}
.yab{bottom:257.280000pt;}
.y25{bottom:258.560000pt;}
.yc6{bottom:264.320000pt;}
.y8d{bottom:268.480000pt;}
.y7a{bottom:271.680000pt;}
.y51{bottom:273.280000pt;}
.ye1{bottom:273.920000pt;}
.yaa{bottom:275.520000pt;}
.y8c{bottom:286.720000pt;}
.y79{bottom:289.920000pt;}
.y50{bottom:291.520000pt;}
.ye0{bottom:292.480000pt;}
.y24{bottom:294.080000pt;}
.yc5{bottom:298.880000pt;}
.y8b{bottom:305.280000pt;}
.y78{bottom:308.480000pt;}
.y23{bottom:309.440000pt;}
.y4f{bottom:310.080000pt;}
.yc4{bottom:317.120000pt;}
.y8a{bottom:323.520000pt;}
.y22{bottom:324.800000pt;}
.y77{bottom:326.720000pt;}
.y4e{bottom:328.320000pt;}
.y89{bottom:342.080000pt;}
.ydf{bottom:345.280000pt;}
.y4d{bottom:346.880000pt;}
.yc3{bottom:351.680000pt;}
.y21{bottom:356.480000pt;}
.y88{bottom:360.320000pt;}
.y76{bottom:361.280000pt;}
.yde{bottom:363.520000pt;}
.y4c{bottom:365.120000pt;}
.yc2{bottom:369.920000pt;}
.y87{bottom:378.880000pt;}
.ydd{bottom:382.080000pt;}
.y4b{bottom:383.680000pt;}
.yc1{bottom:388.480000pt;}
.y20{bottom:392.320000pt;}
.y75{bottom:397.120000pt;}
.y97{bottom:399.360000pt;}
.y4a{bottom:401.920000pt;}
.y1f{bottom:410.880000pt;}
.y74{bottom:415.680000pt;}
.ydc{bottom:416.320000pt;}
.yb8{bottom:417.920000pt;}
.y49{bottom:420.480000pt;}
.yc0{bottom:422.720000pt;}
.y1e{bottom:429.120000pt;}
.y73{bottom:433.920000pt;}
.ydb{bottom:434.880000pt;}
.y68{bottom:436.480000pt;}
.y48{bottom:438.720000pt;}
.ybf{bottom:441.280000pt;}
.y1d{bottom:447.680000pt;}
.y72{bottom:452.480000pt;}
.yda{bottom:453.120000pt;}
.y67{bottom:454.720000pt;}
.y47{bottom:457.280000pt;}
.y1c{bottom:465.920000pt;}
.y71{bottom:470.720000pt;}
.y66{bottom:473.280000pt;}
.ya9{bottom:475.520000pt;}
.y1b{bottom:484.480000pt;}
.yd9{bottom:487.680000pt;}
.y70{bottom:489.280000pt;}
.y46{bottom:491.200000pt;}
.y65{bottom:491.520000pt;}
.ya8{bottom:494.080000pt;}
.y1a{bottom:502.720000pt;}
.yd8{bottom:505.920000pt;}
.y6f{bottom:507.520000pt;}
.y64{bottom:510.080000pt;}
.ya7{bottom:512.320000pt;}
.y19{bottom:521.280000pt;}
.y45{bottom:526.080000pt;}
.ybe{bottom:528.000000pt;}
.y63{bottom:528.320000pt;}
.ya6{bottom:530.880000pt;}
.y18{bottom:539.520000pt;}
.yd7{bottom:540.480000pt;}
.y44{bottom:544.320000pt;}
.y62{bottom:546.880000pt;}
.ya5{bottom:549.120000pt;}
.yd6{bottom:558.720000pt;}
.y86{bottom:560.320000pt;}
.y43{bottom:562.880000pt;}
.y61{bottom:565.120000pt;}
.ya4{bottom:567.680000pt;}
.y17{bottom:574.080000pt;}
.y85{bottom:578.880000pt;}
.y42{bottom:581.120000pt;}
.y60{bottom:583.680000pt;}
.ya3{bottom:585.920000pt;}
.yd5{bottom:593.280000pt;}
.y84{bottom:597.120000pt;}
.y41{bottom:599.680000pt;}
.y5f{bottom:601.920000pt;}
.ya2{bottom:604.480000pt;}
.y16{bottom:609.920000pt;}
.yd4{bottom:611.520000pt;}
.y83{bottom:615.680000pt;}
.y40{bottom:617.920000pt;}
.y5e{bottom:620.480000pt;}
.ya1{bottom:622.720000pt;}
.ye9{bottom:632.320000pt;}
.y6e{bottom:633.920000pt;}
.y3f{bottom:636.480000pt;}
.yb7{bottom:638.720000pt;}
.y15{bottom:646.080000pt;}
.y6d{bottom:652.480000pt;}
.y5d{bottom:654.400000pt;}
.y3e{bottom:654.720000pt;}
.ya0{bottom:656.960000pt;}
.yb6{bottom:657.280000pt;}
.yd3{bottom:664.320000pt;}
.y14{bottom:666.240000pt;}
.ye8{bottom:666.560000pt;}
.y6c{bottom:670.720000pt;}
.y3d{bottom:673.280000pt;}
.yb5{bottom:675.520000pt;}
.yd2{bottom:682.560000pt;}
.y13{bottom:686.400000pt;}
.y5c{bottom:689.280000pt;}
.y3c{bottom:691.520000pt;}
.yb4{bottom:694.080000pt;}
.ye7{bottom:701.120000pt;}
.y5b{bottom:707.520000pt;}
.y3b{bottom:710.080000pt;}
.yb3{bottom:712.320000pt;}
.yd1{bottom:717.120000pt;}
.y12{bottom:723.520000pt;}
.y5a{bottom:726.080000pt;}
.y3a{bottom:728.320000pt;}
.yb2{bottom:730.560000pt;}
.yd0{bottom:735.360000pt;}
.y11{bottom:743.360000pt;}
.y59{bottom:744.320000pt;}
.y96{bottom:746.560000pt;}
.yb1{bottom:749.120000pt;}
.ye6{bottom:753.920000pt;}
.y39{bottom:762.560000pt;}
.y10{bottom:763.520000pt;}
.y95{bottom:765.120000pt;}
.ycf{bottom:769.920000pt;}
.y38{bottom:781.120000pt;}
.yb0{bottom:783.040000pt;}
.y9f{bottom:783.360000pt;}
.yce{bottom:788.160000pt;}
.y37{bottom:799.360000pt;}
.y9e{bottom:801.920000pt;}
.yf{bottom:802.560000pt;}
.ycd{bottom:806.720000pt;}
.y36{bottom:817.920000pt;}
.y9d{bottom:820.160000pt;}
.y35{bottom:836.160000pt;}
.y9c{bottom:838.720000pt;}
.ycc{bottom:840.960000pt;}
.ye{bottom:849.280000pt;}
.y34{bottom:854.720000pt;}
.y9b{bottom:856.960000pt;}
.ycb{bottom:859.520000pt;}
.y33{bottom:872.960000pt;}
.y9a{bottom:875.520000pt;}
.yd{bottom:880.000000pt;}
.y32{bottom:891.520000pt;}
.y99{bottom:893.760000pt;}
.y31{bottom:909.760000pt;}
.yc{bottom:910.720000pt;}
.ybd{bottom:912.320000pt;}
.y30{bottom:928.320000pt;}
.ybc{bottom:930.560000pt;}
.y2f{bottom:946.560000pt;}
.ybb{bottom:949.120000pt;}
.yb{bottom:957.120000pt;}
.y2e{bottom:965.120000pt;}
.yba{bottom:983.040000pt;}
.y2d{bottom:983.360000pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1032.000000pt;}
.y2{bottom:1047.360000pt;}
.y1{bottom:1062.720000pt;}
.h4{height:15.360000pt;}
.h6{height:16.000000pt;}
.he{height:33.918750pt;}
.h5{height:50.259627pt;}
.h1{height:52.762500pt;}
.h2{height:54.180000pt;}
.h7{height:54.547500pt;}
.h3{height:59.742500pt;}
.hd{height:62.812500pt;}
.hf{height:64.500000pt;}
.ha{height:67.837500pt;}
.hc{height:69.660000pt;}
.hb{height:72.862500pt;}
.h9{height:82.297448pt;}
.h8{height:107.070000pt;}
.h0{height:1122.666667pt;}
.w2{width:8.000000pt;}
.w1{width:22.080000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:49.600000pt;}
.x3{left:71.680000pt;}
.x1{left:113.280000pt;}
.xd{left:132.160000pt;}
.xc{left:141.760000pt;}
.x6{left:149.120000pt;}
.x9{left:151.040000pt;}
.x5{left:155.520000pt;}
.xb{left:160.640000pt;}
.x7{left:256.320000pt;}
.x8{left:330.240000pt;}
.xa{left:364.800000pt;}
.x4{left:406.080000pt;}
}




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