
    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_36f17e5b5dcee52f74bb652b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.201660;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_7fcc5b4dd0305902e52431c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.256000;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_e2b5b90ec9daf66aff9fa34e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.237029;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;}
.m5{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-15.119951px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:7.200084px;}
.v2{vertical-align:36.000115px;}
.v1{vertical-align:42.480069px;}
.v3{vertical-align:72.000014px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-120.239952px;}
.ws2{word-spacing:-40.031984px;}
.ws4{word-spacing:-33.426707px;}
.ws5{word-spacing:-30.023988px;}
.ws6{word-spacing:-26.621269px;}
.ws3{word-spacing:-23.418711px;}
.ws7{word-spacing:-16.613273px;}
.ws9{word-spacing:-15.011994px;}
.wsa{word-spacing:-0.179982px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:244.847152px;}
.wsb{word-spacing:269.659104px;}
.ws8{word-spacing:1068.877121px;}
.wsc{word-spacing:1123.816493px;}
._2{margin-left:-78.828591px;}
._13{margin-left:-77.115255px;}
._9{margin-left:-75.651006px;}
._a{margin-left:-61.258882px;}
._11{margin-left:-57.546019px;}
._0{margin-left:-54.756793px;}
._8{margin-left:-53.343297px;}
._b{margin-left:-51.184562px;}
._d{margin-left:-46.147235px;}
._14{margin-left:-44.229658px;}
._c{margin-left:-37.512128px;}
._4{margin-left:-35.237881px;}
._1{margin-left:-33.978488px;}
._7{margin-left:-31.755278px;}
._10{margin-left:-28.876853px;}
._e{margin-left:-26.832866px;}
._12{margin-left:-25.278905px;}
._3{margin-left:-21.700907px;}
._15{margin-left:-9.611563px;}
._5{margin-left:-6.543939px;}
._16{margin-left:-2.727016px;}
._6{margin-left:-1.008612px;}
._f{width:1.081548px;}
._17{width:2.508919px;}
._18{width:4.031049px;}
._19{width:5.782136px;}
._2c{width:7.097394px;}
._40{width:9.186812px;}
._27{width:10.473593px;}
._26{width:11.600786px;}
._1c{width:13.312820px;}
._2b{width:15.226522px;}
._21{width:17.830704px;}
._2d{width:18.986163px;}
._1a{width:20.397932px;}
._47{width:21.866653px;}
._37{width:23.030467px;}
._38{width:24.067369px;}
._3b{width:25.072417px;}
._3a{width:26.992506px;}
._35{width:28.685608px;}
._34{width:29.909569px;}
._44{width:31.186819px;}
._39{width:32.509559px;}
._22{width:34.592660px;}
._1b{width:36.601193px;}
._20{width:38.098299px;}
._1f{width:39.107287px;}
._36{width:45.574540px;}
._46{width:49.360144px;}
._45{width:50.783174px;}
._3d{width:58.792744px;}
._43{width:60.691438px;}
._2f{width:67.484013px;}
._30{width:68.617822px;}
._31{width:93.939942px;}
._42{width:95.761886px;}
._41{width:97.027540px;}
._1e{width:123.853751px;}
._29{width:153.796391px;}
._24{width:200.006527px;}
._25{width:213.525194px;}
._3c{width:264.649407px;}
._3e{width:286.670060px;}
._28{width:314.089726px;}
._3f{width:395.438375px;}
._33{width:490.507675px;}
._23{width:779.806007px;}
._1d{width:869.205064px;}
._32{width:885.497690px;}
._2a{width:929.875395px;}
._2e{width:952.232934px;}
.fc5{color:transparent;}
.fc3{color:rgb(45,45,139);}
.fc2{color:rgb(255,255,0);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(50,50,154);}
.fc0{color:rgb(0,0,154);}
.fs7{font-size:53.999978px;}
.fs6{font-size:59.759976px;}
.fs4{font-size:84.239966px;}
.fs5{font-size:95.759962px;}
.fs1{font-size:107.999957px;}
.fs0{font-size:120.239952px;}
.fs3{font-size:143.999942px;}
.fs2{font-size:167.759933px;}
.y0{bottom:0.000000px;}
.y1a{bottom:74.040327px;}
.y81{bottom:80.340303px;}
.y7e{bottom:94.200298px;}
.y80{bottom:98.340307px;}
.y4{bottom:101.760316px;}
.y19{bottom:106.440314px;}
.y7d{bottom:112.200301px;}
.y7f{bottom:116.340310px;}
.y1e{bottom:122.280308px;}
.y7c{bottom:130.200305px;}
.y18{bottom:138.840301px;}
.y62{bottom:145.860344px;}
.y1d{bottom:154.680295px;}
.y79{bottom:155.760273px;}
.y7b{bottom:160.980282px;}
.y61{bottom:161.880247px;}
.y4f{bottom:163.680281px;}
.y78{bottom:173.760277px;}
.y60{bottom:178.080241px;}
.y7a{bottom:178.980285px;}
.y4e{bottom:181.680274px;}
.y50{bottom:183.660284px;}
.y1c{bottom:187.080282px;}
.y17{bottom:189.060191px;}
.y77{bottom:191.760280px;}
.y5f{bottom:194.100279px;}
.y4d{bottom:199.680266px;}
.y2a{bottom:212.279950px;}
.y4c{bottom:217.680270px;}
.y1b{bottom:219.480269px;}
.y16{bottom:221.640268px;}
.y5e{bottom:238.200172px;}
.y29{bottom:241.079998px;}
.y75{bottom:245.220205px;}
.y5d{bottom:254.400165px;}
.y74{bottom:263.220209px;}
.y28{bottom:270.060074px;}
.y5c{bottom:270.420204px;}
.y4a{bottom:271.680216px;}
.y4b{bottom:271.680238px;}
.y15{bottom:272.400248px;}
.y76{bottom:272.580248px;}
.y73{bottom:281.220212px;}
.y5b{bottom:286.620197px;}
.y49{bottom:289.680220px;}
.y27{bottom:298.860122px;}
.y72{bottom:299.220216px;}
.ya{bottom:299.760237px;}
.y5a{bottom:302.640236px;}
.y48{bottom:307.680223px;}
.y71{bottom:317.220219px;}
.y59{bottom:318.840229px;}
.y31{bottom:321.540228px;}
.y23{bottom:322.620138px;}
.y47{bottom:325.680227px;}
.y58{bottom:335.040223px;}
.y70{bottom:335.220223px;}
.y9{bottom:342.780220px;}
.y6{bottom:353.940079px;}
.y22{bottom:355.020125px;}
.y14{bottom:367.620210px;}
.y6f{bottom:374.820207px;}
.y46{bottom:376.260185px;}
.y6e{bottom:378.600195px;}
.y26{bottom:385.440055px;}
.y8{bottom:385.980203px;}
.y45{bottom:394.260188px;}
.y6d{bottom:396.600198px;}
.y5{bottom:404.340195px;}
.y57{bottom:406.140150px;}
.y44{bottom:412.260192px;}
.y25{bottom:414.420132px;}
.y12{bottom:416.580190px;}
.y21{bottom:420.000189px;}
.y56{bottom:422.340143px;}
.y7{bottom:429.000185px;}
.y3a{bottom:435.840759px;}
.y55{bottom:438.540137px;}
.y6c{bottom:440.160170px;}
.y24{bottom:443.220180px;}
.y11{bottom:448.980177px;}
.y20{bottom:452.400176px;}
.y54{bottom:454.560175px;}
.y6b{bottom:458.160174px;}
.y43{bottom:466.260138px;}
.y39{bottom:471.840600px;}
.y42{bottom:484.260142px;}
.y1f{bottom:484.800163px;}
.y68{bottom:486.060130px;}
.y13{bottom:498.840157px;}
.y6a{bottom:499.200147px;}
.y41{bottom:502.260145px;}
.y67{bottom:504.060134px;}
.y38{bottom:507.840442px;}
.y69{bottom:517.200150px;}
.y40{bottom:520.260149px;}
.y66{bottom:522.060137px;}
.y53{bottom:530.520100px;}
.y65{bottom:540.060141px;}
.y37{bottom:543.840283px;}
.y52{bottom:546.720093px;}
.ye{bottom:550.860275px;}
.y3f{bottom:552.840114px;}
.y30{bottom:553.020337px;}
.y51{bottom:562.740132px;}
.y3e{bottom:570.840118px;}
.y2c{bottom:575.880215px;}
.yd{bottom:576.060240px;}
.y2f{bottom:578.040239px;}
.y36{bottom:579.840125px;}
.y3d{bottom:588.840121px;}
.y63{bottom:593.880119px;}
.y64{bottom:595.500119px;}
.y2b{bottom:600.900117px;}
.yc{bottom:601.080142px;}
.y2e{bottom:603.240204px;}
.yb{bottom:626.280106px;}
.y2d{bottom:628.260106px;}
.y3{bottom:706.380362px;}
.y3c{bottom:707.820218px;}
.y35{bottom:708.720212px;}
.y34{bottom:733.920177px;}
.y10{bottom:737.700206px;}
.y2{bottom:742.380204px;}
.y3b{bottom:743.820059px;}
.y33{bottom:758.940079px;}
.yf{bottom:773.700048px;}
.y1{bottom:778.380046px;}
.y32{bottom:784.140043px;}
.h11{height:51.245980px;}
.hf{height:51.461979px;}
.h10{height:56.712217px;}
.h8{height:56.951257px;}
.hc{height:64.151341px;}
.h5{height:79.943728px;}
.h7{height:90.876204px;}
.he{height:92.951286px;}
.ha{height:92.951372px;}
.h9{height:99.431327px;}
.h2{height:102.491959px;}
.h6{height:114.107714px;}
.h1{height:120.298663px;}
.hb{height:128.951272px;}
.h12{height:128.951315px;}
.hd{height:128.951358px;}
.h4{height:136.655945px;}
.h3{height:167.841847px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x32{left:149.745690px;}
.x3b{left:171.706431px;}
.x5{left:176.386429px;}
.x11{left:183.946426px;}
.x18{left:188.446500px;}
.xb{left:196.546421px;}
.x17{left:207.166464px;}
.xc{left:214.546531px;}
.x12{left:219.226395px;}
.xe{left:234.526383px;}
.x15{left:239.566404px;}
.x13{left:247.306401px;}
.xd{left:248.926508px;}
.x16{left:250.546400px;}
.x14{left:277.006389px;}
.x6{left:289.784682px;}
.x39{left:294.466382px;}
.x9{left:341.267045px;}
.x8{left:356.385855px;}
.x7{left:411.286335px;}
.x4{left:414.346334px;}
.x33{left:472.666311px;}
.xa{left:483.289047px;}
.x3c{left:500.925971px;}
.x20{left:525.226188px;}
.x28{left:537.466285px;}
.x1d{left:544.666282px;}
.x1e{left:546.286164px;}
.x1f{left:556.726045px;}
.x1c{left:557.986420px;}
.x29{left:560.326364px;}
.x1a{left:562.486392px;}
.x19{left:573.286271px;}
.x21{left:595.786016px;}
.x1b{left:604.606372px;}
.x1{left:779.026188px;}
.x2{left:792.705210px;}
.x35{left:798.106181px;}
.x34{left:828.526255px;}
.x3f{left:832.126112px;}
.x3{left:836.265098px;}
.x3d{left:841.666163px;}
.x3e{left:849.586160px;}
.x2e{left:854.265487px;}
.x2f{left:863.085234px;}
.x40{left:873.526154px;}
.xf{left:874.786150px;}
.x24{left:876.766019px;}
.x2a{left:879.646148px;}
.x26{left:885.586071px;}
.x25{left:888.285037px;}
.x31{left:892.966143px;}
.x2b{left:905.026976px;}
.x23{left:912.406051px;}
.x2c{left:915.106898px;}
.x22{left:925.906130px;}
.x10{left:932.386103px;}
.x30{left:955.425508px;}
.x27{left:956.686100px;}
.x2d{left:960.467030px;}
.x3a{left:1000.066100px;}
.x38{left:1021.846091px;}
.x37{left:1022.926091px;}
.x36{left:1024.006090px;}
@media print{
.v5{vertical-align:-13.439956pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:6.400074pt;}
.v2{vertical-align:32.000102pt;}
.v1{vertical-align:37.760062pt;}
.v3{vertical-align:64.000013pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-106.879957pt;}
.ws2{word-spacing:-35.583986pt;}
.ws4{word-spacing:-29.712628pt;}
.ws5{word-spacing:-26.687989pt;}
.ws6{word-spacing:-23.663351pt;}
.ws3{word-spacing:-20.816632pt;}
.ws7{word-spacing:-14.767354pt;}
.ws9{word-spacing:-13.343995pt;}
.wsa{word-spacing:-0.159984pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:217.641913pt;}
.wsb{word-spacing:239.696981pt;}
.ws8{word-spacing:950.112996pt;}
.wsc{word-spacing:998.947993pt;}
._2{margin-left:-70.069859pt;}
._13{margin-left:-68.546894pt;}
._9{margin-left:-67.245339pt;}
._a{margin-left:-54.452339pt;}
._11{margin-left:-51.152017pt;}
._0{margin-left:-48.672705pt;}
._8{margin-left:-47.416264pt;}
._b{margin-left:-45.497389pt;}
._d{margin-left:-41.019764pt;}
._14{margin-left:-39.315251pt;}
._c{margin-left:-33.344113pt;}
._4{margin-left:-31.322561pt;}
._1{margin-left:-30.203100pt;}
._7{margin-left:-28.226914pt;}
._10{margin-left:-25.668314pt;}
._e{margin-left:-23.851436pt;}
._12{margin-left:-22.470138pt;}
._3{margin-left:-19.289695pt;}
._15{margin-left:-8.543611pt;}
._5{margin-left:-5.816835pt;}
._16{margin-left:-2.424014pt;}
._6{margin-left:-0.896544pt;}
._f{width:0.961376pt;}
._17{width:2.230150pt;}
._18{width:3.583155pt;}
._19{width:5.139677pt;}
._2c{width:6.308794pt;}
._40{width:8.166055pt;}
._27{width:9.309861pt;}
._26{width:10.311810pt;}
._1c{width:11.833618pt;}
._2b{width:13.534686pt;}
._21{width:15.849514pt;}
._2d{width:16.876589pt;}
._1a{width:18.131495pt;}
._47{width:19.437025pt;}
._37{width:20.471526pt;}
._38{width:21.393217pt;}
._3b{width:22.286593pt;}
._3a{width:23.993338pt;}
._35{width:25.498318pt;}
._34{width:26.586284pt;}
._44{width:27.721617pt;}
._39{width:28.897386pt;}
._22{width:30.749031pt;}
._1b{width:32.534393pt;}
._20{width:33.865155pt;}
._1f{width:34.762033pt;}
._36{width:40.510702pt;}
._46{width:43.875684pt;}
._45{width:45.140599pt;}
._3d{width:52.260217pt;}
._43{width:53.947945pt;}
._2f{width:59.985789pt;}
._30{width:60.993619pt;}
._31{width:83.502171pt;}
._42{width:85.121676pt;}
._41{width:86.246702pt;}
._1e{width:110.092223pt;}
._29{width:136.707903pt;}
._24{width:177.783579pt;}
._25{width:189.800172pt;}
._3c{width:235.243917pt;}
._3e{width:254.817831pt;}
._28{width:279.190868pt;}
._3f{width:351.500778pt;}
._33{width:436.006822pt;}
._23{width:693.160895pt;}
._1d{width:772.626724pt;}
._32{width:787.109058pt;}
._2a{width:826.555907pt;}
._2e{width:846.429275pt;}
.fs7{font-size:47.999981pt;}
.fs6{font-size:53.119979pt;}
.fs4{font-size:74.879970pt;}
.fs5{font-size:85.119966pt;}
.fs1{font-size:95.999962pt;}
.fs0{font-size:106.879957pt;}
.fs3{font-size:127.999949pt;}
.fs2{font-size:149.119940pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:65.813624pt;}
.y81{bottom:71.413603pt;}
.y7e{bottom:83.733598pt;}
.y80{bottom:87.413606pt;}
.y4{bottom:90.453614pt;}
.y19{bottom:94.613613pt;}
.y7d{bottom:99.733601pt;}
.y7f{bottom:103.413609pt;}
.y1e{bottom:108.693607pt;}
.y7c{bottom:115.733604pt;}
.y18{bottom:123.413601pt;}
.y62{bottom:129.653639pt;}
.y1d{bottom:137.493596pt;}
.y79{bottom:138.453576pt;}
.y7b{bottom:143.093584pt;}
.y61{bottom:143.893553pt;}
.y4f{bottom:145.493583pt;}
.y78{bottom:154.453579pt;}
.y60{bottom:158.293547pt;}
.y7a{bottom:159.093587pt;}
.y4e{bottom:161.493576pt;}
.y50{bottom:163.253585pt;}
.y1c{bottom:166.293584pt;}
.y17{bottom:168.053503pt;}
.y77{bottom:170.453582pt;}
.y5f{bottom:172.533582pt;}
.y4d{bottom:177.493570pt;}
.y2a{bottom:188.693289pt;}
.y4c{bottom:193.493573pt;}
.y1b{bottom:195.093573pt;}
.y16{bottom:197.013572pt;}
.y5e{bottom:211.733486pt;}
.y29{bottom:214.293331pt;}
.y75{bottom:217.973515pt;}
.y5d{bottom:226.133480pt;}
.y74{bottom:233.973519pt;}
.y28{bottom:240.053399pt;}
.y5c{bottom:240.373515pt;}
.y4a{bottom:241.493525pt;}
.y4b{bottom:241.493544pt;}
.y15{bottom:242.133554pt;}
.y76{bottom:242.293554pt;}
.y73{bottom:249.973522pt;}
.y5b{bottom:254.773509pt;}
.y49{bottom:257.493528pt;}
.y27{bottom:265.653442pt;}
.y72{bottom:265.973525pt;}
.ya{bottom:266.453544pt;}
.y5a{bottom:269.013543pt;}
.y48{bottom:273.493532pt;}
.y71{bottom:281.973528pt;}
.y59{bottom:283.413537pt;}
.y31{bottom:285.813536pt;}
.y23{bottom:286.773456pt;}
.y47{bottom:289.493535pt;}
.y58{bottom:297.813532pt;}
.y70{bottom:297.973531pt;}
.y9{bottom:304.693529pt;}
.y6{bottom:314.613403pt;}
.y22{bottom:315.573444pt;}
.y14{bottom:326.773520pt;}
.y6f{bottom:333.173517pt;}
.y46{bottom:334.453498pt;}
.y6e{bottom:336.533506pt;}
.y26{bottom:342.613382pt;}
.y8{bottom:343.093513pt;}
.y45{bottom:350.453501pt;}
.y6d{bottom:352.533510pt;}
.y5{bottom:359.413507pt;}
.y57{bottom:361.013466pt;}
.y44{bottom:366.453504pt;}
.y25{bottom:368.373451pt;}
.y12{bottom:370.293503pt;}
.y21{bottom:373.333501pt;}
.y56{bottom:375.413461pt;}
.y7{bottom:381.333498pt;}
.y3a{bottom:387.414008pt;}
.y55{bottom:389.813455pt;}
.y6c{bottom:391.253485pt;}
.y24{bottom:393.973493pt;}
.y11{bottom:399.093491pt;}
.y20{bottom:402.133490pt;}
.y54{bottom:404.053489pt;}
.y6b{bottom:407.253488pt;}
.y43{bottom:414.453456pt;}
.y39{bottom:419.413867pt;}
.y42{bottom:430.453459pt;}
.y1f{bottom:430.933478pt;}
.y68{bottom:432.053449pt;}
.y13{bottom:443.413473pt;}
.y6a{bottom:443.733464pt;}
.y41{bottom:446.453462pt;}
.y67{bottom:448.053452pt;}
.y38{bottom:451.413726pt;}
.y69{bottom:459.733467pt;}
.y40{bottom:462.453466pt;}
.y66{bottom:464.053455pt;}
.y53{bottom:471.573422pt;}
.y65{bottom:480.053459pt;}
.y37{bottom:483.413585pt;}
.y52{bottom:485.973416pt;}
.ye{bottom:489.653578pt;}
.y3f{bottom:491.413435pt;}
.y30{bottom:491.573633pt;}
.y51{bottom:500.213451pt;}
.y3e{bottom:507.413438pt;}
.y2c{bottom:511.893524pt;}
.yd{bottom:512.053547pt;}
.y2f{bottom:513.813546pt;}
.y36{bottom:515.413445pt;}
.y3d{bottom:523.413441pt;}
.y63{bottom:527.893440pt;}
.y64{bottom:529.333439pt;}
.y2b{bottom:534.133437pt;}
.yc{bottom:534.293459pt;}
.y2e{bottom:536.213515pt;}
.yb{bottom:556.693428pt;}
.y2d{bottom:558.453427pt;}
.y3{bottom:627.893656pt;}
.y3c{bottom:629.173527pt;}
.y35{bottom:629.973522pt;}
.y34{bottom:652.373491pt;}
.y10{bottom:655.733516pt;}
.y2{bottom:659.893515pt;}
.y3b{bottom:661.173386pt;}
.y33{bottom:674.613403pt;}
.yf{bottom:687.733376pt;}
.y1{bottom:691.893374pt;}
.y32{bottom:697.013372pt;}
.h11{height:45.551982pt;}
.hf{height:45.743982pt;}
.h10{height:50.410860pt;}
.h8{height:50.623340pt;}
.hc{height:57.023414pt;}
.h5{height:71.061092pt;}
.h7{height:80.778848pt;}
.he{height:82.623365pt;}
.ha{height:82.623442pt;}
.h9{height:88.383401pt;}
.h2{height:91.103964pt;}
.h6{height:101.429079pt;}
.h1{height:106.932145pt;}
.hb{height:114.623353pt;}
.h12{height:114.623391pt;}
.hd{height:114.623429pt;}
.h4{height:121.471951pt;}
.h3{height:149.192753pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x32{left:133.107280pt;}
.x3b{left:152.627939pt;}
.x5{left:156.787937pt;}
.x11{left:163.507935pt;}
.x18{left:167.508000pt;}
.xb{left:174.707930pt;}
.x17{left:184.147968pt;}
.xc{left:190.708028pt;}
.x12{left:194.867907pt;}
.xe{left:208.467896pt;}
.x15{left:212.947915pt;}
.x13{left:219.827912pt;}
.xd{left:221.268007pt;}
.x16{left:222.707911pt;}
.x14{left:246.227902pt;}
.x6{left:257.586384pt;}
.x39{left:261.747895pt;}
.x9{left:303.348485pt;}
.x8{left:316.787427pt;}
.x7{left:365.587854pt;}
.x4{left:368.307853pt;}
.x33{left:420.147832pt;}
.xa{left:429.590264pt;}
.x3c{left:445.267530pt;}
.x20{left:466.867722pt;}
.x28{left:477.747809pt;}
.x1d{left:484.147806pt;}
.x1e{left:485.587701pt;}
.x1f{left:494.867595pt;}
.x1c{left:495.987929pt;}
.x29{left:498.067879pt;}
.x1a{left:499.987904pt;}
.x19{left:509.587796pt;}
.x21{left:529.587570pt;}
.x1b{left:537.427886pt;}
.x1{left:692.467723pt;}
.x2{left:704.626853pt;}
.x35{left:709.427716pt;}
.x34{left:736.467782pt;}
.x3f{left:739.667655pt;}
.x3{left:743.346754pt;}
.x3d{left:748.147701pt;}
.x3e{left:755.187698pt;}
.x2e{left:759.347099pt;}
.x2f{left:767.186874pt;}
.x40{left:776.467693pt;}
.xf{left:777.587689pt;}
.x24{left:779.347573pt;}
.x2a{left:781.907687pt;}
.x26{left:787.187618pt;}
.x25{left:789.586700pt;}
.x31{left:793.747683pt;}
.x2b{left:804.468423pt;}
.x23{left:811.027601pt;}
.x2c{left:813.428354pt;}
.x22{left:823.027671pt;}
.x10{left:828.787647pt;}
.x30{left:849.267118pt;}
.x27{left:850.387645pt;}
.x2d{left:853.748471pt;}
.x3a{left:888.947644pt;}
.x38{left:908.307637pt;}
.x37{left:909.267636pt;}
.x36{left:910.227636pt;}
}




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