
    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_90658fd78e05540458409ce6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_f22e10c0d87eb0c8a5e5c266.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690430;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_ac8aa48982a4d556bb08b317.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_26112d5e5c975134a505289a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_b0caab42aa68dc8be771904b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_0f34fdc33a49fefdb849d478.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m3{transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-97.200027px;}
.v2{vertical-align:-54.000000px;}
.v4{vertical-align:-42.480009px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:42.480009px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.464404px;}
.ls0{letter-spacing:0.551066px;}
.ls1{letter-spacing:6.755476px;}
.ls4{letter-spacing:16.963215px;}
.ls6{letter-spacing:94.034532px;}
.ls5{letter-spacing:122.167635px;}
.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;}
}
.ws3{word-spacing:-73.085396px;}
.ws1{word-spacing:-28.252914px;}
.ws0{word-spacing:-25.376849px;}
.ws5{word-spacing:-19.829145px;}
.ws6{word-spacing:-15.591997px;}
.ws2{word-spacing:-15.564488px;}
.ws7{word-spacing:-14.066565px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.574450px;}
._0{width:1.170964px;}
._2{width:2.211129px;}
._6{width:3.526528px;}
._b{width:5.072832px;}
._a{width:6.278568px;}
._9{width:7.348528px;}
._5{width:8.624587px;}
._4{width:9.707569px;}
._8{width:11.542233px;}
._3{width:12.629164px;}
._d{width:14.341241px;}
._7{width:16.579769px;}
._c{width:17.819451px;}
._f{width:19.453119px;}
._e{width:25.765793px;}
._11{width:175.578553px;}
._10{width:176.707498px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:50.844302px;}
.fs0{font-size:56.167650px;}
.fs8{font-size:56.266259px;}
.fs6{font-size:59.551200px;}
.fs4{font-size:62.257950px;}
.fs9{font-size:62.367988px;}
.fs1{font-size:67.671450px;}
.fs5{font-size:73.085396px;}
.fs7{font-size:79.175705px;}
.fsb{font-size:79.316581px;}
.fs3{font-size:101.507396px;}
.fs2{font-size:113.011655px;}
.y0{bottom:0.000000px;}
.y2{bottom:110.519989px;}
.y2f{bottom:110.700027px;}
.y61{bottom:110.706568px;}
.y2e{bottom:128.519989px;}
.y60{bottom:128.534578px;}
.y97{bottom:156.613603px;}
.y96{bottom:172.810192px;}
.y95{bottom:189.191489px;}
.y94{bottom:205.392355px;}
.y5e{bottom:211.500000px;}
.y93{bottom:221.589028px;}
.y2d{bottom:224.279983px;}
.y5d{bottom:229.500000px;}
.y92{bottom:234.192599px;}
.y2c{bottom:242.100013px;}
.y5c{bottom:247.320030px;}
.y2b{bottom:259.919975px;}
.y5b{bottom:265.139992px;}
.y2a{bottom:277.919975px;}
.y5a{bottom:282.960022px;}
.yc8{bottom:284.774400px;}
.y29{bottom:295.740006px;}
.y59{bottom:300.779983px;}
.yc7{bottom:300.966714px;}
.y28{bottom:313.740006px;}
.yc6{bottom:317.171939px;}
.y58{bottom:318.779983px;}
.y27{bottom:331.559967px;}
.yc5{bottom:333.553152px;}
.y57{bottom:336.600013px;}
.y26{bottom:349.379998px;}
.yc4{bottom:349.749826px;}
.y56{bottom:354.419975px;}
.yc3{bottom:366.131038px;}
.y25{bottom:367.200027px;}
.y55{bottom:372.419975px;}
.yc2{bottom:382.151725px;}
.y24{bottom:385.019989px;}
.y54{bottom:390.240006px;}
.yc0{bottom:398.160304px;}
.yc1{bottom:398.172328px;}
.y23{bottom:403.019989px;}
.y53{bottom:408.059967px;}
.ybf{bottom:416.341749px;}
.y22{bottom:420.840019px;}
.y52{bottom:425.879998px;}
.yee{bottom:432.548903px;}
.ybe{bottom:433.980730px;}
.y21{bottom:438.659981px;}
.y51{bottom:443.700027px;}
.yed{bottom:448.749769px;}
.ybd{bottom:451.990814px;}
.y20{bottom:456.659981px;}
.y87{bottom:457.025214px;}
.y50{bottom:461.700027px;}
.yec{bottom:464.950719px;}
.ybc{bottom:468.187488px;}
.y1f{bottom:474.480011px;}
.y86{bottom:474.849841px;}
.y4f{bottom:479.519989px;}
.yeb{bottom:481.327655px;}
.ybb{bottom:484.568701px;}
.y85{bottom:491.042273px;}
.y1e{bottom:492.299973px;}
.y4e{bottom:497.519989px;}
.yea{bottom:497.528605px;}
.yba{bottom:500.769650px;}
.y84{bottom:508.866893px;}
.y1d{bottom:510.120002px;}
.ye9{bottom:513.909818px;}
.y4d{bottom:515.159981px;}
.yb9{bottom:517.146587px;}
.y83{bottom:526.862746px;}
.y1c{bottom:527.940033px;}
.ye8{bottom:529.926186px;}
.y4c{bottom:532.980011px;}
.yb8{bottom:533.347537px;}
.y82{bottom:544.687366px;}
.y1b{bottom:545.940033px;}
.ye7{bottom:546.131412px;}
.yb7{bottom:549.363863px;}
.y4b{bottom:550.980011px;}
.ye6{bottom:562.504031px;}
.y81{bottom:563.219760px;}
.y1a{bottom:564.480011px;}
.yb6{bottom:565.745076px;}
.y4a{bottom:568.799973px;}
.ye5{bottom:578.709256px;}
.yb5{bottom:581.950301px;}
.y80{bottom:585.182795px;}
.y49{bottom:586.799973px;}
.y19{bottom:587.159981px;}
.ye4{bottom:595.090511px;}
.yb4{bottom:598.331556px;}
.y7f{bottom:601.373446px;}
.y7e{bottom:601.388020px;}
.y48{bottom:604.620002px;}
.y18{bottom:605.879998px;}
.ye3{bottom:611.106838px;}
.yb3{bottom:614.528188px;}
.y7d{bottom:617.769233px;}
.y17{bottom:622.259994px;}
.y47{bottom:622.439999px;}
.ye2{bottom:627.307787px;}
.yb2{bottom:630.544514px;}
.y7c{bottom:633.965865px;}
.y16{bottom:640.259994px;}
.ye1{bottom:643.689000px;}
.yb1{bottom:646.925769px;}
.y7b{bottom:650.166814px;}
.y46{bottom:658.079990px;}
.ye0{bottom:659.885632px;}
.y15{bottom:661.860008px;}
.yb0{bottom:663.126677px;}
.y7a{bottom:666.367722px;}
.y45{bottom:676.079990px;}
.ydf{bottom:676.266886px;}
.yaf{bottom:679.507931px;}
.y14{bottom:680.759994px;}
.y79{bottom:682.564396px;}
.yde{bottom:692.467794px;}
.y44{bottom:693.899986px;}
.yae{bottom:695.704563px;}
.y13{bottom:696.779983px;}
.y78{bottom:698.945608px;}
.ydd{bottom:708.488439px;}
.y43{bottom:711.899986px;}
.yad{bottom:711.905513px;}
.y12{bottom:712.980011px;}
.y77{bottom:715.150834px;}
.ydc{bottom:724.869693px;}
.yac{bottom:728.102144px;}
.y11{bottom:729.360008px;}
.y42{bottom:729.720017px;}
.y76{bottom:731.523494px;}
.ydb{bottom:741.062007px;}
.yab{bottom:744.307370px;}
.y10{bottom:745.560001px;}
.y41{bottom:747.540012px;}
.y75{bottom:747.548415px;}
.yda{bottom:757.443261px;}
.yaa{bottom:760.686864px;}
.yf{bottom:761.939999px;}
.y74{bottom:763.743328px;}
.y40{bottom:765.360008px;}
.yd9{bottom:773.647607px;}
.ya9{bottom:776.882657px;}
.ye{bottom:778.139992px;}
.y73{bottom:780.124541px;}
.y3f{bottom:783.180004px;}
.yd8{bottom:789.843400px;}
.ya8{bottom:793.083962px;}
.yd{bottom:794.160015px;}
.y72{bottom:796.327209px;}
.y3e{bottom:801.180004px;}
.yd7{bottom:806.046068px;}
.y91{bottom:807.667010px;}
.yc{bottom:810.720017px;}
.ya6{bottom:811.614167px;}
.ya7{bottom:811.623238px;}
.y71{bottom:812.701588px;}
.y3d{bottom:819.000000px;}
.yd6{bottom:822.241820px;}
.y90{bottom:824.041348px;}
.yb{bottom:828.720017px;}
.y70{bottom:828.904215px;}
.ya5{bottom:833.581621px;}
.y3c{bottom:836.819995px;}
.yd5{bottom:838.623053px;}
.y8f{bottom:839.512958px;}
.y6f{bottom:844.921422px;}
.ya3{bottom:850.137861px;}
.ya{bottom:850.139992px;}
.ya4{bottom:850.141441px;}
.y3b{bottom:854.819995px;}
.y8d{bottom:854.820024px;}
.y8e{bottom:854.825722px;}
.y6e{bottom:861.302656px;}
.ya2{bottom:867.960552px;}
.yd4{bottom:871.021494px;}
.y3a{bottom:872.639992px;}
.y8c{bottom:872.817829px;}
.y6d{bottom:877.505303px;}
.y9{bottom:881.459988px;}
.ya1{bottom:885.783244px;}
.yd3{bottom:887.402728px;}
.y39{bottom:890.459988px;}
.y8a{bottom:890.640520px;}
.y8b{bottom:890.644632px;}
.y6c{bottom:893.886537px;}
.yd2{bottom:903.426789px;}
.ya0{bottom:903.598314px;}
.y38{bottom:908.280001px;}
.y89{bottom:908.463188px;}
.y6b{bottom:910.082309px;}
.yd1{bottom:919.801147px;}
.y8{bottom:921.060001px;}
.y9f{bottom:921.421005px;}
.y37{bottom:926.099997px;}
.y6a{bottom:926.278282px;}
.yd0{bottom:936.003795px;}
.y9e{bottom:939.418787px;}
.y7{bottom:941.039995px;}
.y36{bottom:944.099997px;}
.y69{bottom:944.100973px;}
.ycf{bottom:952.199588px;}
.y9d{bottom:957.241020px;}
.y9c{bottom:957.241479px;}
.y35{bottom:961.919992px;}
.y68{bottom:962.098755px;}
.y6{bottom:966.599997px;}
.yce{bottom:968.580822px;}
.y9b{bottom:975.239284px;}
.y34{bottom:979.919992px;}
.y88{bottom:979.920602px;}
.y67{bottom:979.921446px;}
.ycd{bottom:984.604883px;}
.y5{bottom:988.199993px;}
.y9a{bottom:992.879240px;}
.y33{bottom:997.560001px;}
.y65{bottom:997.919240px;}
.y66{bottom:997.922798px;}
.ycc{bottom:1000.979241px;}
.y99{bottom:1010.701932px;}
.y32{bottom:1015.379998px;}
.y64{bottom:1015.741931px;}
.ycb{bottom:1017.181899px;}
.y4{bottom:1020.060001px;}
.y98{bottom:1029.415253px;}
.yca{bottom:1033.199096px;}
.yc9{bottom:1033.199176px;}
.y31{bottom:1033.379998px;}
.y63{bottom:1033.557001px;}
.y3{bottom:1048.680004px;}
.y30{bottom:1051.200002px;}
.y62{bottom:1051.201282px;}
.y1{bottom:1067.400003px;}
.y5f{bottom:1067.582505px;}
.hd{height:35.501637px;}
.h1{height:39.218623px;}
.hb{height:39.287476px;}
.hf{height:40.963375px;}
.h9{height:41.056139px;}
.h7{height:41.581160px;}
.h5{height:43.471127px;}
.hc{height:43.547961px;}
.h10{height:44.004757px;}
.h2{height:47.251061px;}
.h8{height:55.063850px;}
.ha{height:55.863717px;}
.he{height:55.963115px;}
.h3{height:76.536702px;}
.h4{height:78.909505px;}
.h6{height:85.951136px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:159.120002px;}
.xb{left:171.538702px;}
.x1{left:189.180005px;}
.x3{left:196.740006px;}
.x15{left:210.057562px;}
.x16{left:225.539686px;}
.x9{left:231.120915px;}
.x6{left:249.479994px;}
.x13{left:257.580399px;}
.x14{left:266.583044px;}
.x4{left:275.219999px;}
.xc{left:302.038331px;}
.x10{left:303.299936px;}
.x5{left:339.839985px;}
.xd{left:463.316365px;}
.xe{left:473.762601px;}
.xf{left:513.363503px;}
.x12{left:653.404473px;}
.x11{left:700.740432px;}
.x8{left:729.902239px;}
.xa{left:733.311201px;}
.x7{left:748.799973px;}
@media print{
.v3{vertical-align:-86.400024pt;}
.v2{vertical-align:-48.000000pt;}
.v4{vertical-align:-37.760008pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:37.760008pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.412804pt;}
.ls0{letter-spacing:0.489836pt;}
.ls1{letter-spacing:6.004868pt;}
.ls4{letter-spacing:15.078413pt;}
.ls6{letter-spacing:83.586251pt;}
.ls5{letter-spacing:108.593454pt;}
.ws3{word-spacing:-64.964796pt;}
.ws1{word-spacing:-25.113701pt;}
.ws0{word-spacing:-22.557199pt;}
.ws5{word-spacing:-17.625907pt;}
.ws6{word-spacing:-13.859553pt;}
.ws2{word-spacing:-13.835100pt;}
.ws7{word-spacing:-12.503613pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1.399511pt;}
._0{width:1.040857pt;}
._2{width:1.965448pt;}
._6{width:3.134692pt;}
._b{width:4.509184pt;}
._a{width:5.580950pt;}
._9{width:6.532025pt;}
._5{width:7.666299pt;}
._4{width:8.628950pt;}
._8{width:10.259762pt;}
._3{width:11.225924pt;}
._d{width:12.747770pt;}
._7{width:14.737572pt;}
._c{width:15.839512pt;}
._f{width:17.291661pt;}
._e{width:22.902927pt;}
._11{width:156.069825pt;}
._10{width:157.073331pt;}
.fsa{font-size:45.194935pt;}
.fs0{font-size:49.926800pt;}
.fs8{font-size:50.014453pt;}
.fs6{font-size:52.934400pt;}
.fs4{font-size:55.340400pt;}
.fs9{font-size:55.438212pt;}
.fs1{font-size:60.152400pt;}
.fs5{font-size:64.964796pt;}
.fs7{font-size:70.378404pt;}
.fsb{font-size:70.503627pt;}
.fs3{font-size:90.228796pt;}
.fs2{font-size:100.454804pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:98.239990pt;}
.y2f{bottom:98.400024pt;}
.y61{bottom:98.405838pt;}
.y2e{bottom:114.239990pt;}
.y60{bottom:114.252958pt;}
.y97{bottom:139.212091pt;}
.y96{bottom:153.609060pt;}
.y95{bottom:168.170212pt;}
.y94{bottom:182.570982pt;}
.y5e{bottom:188.000000pt;}
.y93{bottom:196.968025pt;}
.y2d{bottom:199.359985pt;}
.y5d{bottom:204.000000pt;}
.y92{bottom:208.171199pt;}
.y2c{bottom:215.200012pt;}
.y5c{bottom:219.840027pt;}
.y2b{bottom:231.039978pt;}
.y5b{bottom:235.679993pt;}
.y2a{bottom:247.039978pt;}
.y5a{bottom:251.520020pt;}
.yc8{bottom:253.132800pt;}
.y29{bottom:262.880005pt;}
.y59{bottom:267.359985pt;}
.yc7{bottom:267.525968pt;}
.y28{bottom:278.880005pt;}
.yc6{bottom:281.930613pt;}
.y58{bottom:283.359985pt;}
.y27{bottom:294.719971pt;}
.yc5{bottom:296.491691pt;}
.y57{bottom:299.200012pt;}
.y26{bottom:310.559998pt;}
.yc4{bottom:310.888734pt;}
.y56{bottom:315.039978pt;}
.yc3{bottom:325.449812pt;}
.y25{bottom:326.400024pt;}
.y55{bottom:331.039978pt;}
.yc2{bottom:339.690422pt;}
.y24{bottom:342.239990pt;}
.y54{bottom:346.880005pt;}
.yc0{bottom:353.920270pt;}
.yc1{bottom:353.930958pt;}
.y23{bottom:358.239990pt;}
.y53{bottom:362.719971pt;}
.ybf{bottom:370.081555pt;}
.y22{bottom:374.080017pt;}
.y52{bottom:378.559998pt;}
.yee{bottom:384.487914pt;}
.ybe{bottom:385.760649pt;}
.y21{bottom:389.919983pt;}
.y51{bottom:394.400024pt;}
.yed{bottom:398.888684pt;}
.ybd{bottom:401.769613pt;}
.y20{bottom:405.919983pt;}
.y87{bottom:406.244635pt;}
.y50{bottom:410.400024pt;}
.yec{bottom:413.289528pt;}
.ybc{bottom:416.166656pt;}
.y1f{bottom:421.760010pt;}
.y86{bottom:422.088748pt;}
.y4f{bottom:426.239990pt;}
.yeb{bottom:427.846805pt;}
.ybb{bottom:430.727734pt;}
.y85{bottom:436.482021pt;}
.y1e{bottom:437.599976pt;}
.y4e{bottom:442.239990pt;}
.yea{bottom:442.247649pt;}
.yba{bottom:445.128578pt;}
.y84{bottom:452.326127pt;}
.y1d{bottom:453.440002pt;}
.ye9{bottom:456.808727pt;}
.y4d{bottom:457.919983pt;}
.yb9{bottom:459.685855pt;}
.y83{bottom:468.322441pt;}
.y1c{bottom:469.280029pt;}
.ye8{bottom:471.045499pt;}
.y4c{bottom:473.760010pt;}
.yb8{bottom:474.086699pt;}
.y82{bottom:484.166547pt;}
.y1b{bottom:485.280029pt;}
.ye7{bottom:485.450144pt;}
.yb7{bottom:488.323434pt;}
.y4b{bottom:489.760010pt;}
.ye6{bottom:500.003583pt;}
.y81{bottom:500.639787pt;}
.y1a{bottom:501.760010pt;}
.yb6{bottom:502.884512pt;}
.y4a{bottom:505.599976pt;}
.ye5{bottom:514.408228pt;}
.yb5{bottom:517.289157pt;}
.y80{bottom:520.162484pt;}
.y49{bottom:521.599976pt;}
.y19{bottom:521.919983pt;}
.ye4{bottom:528.969343pt;}
.yb4{bottom:531.850272pt;}
.y7f{bottom:534.554175pt;}
.y7e{bottom:534.567129pt;}
.y48{bottom:537.440002pt;}
.y18{bottom:538.559998pt;}
.ye3{bottom:543.206078pt;}
.yb3{bottom:546.247278pt;}
.y7d{bottom:549.128207pt;}
.y17{bottom:553.119995pt;}
.y47{bottom:553.279999pt;}
.ye2{bottom:557.606922pt;}
.yb2{bottom:560.484013pt;}
.y7c{bottom:563.525213pt;}
.y16{bottom:569.119995pt;}
.ye1{bottom:572.168000pt;}
.yb1{bottom:575.045128pt;}
.y7b{bottom:577.926057pt;}
.y46{bottom:584.959991pt;}
.ye0{bottom:586.565006pt;}
.y15{bottom:588.320007pt;}
.yb0{bottom:589.445935pt;}
.y7a{bottom:592.326864pt;}
.y45{bottom:600.959991pt;}
.ydf{bottom:601.126121pt;}
.yaf{bottom:604.007050pt;}
.y14{bottom:605.119995pt;}
.y79{bottom:606.723907pt;}
.yde{bottom:615.526928pt;}
.y44{bottom:616.799988pt;}
.yae{bottom:618.404056pt;}
.y13{bottom:619.359985pt;}
.y78{bottom:621.284985pt;}
.ydd{bottom:629.767501pt;}
.y43{bottom:632.799988pt;}
.yad{bottom:632.804900pt;}
.y12{bottom:633.760010pt;}
.y77{bottom:635.689630pt;}
.ydc{bottom:644.328616pt;}
.yac{bottom:647.201906pt;}
.y11{bottom:648.320007pt;}
.y42{bottom:648.640015pt;}
.y76{bottom:650.243106pt;}
.ydb{bottom:658.721784pt;}
.yab{bottom:661.606551pt;}
.y10{bottom:662.720001pt;}
.y41{bottom:664.480011pt;}
.y75{bottom:664.487480pt;}
.yda{bottom:673.282899pt;}
.yaa{bottom:676.166101pt;}
.yf{bottom:677.279999pt;}
.y74{bottom:678.882958pt;}
.y40{bottom:680.320007pt;}
.yd9{bottom:687.686761pt;}
.ya9{bottom:690.562362pt;}
.ye{bottom:691.679993pt;}
.y73{bottom:693.444036pt;}
.y3f{bottom:696.160004pt;}
.yd8{bottom:702.083022pt;}
.ya8{bottom:704.963522pt;}
.yd{bottom:705.920013pt;}
.y72{bottom:707.846408pt;}
.y3e{bottom:712.160004pt;}
.yd7{bottom:716.485394pt;}
.y91{bottom:717.926231pt;}
.yc{bottom:720.640015pt;}
.ya6{bottom:721.434815pt;}
.ya7{bottom:721.442878pt;}
.y71{bottom:722.401412pt;}
.y3d{bottom:728.000000pt;}
.yd6{bottom:730.881617pt;}
.y90{bottom:732.481198pt;}
.yb{bottom:736.640015pt;}
.y70{bottom:736.803747pt;}
.ya5{bottom:740.961441pt;}
.y3c{bottom:743.839996pt;}
.yd5{bottom:745.442714pt;}
.y8f{bottom:746.233741pt;}
.y6f{bottom:751.041264pt;}
.ya3{bottom:755.678099pt;}
.ya{bottom:755.679993pt;}
.ya4{bottom:755.681281pt;}
.y3b{bottom:759.839996pt;}
.y8d{bottom:759.840021pt;}
.y8e{bottom:759.845086pt;}
.y6e{bottom:765.602361pt;}
.ya2{bottom:771.520491pt;}
.yd4{bottom:774.241328pt;}
.y3a{bottom:775.679993pt;}
.y8c{bottom:775.838070pt;}
.y6d{bottom:780.004714pt;}
.y9{bottom:783.519989pt;}
.ya1{bottom:787.362883pt;}
.yd3{bottom:788.802425pt;}
.y39{bottom:791.519989pt;}
.y8a{bottom:791.680462pt;}
.y8b{bottom:791.684117pt;}
.y6c{bottom:794.565810pt;}
.yd2{bottom:803.046035pt;}
.ya0{bottom:803.198501pt;}
.y38{bottom:807.360001pt;}
.y89{bottom:807.522834pt;}
.y6b{bottom:808.962052pt;}
.yd1{bottom:817.601020pt;}
.y8{bottom:818.720001pt;}
.y9f{bottom:819.040894pt;}
.y37{bottom:823.199997pt;}
.y6a{bottom:823.358473pt;}
.yd0{bottom:832.003373pt;}
.y9e{bottom:835.038922pt;}
.y7{bottom:836.479996pt;}
.y36{bottom:839.199997pt;}
.y69{bottom:839.200865pt;}
.ycf{bottom:846.399634pt;}
.y9d{bottom:850.880907pt;}
.y9c{bottom:850.881314pt;}
.y35{bottom:855.039993pt;}
.y68{bottom:855.198893pt;}
.y6{bottom:859.199997pt;}
.yce{bottom:860.960730pt;}
.y9b{bottom:866.879363pt;}
.y34{bottom:871.039993pt;}
.y88{bottom:871.040535pt;}
.y67{bottom:871.041285pt;}
.ycd{bottom:875.204340pt;}
.y5{bottom:878.399994pt;}
.y9a{bottom:882.559325pt;}
.y33{bottom:886.720001pt;}
.y65{bottom:887.039324pt;}
.y66{bottom:887.042487pt;}
.ycc{bottom:889.759326pt;}
.y99{bottom:898.401717pt;}
.y32{bottom:902.559998pt;}
.y64{bottom:902.881716pt;}
.ycb{bottom:904.161688pt;}
.y4{bottom:906.720001pt;}
.y98{bottom:915.035780pt;}
.yca{bottom:918.399196pt;}
.yc9{bottom:918.399268pt;}
.y31{bottom:918.559998pt;}
.y63{bottom:918.717335pt;}
.y3{bottom:932.160004pt;}
.y30{bottom:934.400002pt;}
.y62{bottom:934.401139pt;}
.y1{bottom:948.800003pt;}
.y5f{bottom:948.962227pt;}
.hd{height:31.557011pt;}
.h1{height:34.860998pt;}
.hb{height:34.922201pt;}
.hf{height:36.411889pt;}
.h9{height:36.494346pt;}
.h7{height:36.961031pt;}
.h5{height:38.641002pt;}
.hc{height:38.709298pt;}
.h10{height:39.115340pt;}
.h2{height:42.000943pt;}
.h8{height:48.945645pt;}
.ha{height:49.656638pt;}
.he{height:49.744991pt;}
.h3{height:68.032624pt;}
.h4{height:70.141782pt;}
.h6{height:76.401010pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:141.440002pt;}
.xb{left:152.478846pt;}
.x1{left:168.160004pt;}
.x3{left:174.880005pt;}
.x15{left:186.717833pt;}
.x16{left:200.479721pt;}
.x9{left:205.440814pt;}
.x6{left:221.759995pt;}
.x13{left:228.960354pt;}
.x14{left:236.962706pt;}
.x4{left:244.639999pt;}
.xc{left:268.478517pt;}
.x10{left:269.599943pt;}
.x5{left:302.079987pt;}
.xd{left:411.836769pt;}
.xe{left:421.122312pt;}
.xf{left:456.323114pt;}
.x12{left:580.803976pt;}
.x11{left:622.880384pt;}
.x8{left:648.801990pt;}
.xa{left:651.832179pt;}
.x7{left:665.599976pt;}
}




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