
    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_20b3b175f942208a38304b59.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.149000;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_e1b7df38ef22d3f31f28bf85.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.990000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000180px;}
.ls4{letter-spacing:0.000198px;}
.ls7{letter-spacing:0.000420px;}
.lsb{letter-spacing:0.001488px;}
.ls2{letter-spacing:0.003654px;}
.lsa{letter-spacing:0.004308px;}
.ls11{letter-spacing:0.004704px;}
.lsc{letter-spacing:0.007128px;}
.ls9{letter-spacing:0.014556px;}
.lsf{letter-spacing:0.018348px;}
.ls3{letter-spacing:0.028380px;}
.ls8{letter-spacing:0.030434px;}
.lse{letter-spacing:0.032448px;}
.ls10{letter-spacing:0.035208px;}
.lsd{letter-spacing:0.039070px;}
.ls6{letter-spacing:0.389820px;}
.ls5{letter-spacing:0.407430px;}
.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:-22.223541px;}
.wsc{word-spacing:-20.371492px;}
.wsf{word-spacing:-18.519593px;}
.ws2{word-spacing:-16.667543px;}
.ws3{word-spacing:-15.741594px;}
.ws5{word-spacing:-15.278694px;}
.ws10{word-spacing:-13.889664px;}
.ws32{word-spacing:-11.806225px;}
.ws27{word-spacing:-3.277679px;}
.ws20{word-spacing:-3.149783px;}
.ws2e{word-spacing:-1.449864px;}
.ws4{word-spacing:0.000000px;}
.ws1a{word-spacing:0.360915px;}
.ws26{word-spacing:0.659848px;}
.ws23{word-spacing:0.666740px;}
.ws25{word-spacing:0.666860px;}
.ws24{word-spacing:0.668426px;}
.ws1f{word-spacing:0.764885px;}
.ws1b{word-spacing:1.498240px;}
.ws1e{word-spacing:1.506395px;}
.ws1d{word-spacing:1.508508px;}
.ws11{word-spacing:2.566332px;}
.ws12{word-spacing:2.566454px;}
.ws21{word-spacing:2.593856px;}
.ws14{word-spacing:2.843452px;}
.ws22{word-spacing:3.931961px;}
.ws1c{word-spacing:4.242707px;}
.ws13{word-spacing:4.277790px;}
.ws29{word-spacing:4.360307px;}
.ws28{word-spacing:4.363594px;}
.wse{word-spacing:4.628247px;}
.ws2a{word-spacing:4.845916px;}
.ws17{word-spacing:5.069226px;}
.wsa{word-spacing:5.072037px;}
.ws1{word-spacing:5.560294px;}
.ws16{word-spacing:5.630753px;}
.ws2f{word-spacing:5.833264px;}
.ws2b{word-spacing:5.942716px;}
.ws18{word-spacing:6.406912px;}
.ws19{word-spacing:6.409312px;}
.ws30{word-spacing:7.045722px;}
.ws31{word-spacing:7.049633px;}
.ws2d{word-spacing:8.272512px;}
.ws2c{word-spacing:8.273032px;}
.ws15{word-spacing:10.973075px;}
.ws7{word-spacing:12.416018px;}
.ws6{word-spacing:12.582123px;}
.wsb{word-spacing:17.792292px;}
.ws9{word-spacing:23.561443px;}
.ws8{word-spacing:25.361443px;}
.ws33{word-spacing:871.700351px;}
.wsd{word-spacing:871.704251px;}
._18{margin-left:-2376.878649px;}
._0{margin-left:-10.512097px;}
._2{margin-left:-9.045268px;}
._17{margin-left:-7.589193px;}
._1{margin-left:-6.025697px;}
._3{margin-left:-4.481370px;}
._8{margin-left:-3.222134px;}
._4{margin-left:-1.311615px;}
._9{width:1.765017px;}
._14{width:2.982757px;}
._6{width:4.028910px;}
._5{width:5.665828px;}
._c{width:6.749135px;}
._7{width:7.870545px;}
._a{width:9.005451px;}
._b{width:10.837634px;}
._13{width:12.630651px;}
._10{width:13.689561px;}
._f{width:14.830446px;}
._15{width:15.889845px;}
._e{width:17.030649px;}
._11{width:18.492775px;}
._1b{width:20.678018px;}
._16{width:22.245751px;}
._19{width:26.238482px;}
._d{width:27.789549px;}
._1a{width:30.694054px;}
._12{width:38.752928px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:47.224901px;}
.fs6{font-size:55.558658px;}
.fs5{font-size:61.114776px;}
.fs3{font-size:62.966375px;}
.fs2{font-size:66.670173px;}
.fs4{font-size:74.078370px;}
.fs0{font-size:81.485967px;}
.fs1{font-size:88.894164px;}
.y0{bottom:0.000000px;}
.y1{bottom:1.603125px;}
.y67{bottom:119.843876px;}
.yb2{bottom:120.212736px;}
.y40{bottom:120.647426px;}
.y8e{bottom:121.258226px;}
.yb1{bottom:140.026809px;}
.y66{bottom:143.760017px;}
.y3f{bottom:144.542417px;}
.y8d{bottom:145.743766px;}
.yb0{bottom:159.845851px;}
.y65{bottom:167.676157px;}
.y3e{bottom:168.438757px;}
.y8c{bottom:170.229306px;}
.y1a{bottom:178.891503px;}
.yaf{bottom:179.659924px;}
.y64{bottom:191.591548px;}
.y3d{bottom:192.333747px;}
.y8b{bottom:194.717096px;}
.y19{bottom:197.780995px;}
.yae{bottom:199.477466px;}
.y63{bottom:215.507688px;}
.y3c{bottom:216.230088px;}
.y8a{bottom:219.203387px;}
.yad{bottom:219.292187px;}
.y18{bottom:235.561930px;}
.y62{bottom:239.423829px;}
.y3b{bottom:240.125078px;}
.y89{bottom:243.690427px;}
.y17{bottom:254.451423px;}
.yac{bottom:258.928771px;}
.y61{bottom:263.339969px;}
.y3a{bottom:264.021419px;}
.y88{bottom:268.176717px;}
.y16{bottom:273.340915px;}
.y60{bottom:287.256109px;}
.y39{bottom:287.916409px;}
.y15{bottom:292.231757px;}
.y87{bottom:292.667207px;}
.y14{bottom:311.121250px;}
.y5f{bottom:311.173600px;}
.y38{bottom:311.808400px;}
.y86{bottom:317.175697px;}
.yab{bottom:327.255693px;}
.y13{bottom:330.010742px;}
.y5e{bottom:335.089740px;}
.y37{bottom:335.692890px;}
.y85{bottom:341.661988px;}
.y12{bottom:348.901585px;}
.yaa{bottom:351.415734px;}
.y5d{bottom:359.005881px;}
.y36{bottom:359.589231px;}
.y84{bottom:366.147528px;}
.ya9{bottom:375.577874px;}
.y5c{bottom:382.922021px;}
.y35{bottom:383.484221px;}
.y11{bottom:386.680420px;}
.y83{bottom:390.635318px;}
.ya8{bottom:399.738664px;}
.y5b{bottom:406.838162px;}
.y82{bottom:415.120858px;}
.ya7{bottom:423.898705px;}
.y5a{bottom:430.754302px;}
.y34{bottom:431.251552px;}
.y81{bottom:439.608649px;}
.ya6{bottom:448.059495px;}
.y59{bottom:454.670442px;}
.y10{bottom:462.241689px;}
.y80{bottom:464.094189px;}
.ya5{bottom:472.219535px;}
.y58{bottom:478.586583px;}
.yf{bottom:481.131182px;}
.y7f{bottom:488.579729px;}
.ya4{bottom:496.379576px;}
.y57{bottom:502.502723px;}
.y33{bottom:502.918223px;}
.y7e{bottom:513.067519px;}
.yd0{bottom:513.250566px;}
.ye{bottom:518.910017px;}
.ya3{bottom:520.539616px;}
.y56{bottom:526.418864px;}
.y32{bottom:526.815314px;}
.ycf{bottom:532.784758px;}
.y7d{bottom:537.553059px;}
.yd{bottom:537.800859px;}
.ya2{bottom:544.699656px;}
.y55{bottom:550.335004px;}
.y31{bottom:550.710304px;}
.yce{bottom:552.331597px;}
.yc{bottom:556.690352px;}
.y7c{bottom:562.040100px;}
.ya1{bottom:568.860447px;}
.y54{bottom:574.251145px;}
.y30{bottom:574.596295px;}
.yb{bottom:575.579844px;}
.y7b{bottom:586.529090px;}
.ycd{bottom:591.403582px;}
.ya0{bottom:593.020487px;}
.ya{bottom:594.470687px;}
.y2f{bottom:598.491285px;}
.ycc{bottom:610.937774px;}
.y7a{bottom:611.046430px;}
.y9{bottom:613.360179px;}
.y9f{bottom:617.180527px;}
.y53{bottom:622.063626px;}
.y2e{bottom:622.330025px;}
.ycb{bottom:630.478285px;}
.y8{bottom:632.249671px;}
.y79{bottom:635.533470px;}
.y9e{bottom:641.340568px;}
.y52{bottom:645.853316px;}
.y2d{bottom:646.226366px;}
.yca{bottom:650.014577px;}
.y78{bottom:660.019010px;}
.y9d{bottom:665.502708px;}
.yc9{bottom:669.558003px;}
.y7{bottom:670.030606px;}
.y2c{bottom:670.121356px;}
.y77{bottom:684.504551px;}
.yc8{bottom:689.093696px;}
.y9c{bottom:689.663498px;}
.y2b{bottom:694.017697px;}
.yc7{bottom:708.628638px;}
.y76{bottom:708.992341px;}
.y9b{bottom:713.823539px;}
.y51{bottom:717.581937px;}
.y2a{bottom:717.914037px;}
.yc6{bottom:728.170658px;}
.y75{bottom:733.477881px;}
.y9a{bottom:737.983579px;}
.y50{bottom:741.498078px;}
.y29{bottom:741.809028px;}
.yc5{bottom:747.704850px;}
.y74{bottom:757.965671px;}
.y99{bottom:762.143620px;}
.y4f{bottom:765.414218px;}
.y28{bottom:765.705368px;}
.yc4{bottom:767.245361px;}
.y73{bottom:782.451211px;}
.y98{bottom:786.303660px;}
.yc3{bottom:786.781653px;}
.y4e{bottom:789.330359px;}
.y27{bottom:789.600359px;}
.y6{bottom:799.057705px;}
.yc2{bottom:806.322267px;}
.y72{bottom:806.936752px;}
.y97{bottom:810.463700px;}
.y4d{bottom:813.246499px;}
.y26{bottom:813.496699px;}
.y5{bottom:822.952695px;}
.yc1{bottom:825.857960px;}
.y71{bottom:831.424542px;}
.y96{bottom:834.623741px;}
.y4c{bottom:837.162639px;}
.y25{bottom:837.391689px;}
.yc0{bottom:845.398471px;}
.y4{bottom:846.849036px;}
.y70{bottom:855.910832px;}
.y95{bottom:858.784531px;}
.y4b{bottom:861.078780px;}
.y24{bottom:861.266580px;}
.ybf{bottom:864.934163px;}
.y6f{bottom:880.397122px;}
.ybe{bottom:884.471917px;}
.y4a{bottom:884.994920px;}
.y23{bottom:885.162920px;}
.ybd{bottom:904.013835px;}
.y6e{bottom:904.884912px;}
.y94{bottom:907.157261px;}
.y49{bottom:908.911061px;}
.y22{bottom:909.057911px;}
.ybc{bottom:923.548777px;}
.y6d{bottom:929.371203px;}
.y48{bottom:932.828551px;}
.y21{bottom:932.955001px;}
.y3{bottom:939.920998px;}
.ybb{bottom:943.088688px;}
.y6c{bottom:953.866043px;}
.y93{bottom:955.499242px;}
.y47{bottom:956.744692px;}
.y20{bottom:956.843992px;}
.yba{bottom:962.624980px;}
.y6b{bottom:978.352333px;}
.y92{bottom:979.659282px;}
.y46{bottom:980.660832px;}
.y1f{bottom:980.728632px;}
.yb9{bottom:982.165491px;}
.yb8{bottom:1001.701183px;}
.y6a{bottom:1002.840123px;}
.y91{bottom:1003.819323px;}
.y45{bottom:1004.576973px;}
.y1e{bottom:1004.623623px;}
.y1b{bottom:1018.634667px;}
.yb7{bottom:1021.241750px;}
.y69{bottom:1027.325663px;}
.y90{bottom:1027.979363px;}
.y44{bottom:1028.465663px;}
.y1d{bottom:1028.519963px;}
.yb6{bottom:1040.778042px;}
.y68{bottom:1051.813904px;}
.y8f{bottom:1052.139404px;}
.y43{bottom:1052.381803px;}
.yb5{bottom:1060.315750px;}
.y42{bottom:1076.297944px;}
.y1c{bottom:1076.299444px;}
.yb4{bottom:1079.851442px;}
.y2{bottom:1122.695925px;}
.yd1{bottom:1127.533320px;}
.yb3{bottom:1127.534333px;}
.y41{bottom:1127.534923px;}
.h10{height:56.892188px;}
.h4{height:58.369829px;}
.hf{height:58.386704px;}
.he{height:58.389517px;}
.h5{height:68.670649px;}
.h11{height:68.677062px;}
.h2{height:75.537492px;}
.hc{height:75.554892px;}
.h7{height:75.561492px;}
.h6{height:75.578892px;}
.hb{height:75.584892px;}
.ha{height:75.586092px;}
.h8{height:75.623292px;}
.h9{height:75.767892px;}
.hd{height:76.006692px;}
.h3{height:82.404890px;}
.h1{height:1259.915400px;}
.h0{height:1263.000000px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:118.113853px;}
.xb{left:136.490495px;}
.x5{left:154.957288px;}
.x3{left:156.383937px;}
.x7{left:160.112936px;}
.x10{left:161.728435px;}
.xc{left:178.487929px;}
.x4{left:203.685969px;}
.xf{left:212.604995px;}
.x1{left:218.659413px;}
.x11{left:230.984908px;}
.xa{left:253.495117px;}
.x2{left:354.736358px;}
.xe{left:379.874848px;}
.x6{left:412.828335px;}
.x9{left:418.229233px;}
.xd{left:728.168709px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000160pt;}
.ls4{letter-spacing:0.000176pt;}
.ls7{letter-spacing:0.000373pt;}
.lsb{letter-spacing:0.001323pt;}
.ls2{letter-spacing:0.003248pt;}
.lsa{letter-spacing:0.003829pt;}
.ls11{letter-spacing:0.004181pt;}
.lsc{letter-spacing:0.006336pt;}
.ls9{letter-spacing:0.012939pt;}
.lsf{letter-spacing:0.016309pt;}
.ls3{letter-spacing:0.025227pt;}
.ls8{letter-spacing:0.027053pt;}
.lse{letter-spacing:0.028843pt;}
.ls10{letter-spacing:0.031296pt;}
.lsd{letter-spacing:0.034729pt;}
.ls6{letter-spacing:0.346507pt;}
.ls5{letter-spacing:0.362160pt;}
.ws0{word-spacing:-19.754259pt;}
.wsc{word-spacing:-18.107993pt;}
.wsf{word-spacing:-16.461860pt;}
.ws2{word-spacing:-14.815594pt;}
.ws3{word-spacing:-13.992528pt;}
.ws5{word-spacing:-13.581061pt;}
.ws10{word-spacing:-12.346368pt;}
.ws32{word-spacing:-10.494422pt;}
.ws27{word-spacing:-2.913492pt;}
.ws20{word-spacing:-2.799807pt;}
.ws2e{word-spacing:-1.288768pt;}
.ws4{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.320813pt;}
.ws26{word-spacing:0.586531pt;}
.ws23{word-spacing:0.592657pt;}
.ws25{word-spacing:0.592764pt;}
.ws24{word-spacing:0.594156pt;}
.ws1f{word-spacing:0.679898pt;}
.ws1b{word-spacing:1.331769pt;}
.ws1e{word-spacing:1.339017pt;}
.ws1d{word-spacing:1.340896pt;}
.ws11{word-spacing:2.281184pt;}
.ws12{word-spacing:2.281292pt;}
.ws21{word-spacing:2.305650pt;}
.ws14{word-spacing:2.527513pt;}
.ws22{word-spacing:3.495076pt;}
.ws1c{word-spacing:3.771295pt;}
.ws13{word-spacing:3.802480pt;}
.ws29{word-spacing:3.875828pt;}
.ws28{word-spacing:3.878750pt;}
.wse{word-spacing:4.113997pt;}
.ws2a{word-spacing:4.307481pt;}
.ws17{word-spacing:4.505979pt;}
.wsa{word-spacing:4.508478pt;}
.ws1{word-spacing:4.942484pt;}
.ws16{word-spacing:5.005113pt;}
.ws2f{word-spacing:5.185124pt;}
.ws2b{word-spacing:5.282414pt;}
.ws18{word-spacing:5.695033pt;}
.ws19{word-spacing:5.697166pt;}
.ws30{word-spacing:6.262864pt;}
.ws31{word-spacing:6.266340pt;}
.ws2d{word-spacing:7.353344pt;}
.ws2c{word-spacing:7.353807pt;}
.ws15{word-spacing:9.753845pt;}
.ws7{word-spacing:11.036461pt;}
.ws6{word-spacing:11.184110pt;}
.wsb{word-spacing:15.815371pt;}
.ws9{word-spacing:20.943505pt;}
.ws8{word-spacing:22.543505pt;}
.ws33{word-spacing:774.844757pt;}
.wsd{word-spacing:774.848223pt;}
._18{margin-left:-2112.781022pt;}
._0{margin-left:-9.344086pt;}
._2{margin-left:-8.040239pt;}
._17{margin-left:-6.745949pt;}
._1{margin-left:-5.356175pt;}
._3{margin-left:-3.983440pt;}
._8{margin-left:-2.864119pt;}
._4{margin-left:-1.165880pt;}
._9{width:1.568904pt;}
._14{width:2.651340pt;}
._6{width:3.581253pt;}
._5{width:5.036291pt;}
._c{width:5.999231pt;}
._7{width:6.996040pt;}
._a{width:8.004845pt;}
._b{width:9.633452pt;}
._13{width:11.227245pt;}
._10{width:12.168499pt;}
._f{width:13.182619pt;}
._15{width:14.124307pt;}
._e{width:15.138354pt;}
._11{width:16.438023pt;}
._1b{width:18.380460pt;}
._16{width:19.774001pt;}
._19{width:23.323095pt;}
._d{width:24.701821pt;}
._1a{width:27.283604pt;}
._12{width:34.447047pt;}
.fs7{font-size:41.977690pt;}
.fs6{font-size:49.385474pt;}
.fs5{font-size:54.324245pt;}
.fs3{font-size:55.970111pt;}
.fs2{font-size:59.262376pt;}
.fs4{font-size:65.847440pt;}
.fs0{font-size:72.431971pt;}
.fs1{font-size:79.017035pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:1.425000pt;}
.y67{bottom:106.527890pt;}
.yb2{bottom:106.855765pt;}
.y40{bottom:107.242157pt;}
.y8e{bottom:107.785090pt;}
.yb1{bottom:124.468275pt;}
.y66{bottom:127.786682pt;}
.y3f{bottom:128.482148pt;}
.y8d{bottom:129.550014pt;}
.yb0{bottom:142.085201pt;}
.y65{bottom:149.045473pt;}
.y3e{bottom:149.723340pt;}
.y8c{bottom:151.314939pt;}
.y1a{bottom:159.014669pt;}
.yaf{bottom:159.697711pt;}
.y64{bottom:170.303598pt;}
.y3d{bottom:170.963331pt;}
.y8b{bottom:173.081864pt;}
.y19{bottom:175.805329pt;}
.yae{bottom:177.313304pt;}
.y63{bottom:191.562389pt;}
.y3c{bottom:192.204523pt;}
.y8a{bottom:194.847455pt;}
.yad{bottom:194.926388pt;}
.y18{bottom:209.388382pt;}
.y62{bottom:212.821181pt;}
.y3b{bottom:213.444514pt;}
.y89{bottom:216.613713pt;}
.y17{bottom:226.179042pt;}
.yac{bottom:230.158907pt;}
.y61{bottom:234.079972pt;}
.y3a{bottom:234.685706pt;}
.y88{bottom:238.379304pt;}
.y16{bottom:242.969702pt;}
.y60{bottom:255.338764pt;}
.y39{bottom:255.925697pt;}
.y15{bottom:259.761562pt;}
.y87{bottom:260.148629pt;}
.y14{bottom:276.552222pt;}
.y5f{bottom:276.598755pt;}
.y38{bottom:277.163022pt;}
.y86{bottom:281.933953pt;}
.yab{bottom:290.893950pt;}
.y13{bottom:293.342882pt;}
.y5e{bottom:297.857547pt;}
.y37{bottom:298.393680pt;}
.y85{bottom:303.699545pt;}
.y12{bottom:310.134742pt;}
.yaa{bottom:312.369541pt;}
.y5d{bottom:319.116338pt;}
.y36{bottom:319.634872pt;}
.y84{bottom:325.464469pt;}
.ya9{bottom:333.846999pt;}
.y5c{bottom:340.375130pt;}
.y35{bottom:340.874863pt;}
.y11{bottom:343.715929pt;}
.y83{bottom:347.231394pt;}
.ya8{bottom:355.323257pt;}
.y5b{bottom:361.633921pt;}
.y82{bottom:368.996318pt;}
.ya7{bottom:376.798849pt;}
.y5a{bottom:382.892713pt;}
.y34{bottom:383.334713pt;}
.y81{bottom:390.763243pt;}
.ya6{bottom:398.275107pt;}
.y59{bottom:404.151504pt;}
.y10{bottom:410.881502pt;}
.y80{bottom:412.528168pt;}
.ya5{bottom:419.750698pt;}
.y58{bottom:425.410296pt;}
.yf{bottom:427.672162pt;}
.y7f{bottom:434.293092pt;}
.ya4{bottom:441.226290pt;}
.y57{bottom:446.669087pt;}
.y33{bottom:447.038421pt;}
.y7e{bottom:456.060017pt;}
.yd0{bottom:456.222725pt;}
.ye{bottom:461.253348pt;}
.ya3{bottom:462.701881pt;}
.y56{bottom:467.927879pt;}
.y32{bottom:468.280279pt;}
.ycf{bottom:473.586452pt;}
.y7d{bottom:477.824942pt;}
.yd{bottom:478.045208pt;}
.ya2{bottom:484.177472pt;}
.y55{bottom:489.186670pt;}
.y31{bottom:489.520270pt;}
.yce{bottom:490.961420pt;}
.yc{bottom:494.835868pt;}
.y7c{bottom:499.591200pt;}
.ya1{bottom:505.653731pt;}
.y54{bottom:510.445462pt;}
.y30{bottom:510.752262pt;}
.yb{bottom:511.626528pt;}
.y7b{bottom:521.359191pt;}
.ycd{bottom:525.692072pt;}
.ya0{bottom:527.129322pt;}
.ya{bottom:528.418388pt;}
.y2f{bottom:531.992253pt;}
.ycc{bottom:543.055799pt;}
.y7a{bottom:543.152382pt;}
.y9{bottom:545.209048pt;}
.y9f{bottom:548.604913pt;}
.y53{bottom:552.945445pt;}
.y2e{bottom:553.182245pt;}
.ycb{bottom:560.425142pt;}
.y8{bottom:561.999708pt;}
.y79{bottom:564.918640pt;}
.y9e{bottom:570.080505pt;}
.y52{bottom:574.091836pt;}
.y2d{bottom:574.423436pt;}
.yca{bottom:577.790735pt;}
.y78{bottom:586.683565pt;}
.y9d{bottom:591.557963pt;}
.yc9{bottom:595.162670pt;}
.y7{bottom:595.582761pt;}
.y2c{bottom:595.663428pt;}
.y77{bottom:608.448489pt;}
.yc8{bottom:612.527729pt;}
.y9c{bottom:613.034221pt;}
.y2b{bottom:616.904619pt;}
.yc7{bottom:629.892122pt;}
.y76{bottom:630.215414pt;}
.y9b{bottom:634.509812pt;}
.y51{bottom:637.850611pt;}
.y2a{bottom:638.145811pt;}
.yc6{bottom:647.262807pt;}
.y75{bottom:651.980339pt;}
.y9a{bottom:655.985404pt;}
.y50{bottom:659.109402pt;}
.y29{bottom:659.385802pt;}
.yc5{bottom:664.626534pt;}
.y74{bottom:673.747263pt;}
.y99{bottom:677.460995pt;}
.y4f{bottom:680.368194pt;}
.y28{bottom:680.626994pt;}
.yc4{bottom:681.995877pt;}
.y73{bottom:695.512188pt;}
.y98{bottom:698.936587pt;}
.yc3{bottom:699.361470pt;}
.y4e{bottom:701.626985pt;}
.y27{bottom:701.866985pt;}
.y6{bottom:710.273515pt;}
.yc2{bottom:716.730904pt;}
.y72{bottom:717.277113pt;}
.y97{bottom:720.412178pt;}
.y4d{bottom:722.885777pt;}
.y26{bottom:723.108177pt;}
.y5{bottom:731.513507pt;}
.yc1{bottom:734.095964pt;}
.y71{bottom:739.044037pt;}
.y96{bottom:741.887769pt;}
.y4c{bottom:744.144568pt;}
.y25{bottom:744.348168pt;}
.yc0{bottom:751.465307pt;}
.y4{bottom:752.754698pt;}
.y70{bottom:760.809628pt;}
.y95{bottom:763.364027pt;}
.y4b{bottom:765.403360pt;}
.y24{bottom:765.570293pt;}
.ybf{bottom:768.830367pt;}
.y6f{bottom:782.575220pt;}
.ybe{bottom:786.197260pt;}
.y4a{bottom:786.662151pt;}
.y23{bottom:786.811485pt;}
.ybd{bottom:803.567853pt;}
.y6e{bottom:804.342144pt;}
.y94{bottom:806.362010pt;}
.y49{bottom:807.920943pt;}
.y22{bottom:808.051476pt;}
.ybc{bottom:820.932246pt;}
.y6d{bottom:826.107736pt;}
.y48{bottom:829.180934pt;}
.y21{bottom:829.293334pt;}
.y3{bottom:835.485332pt;}
.ybb{bottom:838.301056pt;}
.y6c{bottom:847.880927pt;}
.y93{bottom:849.332660pt;}
.y47{bottom:850.439726pt;}
.y20{bottom:850.527993pt;}
.yba{bottom:855.666649pt;}
.y6b{bottom:869.646518pt;}
.y92{bottom:870.808251pt;}
.y46{bottom:871.698517pt;}
.y1f{bottom:871.758784pt;}
.yb9{bottom:873.035992pt;}
.yb8{bottom:890.401052pt;}
.y6a{bottom:891.413443pt;}
.y91{bottom:892.283843pt;}
.y45{bottom:892.957309pt;}
.y1e{bottom:892.998776pt;}
.y1b{bottom:905.453037pt;}
.yb7{bottom:907.770445pt;}
.y69{bottom:913.178367pt;}
.y90{bottom:913.759434pt;}
.y44{bottom:914.191700pt;}
.y1d{bottom:914.239967pt;}
.yb6{bottom:925.136038pt;}
.y68{bottom:934.945692pt;}
.y8f{bottom:935.235025pt;}
.y43{bottom:935.450492pt;}
.yb5{bottom:942.502889pt;}
.y42{bottom:956.709283pt;}
.y1c{bottom:956.710617pt;}
.yb4{bottom:959.867949pt;}
.y2{bottom:997.951934pt;}
.yd1{bottom:1002.251840pt;}
.yb3{bottom:1002.252740pt;}
.y41{bottom:1002.253265pt;}
.h10{height:50.570834pt;}
.h4{height:51.884293pt;}
.hf{height:51.899293pt;}
.he{height:51.901793pt;}
.h5{height:61.040577pt;}
.h11{height:61.046277pt;}
.h2{height:67.144437pt;}
.hc{height:67.159904pt;}
.h7{height:67.165770pt;}
.h6{height:67.181237pt;}
.hb{height:67.186570pt;}
.ha{height:67.187637pt;}
.h8{height:67.220704pt;}
.h9{height:67.349237pt;}
.hd{height:67.561504pt;}
.h3{height:73.248792pt;}
.h1{height:1119.924800pt;}
.h0{height:1122.666667pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:104.990091pt;}
.xb{left:121.324885pt;}
.x5{left:137.739812pt;}
.x3{left:139.007944pt;}
.x7{left:142.322610pt;}
.x10{left:143.758609pt;}
.xc{left:158.655937pt;}
.x4{left:181.054194pt;}
.xf{left:188.982218pt;}
.x1{left:194.363922pt;}
.x11{left:205.319918pt;}
.xa{left:225.328993pt;}
.x2{left:315.321207pt;}
.xe{left:337.666532pt;}
.x6{left:366.958520pt;}
.x9{left:371.759318pt;}
.xd{left:647.261074pt;}
}




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