
    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_83393b6e918677e6539e1d47.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079000;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_272cd1252601d79b414ae343.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.061000;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_cae4677061e77a07ec503595.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120000;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_f60242c7a6ca9d5722855366.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.069000;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_f6e40a9d02ed1eb56710653d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061000;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_83393b6e918677e6539e1d47.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.079000;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_e313adc9ffc29589524db6ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.061000;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_14501331bcc22e9fec2059d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_00ae3e62bdb8ae8991991ab5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.121000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5af0b3bc79afc60d82700db3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.069000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.006785px;}
.ws4{word-spacing:-16.498716px;}
.ws8{word-spacing:-15.001902px;}
.ws2{word-spacing:-13.505088px;}
.ws7{word-spacing:-10.504682px;}
.ws5{word-spacing:-6.996050px;}
.ws6{word-spacing:-5.901460px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:513.725571px;}
._9{margin-left:-1.001525px;}
._11{width:1.676044px;}
._12{width:2.722679px;}
._e{width:4.164880px;}
._2{width:5.172684px;}
._14{width:6.340901px;}
._10{width:8.500889px;}
._15{width:11.743980px;}
._8{width:13.335344px;}
._b{width:14.459309px;}
._a{width:15.484970px;}
._c{width:18.796460px;}
._0{width:21.631062px;}
._3{width:26.962608px;}
._16{width:35.686190px;}
._4{width:37.003507px;}
._f{width:45.561632px;}
._d{width:47.968088px;}
._7{width:88.237150px;}
._13{width:184.297320px;}
._1{width:592.139514px;}
._5{width:854.855664px;}
._6{width:1350.745628px;}
.fc3{color:rgb(1,52,44);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs6{font-size:18.675507px;}
.fs5{font-size:27.984200px;}
.fs7{font-size:29.750527px;}
.fs2{font-size:39.614927px;}
.fs8{font-size:42.018727px;}
.fs4{font-size:54.020354px;}
.fs9{font-size:60.007609px;}
.fs1{font-size:65.994864px;}
.fs3{font-size:72.027138px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.yd1{bottom:3.656964px;}
.ycd{bottom:4.943733px;}
.ycf{bottom:4.947951px;}
.ycb{bottom:5.162053px;}
.yd7{bottom:5.785461px;}
.yd9{bottom:8.188510px;}
.yd6{bottom:15.702304px;}
.yd5{bottom:25.619146px;}
.yd4{bottom:35.535988px;}
.yd3{bottom:45.452831px;}
.yae{bottom:46.109110px;}
.y23{bottom:47.344695px;}
.yd2{bottom:53.415018px;}
.yce{bottom:54.495018px;}
.y77{bottom:66.321565px;}
.yad{bottom:68.617591px;}
.y22{bottom:69.853175px;}
.y8f{bottom:71.426346px;}
.ycc{bottom:72.855018px;}
.yd0{bottom:75.015018px;}
.y46{bottom:80.644232px;}
.y76{bottom:88.830045px;}
.yca{bottom:89.775017px;}
.yac{bottom:91.126071px;}
.y21{bottom:92.361656px;}
.y8e{bottom:93.934827px;}
.y45{bottom:103.152713px;}
.y75{bottom:111.338526px;}
.yab{bottom:113.634552px;}
.y20{bottom:114.870137px;}
.y8d{bottom:116.443308px;}
.y44{bottom:125.661194px;}
.y74{bottom:133.847007px;}
.yaa{bottom:136.143032px;}
.y1f{bottom:137.378617px;}
.y8c{bottom:138.951788px;}
.y43{bottom:148.169674px;}
.y73{bottom:156.355487px;}
.ya9{bottom:158.651513px;}
.yd8{bottom:159.615014px;}
.y1e{bottom:159.887098px;}
.y8b{bottom:161.460269px;}
.y42{bottom:170.678155px;}
.yc6{bottom:172.948105px;}
.y72{bottom:178.863968px;}
.ya8{bottom:181.159994px;}
.y1d{bottom:182.395579px;}
.y8a{bottom:183.968750px;}
.yc5{bottom:190.954890px;}
.y41{bottom:193.186636px;}
.y71{bottom:201.372449px;}
.ya7{bottom:203.668474px;}
.y1c{bottom:204.904059px;}
.y89{bottom:206.477230px;}
.yc4{bottom:208.961674px;}
.y40{bottom:215.695116px;}
.y70{bottom:223.880929px;}
.ya6{bottom:226.176955px;}
.y1b{bottom:227.412540px;}
.y88{bottom:228.985711px;}
.ydd{bottom:232.419400px;}
.y3f{bottom:238.203597px;}
.y6f{bottom:246.389410px;}
.ya5{bottom:248.685436px;}
.y1a{bottom:249.921021px;}
.ydc{bottom:250.426185px;}
.y87{bottom:251.494192px;}
.y3e{bottom:260.712078px;}
.y6e{bottom:268.897891px;}
.ya4{bottom:271.193916px;}
.y19{bottom:272.429501px;}
.y86{bottom:274.002672px;}
.yda{bottom:275.795940px;}
.y3d{bottom:283.220558px;}
.y6d{bottom:291.406371px;}
.ya3{bottom:293.702397px;}
.y18{bottom:294.937982px;}
.y85{bottom:296.511153px;}
.y3c{bottom:305.729039px;}
.y6c{bottom:313.914852px;}
.ydf{bottom:314.579029px;}
.ya2{bottom:316.210878px;}
.y17{bottom:317.446463px;}
.y84{bottom:319.019634px;}
.y3b{bottom:328.237520px;}
.yde{bottom:332.585813px;}
.y6b{bottom:336.423333px;}
.y16{bottom:339.954943px;}
.y83{bottom:341.528114px;}
.y3a{bottom:350.746000px;}
.ye0{bottom:352.583057px;}
.y6a{bottom:358.931813px;}
.y15{bottom:362.463424px;}
.y82{bottom:364.036595px;}
.yc9{bottom:366.789540px;}
.y39{bottom:373.254481px;}
.ydb{bottom:376.266175px;}
.y69{bottom:381.440294px;}
.y81{bottom:386.545076px;}
.yc8{bottom:391.548869px;}
.y38{bottom:395.762962px;}
.y68{bottom:403.948775px;}
.y80{bottom:409.053556px;}
.ya{bottom:409.665754px;}
.yc7{bottom:416.308198px;}
.y37{bottom:418.271442px;}
.y67{bottom:426.457255px;}
.y7f{bottom:431.562037px;}
.y9{bottom:434.425083px;}
.y36{bottom:440.779923px;}
.y66{bottom:448.965736px;}
.y7e{bottom:454.070518px;}
.yf3{bottom:457.521726px;}
.y8{bottom:459.184412px;}
.y35{bottom:463.288404px;}
.ya1{bottom:466.877251px;}
.y65{bottom:471.474217px;}
.y7d{bottom:476.578998px;}
.yf2{bottom:480.030207px;}
.y34{bottom:485.796884px;}
.ya0{bottom:489.385731px;}
.y64{bottom:493.982697px;}
.y7c{bottom:499.087479px;}
.yf1{bottom:502.538687px;}
.yd{bottom:505.532652px;}
.y33{bottom:508.305365px;}
.y9f{bottom:511.894212px;}
.y63{bottom:516.491178px;}
.y7b{bottom:521.595960px;}
.yc{bottom:523.539436px;}
.yf0{bottom:525.047168px;}
.y32{bottom:530.813846px;}
.y9e{bottom:534.402693px;}
.y62{bottom:538.999659px;}
.yb{bottom:541.546221px;}
.y7a{bottom:544.104440px;}
.yef{bottom:547.555649px;}
.y31{bottom:553.322326px;}
.ybf{bottom:557.111258px;}
.y61{bottom:561.508139px;}
.yee{bottom:570.064129px;}
.y30{bottom:575.830807px;}
.ybe{bottom:579.619738px;}
.yc3{bottom:582.700611px;}
.y60{bottom:584.016620px;}
.y79{bottom:590.178177px;}
.yed{bottom:592.572610px;}
.y2f{bottom:598.339288px;}
.yc2{bottom:600.707396px;}
.ybd{bottom:602.128219px;}
.y5f{bottom:606.525100px;}
.y78{bottom:614.937505px;}
.yec{bottom:615.081091px;}
.yc1{bottom:618.714180px;}
.y2e{bottom:620.847768px;}
.ybc{bottom:624.636700px;}
.y5e{bottom:629.033581px;}
.yc0{bottom:636.720965px;}
.yeb{bottom:637.589571px;}
.y2d{bottom:643.356249px;}
.ybb{bottom:647.145180px;}
.y5d{bottom:651.542062px;}
.yea{bottom:660.098052px;}
.y93{bottom:660.153985px;}
.y2c{bottom:665.864730px;}
.yba{bottom:669.653661px;}
.y5c{bottom:674.050542px;}
.y92{bottom:678.160770px;}
.ye9{bottom:682.606533px;}
.y2b{bottom:688.373210px;}
.yb9{bottom:692.162142px;}
.y91{bottom:696.167554px;}
.y5b{bottom:696.559023px;}
.ye8{bottom:705.115013px;}
.y2a{bottom:710.881691px;}
.y90{bottom:714.174339px;}
.yb8{bottom:714.670622px;}
.y5a{bottom:719.067504px;}
.ye7{bottom:727.623494px;}
.y29{bottom:733.390172px;}
.yb7{bottom:737.179103px;}
.y59{bottom:741.575984px;}
.ye6{bottom:750.131975px;}
.y28{bottom:755.898652px;}
.yb6{bottom:759.687584px;}
.y58{bottom:764.084465px;}
.ye5{bottom:772.640455px;}
.y27{bottom:778.407133px;}
.yb5{bottom:782.196064px;}
.y57{bottom:786.592946px;}
.ye4{bottom:795.148936px;}
.y26{bottom:800.915614px;}
.yb4{bottom:804.704545px;}
.y56{bottom:809.101426px;}
.ye3{bottom:817.657416px;}
.y25{bottom:823.424094px;}
.yb3{bottom:827.213026px;}
.y55{bottom:831.609907px;}
.y24{bottom:845.932575px;}
.yb2{bottom:849.721506px;}
.y54{bottom:854.118388px;}
.ye1{bottom:865.107118px;}
.yb1{bottom:872.229987px;}
.y53{bottom:876.626868px;}
.y14{bottom:892.149992px;}
.yb0{bottom:894.738468px;}
.y52{bottom:899.135349px;}
.y13{bottom:914.658473px;}
.yfd{bottom:916.226132px;}
.yaf{bottom:917.246948px;}
.y51{bottom:921.643830px;}
.y12{bottom:937.166954px;}
.yfc{bottom:938.734613px;}
.y9d{bottom:939.755429px;}
.y50{bottom:944.152310px;}
.y11{bottom:959.675434px;}
.yfb{bottom:961.243094px;}
.y9c{bottom:962.263910px;}
.y4f{bottom:966.660791px;}
.y10{bottom:982.183915px;}
.yfa{bottom:983.751574px;}
.y9b{bottom:984.772390px;}
.y4e{bottom:989.169272px;}
.yf{bottom:1004.692395px;}
.yf9{bottom:1006.260055px;}
.y9a{bottom:1007.280871px;}
.y4d{bottom:1011.677752px;}
.ye{bottom:1027.200876px;}
.yf8{bottom:1028.768536px;}
.y99{bottom:1029.789352px;}
.y4c{bottom:1034.186233px;}
.yf7{bottom:1051.277016px;}
.y98{bottom:1052.297832px;}
.y4b{bottom:1056.694714px;}
.y6{bottom:1069.120736px;}
.yf6{bottom:1073.785497px;}
.y97{bottom:1074.806313px;}
.y4a{bottom:1079.203194px;}
.y5{bottom:1091.629217px;}
.yf5{bottom:1096.293978px;}
.y96{bottom:1097.314794px;}
.y7{bottom:1098.381761px;}
.y49{bottom:1101.711675px;}
.y3{bottom:1114.137697px;}
.yf4{bottom:1118.802458px;}
.y95{bottom:1119.823274px;}
.y4{bottom:1120.890242px;}
.y48{bottom:1124.220156px;}
.y94{bottom:1142.331755px;}
.y47{bottom:1146.728636px;}
.ye2{bottom:1160.094691px;}
.y2{bottom:1174.032817px;}
.hd{height:9.000000px;}
.hc{height:12.959999px;}
.ha{height:13.319999px;}
.he{height:15.033783px;}
.h11{height:19.799999px;}
.hb{height:22.751155px;}
.h10{height:24.187179px;}
.h5{height:32.206936px;}
.h12{height:34.161225px;}
.h7{height:43.918547px;}
.h9{height:47.105748px;}
.h13{height:48.786186px;}
.hf{height:53.639998px;}
.h4{height:53.653825px;}
.h8{height:57.547522px;}
.h6{height:59.638470px;}
.h3{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w5{width:30.959999px;}
.w7{width:46.079998px;}
.w4{width:62.279997px;}
.w3{width:65.879997px;}
.w2{width:66.239997px;}
.w6{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:43.552352px;}
.xe{left:44.748082px;}
.xc{left:45.943812px;}
.x4{left:48.986040px;}
.xd{left:56.664852px;}
.xa{left:119.519995px;}
.xb{left:127.079995px;}
.x3{left:169.758106px;}
.x1{left:204.786929px;}
.x5{left:469.235590px;}
.x6{left:471.452938px;}
.x9{left:496.079979px;}
.x8{left:618.479974px;}
.x7{left:620.279974px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-16.006031pt;}
.ws4{word-spacing:-14.665525pt;}
.ws8{word-spacing:-13.335024pt;}
.ws2{word-spacing:-12.004523pt;}
.ws7{word-spacing:-9.337495pt;}
.ws5{word-spacing:-6.218711pt;}
.ws6{word-spacing:-5.245742pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:456.644952pt;}
._9{margin-left:-0.890244pt;}
._11{width:1.489817pt;}
._12{width:2.420159pt;}
._e{width:3.702116pt;}
._2{width:4.597941pt;}
._14{width:5.636356pt;}
._10{width:7.556346pt;}
._15{width:10.439094pt;}
._8{width:11.853639pt;}
._b{width:12.852719pt;}
._a{width:13.764418pt;}
._c{width:16.707964pt;}
._0{width:19.227611pt;}
._3{width:23.966763pt;}
._16{width:31.721058pt;}
._4{width:32.892006pt;}
._f{width:40.499229pt;}
._d{width:42.638300pt;}
._7{width:78.433022pt;}
._13{width:163.819840pt;}
._1{width:526.346234pt;}
._5{width:759.871701pt;}
._6{width:1200.662781pt;}
.fs6{font-size:16.600451pt;}
.fs5{font-size:24.874844pt;}
.fs7{font-size:26.444913pt;}
.fs2{font-size:35.213268pt;}
.fs8{font-size:37.349980pt;}
.fs4{font-size:48.018092pt;}
.fs9{font-size:53.340097pt;}
.fs1{font-size:58.662102pt;}
.fs3{font-size:64.024123pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.yd1{bottom:3.250635pt;}
.ycd{bottom:4.394429pt;}
.ycf{bottom:4.398179pt;}
.ycb{bottom:4.588492pt;}
.yd7{bottom:5.142632pt;}
.yd9{bottom:7.278676pt;}
.yd6{bottom:13.957603pt;}
.yd5{bottom:22.772574pt;}
.yd4{bottom:31.587545pt;}
.yd3{bottom:40.402516pt;}
.yae{bottom:40.985875pt;}
.y23{bottom:42.084173pt;}
.yd2{bottom:47.480016pt;}
.yce{bottom:48.440016pt;}
.y77{bottom:58.952502pt;}
.yad{bottom:60.993414pt;}
.y22{bottom:62.091711pt;}
.y8f{bottom:63.490086pt;}
.ycc{bottom:64.760016pt;}
.yd0{bottom:66.680016pt;}
.y46{bottom:71.683762pt;}
.y76{bottom:78.960040pt;}
.yca{bottom:79.800015pt;}
.yac{bottom:81.000952pt;}
.y21{bottom:82.099250pt;}
.y8e{bottom:83.497624pt;}
.y45{bottom:91.691300pt;}
.y75{bottom:98.967579pt;}
.yab{bottom:101.008491pt;}
.y20{bottom:102.106788pt;}
.y8d{bottom:103.505162pt;}
.y44{bottom:111.698839pt;}
.y74{bottom:118.975117pt;}
.yaa{bottom:121.016029pt;}
.y1f{bottom:122.114326pt;}
.y8c{bottom:123.512701pt;}
.y43{bottom:131.706377pt;}
.y73{bottom:138.982655pt;}
.ya9{bottom:141.023567pt;}
.yd8{bottom:141.880012pt;}
.y1e{bottom:142.121865pt;}
.y8b{bottom:143.520239pt;}
.y42{bottom:151.713916pt;}
.yc6{bottom:153.731649pt;}
.y72{bottom:158.990194pt;}
.ya8{bottom:161.031106pt;}
.y1d{bottom:162.129403pt;}
.y8a{bottom:163.527778pt;}
.yc5{bottom:169.737680pt;}
.y41{bottom:171.721454pt;}
.y71{bottom:178.997732pt;}
.ya7{bottom:181.038644pt;}
.y1c{bottom:182.136942pt;}
.y89{bottom:183.535316pt;}
.yc4{bottom:185.743711pt;}
.y40{bottom:191.728992pt;}
.y70{bottom:199.005270pt;}
.ya6{bottom:201.046182pt;}
.y1b{bottom:202.144480pt;}
.y88{bottom:203.542854pt;}
.ydd{bottom:206.595022pt;}
.y3f{bottom:211.736531pt;}
.y6f{bottom:219.012809pt;}
.ya5{bottom:221.053721pt;}
.y1a{bottom:222.152018pt;}
.ydc{bottom:222.601053pt;}
.y87{bottom:223.550393pt;}
.y3e{bottom:231.744069pt;}
.y6e{bottom:239.020347pt;}
.ya4{bottom:241.061259pt;}
.y19{bottom:242.159557pt;}
.y86{bottom:243.557931pt;}
.yda{bottom:245.151946pt;}
.y3d{bottom:251.751607pt;}
.y6d{bottom:259.027886pt;}
.ya3{bottom:261.068797pt;}
.y18{bottom:262.167095pt;}
.y85{bottom:263.565469pt;}
.y3c{bottom:271.759146pt;}
.y6c{bottom:279.035424pt;}
.ydf{bottom:279.625803pt;}
.ya2{bottom:281.076336pt;}
.y17{bottom:282.174633pt;}
.y84{bottom:283.573008pt;}
.y3b{bottom:291.766684pt;}
.yde{bottom:295.631834pt;}
.y6b{bottom:299.042962pt;}
.y16{bottom:302.182172pt;}
.y83{bottom:303.580546pt;}
.y3a{bottom:311.774223pt;}
.ye0{bottom:313.407161pt;}
.y6a{bottom:319.050501pt;}
.y15{bottom:322.189710pt;}
.y82{bottom:323.588084pt;}
.yc9{bottom:326.035147pt;}
.y39{bottom:331.781761pt;}
.ydb{bottom:334.458823pt;}
.y69{bottom:339.058039pt;}
.y81{bottom:343.595623pt;}
.yc8{bottom:348.043439pt;}
.y38{bottom:351.789299pt;}
.y68{bottom:359.065577pt;}
.y80{bottom:363.603161pt;}
.ya{bottom:364.147337pt;}
.yc7{bottom:370.051731pt;}
.y37{bottom:371.796838pt;}
.y67{bottom:379.073116pt;}
.y7f{bottom:383.610700pt;}
.y9{bottom:386.155629pt;}
.y36{bottom:391.804376pt;}
.y66{bottom:399.080654pt;}
.y7e{bottom:403.618238pt;}
.yf3{bottom:406.685979pt;}
.y8{bottom:408.163922pt;}
.y35{bottom:411.811914pt;}
.ya1{bottom:415.002001pt;}
.y65{bottom:419.088192pt;}
.y7d{bottom:423.625776pt;}
.yf2{bottom:426.693517pt;}
.y34{bottom:431.819453pt;}
.ya0{bottom:435.009539pt;}
.y64{bottom:439.095731pt;}
.y7c{bottom:443.633315pt;}
.yf1{bottom:446.701055pt;}
.yd{bottom:449.362357pt;}
.y33{bottom:451.826991pt;}
.y9f{bottom:455.017077pt;}
.y63{bottom:459.103269pt;}
.y7b{bottom:463.640853pt;}
.yc{bottom:465.368388pt;}
.yf0{bottom:466.708594pt;}
.y32{bottom:471.834529pt;}
.y9e{bottom:475.024616pt;}
.y62{bottom:479.110808pt;}
.yb{bottom:481.374418pt;}
.y7a{bottom:483.648391pt;}
.yef{bottom:486.716132pt;}
.y31{bottom:491.842068pt;}
.ybf{bottom:495.210007pt;}
.y61{bottom:499.118346pt;}
.yee{bottom:506.723670pt;}
.y30{bottom:511.849606pt;}
.ybe{bottom:515.217545pt;}
.yc3{bottom:517.956099pt;}
.y60{bottom:519.125884pt;}
.y79{bottom:524.602824pt;}
.yed{bottom:526.731209pt;}
.y2f{bottom:531.857145pt;}
.yc2{bottom:533.962129pt;}
.ybd{bottom:535.225084pt;}
.y5f{bottom:539.133423pt;}
.y78{bottom:546.611116pt;}
.yec{bottom:546.738747pt;}
.yc1{bottom:549.968160pt;}
.y2e{bottom:551.864683pt;}
.ybc{bottom:555.232622pt;}
.y5e{bottom:559.140961pt;}
.yc0{bottom:565.974191pt;}
.yeb{bottom:566.746286pt;}
.y2d{bottom:571.872221pt;}
.ybb{bottom:575.240160pt;}
.y5d{bottom:579.148499pt;}
.yea{bottom:586.753824pt;}
.y93{bottom:586.803542pt;}
.y2c{bottom:591.879760pt;}
.yba{bottom:595.247699pt;}
.y5c{bottom:599.156038pt;}
.y92{bottom:602.809573pt;}
.ye9{bottom:606.761362pt;}
.y2b{bottom:611.887298pt;}
.yb9{bottom:615.255237pt;}
.y91{bottom:618.815604pt;}
.y5b{bottom:619.163576pt;}
.ye8{bottom:626.768901pt;}
.y2a{bottom:631.894836pt;}
.y90{bottom:634.821634pt;}
.yb8{bottom:635.262775pt;}
.y5a{bottom:639.171114pt;}
.ye7{bottom:646.776439pt;}
.y29{bottom:651.902375pt;}
.yb7{bottom:655.270314pt;}
.y59{bottom:659.178653pt;}
.ye6{bottom:666.783977pt;}
.y28{bottom:671.909913pt;}
.yb6{bottom:675.277852pt;}
.y58{bottom:679.186191pt;}
.ye5{bottom:686.791516pt;}
.y27{bottom:691.917451pt;}
.yb5{bottom:695.285391pt;}
.y57{bottom:699.193730pt;}
.ye4{bottom:706.799054pt;}
.y26{bottom:711.924990pt;}
.yb4{bottom:715.292929pt;}
.y56{bottom:719.201268pt;}
.ye3{bottom:726.806592pt;}
.y25{bottom:731.932528pt;}
.yb3{bottom:735.300467pt;}
.y55{bottom:739.208806pt;}
.y24{bottom:751.940067pt;}
.yb2{bottom:755.308006pt;}
.y54{bottom:759.216345pt;}
.ye1{bottom:768.984105pt;}
.yb1{bottom:775.315544pt;}
.y53{bottom:779.223883pt;}
.y14{bottom:793.022215pt;}
.yb0{bottom:795.323082pt;}
.y52{bottom:799.231421pt;}
.y13{bottom:813.029754pt;}
.yfd{bottom:814.423229pt;}
.yaf{bottom:815.330621pt;}
.y51{bottom:819.238960pt;}
.y12{bottom:833.037292pt;}
.yfc{bottom:834.430767pt;}
.y9d{bottom:835.338159pt;}
.y50{bottom:839.246498pt;}
.y11{bottom:853.044830pt;}
.yfb{bottom:854.438306pt;}
.y9c{bottom:855.345697pt;}
.y4f{bottom:859.254037pt;}
.y10{bottom:873.052369pt;}
.yfa{bottom:874.445844pt;}
.y9b{bottom:875.353236pt;}
.y4e{bottom:879.261575pt;}
.yf{bottom:893.059907pt;}
.yf9{bottom:894.453382pt;}
.y9a{bottom:895.360774pt;}
.y4d{bottom:899.269113pt;}
.ye{bottom:913.067445pt;}
.yf8{bottom:914.460921pt;}
.y99{bottom:915.368313pt;}
.y4c{bottom:919.276652pt;}
.yf7{bottom:934.468459pt;}
.y98{bottom:935.375851pt;}
.y4b{bottom:939.284190pt;}
.y6{bottom:950.329543pt;}
.yf6{bottom:954.475997pt;}
.y97{bottom:955.383389pt;}
.y4a{bottom:959.291728pt;}
.y5{bottom:970.337081pt;}
.yf5{bottom:974.483536pt;}
.y96{bottom:975.390928pt;}
.y7{bottom:976.339343pt;}
.y49{bottom:979.299267pt;}
.y3{bottom:990.344620pt;}
.yf4{bottom:994.491074pt;}
.y95{bottom:995.398466pt;}
.y4{bottom:996.346881pt;}
.y48{bottom:999.306805pt;}
.y94{bottom:1015.406004pt;}
.y47{bottom:1019.314343pt;}
.ye2{bottom:1031.195281pt;}
.y2{bottom:1043.584726pt;}
.hd{height:8.000000pt;}
.hc{height:11.520000pt;}
.ha{height:11.840000pt;}
.he{height:13.363363pt;}
.h11{height:17.599999pt;}
.hb{height:20.223249pt;}
.h10{height:21.499714pt;}
.h5{height:28.628387pt;}
.h12{height:30.365533pt;}
.h7{height:39.038709pt;}
.h9{height:41.871776pt;}
.h13{height:43.365499pt;}
.hf{height:47.679998pt;}
.h4{height:47.692289pt;}
.h8{height:51.153353pt;}
.h6{height:53.011974pt;}
.h3{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w5{width:27.519999pt;}
.w7{width:40.959998pt;}
.w4{width:55.359998pt;}
.w3{width:58.559998pt;}
.w2{width:58.879998pt;}
.w6{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:38.713202pt;}
.xe{left:39.776073pt;}
.xc{left:40.838944pt;}
.x4{left:43.543146pt;}
.xd{left:50.368758pt;}
.xa{left:106.239996pt;}
.xb{left:112.959995pt;}
.x3{left:150.896094pt;}
.x1{left:182.032826pt;}
.x5{left:417.098303pt;}
.x6{left:419.069279pt;}
.x9{left:440.959982pt;}
.x8{left:549.759977pt;}
.x7{left:551.359977pt;}
}




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