
    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_3156811078027c4653e75a5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.051000;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_7240fc80b195b91bd85a1cbf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_c4f18c12092a4840a71d33d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.834473;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_3be8292aec22c9cfbb9cdf05.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.023000;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_6c71b95eef387eaf62a035db.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.769531;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_d1f0e05dae65f7f2b44f186b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.100098;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_bb5fb114d2c56dc95be0fd7b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970703;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);}
.v2{vertical-align:-18.720698px;}
.v3{vertical-align:-3.568362px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.681184px;}
.v4{vertical-align:51.083928px;}
.v5{vertical-align:102.262988px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:11.155038px;}
.ls1{letter-spacing:53.228114px;}
.ls6{letter-spacing:67.760569px;}
.lse{letter-spacing:67.766905px;}
.lsa{letter-spacing:67.768240px;}
.lsc{letter-spacing:67.770968px;}
.ls8{letter-spacing:67.774536px;}
.ls9{letter-spacing:67.777725px;}
.lsb{letter-spacing:67.784354px;}
.ls7{letter-spacing:67.786494px;}
.lsf{letter-spacing:67.790117px;}
.ls10{letter-spacing:67.802075px;}
.ls3{letter-spacing:67.812039px;}
.ls5{letter-spacing:67.814387px;}
.lsd{letter-spacing:67.817433px;}
.ls4{letter-spacing:67.818905px;}
.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;}
}
.ws18{word-spacing:-125.999675px;}
.wsc{word-spacing:-57.395468px;}
.wsa{word-spacing:-51.695291px;}
.ws6{word-spacing:-40.294938px;}
.wsb{word-spacing:-34.397911px;}
.ws3{word-spacing:-32.256000px;}
.ws0{word-spacing:-26.910720px;}
.ws5{word-spacing:-25.544160px;}
.wsd{word-spacing:-24.330240px;}
.ws8{word-spacing:-23.309940px;}
.wse{word-spacing:-17.845920px;}
.ws17{word-spacing:-2.661125px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:3.737622px;}
.ws1{word-spacing:9.198022px;}
.wsf{word-spacing:286.260467px;}
.ws14{word-spacing:330.846375px;}
.ws11{word-spacing:362.054839px;}
.ws13{word-spacing:362.351811px;}
.ws12{word-spacing:362.862801px;}
.ws15{word-spacing:379.352044px;}
.ws10{word-spacing:412.889191px;}
.ws16{word-spacing:485.838540px;}
.ws9{word-spacing:2380.105351px;}
.ws7{word-spacing:2933.564219px;}
._7{margin-left:-11.534378px;}
._8{margin-left:-10.457973px;}
._4{margin-left:-6.209984px;}
._c{margin-left:-4.604396px;}
._2{margin-left:-2.952010px;}
._1{margin-left:-1.623606px;}
._0{width:1.328405px;}
._3{width:3.016813px;}
._5{width:5.155171px;}
._9{width:9.152611px;}
._d{width:34.020000px;}
._a{width:179.150423px;}
._b{width:266.029095px;}
._6{width:799.491065px;}
.fce{color:rgb(255,158,24);}
.fc0{color:rgb(34,47,93);}
.fcb{color:rgb(31,39,83);}
.fc5{color:rgb(0,0,0);}
.fcd{color:rgb(90,162,174);}
.fc7{color:rgb(255,255,255);}
.fc1{color:rgb(1,30,65);}
.fc2{color:rgb(0,33,105);}
.fc4{color:rgb(61,124,201);}
.fcf{color:rgb(157,144,160);}
.fc6{color:rgb(189,218,223);}
.fc8{color:rgb(89,155,160);}
.fc10{color:rgb(0,76,171);}
.fc3{color:rgb(3,80,174);}
.fcc{color:transparent;}
.fc9{color:rgb(255,165,54);}
.fca{color:rgb(192,80,131);}
.fs7{font-size:41.760000px;}
.fs3{font-size:69.839584px;}
.fse{font-size:73.440000px;}
.fs9{font-size:84.240000px;}
.fs8{font-size:84.240136px;}
.fsa{font-size:89.999768px;}
.fsd{font-size:95.040000px;}
.fs5{font-size:100.799445px;}
.fs2{font-size:105.119906px;}
.fs0{font-size:105.120000px;}
.fsb{font-size:125.999675px;}
.fs6{font-size:126.000000px;}
.fs1{font-size:147.600504px;}
.fsc{font-size:189.360042px;}
.fs4{font-size:210.239811px;}
.y0{bottom:0.000000px;}
.y4c{bottom:11.881232px;}
.y1{bottom:109.257847px;}
.y72{bottom:117.535271px;}
.y41{bottom:139.137285px;}
.y90{bottom:144.539991px;}
.y8c{bottom:153.547089px;}
.y25{bottom:155.692405px;}
.y40{bottom:161.816311px;}
.y85{bottom:170.464035px;}
.y32{bottom:171.002694px;}
.y7{bottom:177.838707px;}
.y3f{bottom:185.574990px;}
.y70{bottom:186.654625px;}
.y10{bottom:193.676198px;}
.y24{bottom:195.114643px;}
.y2d{bottom:202.499316px;}
.y31{bottom:202.500324px;}
.y87{bottom:205.199288px;}
.y6{bottom:209.341300px;}
.y6f{bottom:212.220336px;}
.y1a{bottom:212.945552px;}
.y60{bottom:221.755601px;}
.y88{bottom:223.384487px;}
.y23{bottom:226.614488px;}
.y57{bottom:229.505794px;}
.y5e{bottom:230.579920px;}
.y59{bottom:233.640010px;}
.y2c{bottom:233.999150px;}
.yf{bottom:238.681842px;}
.y5{bottom:241.023561px;}
.y30{bottom:241.919276px;}
.y5f{bottom:243.896635px;}
.y19{bottom:248.941954px;}
.y56{bottom:257.934625px;}
.y84{bottom:259.021373px;}
.y58{bottom:262.080733px;}
.y22{bottom:266.215163px;}
.y4a{bottom:267.119058px;}
.y2b{bottom:273.415858px;}
.y3e{bottom:274.321430px;}
.y4{bottom:279.353232px;}
.y83{bottom:281.881962px;}
.y47{bottom:285.837537px;}
.y5d{bottom:288.000809px;}
.y3d{bottom:297.182083px;}
.y21{bottom:297.715259px;}
.y8e{bottom:302.213266px;}
.y4e{bottom:304.555969px;}
.ye{bottom:304.922268px;}
.y49{bottom:304.925140px;}
.y2f{bottom:305.096419px;}
.y2a{bottom:305.098604px;}
.y18{bottom:306.003082px;}
.y5c{bottom:309.958233px;}
.y6d{bottom:314.816035px;}
.y3c{bottom:319.863680px;}
.y3{bottom:323.460434px;}
.y46{bottom:323.643572px;}
.y6c{bottom:327.598926px;}
.y5b{bottom:332.100388px;}
.y2e{bottom:336.596112px;}
.y79{bottom:336.776939px;}
.y20{bottom:337.141090px;}
.y6e{bottom:340.381818px;}
.y17{bottom:341.993521px;}
.y48{bottom:342.715779px;}
.y3b{bottom:343.622908px;}
.y29{bottom:344.516419px;}
.y86{bottom:347.224673px;}
.y42{bottom:348.125446px;}
.yd{bottom:358.015505px;}
.y2{bottom:367.729789px;}
.y78{bottom:368.463800px;}
.y82{bottom:370.618293px;}
.y28{bottom:376.026113px;}
.y1f{bottom:376.564858px;}
.y16{bottom:377.996365px;}
.y8b{bottom:381.057762px;}
.y27{bottom:407.694278px;}
.y1e{bottom:408.239288px;}
.yc{bottom:410.946522px;}
.y77{bottom:413.103262px;}
.y3a{bottom:417.961196px;}
.y15{bottom:423.724337px;}
.y39{bottom:440.642793px;}
.y6b{bottom:442.799288px;}
.y26{bottom:447.113521px;}
.y1d{bottom:447.665419px;}
.y7b{bottom:452.334179px;}
.y66{bottom:452.698021px;}
.y14{bottom:455.223323px;}
.y76{bottom:457.743776px;}
.y81{bottom:458.996575px;}
.y8a{bottom:459.902259px;}
.y38{bottom:463.503446px;}
.y6a{bottom:468.365035px;}
.yb{bottom:477.182275px;}
.y80{bottom:481.857228px;}
.y65{bottom:484.201460px;}
.y37{bottom:486.185043px;}
.y75{bottom:489.415029px;}
.y55{bottom:498.421456px;}
.y7a{bottom:509.220786px;}
.y36{bottom:509.935858px;}
.y13{bottom:511.197327px;}
.y54{bottom:526.862179px;}
.y64{bottom:529.015163px;}
.y74{bottom:534.054491px;}
.y89{bottom:538.746755px;}
.y45{bottom:543.235545px;}
.ya{bottom:543.245783px;}
.y12{bottom:547.200919px;}
.y53{bottom:555.302902px;}
.y7f{bottom:559.084244px;}
.y63{bottom:560.523520px;}
.y68{bottom:570.960733px;}
.y73{bottom:578.704246px;}
.y7e{bottom:581.944865px;}
.y11{bottom:583.198008px;}
.y52{bottom:583.565396px;}
.y67{bottom:583.743625px;}
.y35{bottom:587.336220px;}
.y43{bottom:590.219570px;}
.y69{bottom:596.514607px;}
.y8f{bottom:601.022268px;}
.y62{bottom:605.161459px;}
.y9{bottom:609.481573px;}
.y34{bottom:610.017849px;}
.y8d{bottom:611.637753px;}
.y51{bottom:611.994245px;}
.y33{bottom:633.780378px;}
.y61{bottom:636.842000px;}
.y50{bottom:658.077056px;}
.y7d{bottom:659.161357px;}
.y7c{bottom:682.021994px;}
.y1c{bottom:691.200464px;}
.y4d{bottom:706.139521px;}
.y44{bottom:714.948558px;}
.y8{bottom:720.184025px;}
.y4f{bottom:721.261909px;}
.y71{bottom:723.597346px;}
.y5a{bottom:723.956641px;}
.y1b{bottom:735.487813px;}
.y4b{bottom:751.144896px;}
.hd{height:36.164160px;}
.h20{height:50.391221px;}
.h23{height:61.873200px;}
.h1e{height:68.378730px;}
.h1d{height:72.951840px;}
.h22{height:82.304640px;}
.h12{height:88.563600px;}
.h5{height:90.902028px;}
.h2d{height:90.997198px;}
.h25{height:91.006488px;}
.h2a{height:91.006937px;}
.h2e{height:91.008719px;}
.h11{height:91.010227px;}
.h1a{height:91.020749px;}
.hf{height:91.024304px;}
.h19{height:91.025179px;}
.h1c{height:91.029887px;}
.h18{height:91.030890px;}
.h2{height:91.033920px;}
.h10{height:91.036910px;}
.h24{height:91.039349px;}
.h17{height:91.042870px;}
.h14{height:91.048992px;}
.h13{height:91.058443px;}
.h2b{height:91.059631px;}
.he{height:91.059930px;}
.h2c{height:91.071151px;}
.h15{height:91.072313px;}
.h16{height:91.073316px;}
.h1b{height:91.073925px;}
.h4{height:92.074691px;}
.h2f{height:96.283931px;}
.h1f{height:108.957727px;}
.ha{height:109.071969px;}
.h8{height:109.074927px;}
.hc{height:109.099720px;}
.h9{height:109.106942px;}
.h7{height:109.109749px;}
.hb{height:109.116000px;}
.h3{height:127.636959px;}
.h26{height:133.388568px;}
.h27{height:133.436206px;}
.h21{height:163.748357px;}
.h6{height:181.804055px;}
.h29{height:181.906712px;}
.h28{height:184.567628px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w2{width:628.179785px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:27.173520px;}
.x60{left:28.269938px;}
.x37{left:30.959394px;}
.x12{left:42.479983px;}
.x61{left:66.964849px;}
.x63{left:72.361080px;}
.x4d{left:74.516939px;}
.x15{left:75.962149px;}
.x19{left:78.481535px;}
.x47{left:80.279097px;}
.x17{left:83.695127px;}
.x49{left:87.118201px;}
.x48{left:90.184318px;}
.x50{left:91.618563px;}
.x59{left:93.056042px;}
.x9{left:95.582289px;}
.x4e{left:109.981796px;}
.x14{left:111.058776px;}
.x55{left:114.119277px;}
.x16{left:115.382337px;}
.x13{left:116.643776px;}
.x65{left:122.582253px;}
.x54{left:125.096404px;}
.xa{left:131.039995px;}
.x18{left:160.202878px;}
.x11{left:182.343786px;}
.x3{left:207.545200px;}
.x40{left:221.395681px;}
.x39{left:235.434223px;}
.x2{left:257.039659px;}
.x41{left:282.971710px;}
.x3d{left:285.127481px;}
.x38{left:286.744328px;}
.xf{left:293.219083px;}
.x46{left:297.184150px;}
.x51{left:306.896024px;}
.x45{left:308.337844px;}
.x5e{left:315.354614px;}
.x5d{left:317.694976px;}
.x3b{left:340.210085px;}
.x5f{left:341.460060px;}
.x64{left:346.490190px;}
.x5{left:354.240741px;}
.x8{left:410.034378px;}
.x2d{left:418.135766px;}
.x1e{left:424.984915px;}
.x1b{left:428.398951px;}
.x7{left:433.799265px;}
.x29{left:441.175500px;}
.x4f{left:442.627701px;}
.x1f{left:444.421082px;}
.x4{left:452.513018px;}
.x2a{left:459.897750px;}
.x2f{left:461.519379px;}
.x2b{left:463.140976px;}
.x35{left:464.404589px;}
.x1c{left:474.840174px;}
.xc{left:487.437093px;}
.x20{left:489.241602px;}
.x5a{left:490.323253px;}
.x32{left:496.436863px;}
.x36{left:498.058460px;}
.x6{left:506.697967px;}
.x1a{left:509.214418px;}
.x33{left:511.378935px;}
.x34{left:512.814766px;}
.x43{left:518.220189px;}
.x56{left:521.282530px;}
.x42{left:527.400189px;}
.x31{left:529.564234px;}
.x2e{left:532.975944px;}
.x1d{left:538.201255px;}
.x30{left:540.001429px;}
.x2c{left:554.402898px;}
.x3e{left:558.552165px;}
.xd{left:566.636302px;}
.x66{left:575.104246px;}
.x10{left:578.168076px;}
.x62{left:590.943613px;}
.xe{left:602.101082px;}
.x3a{left:621.723508px;}
.x67{left:660.964506px;}
.xb{left:667.439000px;}
.x57{left:709.378554px;}
.x52{left:715.318554px;}
.x58{left:717.480723px;}
.x5b{left:723.242494px;}
.x5c{left:727.020325px;}
.x53{left:732.425783px;}
.x44{left:742.495590px;}
.x3f{left:776.521364px;}
.x22{left:782.103151px;}
.x27{left:786.782004px;}
.x24{left:792.000750px;}
.x23{left:820.974031px;}
.x25{left:859.856930px;}
.x26{left:901.075500px;}
.x21{left:902.701559px;}
.x28{left:909.903938px;}
.x4b{left:962.999257px;}
.x3c{left:972.894505px;}
.x4a{left:978.834757px;}
.x4c{left:988.198313px;}
@media print{
.v2{vertical-align:-16.640620pt;}
.v3{vertical-align:-3.171877pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.161052pt;}
.v4{vertical-align:45.407936pt;}
.v5{vertical-align:90.900434pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:9.915589pt;}
.ls1{letter-spacing:47.313880pt;}
.ls6{letter-spacing:60.231617pt;}
.lse{letter-spacing:60.237249pt;}
.lsa{letter-spacing:60.238436pt;}
.lsc{letter-spacing:60.240861pt;}
.ls8{letter-spacing:60.244032pt;}
.ls9{letter-spacing:60.246867pt;}
.lsb{letter-spacing:60.252759pt;}
.ls7{letter-spacing:60.254661pt;}
.lsf{letter-spacing:60.257882pt;}
.ls10{letter-spacing:60.268511pt;}
.ls3{letter-spacing:60.277368pt;}
.ls5{letter-spacing:60.279455pt;}
.lsd{letter-spacing:60.282162pt;}
.ls4{letter-spacing:60.283472pt;}
.ws18{word-spacing:-111.999711pt;}
.wsc{word-spacing:-51.018194pt;}
.wsa{word-spacing:-45.951370pt;}
.ws6{word-spacing:-35.817722pt;}
.wsb{word-spacing:-30.575921pt;}
.ws3{word-spacing:-28.672000pt;}
.ws0{word-spacing:-23.920640pt;}
.ws5{word-spacing:-22.705920pt;}
.wsd{word-spacing:-21.626880pt;}
.ws8{word-spacing:-20.719947pt;}
.wse{word-spacing:-15.863040pt;}
.ws17{word-spacing:-2.365445pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:3.322331pt;}
.ws1{word-spacing:8.176019pt;}
.wsf{word-spacing:254.453748pt;}
.ws14{word-spacing:294.085667pt;}
.ws11{word-spacing:321.826524pt;}
.ws13{word-spacing:322.090498pt;}
.ws12{word-spacing:322.544712pt;}
.ws15{word-spacing:337.201817pt;}
.ws10{word-spacing:367.012614pt;}
.ws16{word-spacing:431.856480pt;}
.ws9{word-spacing:2115.649201pt;}
.ws7{word-spacing:2607.612639pt;}
._7{margin-left:-10.252781pt;}
._8{margin-left:-9.295976pt;}
._4{margin-left:-5.519986pt;}
._c{margin-left:-4.092797pt;}
._2{margin-left:-2.624009pt;}
._1{margin-left:-1.443205pt;}
._0{width:1.180804pt;}
._3{width:2.681611pt;}
._5{width:4.582374pt;}
._9{width:8.135655pt;}
._d{width:30.240000pt;}
._a{width:159.244821pt;}
._b{width:236.470307pt;}
._6{width:710.658724pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:62.079630pt;}
.fse{font-size:65.280000pt;}
.fs9{font-size:74.880000pt;}
.fs8{font-size:74.880121pt;}
.fsa{font-size:79.999793pt;}
.fsd{font-size:84.480000pt;}
.fs5{font-size:89.599507pt;}
.fs2{font-size:93.439916pt;}
.fs0{font-size:93.440000pt;}
.fsb{font-size:111.999711pt;}
.fs6{font-size:112.000000pt;}
.fs1{font-size:131.200448pt;}
.fsc{font-size:168.320037pt;}
.fs4{font-size:186.879832pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:10.561095pt;}
.y1{bottom:97.118086pt;}
.y72{bottom:104.475796pt;}
.y41{bottom:123.677586pt;}
.y90{bottom:128.479992pt;}
.y8c{bottom:136.486301pt;}
.y25{bottom:138.393249pt;}
.y40{bottom:143.836721pt;}
.y85{bottom:151.523586pt;}
.y32{bottom:152.002395pt;}
.y7{bottom:158.078851pt;}
.y3f{bottom:164.955546pt;}
.y70{bottom:165.915222pt;}
.y10{bottom:172.156621pt;}
.y24{bottom:173.435238pt;}
.y2d{bottom:179.999392pt;}
.y31{bottom:180.000288pt;}
.y87{bottom:182.399367pt;}
.y6{bottom:186.081156pt;}
.y6f{bottom:188.640298pt;}
.y1a{bottom:189.284935pt;}
.y60{bottom:197.116089pt;}
.y88{bottom:198.563989pt;}
.y23{bottom:201.435100pt;}
.y57{bottom:204.005150pt;}
.y5e{bottom:204.959929pt;}
.y59{bottom:207.680009pt;}
.y2c{bottom:207.999245pt;}
.yf{bottom:212.161637pt;}
.y5{bottom:214.243165pt;}
.y30{bottom:215.039356pt;}
.y5f{bottom:216.797009pt;}
.y19{bottom:221.281737pt;}
.y56{bottom:229.275222pt;}
.y84{bottom:230.241221pt;}
.y58{bottom:232.960652pt;}
.y22{bottom:236.635701pt;}
.y4a{bottom:237.439163pt;}
.y2b{bottom:243.036318pt;}
.y3e{bottom:243.841271pt;}
.y4{bottom:248.313984pt;}
.y83{bottom:250.561744pt;}
.y47{bottom:254.077811pt;}
.y5d{bottom:256.000719pt;}
.y3d{bottom:264.161852pt;}
.y21{bottom:264.635786pt;}
.y8e{bottom:268.634014pt;}
.y4e{bottom:270.716416pt;}
.ye{bottom:271.042016pt;}
.y49{bottom:271.044569pt;}
.y2f{bottom:271.196816pt;}
.y2a{bottom:271.198759pt;}
.y18{bottom:272.002739pt;}
.y5c{bottom:275.518429pt;}
.y6d{bottom:279.836475pt;}
.y3c{bottom:284.323271pt;}
.y3{bottom:287.520386pt;}
.y46{bottom:287.683175pt;}
.y6c{bottom:291.199045pt;}
.y5b{bottom:295.200345pt;}
.y2e{bottom:299.196544pt;}
.y79{bottom:299.357279pt;}
.y20{bottom:299.680969pt;}
.y6e{bottom:302.561616pt;}
.y17{bottom:303.994241pt;}
.y48{bottom:304.636248pt;}
.y3b{bottom:305.442585pt;}
.y29{bottom:306.236816pt;}
.y86{bottom:308.644154pt;}
.y42{bottom:309.444841pt;}
.yd{bottom:318.236004pt;}
.y2{bottom:326.870924pt;}
.y78{bottom:327.523378pt;}
.y82{bottom:329.438482pt;}
.y28{bottom:334.245434pt;}
.y1f{bottom:334.724318pt;}
.y16{bottom:335.996769pt;}
.y8b{bottom:338.718011pt;}
.y27{bottom:362.394914pt;}
.y1e{bottom:362.879367pt;}
.yc{bottom:365.285797pt;}
.y77{bottom:367.202900pt;}
.y3a{bottom:371.521063pt;}
.y15{bottom:376.643855pt;}
.y39{bottom:391.682482pt;}
.y6b{bottom:393.599367pt;}
.y26{bottom:397.434241pt;}
.y1d{bottom:397.924816pt;}
.y7b{bottom:402.074826pt;}
.y66{bottom:402.398241pt;}
.y14{bottom:404.642953pt;}
.y76{bottom:406.883356pt;}
.y81{bottom:407.996956pt;}
.y8a{bottom:408.802008pt;}
.y38{bottom:412.003063pt;}
.y6a{bottom:416.324475pt;}
.yb{bottom:424.162022pt;}
.y80{bottom:428.317536pt;}
.y65{bottom:430.401298pt;}
.y37{bottom:432.164482pt;}
.y75{bottom:435.035581pt;}
.y55{bottom:443.041294pt;}
.y7a{bottom:452.640699pt;}
.y36{bottom:453.276318pt;}
.y13{bottom:454.397624pt;}
.y54{bottom:468.321937pt;}
.y64{bottom:470.235701pt;}
.y74{bottom:474.715103pt;}
.y89{bottom:478.886004pt;}
.y45{bottom:482.876040pt;}
.ya{bottom:482.885140pt;}
.y12{bottom:486.400816pt;}
.y53{bottom:493.602580pt;}
.y7f{bottom:496.963773pt;}
.y63{bottom:498.243129pt;}
.y68{bottom:507.520652pt;}
.y73{bottom:514.403774pt;}
.y7e{bottom:517.284325pt;}
.y11{bottom:518.398229pt;}
.y52{bottom:518.724796pt;}
.y67{bottom:518.883222pt;}
.y35{bottom:522.076640pt;}
.y43{bottom:524.639618pt;}
.y69{bottom:530.235206pt;}
.y8f{bottom:534.242016pt;}
.y62{bottom:537.921297pt;}
.y9{bottom:541.761398pt;}
.y34{bottom:542.238088pt;}
.y8d{bottom:543.678003pt;}
.y51{bottom:543.994885pt;}
.y33{bottom:563.360336pt;}
.y61{bottom:566.081778pt;}
.y50{bottom:584.957383pt;}
.y7d{bottom:585.921206pt;}
.y7c{bottom:606.241773pt;}
.y1c{bottom:614.400412pt;}
.y4d{bottom:627.679575pt;}
.y44{bottom:635.509829pt;}
.y8{bottom:640.163577pt;}
.y4f{bottom:641.121697pt;}
.y71{bottom:643.197641pt;}
.y5a{bottom:643.517015pt;}
.y1b{bottom:653.766945pt;}
.y4b{bottom:667.684352pt;}
.hd{height:32.145920pt;}
.h20{height:44.792197pt;}
.h23{height:54.998400pt;}
.h1e{height:60.781093pt;}
.h1d{height:64.846080pt;}
.h22{height:73.159680pt;}
.h12{height:78.723200pt;}
.h5{height:80.801802pt;}
.h2d{height:80.886398pt;}
.h25{height:80.894656pt;}
.h2a{height:80.895055pt;}
.h2e{height:80.896639pt;}
.h11{height:80.897980pt;}
.h1a{height:80.907333pt;}
.hf{height:80.910492pt;}
.h19{height:80.911270pt;}
.h1c{height:80.915455pt;}
.h18{height:80.916346pt;}
.h2{height:80.919040pt;}
.h10{height:80.921697pt;}
.h24{height:80.923866pt;}
.h17{height:80.926996pt;}
.h14{height:80.932437pt;}
.h13{height:80.940838pt;}
.h2b{height:80.941894pt;}
.he{height:80.942160pt;}
.h2c{height:80.952135pt;}
.h15{height:80.953167pt;}
.h16{height:80.954059pt;}
.h1b{height:80.954600pt;}
.h4{height:81.844170pt;}
.h2f{height:85.585717pt;}
.h1f{height:96.851312pt;}
.ha{height:96.952862pt;}
.h8{height:96.955490pt;}
.hc{height:96.977529pt;}
.h9{height:96.983949pt;}
.h7{height:96.986444pt;}
.hb{height:96.992000pt;}
.h3{height:113.455075pt;}
.h26{height:118.567616pt;}
.h27{height:118.609961pt;}
.h21{height:145.554095pt;}
.h6{height:161.603605pt;}
.h29{height:161.694855pt;}
.h28{height:164.060114pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w2{width:558.382031pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:24.154240pt;}
.x60{left:25.128833pt;}
.x37{left:27.519461pt;}
.x12{left:37.759985pt;}
.x61{left:59.524310pt;}
.x63{left:64.320960pt;}
.x4d{left:66.237279pt;}
.x15{left:67.521910pt;}
.x19{left:69.761364pt;}
.x47{left:71.359198pt;}
.x17{left:74.395668pt;}
.x49{left:77.438401pt;}
.x48{left:80.163838pt;}
.x50{left:81.438723pt;}
.x59{left:82.716482pt;}
.x9{left:84.962034pt;}
.x4e{left:97.761596pt;}
.x14{left:98.718912pt;}
.x55{left:101.439357pt;}
.x16{left:102.562077pt;}
.x13{left:103.683356pt;}
.x65{left:108.962003pt;}
.x54{left:111.196803pt;}
.xa{left:116.479996pt;}
.x18{left:142.402558pt;}
.x11{left:162.083365pt;}
.x3{left:184.484622pt;}
.x40{left:196.796161pt;}
.x39{left:209.274865pt;}
.x2{left:228.479697pt;}
.x41{left:251.530409pt;}
.x3d{left:253.446649pt;}
.x38{left:254.883847pt;}
.xf{left:260.639185pt;}
.x46{left:264.163689pt;}
.x51{left:272.796466pt;}
.x45{left:274.078084pt;}
.x5e{left:280.315213pt;}
.x5d{left:282.395534pt;}
.x3b{left:302.408965pt;}
.x5f{left:303.520053pt;}
.x64{left:307.991280pt;}
.x5{left:314.880659pt;}
.x8{left:364.475003pt;}
.x2d{left:371.676237pt;}
.x1e{left:377.764369pt;}
.x1b{left:380.799068pt;}
.x7{left:385.599347pt;}
.x29{left:392.156000pt;}
.x4f{left:393.446845pt;}
.x1f{left:395.040961pt;}
.x4{left:402.233793pt;}
.x2a{left:408.798000pt;}
.x2f{left:410.239448pt;}
.x2b{left:411.680867pt;}
.x35{left:412.804079pt;}
.x1c{left:422.080154pt;}
.xc{left:433.277416pt;}
.x20{left:434.881424pt;}
.x5a{left:435.842892pt;}
.x32{left:441.277211pt;}
.x36{left:442.718631pt;}
.x6{left:450.398193pt;}
.x1a{left:452.635039pt;}
.x33{left:454.559054pt;}
.x34{left:455.835347pt;}
.x43{left:460.640168pt;}
.x56{left:463.362249pt;}
.x42{left:468.800168pt;}
.x31{left:470.723763pt;}
.x2e{left:473.756394pt;}
.x1d{left:478.401116pt;}
.x30{left:480.001270pt;}
.x2c{left:492.802576pt;}
.x3e{left:496.490813pt;}
.xd{left:503.676713pt;}
.x66{left:511.203774pt;}
.x10{left:513.927179pt;}
.x62{left:525.283211pt;}
.xe{left:535.200961pt;}
.x3a{left:552.643118pt;}
.x67{left:587.524005pt;}
.xb{left:593.279111pt;}
.x57{left:630.558715pt;}
.x52{left:635.838715pt;}
.x58{left:637.760643pt;}
.x5b{left:642.882217pt;}
.x5c{left:646.240289pt;}
.x53{left:651.045141pt;}
.x44{left:659.996080pt;}
.x3f{left:690.241213pt;}
.x22{left:695.202801pt;}
.x27{left:699.361781pt;}
.x24{left:704.000667pt;}
.x23{left:729.754694pt;}
.x25{left:764.317271pt;}
.x26{left:800.956000pt;}
.x21{left:802.401386pt;}
.x28{left:808.803500pt;}
.x4b{left:855.999340pt;}
.x3c{left:864.795116pt;}
.x4a{left:870.075340pt;}
.x4c{left:878.398500pt;}
}




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