
    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_0be1b54117c39141f458072c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_95653525d9394966b7e6d92a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_16e5db62969bb04a3d5b71e5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.979980;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_cb789a55b60bac975f81e8c6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_4a66be431de185fe547efd8f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_7f0a978561ba33ce2608a4d5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.857910;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_63ccef918c3c132dd91eae4b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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_2f27afcb53568c62f54d0873.woff')format("woff");}.ff8{font-family:ff8;line-height:0.860840;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);}
.v1{vertical-align:-31.500001px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:36.243989px;}
.ls1{letter-spacing:99.025085px;}
.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:-43.212003px;}
.ws3{word-spacing:-23.268000px;}
.ws4{word-spacing:-21.473705px;}
.ws2{word-spacing:-15.512001px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-15.026040px;}
._6{margin-left:-13.262499px;}
._4{margin-left:-11.492460px;}
._3{margin-left:-9.751041px;}
._f{margin-left:-7.260000px;}
._a{margin-left:-5.610000px;}
._d{margin-left:-3.996000px;}
._1{margin-left:-2.805000px;}
._8{margin-left:-1.563000px;}
._7{width:1.265883px;}
._2{width:2.937960px;}
._13{width:5.712000px;}
._14{width:6.720000px;}
._15{width:9.072000px;}
._1b{width:10.080002px;}
._19{width:13.566420px;}
._b{width:15.606000px;}
._c{width:18.156000px;}
._11{width:28.710001px;}
._0{width:32.016610px;}
._10{width:35.370001px;}
._17{width:37.346012px;}
._1a{width:44.442358px;}
._18{width:46.195807px;}
._16{width:49.140000px;}
._12{width:99.039254px;}
._9{width:107.972093px;}
._e{width:1588.622451px;}
.fc11{color:rgb(255,217,102);}
.fcf{color:rgb(255,229,153);}
.fce{color:rgb(17,85,204);}
.fc2{color:rgb(255,255,255);}
.fc8{color:rgb(0,0,0);}
.fcc{color:rgb(67,67,67);}
.fc1{color:rgb(0,151,167);}
.fc3{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,144);}
.fcd{color:rgb(0,112,192);}
.fcb{color:rgb(210,245,247);}
.fc6{color:rgb(44,20,194);}
.fc7{color:rgb(78,63,255);}
.fc10{color:rgb(255,210,237);}
.fc4{color:rgb(0,0,255);}
.fc9{color:transparent;}
.fc0{color:rgb(89,89,89);}
.fca{color:rgb(31,73,125);}
.fs0{font-size:51.000000px;}
.fs18{font-size:56.000003px;}
.fs1c{font-size:60.910206px;}
.fs5{font-size:72.000002px;}
.fs16{font-size:72.534602px;}
.fsb{font-size:75.679202px;}
.fs14{font-size:77.043602px;}
.fs1b{font-size:77.522402px;}
.fse{font-size:77.971799px;}
.fs17{font-size:84.000000px;}
.fsa{font-size:86.850007px;}
.fs15{font-size:89.043609px;}
.fs11{font-size:90.000003px;}
.fs1a{font-size:96.000006px;}
.fs10{font-size:99.679197px;}
.fs4{font-size:102.000000px;}
.fs8{font-size:104.850008px;}
.fs2{font-size:106.500000px;}
.fs6{font-size:108.000003px;}
.fs13{font-size:126.000004px;}
.fsd{font-size:129.015598px;}
.fsc{font-size:131.875204px;}
.fs7{font-size:132.000007px;}
.fs3{font-size:138.000001px;}
.fs9{font-size:141.547203px;}
.fs1{font-size:144.000005px;}
.fs12{font-size:156.000011px;}
.fsf{font-size:156.012008px;}
.fs19{font-size:162.000005px;}
.fs1d{font-size:186.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:29.588719px;}
.y48{bottom:61.085156px;}
.y44{bottom:63.795812px;}
.y39{bottom:74.023763px;}
.y5a{bottom:75.615566px;}
.y38{bottom:77.254460px;}
.y33{bottom:78.296650px;}
.y2b{bottom:79.670481px;}
.y6a{bottom:86.755258px;}
.y1b{bottom:88.737587px;}
.y84{bottom:92.301171px;}
.y52{bottom:93.042728px;}
.y43{bottom:96.195810px;}
.y63{bottom:103.261083px;}
.y69{bottom:105.319221px;}
.y83{bottom:121.101172px;}
.y8d{bottom:125.727577px;}
.y5f{bottom:126.240757px;}
.y21{bottom:128.852827px;}
.y1a{bottom:131.577589px;}
.y62{bottom:141.061080px;}
.y51{bottom:145.975058px;}
.y42{bottom:148.010183px;}
.y82{bottom:149.901184px;}
.y36{bottom:150.511042px;}
.y8c{bottom:154.527578px;}
.y34{bottom:154.956491px;}
.y31{bottom:156.271299px;}
.y77{bottom:159.613928px;}
.y10{bottom:161.798606px;}
.y50{bottom:172.688139px;}
.y19{bottom:174.417590px;}
.y5e{bottom:176.640781px;}
.y29{bottom:177.026409px;}
.y81{bottom:178.701196px;}
.y8b{bottom:183.327568px;}
.y41{bottom:187.610184px;}
.y76{bottom:188.413920px;}
.yf{bottom:196.988607px;}
.y18{bottom:199.257591px;}
.y4f{bottom:199.401231px;}
.y5d{bottom:201.840771px;}
.y80{bottom:207.501197px;}
.y8a{bottom:212.127557px;}
.y75{bottom:217.213919px;}
.y35{bottom:218.059570px;}
.y4e{bottom:226.114312px;}
.y5c{bottom:227.040772px;}
.y30{bottom:229.246890px;}
.y6b{bottom:229.627304px;}
.y17{bottom:248.683387px;}
.y5b{bottom:252.240761px;}
.y4d{bottom:252.827398px;}
.y23{bottom:257.408573px;}
.y7f{bottom:265.101177px;}
.ye{bottom:267.368610px;}
.y89{bottom:269.727548px;}
.y40{bottom:271.490187px;}
.y16{bottom:279.283388px;}
.y71{bottom:279.309803px;}
.y4c{bottom:279.540485px;}
.y20{bottom:279.558878px;}
.y74{bottom:287.261574px;}
.y28{bottom:288.266041px;}
.y7e{bottom:293.901166px;}
.y88{bottom:298.527538px;}
.y2f{bottom:302.222447px;}
.yd{bottom:302.558622px;}
.y59{bottom:302.640751px;}
.y7{bottom:303.965507px;}
.y4b{bottom:306.253570px;}
.y70{bottom:308.109795px;}
.y73{bottom:316.061565px;}
.y7d{bottom:322.701167px;}
.y1f{bottom:322.758880px;}
.y58{bottom:327.840741px;}
.y4a{bottom:332.966646px;}
.y6f{bottom:336.909794px;}
.yc{bottom:337.748623px;}
.y3f{bottom:338.450189px;}
.y68{bottom:338.668214px;}
.y15{bottom:340.483379px;}
.y6{bottom:341.525500px;}
.y72{bottom:344.861564px;}
.y57{bottom:353.040736px;}
.y32{bottom:355.763853px;}
.y87{bottom:356.127519px;}
.y49{bottom:359.679729px;}
.y67{bottom:361.924929px;}
.y3e{bottom:365.450190px;}
.y25{bottom:365.807141px;}
.y5{bottom:367.085501px;}
.y14{bottom:371.083374px;}
.y7c{bottom:380.301146px;}
.y2e{bottom:380.715331px;}
.y86{bottom:384.927518px;}
.y66{bottom:385.181648px;}
.y3d{bottom:392.450194px;}
.y4{bottom:392.645502px;}
.y27{bottom:401.427455px;}
.y13{bottom:401.683372px;}
.y56{bottom:403.440737px;}
.y47{bottom:406.003343px;}
.yb{bottom:408.128625px;}
.y24{bottom:408.271308px;}
.y65{bottom:408.438365px;}
.y7b{bottom:409.101138px;}
.y3c{bottom:419.450193px;}
.y55{bottom:428.640735px;}
.y46{bottom:433.003347px;}
.y54{bottom:433.961835px;}
.y7a{bottom:437.901137px;}
.y3{bottom:438.532675px;}
.ya{bottom:443.318604px;}
.y2d{bottom:453.690911px;}
.y45{bottom:460.003346px;}
.y53{bottom:460.961833px;}
.y1e{bottom:462.834918px;}
.y6e{bottom:476.309642px;}
.y12{bottom:476.918506px;}
.y9{bottom:478.508605px;}
.y2{bottom:488.212671px;}
.y79{bottom:501.149654px;}
.y1d{bottom:513.445408px;}
.y61{bottom:514.470825px;}
.y26{bottom:514.588883px;}
.y37{bottom:519.402044px;}
.y3b{bottom:520.154997px;}
.y85{bottom:521.022404px;}
.y6d{bottom:526.529643px;}
.y11{bottom:526.598502px;}
.y2c{bottom:528.765405px;}
.y8{bottom:538.592596px;}
.y78{bottom:555.149644px;}
.y60{bottom:558.495001px;}
.y64{bottom:562.814999px;}
.y1c{bottom:563.125404px;}
.y6c{bottom:563.789645px;}
.y2a{bottom:564.942046px;}
.y22{bottom:564.942631px;}
.y3a{bottom:565.694999px;}
.h1{height:37.179199px;}
.h7{height:52.417970px;}
.h10{height:53.034530px;}
.h18{height:53.494142px;}
.hd{height:56.759402px;}
.h1f{height:58.141802px;}
.h1a{height:58.324219px;}
.hc{height:59.073272px;}
.h1b{height:61.236328px;}
.h19{height:64.913139px;}
.h13{height:65.522463px;}
.h17{height:65.610354px;}
.h1d{height:66.656254px;}
.h22{height:69.890629px;}
.h21{height:69.984379px;}
.ha{height:71.316436px;}
.h20{height:72.000005px;}
.h5{height:74.358399px;}
.h12{height:74.759398px;}
.h8{height:78.732424px;}
.h3{height:79.875000px;}
.h16{height:81.000003px;}
.h15{height:91.731448px;}
.hf{height:92.603969px;}
.h1e{height:94.500003px;}
.he{height:94.656519px;}
.h9{height:96.228521px;}
.h4{height:100.467774px;}
.hb{height:101.598822px;}
.h2{height:104.835941px;}
.h6{height:104.976566px;}
.h11{height:111.981275px;}
.h14{height:113.572274px;}
.h1c{height:118.098637px;}
.h23{height:135.413086px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x24{left:5.675327px;}
.x1{left:10.125000px;}
.x1f{left:11.912927px;}
.x1d{left:17.248279px;}
.x25{left:20.332680px;}
.x38{left:25.502954px;}
.x8{left:26.701751px;}
.xd{left:30.215551px;}
.x2c{left:35.057394px;}
.x9{left:38.306729px;}
.x3d{left:39.498608px;}
.x18{left:42.952442px;}
.xc{left:45.453282px;}
.x13{left:65.104227px;}
.xa{left:80.701753px;}
.x20{left:84.187019px;}
.x3a{left:94.785916px;}
.x1b{left:96.439841px;}
.x1a{left:105.984768px;}
.x16{left:115.863641px;}
.x17{left:117.522420px;}
.x4{left:124.764883px;}
.x34{left:126.582928px;}
.x5{left:130.426619px;}
.xb{left:157.979434px;}
.x10{left:160.077763px;}
.x31{left:162.600502px;}
.x2e{left:164.835123px;}
.x2{left:169.345558px;}
.xe{left:175.021424px;}
.x21{left:196.968373px;}
.x30{left:206.206105px;}
.x3{left:215.409033px;}
.x2d{left:278.406504px;}
.x7{left:285.078795px;}
.x12{left:300.301210px;}
.x11{left:307.293310px;}
.xf{left:313.422787px;}
.x2f{left:336.856320px;}
.x3c{left:388.957670px;}
.x1c{left:442.408424px;}
.x37{left:472.045273px;}
.x36{left:481.269728px;}
.x6{left:522.758925px;}
.x3b{left:557.834153px;}
.x1e{left:594.289594px;}
.x39{left:605.825839px;}
.x32{left:611.536745px;}
.x15{left:634.901713px;}
.x27{left:642.930096px;}
.x14{left:650.666046px;}
.x28{left:654.252748px;}
.x2a{left:656.068291px;}
.x23{left:662.320821px;}
.x29{left:692.458147px;}
.x22{left:697.774635px;}
.x2b{left:730.358281px;}
.x33{left:753.676224px;}
.x26{left:765.449507px;}
.x35{left:771.882887px;}
.x19{left:816.433789px;}
@media print{
.v1{vertical-align:-28.000001pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:32.216879pt;}
.ls1{letter-spacing:88.022298pt;}
.ws1{word-spacing:-38.410669pt;}
.ws3{word-spacing:-20.682667pt;}
.ws4{word-spacing:-19.087738pt;}
.ws2{word-spacing:-13.788445pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-13.356480pt;}
._6{margin-left:-11.788888pt;}
._4{margin-left:-10.215520pt;}
._3{margin-left:-8.667592pt;}
._f{margin-left:-6.453334pt;}
._a{margin-left:-4.986667pt;}
._d{margin-left:-3.552000pt;}
._1{margin-left:-2.493333pt;}
._8{margin-left:-1.389333pt;}
._7{width:1.125229pt;}
._2{width:2.611520pt;}
._13{width:5.077333pt;}
._14{width:5.973333pt;}
._15{width:8.064000pt;}
._1b{width:8.960002pt;}
._19{width:12.059040pt;}
._b{width:13.872000pt;}
._c{width:16.138667pt;}
._11{width:25.520001pt;}
._0{width:28.459209pt;}
._10{width:31.440001pt;}
._17{width:33.196455pt;}
._1a{width:39.504318pt;}
._18{width:41.062939pt;}
._16{width:43.680000pt;}
._12{width:88.034892pt;}
._9{width:95.975194pt;}
._e{width:1412.108845pt;}
.fs0{font-size:45.333333pt;}
.fs18{font-size:49.777780pt;}
.fs1c{font-size:54.142406pt;}
.fs5{font-size:64.000002pt;}
.fs16{font-size:64.475202pt;}
.fsb{font-size:67.270402pt;}
.fs14{font-size:68.483202pt;}
.fs1b{font-size:68.908802pt;}
.fse{font-size:69.308266pt;}
.fs17{font-size:74.666666pt;}
.fsa{font-size:77.200006pt;}
.fs15{font-size:79.149875pt;}
.fs11{font-size:80.000003pt;}
.fs1a{font-size:85.333339pt;}
.fs10{font-size:88.603731pt;}
.fs4{font-size:90.666667pt;}
.fs8{font-size:93.200007pt;}
.fs2{font-size:94.666667pt;}
.fs6{font-size:96.000003pt;}
.fs13{font-size:112.000004pt;}
.fsd{font-size:114.680532pt;}
.fsc{font-size:117.222404pt;}
.fs7{font-size:117.333340pt;}
.fs3{font-size:122.666668pt;}
.fs9{font-size:125.819736pt;}
.fs1{font-size:128.000004pt;}
.fs12{font-size:138.666676pt;}
.fsf{font-size:138.677340pt;}
.fs19{font-size:144.000005pt;}
.fs1d{font-size:165.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:26.301084pt;}
.y48{bottom:54.297916pt;}
.y44{bottom:56.707389pt;}
.y39{bottom:65.798901pt;}
.y5a{bottom:67.213837pt;}
.y38{bottom:68.670631pt;}
.y33{bottom:69.597022pt;}
.y2b{bottom:70.818205pt;}
.y6a{bottom:77.115785pt;}
.y1b{bottom:78.877855pt;}
.y84{bottom:82.045485pt;}
.y52{bottom:82.704647pt;}
.y43{bottom:85.507386pt;}
.y63{bottom:91.787630pt;}
.y69{bottom:93.617086pt;}
.y83{bottom:107.645486pt;}
.y8d{bottom:111.757846pt;}
.y5f{bottom:112.214006pt;}
.y21{bottom:114.535846pt;}
.y1a{bottom:116.957856pt;}
.y62{bottom:125.387627pt;}
.y51{bottom:129.755607pt;}
.y42{bottom:131.564607pt;}
.y82{bottom:133.245497pt;}
.y36{bottom:133.787593pt;}
.y8c{bottom:137.357847pt;}
.y34{bottom:137.739103pt;}
.y31{bottom:138.907821pt;}
.y77{bottom:141.879047pt;}
.y10{bottom:143.820983pt;}
.y50{bottom:153.500568pt;}
.y19{bottom:155.037858pt;}
.y5e{bottom:157.014028pt;}
.y29{bottom:157.356808pt;}
.y81{bottom:158.845508pt;}
.y8b{bottom:162.957838pt;}
.y41{bottom:166.764608pt;}
.y76{bottom:167.479040pt;}
.yf{bottom:175.100984pt;}
.y18{bottom:177.117858pt;}
.y4f{bottom:177.245538pt;}
.y5d{bottom:179.414018pt;}
.y80{bottom:184.445509pt;}
.y8a{bottom:188.557829pt;}
.y75{bottom:193.079039pt;}
.y35{bottom:193.830729pt;}
.y4e{bottom:200.990499pt;}
.y5c{bottom:201.814019pt;}
.y30{bottom:203.775013pt;}
.y6b{bottom:204.113159pt;}
.y17{bottom:221.051900pt;}
.y5b{bottom:224.214010pt;}
.y4d{bottom:224.735465pt;}
.y23{bottom:228.807620pt;}
.y7f{bottom:235.645490pt;}
.ye{bottom:237.660986pt;}
.y89{bottom:239.757820pt;}
.y40{bottom:241.324610pt;}
.y16{bottom:248.251901pt;}
.y71{bottom:248.275381pt;}
.y4c{bottom:248.480431pt;}
.y20{bottom:248.496781pt;}
.y74{bottom:255.343621pt;}
.y28{bottom:256.236481pt;}
.y7e{bottom:261.245481pt;}
.y88{bottom:265.357811pt;}
.y2f{bottom:268.642175pt;}
.yd{bottom:268.940997pt;}
.y59{bottom:269.014001pt;}
.y7{bottom:270.191561pt;}
.y4b{bottom:272.225395pt;}
.y70{bottom:273.875373pt;}
.y73{bottom:280.943614pt;}
.y7d{bottom:286.845482pt;}
.y1f{bottom:286.896782pt;}
.y58{bottom:291.413992pt;}
.y4a{bottom:295.970352pt;}
.y6f{bottom:299.475372pt;}
.yc{bottom:300.220998pt;}
.y3f{bottom:300.844612pt;}
.y68{bottom:301.038412pt;}
.y15{bottom:302.651892pt;}
.y6{bottom:303.578222pt;}
.y72{bottom:306.543613pt;}
.y57{bottom:313.813988pt;}
.y32{bottom:316.234536pt;}
.y87{bottom:316.557795pt;}
.y49{bottom:319.715315pt;}
.y67{bottom:321.711048pt;}
.y3e{bottom:324.844613pt;}
.y25{bottom:325.161903pt;}
.y5{bottom:326.298223pt;}
.y14{bottom:329.851888pt;}
.y7c{bottom:338.045464pt;}
.y2e{bottom:338.413628pt;}
.y86{bottom:342.157794pt;}
.y66{bottom:342.383687pt;}
.y3d{bottom:348.844617pt;}
.y4{bottom:349.018224pt;}
.y27{bottom:356.824404pt;}
.y13{bottom:357.051886pt;}
.y56{bottom:358.613988pt;}
.y47{bottom:360.891860pt;}
.yb{bottom:362.781000pt;}
.y24{bottom:362.907829pt;}
.y65{bottom:363.056324pt;}
.y7b{bottom:363.645456pt;}
.y3c{bottom:372.844616pt;}
.y55{bottom:381.013987pt;}
.y46{bottom:384.891864pt;}
.y54{bottom:385.743853pt;}
.y7a{bottom:389.245455pt;}
.y3{bottom:389.806822pt;}
.ya{bottom:394.060981pt;}
.y2d{bottom:403.280810pt;}
.y45{bottom:408.891863pt;}
.y53{bottom:409.743852pt;}
.y1e{bottom:411.408816pt;}
.y6e{bottom:423.386348pt;}
.y12{bottom:423.927561pt;}
.y9{bottom:425.340982pt;}
.y2{bottom:433.966819pt;}
.y79{bottom:445.466359pt;}
.y1d{bottom:456.395918pt;}
.y61{bottom:457.307400pt;}
.y26{bottom:457.412340pt;}
.y37{bottom:461.690706pt;}
.y3b{bottom:462.359998pt;}
.y85{bottom:463.131026pt;}
.y6d{bottom:468.026350pt;}
.y11{bottom:468.087558pt;}
.y2c{bottom:470.013694pt;}
.y8{bottom:478.748974pt;}
.y78{bottom:493.466351pt;}
.y60{bottom:496.440001pt;}
.y64{bottom:500.279999pt;}
.y1c{bottom:500.555915pt;}
.y6c{bottom:501.146351pt;}
.y2a{bottom:502.170707pt;}
.y22{bottom:502.171227pt;}
.y3a{bottom:502.839999pt;}
.h1{height:33.048177pt;}
.h7{height:46.593751pt;}
.h10{height:47.141804pt;}
.h18{height:47.550348pt;}
.hd{height:50.452802pt;}
.h1f{height:51.681602pt;}
.h1a{height:51.843750pt;}
.hc{height:52.509575pt;}
.h1b{height:54.432291pt;}
.h19{height:57.700568pt;}
.h13{height:58.242189pt;}
.h17{height:58.320314pt;}
.h1d{height:59.250004pt;}
.h22{height:62.125004pt;}
.h21{height:62.208337pt;}
.ha{height:63.392388pt;}
.h20{height:64.000004pt;}
.h5{height:66.096354pt;}
.h12{height:66.452798pt;}
.h8{height:69.984377pt;}
.h3{height:71.000000pt;}
.h16{height:72.000002pt;}
.h15{height:81.539065pt;}
.hf{height:82.314639pt;}
.h1e{height:84.000003pt;}
.he{height:84.139128pt;}
.h9{height:85.536463pt;}
.h4{height:89.304688pt;}
.hb{height:90.310064pt;}
.h2{height:93.187503pt;}
.h6{height:93.312503pt;}
.h11{height:99.538911pt;}
.h14{height:100.953132pt;}
.h1c{height:104.976566pt;}
.h23{height:120.367187pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x24{left:5.044735pt;}
.x1{left:9.000000pt;}
.x1f{left:10.589268pt;}
.x1d{left:15.331803pt;}
.x25{left:18.073494pt;}
.x38{left:22.669292pt;}
.x8{left:23.734890pt;}
.xd{left:26.858268pt;}
.x2c{left:31.162128pt;}
.x9{left:34.050426pt;}
.x3d{left:35.109874pt;}
.x18{left:38.179948pt;}
.xc{left:40.402917pt;}
.x13{left:57.870424pt;}
.xa{left:71.734891pt;}
.x20{left:74.832905pt;}
.x3a{left:84.254148pt;}
.x1b{left:85.724303pt;}
.x1a{left:94.208683pt;}
.x16{left:102.989903pt;}
.x17{left:104.464373pt;}
.x4{left:110.902119pt;}
.x34{left:112.518159pt;}
.x5{left:115.934773pt;}
.xb{left:140.426163pt;}
.x10{left:142.291345pt;}
.x31{left:144.533780pt;}
.x2e{left:146.520110pt;}
.x2{left:150.529385pt;}
.xe{left:155.574599pt;}
.x21{left:175.082999pt;}
.x30{left:183.294316pt;}
.x3{left:191.474696pt;}
.x2d{left:247.472448pt;}
.x7{left:253.403373pt;}
.x12{left:266.934409pt;}
.x11{left:273.149609pt;}
.xf{left:278.598033pt;}
.x2f{left:299.427840pt;}
.x3c{left:345.740151pt;}
.x1c{left:393.251933pt;}
.x37{left:419.595798pt;}
.x36{left:427.795314pt;}
.x6{left:464.674600pt;}
.x3b{left:495.852581pt;}
.x1e{left:528.257417pt;}
.x39{left:538.511857pt;}
.x32{left:543.588217pt;}
.x15{left:564.357078pt;}
.x27{left:571.493418pt;}
.x14{left:578.369819pt;}
.x28{left:581.557999pt;}
.x2a{left:583.171815pt;}
.x23{left:588.729619pt;}
.x29{left:615.518353pt;}
.x22{left:620.244120pt;}
.x2b{left:649.207361pt;}
.x33{left:669.934421pt;}
.x26{left:680.399562pt;}
.x35{left:686.118122pt;}
.x19{left:725.718923pt;}
}




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