
    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_6f5e7fd858e2fcaf9d163477.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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_d24cff198bdc13b35b034cbb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_f750fa6e3c136ba3a510320e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_45bc79bad466ea086c538fdb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_f6fd8e2f2fb2cb4c552d9d74.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.119629;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);}
.v1{vertical-align:-252.020904px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.210243px;}
.ls1{letter-spacing:50.953586px;}
.ls3{letter-spacing:54.461835px;}
.ls2{letter-spacing:60.018583px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws1a{word-spacing:-73.440459px;}
.ws29{word-spacing:-52.770933px;}
.ws28{word-spacing:-52.560690px;}
.wsd{word-spacing:-52.395985px;}
.ws2c{word-spacing:-47.514197px;}
.ws5{word-spacing:-38.076542px;}
.ws21{word-spacing:-34.496764px;}
.ws2a{word-spacing:-29.118214px;}
.ws1{word-spacing:-28.475926px;}
.ws15{word-spacing:-26.197826px;}
.ws3{word-spacing:-23.757099px;}
.ws8{word-spacing:-22.618048px;}
.ws2{word-spacing:-2.318406px;}
.ws9{word-spacing:-1.501198px;}
.ws6{word-spacing:-1.391044px;}
.ws14{word-spacing:-1.275115px;}
.ws16{word-spacing:-1.051199px;}
.ws25{word-spacing:-0.922295px;}
.ws2b{word-spacing:-0.696964px;}
.ws24{word-spacing:-0.503999px;}
.ws26{word-spacing:-0.420480px;}
.ws7{word-spacing:-0.377999px;}
.ws18{word-spacing:-0.251999px;}
.ws20{word-spacing:-0.126000px;}
.wsc{word-spacing:-0.095040px;}
.ws0{word-spacing:0.000000px;}
.wsf{word-spacing:0.495581px;}
.ws23{word-spacing:0.503999px;}
.wsa{word-spacing:0.630719px;}
.wsb{word-spacing:0.665279px;}
.ws12{word-spacing:0.755998px;}
.wse{word-spacing:0.840959px;}
.ws4{word-spacing:0.881998px;}
.ws10{word-spacing:1.066131px;}
.ws22{word-spacing:1.133997px;}
.ws27{word-spacing:1.681918px;}
.ws11{word-spacing:1.789549px;}
.ws13{word-spacing:1.889995px;}
.ws17{word-spacing:51.155868px;}
.ws1d{word-spacing:178.611776px;}
.ws1f{word-spacing:319.892064px;}
.ws19{word-spacing:344.146571px;}
.ws1c{word-spacing:406.791283px;}
.ws1b{word-spacing:451.149321px;}
.ws1e{word-spacing:516.217567px;}
._19{margin-left:-15.883891px;}
._15{margin-left:-13.215545px;}
._7{margin-left:-9.603376px;}
._1c{margin-left:-8.560029px;}
._8{margin-left:-6.991931px;}
._6{margin-left:-5.559849px;}
._9{margin-left:-4.548967px;}
._5{margin-left:-3.538086px;}
._3{margin-left:-2.527204px;}
._0{margin-left:-1.347842px;}
._1{width:1.010882px;}
._e{width:2.086566px;}
._16{width:3.119048px;}
._14{width:5.054408px;}
._1f{width:18.570443px;}
._1a{width:20.688464px;}
._11{width:22.730385px;}
._10{width:24.937903px;}
._1b{width:27.398784px;}
._c{width:29.946884px;}
._b{width:31.150165px;}
._4{width:32.348212px;}
._2{width:34.369976px;}
._13{width:41.788814px;}
._12{width:44.519048px;}
._18{width:48.545269px;}
._17{width:49.826835px;}
._d{width:51.193580px;}
._f{width:52.395985px;}
._a{width:53.660967px;}
._20{width:55.146819px;}
._1d{width:79.631794px;}
._1e{width:296.366205px;}
.fc7{color:rgb(255,135,0);}
.fc6{color:rgb(10,116,244);}
.fc5{color:rgb(174,209,252);}
.fc4{color:rgb(31,78,121);}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:52.560690px;}
.fsf{font-size:63.360367px;}
.fsc{font-size:73.440459px;}
.fs4{font-size:95.039814px;}
.fs9{font-size:100.079860px;}
.fs6{font-size:105.119906px;}
.fsb{font-size:115.919583px;}
.fs3{font-size:125.999675px;}
.fs2{font-size:147.600504px;}
.fsd{font-size:152.640550px;}
.fs0{font-size:168.480273px;}
.fs7{font-size:189.360042px;}
.fs8{font-size:210.239811px;}
.fs5{font-size:231.840640px;}
.fs1{font-size:252.720409px;}
.fsa{font-size:421.200682px;}
.y0{bottom:0.000000px;}
.y89{bottom:115.368741px;}
.y87{bottom:115.906105px;}
.y81{bottom:121.325359px;}
.y8{bottom:126.538758px;}
.y84{bottom:129.236130px;}
.y40{bottom:131.759451px;}
.y88{bottom:133.730833px;}
.y6a{bottom:134.282772px;}
.y67{bottom:139.866013px;}
.y3d{bottom:142.563497px;}
.y46{bottom:149.937628px;}
.y94{bottom:152.642223px;}
.y83{bottom:159.668672px;}
.y3f{bottom:160.204963px;}
.y69{bottom:162.721061px;}
.y3b{bottom:165.776181px;}
.y4a{bottom:167.397932px;}
.y20{bottom:168.835628px;}
.y3e{bottom:173.162447px;}
.y66{bottom:177.666159px;}
.y45{bottom:178.383140px;}
.y7{bottom:186.846555px;}
.y49{bottom:195.843444px;}
.y82{bottom:197.643921px;}
.y41{bottom:198.546622px;}
.y1f{bottom:199.074326px;}
.y4f{bottom:202.143142px;}
.y44{bottom:206.818526px;}
.y48{bottom:224.278829px;}
.y2f{bottom:225.006366px;}
.y1e{bottom:229.328372px;}
.y4e{bottom:230.578457px;}
.y26{bottom:231.835869px;}
.y3a{bottom:234.006867px;}
.y12{bottom:235.803731px;}
.y7c{bottom:236.157460px;}
.y65{bottom:259.384373px;}
.y77{bottom:260.999374px;}
.y25{bottom:263.338463px;}
.y5d{bottom:264.427415px;}
.y93{bottom:264.775643px;}
.y39{bottom:268.201660px;}
.y90{bottom:269.826098px;}
.y6{bottom:271.443516px;}
.y1d{bottom:272.886866px;}
.y7b{bottom:277.377115px;}
.y71{bottom:280.254292px;}
.y11{bottom:282.961331px;}
.y3c{bottom:285.653023px;}
.y76{bottom:287.283338px;}
.y2e{bottom:300.787696px;}
.y38{bottom:302.396415px;}
.y1c{bottom:303.125563px;}
.y7a{bottom:303.663902px;}
.y8f{bottom:303.848464px;}
.y91{bottom:306.720652px;}
.y58{bottom:307.442109px;}
.y5c{bottom:311.585014px;}
.y10{bottom:316.983697px;}
.y8c{bottom:318.246648px;}
.y29{bottom:319.144905px;}
.y70{bottom:325.796877px;}
.y1b{bottom:333.364261px;}
.y57{bottom:339.124370px;}
.y64{bottom:341.286548px;}
.y4d{bottom:341.825641px;}
.y79{bottom:344.874976px;}
.y80{bottom:345.776594px;}
.y8d{bottom:349.736436px;}
.y75{bottom:350.639400px;}
.yf{bottom:351.175230px;}
.y5{bottom:362.705207px;}
.y4c{bottom:370.261027px;}
.y56{bottom:370.614158px;}
.y37{bottom:370.614948px;}
.y6f{bottom:371.154947px;}
.y1a{bottom:376.922755px;}
.y92{bottom:378.544337px;}
.y63{bottom:382.322534px;}
.ye{bottom:385.197597px;}
.y22{bottom:385.563453px;}
.y43{bottom:385.737477px;}
.y47{bottom:389.705219px;}
.y4b{bottom:398.696413px;}
.y55{bottom:402.116751px;}
.y36{bottom:404.821932px;}
.y5b{bottom:406.084776px;}
.y19{bottom:407.161452px;}
.y6e{bottom:408.960982px;}
.y21{bottom:417.066046px;}
.y62{bottom:423.188722px;}
.y74{bottom:429.476733px;}
.y4{bottom:430.728716px;}
.yd{bottom:432.355196px;}
.y54{bottom:433.799012px;}
.y35{bottom:438.845634px;}
.y7f{bottom:440.276356px;}
.y18{bottom:450.535337px;}
.y73{bottom:451.620047px;}
.y5a{bottom:453.426938px;}
.y6d{bottom:454.503615px;}
.y78{bottom:462.055556px;}
.y61{bottom:464.040747px;}
.y42{bottom:464.755585px;}
.y53{bottom:465.301605px;}
.yc{bottom:466.562172px;}
.y72{bottom:473.754387px;}
.y2d{bottom:477.897829px;}
.y17{bottom:480.958597px;}
.y7e{bottom:487.433909px;}
.y52{bottom:496.804238px;}
.y6c{bottom:499.861638px;}
.yb{bottom:500.584538px;}
.y60{bottom:505.076733px;}
.y34{bottom:507.235182px;}
.y16{bottom:511.197295px;}
.ya{bottom:534.776094px;}
.y33{bottom:541.258922px;}
.y15{bottom:541.435992px;}
.y6b{bottom:545.404247px;}
.y5f{bottom:545.942922px;}
.y59{bottom:547.926700px;}
.y86{bottom:553.675720px;}
.y2c{bottom:553.679112px;}
.y24{bottom:567.175031px;}
.y32{bottom:575.465906px;}
.y9{bottom:581.933694px;}
.y3{bottom:584.277734px;}
.y14{bottom:584.994462px;}
.y5e{bottom:586.794947px;}
.y23{bottom:598.677624px;}
.y2a{bottom:600.298397px;}
.y8b{bottom:603.002028px;}
.y31{bottom:609.660661px;}
.y85{bottom:616.680946px;}
.y51{bottom:628.366969px;}
.y2{bottom:629.811846px;}
.y2b{bottom:630.716775px;}
.y8a{bottom:649.440112px;}
.y68{bottom:650.172526px;}
.y1{bottom:675.181408px;}
.y13{bottom:679.138719px;}
.y30{bottom:680.764057px;}
.y28{bottom:682.030325px;}
.y27{bottom:687.786033px;}
.y50{bottom:690.826967px;}
.y7d{bottom:715.501828px;}
.y8e{bottom:722.689881px;}
.h16{height:38.419606px;}
.h17{height:47.556132px;}
.h1c{height:63.020053px;}
.h13{height:66.447837px;}
.h1a{height:76.838134px;}
.hf{height:94.529346px;}
.h19{height:95.110930px;}
.h6{height:97.313715px;}
.hc{height:99.542321px;}
.h8{height:104.555297px;}
.h10{height:107.634981px;}
.h18{height:114.002635px;}
.h12{height:115.296968px;}
.h5{height:125.322919px;}
.h11{height:129.014315px;}
.h14{height:145.336461px;}
.h4{height:146.807728px;}
.h1b{height:152.438450px;}
.h2{height:160.418229px;}
.ha{height:167.575350px;}
.h9{height:180.298868px;}
.hb{height:200.179508px;}
.h15{height:209.110593px;}
.he{height:215.269963px;}
.h7{height:220.746703px;}
.h3{height:240.627343px;}
.hd{height:418.938374px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1e{left:49.863418px;}
.xd{left:51.292719px;}
.xf{left:53.817490px;}
.x32{left:57.062840px;}
.x1f{left:59.585510px;}
.x16{left:62.822341px;}
.x17{left:72.544428px;}
.x12{left:75.781301px;}
.x10{left:92.528417px;}
.x9{left:96.483883px;}
.x2f{left:98.098868px;}
.x11{left:116.269655px;}
.xa{left:120.247251px;}
.x1{left:123.110711px;}
.x39{left:126.895845px;}
.x30{left:132.293448px;}
.x15{left:139.322890px;}
.x36{left:191.152829px;}
.x4{left:196.574037px;}
.x6{left:212.752296px;}
.x3e{left:214.551371px;}
.x21{left:218.155350px;}
.x37{left:255.241715px;}
.x1a{left:260.999847px;}
.x3d{left:282.407099px;}
.x3b{left:285.837153px;}
.x2{left:315.900531px;}
.xe{left:330.663515px;}
.x35{left:347.765465px;}
.xc{left:353.162856px;}
.xb{left:388.797361px;}
.x5{left:392.932128px;}
.x3a{left:430.023686px;}
.x3{left:448.924250px;}
.x22{left:459.003346px;}
.x23{left:474.120151px;}
.x24{left:475.558730px;}
.x28{left:506.882888px;}
.x2a{left:512.463226px;}
.x29{left:521.999694px;}
.x31{left:524.876888px;}
.x18{left:561.781384px;}
.x2d{left:563.034335px;}
.x2e{left:586.620286px;}
.x38{left:602.104044px;}
.x1b{left:604.973930px;}
.x1c{left:620.102313px;}
.x1d{left:621.540893px;}
.x20{left:645.115230px;}
.x25{left:709.921416px;}
.x27{left:715.501754px;}
.x8{left:720.536853px;}
.x26{left:725.038256px;}
.x3c{left:744.486265px;}
.x19{left:773.460170px;}
.x2b{left:809.105873px;}
.x2c{left:811.796023px;}
.x14{left:878.942070px;}
.x7{left:957.594514px;}
.x33{left:987.295650px;}
.x13{left:1059.840094px;}
.x34{left:1187.836669px;}
@media print{
.v1{vertical-align:-224.018581pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.186882pt;}
.ls1{letter-spacing:45.292076pt;}
.ls3{letter-spacing:48.410520pt;}
.ls2{letter-spacing:53.349851pt;}
.ws1a{word-spacing:-65.280408pt;}
.ws29{word-spacing:-46.907496pt;}
.ws28{word-spacing:-46.720613pt;}
.wsd{word-spacing:-46.574209pt;}
.ws2c{word-spacing:-42.234842pt;}
.ws5{word-spacing:-33.845815pt;}
.ws21{word-spacing:-30.663790pt;}
.ws2a{word-spacing:-25.882857pt;}
.ws1{word-spacing:-25.311935pt;}
.ws15{word-spacing:-23.286956pt;}
.ws3{word-spacing:-21.117421pt;}
.ws8{word-spacing:-20.104932pt;}
.ws2{word-spacing:-2.060806pt;}
.ws9{word-spacing:-1.334398pt;}
.ws6{word-spacing:-1.236483pt;}
.ws14{word-spacing:-1.133436pt;}
.ws16{word-spacing:-0.934399pt;}
.ws25{word-spacing:-0.819818pt;}
.ws2b{word-spacing:-0.619524pt;}
.ws24{word-spacing:-0.447999pt;}
.ws26{word-spacing:-0.373760pt;}
.ws7{word-spacing:-0.335999pt;}
.ws18{word-spacing:-0.223999pt;}
.ws20{word-spacing:-0.112000pt;}
.wsc{word-spacing:-0.084480pt;}
.ws0{word-spacing:0.000000pt;}
.wsf{word-spacing:0.440516pt;}
.ws23{word-spacing:0.447999pt;}
.wsa{word-spacing:0.560639pt;}
.wsb{word-spacing:0.591359pt;}
.ws12{word-spacing:0.671998pt;}
.wse{word-spacing:0.747519pt;}
.ws4{word-spacing:0.783998pt;}
.ws10{word-spacing:0.947672pt;}
.ws22{word-spacing:1.007997pt;}
.ws27{word-spacing:1.495039pt;}
.ws11{word-spacing:1.590711pt;}
.ws13{word-spacing:1.679996pt;}
.ws17{word-spacing:45.471883pt;}
.ws1d{word-spacing:158.766023pt;}
.ws1f{word-spacing:284.348501pt;}
.ws19{word-spacing:305.908063pt;}
.ws1c{word-spacing:361.592252pt;}
.ws1b{word-spacing:401.021618pt;}
.ws1e{word-spacing:458.860060pt;}
._19{margin-left:-14.119014pt;}
._15{margin-left:-11.747151pt;}
._7{margin-left:-8.536334pt;}
._1c{margin-left:-7.608914pt;}
._8{margin-left:-6.215050pt;}
._6{margin-left:-4.942088pt;}
._9{margin-left:-4.043527pt;}
._5{margin-left:-3.144965pt;}
._3{margin-left:-2.246404pt;}
._0{margin-left:-1.198082pt;}
._1{width:0.898561pt;}
._e{width:1.854725pt;}
._16{width:2.772487pt;}
._14{width:4.492807pt;}
._1f{width:16.507061pt;}
._1a{width:18.389746pt;}
._11{width:20.204786pt;}
._10{width:22.167025pt;}
._1b{width:24.354475pt;}
._c{width:26.619453pt;}
._b{width:27.689035pt;}
._4{width:28.753967pt;}
._2{width:30.551089pt;}
._13{width:37.145613pt;}
._12{width:39.572487pt;}
._18{width:43.151350pt;}
._17{width:44.290520pt;}
._d{width:45.505404pt;}
._f{width:46.574209pt;}
._a{width:47.698637pt;}
._20{width:49.019395pt;}
._1d{width:70.783817pt;}
._1e{width:263.436627pt;}
.fse{font-size:46.720613pt;}
.fsf{font-size:56.320326pt;}
.fsc{font-size:65.280408pt;}
.fs4{font-size:84.479834pt;}
.fs9{font-size:88.959875pt;}
.fs6{font-size:93.439916pt;}
.fsb{font-size:103.039629pt;}
.fs3{font-size:111.999711pt;}
.fs2{font-size:131.200448pt;}
.fsd{font-size:135.680489pt;}
.fs0{font-size:149.760243pt;}
.fs7{font-size:168.320037pt;}
.fs8{font-size:186.879832pt;}
.fs5{font-size:206.080569pt;}
.fs1{font-size:224.640364pt;}
.fsa{font-size:374.400606pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:102.549992pt;}
.y87{bottom:103.027649pt;}
.y81{bottom:107.844763pt;}
.y8{bottom:112.478896pt;}
.y84{bottom:114.876560pt;}
.y40{bottom:117.119512pt;}
.y88{bottom:118.871851pt;}
.y6a{bottom:119.362464pt;}
.y67{bottom:124.325345pt;}
.y3d{bottom:126.723108pt;}
.y46{bottom:133.277892pt;}
.y94{bottom:135.681976pt;}
.y83{bottom:141.927709pt;}
.y3f{bottom:142.404411pt;}
.y69{bottom:144.640943pt;}
.y3b{bottom:147.356605pt;}
.y4a{bottom:148.798162pt;}
.y20{bottom:150.076114pt;}
.y3e{bottom:153.922175pt;}
.y66{bottom:157.925475pt;}
.y45{bottom:158.562791pt;}
.y7{bottom:166.085827pt;}
.y49{bottom:174.083061pt;}
.y82{bottom:175.683485pt;}
.y41{bottom:176.485886pt;}
.y1f{bottom:176.954956pt;}
.y4f{bottom:179.682793pt;}
.y44{bottom:183.838690pt;}
.y48{bottom:199.358960pt;}
.y2f{bottom:200.005658pt;}
.y1e{bottom:203.847442pt;}
.y4e{bottom:204.958629pt;}
.y26{bottom:206.076328pt;}
.y3a{bottom:208.006104pt;}
.y12{bottom:209.603317pt;}
.y7c{bottom:209.917742pt;}
.y65{bottom:230.563887pt;}
.y77{bottom:231.999444pt;}
.y25{bottom:234.078633pt;}
.y5d{bottom:235.046591pt;}
.y93{bottom:235.356127pt;}
.y39{bottom:238.401476pt;}
.y90{bottom:239.845420pt;}
.y6{bottom:241.283126pt;}
.y1d{bottom:242.566103pt;}
.y7b{bottom:246.557435pt;}
.y71{bottom:249.114926pt;}
.y11{bottom:251.521183pt;}
.y3c{bottom:253.913798pt;}
.y76{bottom:255.362967pt;}
.y2e{bottom:267.366841pt;}
.y38{bottom:268.796814pt;}
.y1c{bottom:269.444945pt;}
.y7a{bottom:269.923468pt;}
.y8f{bottom:270.087524pt;}
.y91{bottom:272.640580pt;}
.y58{bottom:273.281875pt;}
.y5c{bottom:276.964457pt;}
.y10{bottom:281.763287pt;}
.y8c{bottom:282.885909pt;}
.y29{bottom:283.684360pt;}
.y70{bottom:289.597224pt;}
.y1b{bottom:296.323788pt;}
.y57{bottom:301.443884pt;}
.y64{bottom:303.365820pt;}
.y4d{bottom:303.845014pt;}
.y79{bottom:306.555534pt;}
.y80{bottom:307.356973pt;}
.y8d{bottom:310.876832pt;}
.y75{bottom:311.679467pt;}
.yf{bottom:312.155760pt;}
.y5{bottom:322.404628pt;}
.y4c{bottom:329.120913pt;}
.y56{bottom:329.434807pt;}
.y37{bottom:329.435509pt;}
.y6f{bottom:329.915509pt;}
.y1a{bottom:335.042449pt;}
.y92{bottom:336.483855pt;}
.y63{bottom:339.842252pt;}
.ye{bottom:342.397864pt;}
.y22{bottom:342.723069pt;}
.y43{bottom:342.877757pt;}
.y47{bottom:346.404640pt;}
.y4b{bottom:354.396812pt;}
.y55{bottom:357.437112pt;}
.y36{bottom:359.841717pt;}
.y5b{bottom:360.964246pt;}
.y19{bottom:361.921291pt;}
.y6e{bottom:363.520873pt;}
.y21{bottom:370.725375pt;}
.y62{bottom:376.167753pt;}
.y74{bottom:381.757096pt;}
.y4{bottom:382.869970pt;}
.yd{bottom:384.315730pt;}
.y54{bottom:385.599121pt;}
.y35{bottom:390.085008pt;}
.y7f{bottom:391.356761pt;}
.y18{bottom:400.475855pt;}
.y73{bottom:401.440042pt;}
.y5a{bottom:403.046168pt;}
.y6d{bottom:404.003213pt;}
.y78{bottom:410.716050pt;}
.y61{bottom:412.480664pt;}
.y42{bottom:413.116075pt;}
.y53{bottom:413.601427pt;}
.yc{bottom:414.721931pt;}
.y72{bottom:421.115011pt;}
.y2d{bottom:424.798070pt;}
.y17{bottom:427.518753pt;}
.y7e{bottom:433.274586pt;}
.y52{bottom:441.603767pt;}
.y6c{bottom:444.321456pt;}
.yb{bottom:444.964034pt;}
.y60{bottom:448.957096pt;}
.y34{bottom:450.875717pt;}
.y16{bottom:454.397595pt;}
.ya{bottom:475.356528pt;}
.y33{bottom:481.119042pt;}
.y15{bottom:481.276438pt;}
.y6b{bottom:484.803775pt;}
.y5f{bottom:485.282597pt;}
.y59{bottom:487.045956pt;}
.y86{bottom:492.156196pt;}
.y2c{bottom:492.159211pt;}
.y24{bottom:504.155583pt;}
.y32{bottom:511.525250pt;}
.y9{bottom:517.274395pt;}
.y3{bottom:519.357985pt;}
.y14{bottom:519.995078pt;}
.y5e{bottom:521.595508pt;}
.y23{bottom:532.157888pt;}
.y2a{bottom:533.598575pt;}
.y8b{bottom:536.001803pt;}
.y31{bottom:541.920588pt;}
.y85{bottom:548.160841pt;}
.y51{bottom:558.548417pt;}
.y2{bottom:559.832752pt;}
.y2b{bottom:560.637133pt;}
.y8a{bottom:577.280100pt;}
.y68{bottom:577.931135pt;}
.y1{bottom:600.161251pt;}
.y13{bottom:603.678862pt;}
.y30{bottom:605.123607pt;}
.y28{bottom:606.249178pt;}
.y27{bottom:611.365363pt;}
.y50{bottom:614.068415pt;}
.y7d{bottom:636.001625pt;}
.y8e{bottom:642.391005pt;}
.h16{height:34.150761pt;}
.h17{height:42.272117pt;}
.h1c{height:56.017825pt;}
.h13{height:59.064744pt;}
.h1a{height:68.300564pt;}
.hf{height:84.026085pt;}
.h19{height:84.543049pt;}
.h6{height:86.501080pt;}
.hc{height:88.482063pt;}
.h8{height:92.938042pt;}
.h10{height:95.675539pt;}
.h18{height:101.335676pt;}
.h12{height:102.486194pt;}
.h5{height:111.398150pt;}
.h11{height:114.679391pt;}
.h14{height:129.187965pt;}
.h4{height:130.495758pt;}
.h1b{height:135.500844pt;}
.h2{height:142.593981pt;}
.ha{height:148.955866pt;}
.h9{height:160.265661pt;}
.hb{height:177.937340pt;}
.h15{height:185.876083pt;}
.he{height:191.351078pt;}
.h7{height:196.219292pt;}
.h3{height:213.890971pt;}
.hd{height:372.389666pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1e{left:44.323039pt;}
.xd{left:45.593528pt;}
.xf{left:47.837769pt;}
.x32{left:50.722524pt;}
.x1f{left:52.964898pt;}
.x16{left:55.842081pt;}
.x17{left:64.483936pt;}
.x12{left:67.361156pt;}
.x10{left:82.247482pt;}
.x9{left:85.763452pt;}
.x2f{left:87.198994pt;}
.x11{left:103.350805pt;}
.xa{left:106.886446pt;}
.x1{left:109.431743pt;}
.x39{left:112.796307pt;}
.x30{left:117.594176pt;}
.x15{left:123.842569pt;}
.x36{left:169.913626pt;}
.x4{left:174.732478pt;}
.x6{left:189.113152pt;}
.x3e{left:190.712329pt;}
.x21{left:193.915867pt;}
.x37{left:226.881524pt;}
.x1a{left:231.999864pt;}
.x3d{left:251.028532pt;}
.x3b{left:254.077470pt;}
.x2{left:280.800472pt;}
.xe{left:293.923125pt;}
.x35{left:309.124858pt;}
.xc{left:313.922539pt;}
.xb{left:345.597655pt;}
.x5{left:349.273003pt;}
.x3a{left:382.243277pt;}
.x3{left:399.043778pt;}
.x22{left:408.002974pt;}
.x23{left:421.440134pt;}
.x24{left:422.718871pt;}
.x28{left:450.562567pt;}
.x2a{left:455.522868pt;}
.x29{left:463.999728pt;}
.x31{left:466.557234pt;}
.x18{left:499.361230pt;}
.x2d{left:500.474964pt;}
.x2e{left:521.440254pt;}
.x38{left:535.203595pt;}
.x1b{left:537.754605pt;}
.x1c{left:551.202056pt;}
.x1d{left:552.480793pt;}
.x20{left:573.435760pt;}
.x25{left:631.041259pt;}
.x27{left:636.001559pt;}
.x8{left:640.477203pt;}
.x26{left:644.478450pt;}
.x3c{left:661.765569pt;}
.x19{left:687.520151pt;}
.x2b{left:719.205221pt;}
.x2c{left:721.596465pt;}
.x14{left:781.281840pt;}
.x7{left:851.195123pt;}
.x33{left:877.596133pt;}
.x13{left:942.080084pt;}
.x34{left:1055.854817pt;}
}




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