
    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_c7784be00ea89bf3a2fe26ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_3920ca987b7e5435042cc344.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_131165a2387802e539540789.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_3fa5c183887364ef91b133be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_42d3904970b79e48803e4f63.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.904297;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_65306be0a86d20802b895e7a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.867676;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_4a0c0907a295b249fb481ad7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.871094;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_bc437b9dc9520ffba7cb3c3d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-32.399987px;}
.v9{vertical-align:-26.639989px;}
.v7{vertical-align:-14.399994px;}
.v4{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.879999px;}
.v8{vertical-align:17.999993px;}
.v3{vertical-align:32.399987px;}
.v1{vertical-align:34.559986px;}
.vb{vertical-align:57.599977px;}
.va{vertical-align:59.759976px;}
.v6{vertical-align:64.799974px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.046080px;}
.ls4{letter-spacing:0.157680px;}
.ls3{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.542880px;}
.ls5{letter-spacing:94.715962px;}
.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;}
}
.ws47{word-spacing:-66.653253px;}
.ws0{word-spacing:-60.047976px;}
.ws7{word-spacing:-59.718216px;}
.ws3c{word-spacing:-54.185738px;}
.ws40{word-spacing:-43.446223px;}
.ws28{word-spacing:-42.625423px;}
.wse{word-spacing:-36.629265px;}
.ws1e{word-spacing:-32.543987px;}
.ws1b{word-spacing:-30.023988px;}
.ws3f{word-spacing:-28.964148px;}
.ws29{word-spacing:-25.945236px;}
.ws22{word-spacing:-24.407990px;}
.ws30{word-spacing:-16.613273px;}
.ws2d{word-spacing:-11.208956px;}
.ws3b{word-spacing:-2.591999px;}
.ws21{word-spacing:-1.439963px;}
.ws2{word-spacing:-1.330536px;}
.ws9{word-spacing:-1.167788px;}
.ws3{word-spacing:-0.610663px;}
.ws3e{word-spacing:-0.532120px;}
.ws46{word-spacing:-0.349108px;}
.ws4{word-spacing:-0.332634px;}
.wsb{word-spacing:-0.269317px;}
.ws1f{word-spacing:-0.251964px;}
.ws1c{word-spacing:-0.072036px;}
.ws6{word-spacing:0.000000px;}
.ws5{word-spacing:0.109551px;}
.ws14{word-spacing:0.272084px;}
.ws16{word-spacing:0.272216px;}
.ws1{word-spacing:0.387353px;}
.ws11{word-spacing:0.450751px;}
.ws45{word-spacing:0.683194px;}
.ws18{word-spacing:3.131925px;}
.ws36{word-spacing:4.500034px;}
.ws43{word-spacing:4.870783px;}
.ws1a{word-spacing:7.127997px;}
.ws19{word-spacing:7.632033px;}
.ws8{word-spacing:8.370709px;}
.ws24{word-spacing:8.656250px;}
.ws27{word-spacing:11.807851px;}
.ws3a{word-spacing:16.019958px;}
.wsd{word-spacing:16.832202px;}
.ws37{word-spacing:25.199954px;}
.ws39{word-spacing:25.379990px;}
.ws25{word-spacing:25.667810px;}
.ws23{word-spacing:25.972650px;}
.wsc{word-spacing:27.090767px;}
.ws3d{word-spacing:30.070745px;}
.ws20{word-spacing:31.679951px;}
.ws35{word-spacing:45.540018px;}
.wsa{word-spacing:60.032204px;}
.ws12{word-spacing:62.912213px;}
.ws17{word-spacing:66.512158px;}
.ws26{word-spacing:80.640004px;}
.wsf{word-spacing:80.912203px;}
.ws44{word-spacing:82.578197px;}
.ws15{word-spacing:85.952152px;}
.ws10{word-spacing:98.192783px;}
.ws41{word-spacing:137.727986px;}
.ws42{word-spacing:138.018268px;}
.ws1d{word-spacing:145.151872px;}
.ws38{word-spacing:170.820292px;}
.ws13{word-spacing:178.832506px;}
.ws2f{word-spacing:257.600158px;}
.ws2a{word-spacing:333.666839px;}
.ws2c{word-spacing:336.800054px;}
.ws34{word-spacing:372.800061px;}
.ws33{word-spacing:387.199825px;}
.ws2b{word-spacing:395.119815px;}
.ws2e{word-spacing:403.759912px;}
.ws32{word-spacing:405.200128px;}
.ws31{word-spacing:410.240284px;}
._1{margin-left:-16.127539px;}
._b{margin-left:-13.524427px;}
._2{margin-left:-12.239925px;}
._5{margin-left:-7.848419px;}
._14{margin-left:-5.795990px;}
._0{margin-left:-4.319630px;}
._17{margin-left:-3.275914px;}
._8{margin-left:-2.195857px;}
._3{margin-left:-1.078948px;}
._4{width:1.007860px;}
._1c{width:4.517400px;}
._1a{width:19.045926px;}
._16{width:22.824004px;}
._18{width:24.733411px;}
._1b{width:27.647343px;}
._10{width:30.561587px;}
._7{width:32.112007px;}
._6{width:33.780876px;}
._d{width:36.604211px;}
._a{width:37.949916px;}
._1d{width:44.324865px;}
._9{width:46.103703px;}
._19{width:50.766569px;}
._c{width:54.669136px;}
._11{width:76.977973px;}
._20{width:89.782033px;}
._13{width:104.163952px;}
._e{width:119.265322px;}
._12{width:124.070395px;}
._1f{width:127.239561px;}
._f{width:135.857383px;}
._15{width:169.019932px;}
._1e{width:182.866022px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,32,96);}
.fsa{font-size:40.319984px;}
.fs9{font-size:59.759976px;}
.fs3{font-size:71.999971px;}
.fs2{font-size:76.319969px;}
.fs8{font-size:84.239966px;}
.fs4{font-size:107.999957px;}
.fs1{font-size:113.759954px;}
.fse{font-size:128.159949px;}
.fs6{font-size:131.759947px;}
.fs7{font-size:143.999942px;}
.fsd{font-size:192.239923px;}
.fsb{font-size:197.999921px;}
.fs0{font-size:215.999914px;}
.fsc{font-size:239.759904px;}
.fs5{font-size:264.239894px;}
.y0{bottom:0.000000px;}
.y3e{bottom:90.060321px;}
.y1b{bottom:116.880310px;}
.y3d{bottom:122.460308px;}
.y7{bottom:123.900307px;}
.y52{bottom:131.100305px;}
.y22{bottom:137.580302px;}
.y5a{bottom:143.340300px;}
.y1a{bottom:148.560298px;}
.y3c{bottom:154.860295px;}
.y6{bottom:159.540293px;}
.y51{bottom:165.120291px;}
.y59{bottom:168.360290px;}
.y21{bottom:176.460286px;}
.y4f{bottom:182.040284px;}
.y3b{bottom:187.260282px;}
.y4d{bottom:194.640279px;}
.y4b{bottom:203.100276px;}
.y5{bottom:212.460272px;}
.y3a{bottom:219.660269px;}
.y58{bottom:220.200269px;}
.y28{bottom:221.280268px;}
.y19{bottom:227.760266px;}
.y26{bottom:237.480262px;}
.y27{bottom:253.680256px;}
.y20{bottom:254.220255px;}
.y4e{bottom:258.720254px;}
.y18{bottom:259.440253px;}
.y57{bottom:272.040248px;}
.y4c{bottom:284.100243px;}
.y1f{bottom:286.620242px;}
.y39{bottom:292.560240px;}
.y38{bottom:316.860230px;}
.y56{bottom:323.880227px;}
.y1e{bottom:325.500227px;}
.y50{bottom:326.760226px;}
.y17{bottom:338.640222px;}
.y37{bottom:349.260217px;}
.y4{bottom:350.160217px;}
.y2c{bottom:360.960213px;}
.y16{bottom:370.320209px;}
.y55{bottom:375.720207px;}
.yf{bottom:376.440206px;}
.y2b{bottom:387.780202px;}
.y36{bottom:388.140202px;}
.y15{bottom:402.000196px;}
.y1d{bottom:405.960195px;}
.y3{bottom:414.960191px;}
.ye{bottom:416.040191px;}
.y35{bottom:419.280189px;}
.y2a{bottom:420.180189px;}
.y14{bottom:441.600180px;}
.y49{bottom:442.680180px;}
.y1c{bottom:448.080178px;}
.y34{bottom:450.420177px;}
.y29{bottom:452.580176px;}
.yd{bottom:455.640175px;}
.y45{bottom:459.780173px;}
.y2{bottom:479.760165px;}
.y33{bottom:481.020165px;}
.y44{bottom:484.980163px;}
.y54{bottom:502.440156px;}
.yc{bottom:503.160156px;}
.y4a{bottom:508.200154px;}
.y43{bottom:510.180153px;}
.y32{bottom:511.440152px;}
.y13{bottom:520.800149px;}
.y42{bottom:537.000142px;}
.y31{bottom:541.860140px;}
.yb{bottom:542.760140px;}
.y1{bottom:544.560139px;}
.y12{bottom:552.480136px;}
.y53{bottom:554.280135px;}
.y41{bottom:569.400129px;}
.y30{bottom:572.280128px;}
.y23{bottom:577.320126px;}
.y11{bottom:584.160123px;}
.ya{bottom:590.280121px;}
.y40{bottom:601.800116px;}
.y2f{bottom:602.700116px;}
.y10{bottom:623.760107px;}
.y9{bottom:629.880105px;}
.y2e{bottom:633.120104px;}
.y3f{bottom:634.200103px;}
.y2d{bottom:663.540092px;}
.y25{bottom:706.020075px;}
.y47{bottom:722.400068px;}
.y48{bottom:729.240065px;}
.y8{bottom:729.420065px;}
.y46{bottom:771.000049px;}
.y24{bottom:772.440048px;}
.hd{height:52.277323px;}
.he{height:58.367438px;}
.hb{height:58.573102px;}
.hc{height:62.327788px;}
.h9{height:78.415984px;}
.h3{height:80.240593px;}
.ha{height:84.677310px;}
.h6{height:112.640580px;}
.h2{height:118.648078px;}
.h5{height:137.421508px;}
.h14{height:158.541616px;}
.hf{height:163.291927px;}
.h13{height:163.294388px;}
.h10{height:168.423331px;}
.h7{height:178.136647px;}
.h8{height:183.557739px;}
.h11{height:197.731679px;}
.h12{height:200.500232px;}
.h4{height:217.920499px;}
.h1{height:225.281160px;}
.h15{height:250.062087px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x10{left:131.926447px;}
.x12{left:140.385844px;}
.x9{left:156.226438px;}
.x5{left:165.946434px;}
.x11{left:172.426431px;}
.xa{left:196.726421px;}
.x1{left:207.706417px;}
.xe{left:211.486415px;}
.xc{left:235.246406px;}
.xd{left:245.326402px;}
.x2{left:246.586401px;}
.x15{left:293.566383px;}
.x3{left:340.006364px;}
.xb{left:357.286357px;}
.x1c{left:366.286353px;}
.xf{left:367.366353px;}
.x1e{left:378.526349px;}
.x24{left:379.786348px;}
.x14{left:396.706341px;}
.x13{left:416.146334px;}
.x4{left:420.106332px;}
.x1b{left:433.786326px;}
.x21{left:439.366324px;}
.x25{left:455.566318px;}
.x8{left:461.326315px;}
.x26{left:479.686308px;}
.x7{left:484.006306px;}
.x6{left:493.006303px;}
.x16{left:582.646267px;}
.x19{left:599.746260px;}
.x17{left:637.546245px;}
.x18{left:641.326243px;}
.x1f{left:666.346233px;}
.x1d{left:703.066219px;}
.x22{left:754.006198px;}
.x23{left:873.166151px;}
.x1a{left:905.926138px;}
.x20{left:915.646134px;}
@media print{
.v2{vertical-align:-28.799988pt;}
.v9{vertical-align:-23.679991pt;}
.v7{vertical-align:-12.799995pt;}
.v4{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.559999pt;}
.v8{vertical-align:15.999994pt;}
.v3{vertical-align:28.799988pt;}
.v1{vertical-align:30.719988pt;}
.vb{vertical-align:51.199980pt;}
.va{vertical-align:53.119979pt;}
.v6{vertical-align:57.599977pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.040960pt;}
.ls4{letter-spacing:0.140160pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.482560pt;}
.ls5{letter-spacing:84.191966pt;}
.ws47{word-spacing:-59.247336pt;}
.ws0{word-spacing:-53.375979pt;}
.ws7{word-spacing:-53.082859pt;}
.ws3c{word-spacing:-48.165101pt;}
.ws40{word-spacing:-38.618865pt;}
.ws28{word-spacing:-37.889265pt;}
.wse{word-spacing:-32.559347pt;}
.ws1e{word-spacing:-28.927988pt;}
.ws1b{word-spacing:-26.687989pt;}
.ws3f{word-spacing:-25.745910pt;}
.ws29{word-spacing:-23.062432pt;}
.ws22{word-spacing:-21.695991pt;}
.ws30{word-spacing:-14.767354pt;}
.ws2d{word-spacing:-9.963516pt;}
.ws3b{word-spacing:-2.303999pt;}
.ws21{word-spacing:-1.279967pt;}
.ws2{word-spacing:-1.182699pt;}
.ws9{word-spacing:-1.038034pt;}
.ws3{word-spacing:-0.542812pt;}
.ws3e{word-spacing:-0.472996pt;}
.ws46{word-spacing:-0.310318pt;}
.ws4{word-spacing:-0.295675pt;}
.wsb{word-spacing:-0.239393pt;}
.ws1f{word-spacing:-0.223968pt;}
.ws1c{word-spacing:-0.064032pt;}
.ws6{word-spacing:0.000000pt;}
.ws5{word-spacing:0.097379pt;}
.ws14{word-spacing:0.241853pt;}
.ws16{word-spacing:0.241970pt;}
.ws1{word-spacing:0.344313pt;}
.ws11{word-spacing:0.400667pt;}
.ws45{word-spacing:0.607283pt;}
.ws18{word-spacing:2.783933pt;}
.ws36{word-spacing:4.000030pt;}
.ws43{word-spacing:4.329585pt;}
.ws1a{word-spacing:6.335997pt;}
.ws19{word-spacing:6.784029pt;}
.ws8{word-spacing:7.440631pt;}
.ws24{word-spacing:7.694444pt;}
.ws27{word-spacing:10.495868pt;}
.ws3a{word-spacing:14.239962pt;}
.wsd{word-spacing:14.961957pt;}
.ws37{word-spacing:22.399959pt;}
.ws39{word-spacing:22.559991pt;}
.ws25{word-spacing:22.815831pt;}
.ws23{word-spacing:23.086800pt;}
.wsc{word-spacing:24.080682pt;}
.ws3d{word-spacing:26.729552pt;}
.ws20{word-spacing:28.159957pt;}
.ws35{word-spacing:40.480016pt;}
.wsa{word-spacing:53.361959pt;}
.ws12{word-spacing:55.921967pt;}
.ws17{word-spacing:59.121918pt;}
.ws26{word-spacing:71.680003pt;}
.wsf{word-spacing:71.921958pt;}
.ws44{word-spacing:73.402842pt;}
.ws15{word-spacing:76.401913pt;}
.ws10{word-spacing:87.282474pt;}
.ws41{word-spacing:122.424876pt;}
.ws42{word-spacing:122.682905pt;}
.ws1d{word-spacing:129.023886pt;}
.ws38{word-spacing:151.840259pt;}
.ws13{word-spacing:158.962228pt;}
.ws2f{word-spacing:228.977918pt;}
.ws2a{word-spacing:296.592745pt;}
.ws2c{word-spacing:299.377826pt;}
.ws34{word-spacing:331.377832pt;}
.ws33{word-spacing:344.177622pt;}
.ws2b{word-spacing:351.217613pt;}
.ws2e{word-spacing:358.897700pt;}
.ws32{word-spacing:360.177891pt;}
.ws31{word-spacing:364.658030pt;}
._1{margin-left:-14.335590pt;}
._b{margin-left:-12.021713pt;}
._2{margin-left:-10.879933pt;}
._5{margin-left:-6.976372pt;}
._14{margin-left:-5.151992pt;}
._0{margin-left:-3.839671pt;}
._17{margin-left:-2.911923pt;}
._8{margin-left:-1.951873pt;}
._3{margin-left:-0.959065pt;}
._4{width:0.895875pt;}
._1c{width:4.015467pt;}
._1a{width:16.929712pt;}
._16{width:20.288003pt;}
._18{width:21.985255pt;}
._1b{width:24.575416pt;}
._10{width:27.165855pt;}
._7{width:28.544006pt;}
._6{width:30.027446pt;}
._d{width:32.537077pt;}
._a{width:33.733259pt;}
._1d{width:39.399880pt;}
._9{width:40.981069pt;}
._19{width:45.125839pt;}
._c{width:48.594787pt;}
._11{width:68.424865pt;}
._20{width:79.806251pt;}
._13{width:92.590179pt;}
._e{width:106.013619pt;}
._12{width:110.284796pt;}
._1f{width:113.101832pt;}
._f{width:120.762118pt;}
._15{width:150.239940pt;}
._1e{width:162.547575pt;}
.fsa{font-size:35.839986pt;}
.fs9{font-size:53.119979pt;}
.fs3{font-size:63.999974pt;}
.fs2{font-size:67.839973pt;}
.fs8{font-size:74.879970pt;}
.fs4{font-size:95.999962pt;}
.fs1{font-size:101.119960pt;}
.fse{font-size:113.919954pt;}
.fs6{font-size:117.119953pt;}
.fs7{font-size:127.999949pt;}
.fsd{font-size:170.879932pt;}
.fsb{font-size:175.999930pt;}
.fs0{font-size:191.999923pt;}
.fsc{font-size:213.119915pt;}
.fs5{font-size:234.879906pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:80.053619pt;}
.y1b{bottom:103.893609pt;}
.y3d{bottom:108.853607pt;}
.y7{bottom:110.133607pt;}
.y52{bottom:116.533604pt;}
.y22{bottom:122.293602pt;}
.y5a{bottom:127.413600pt;}
.y1a{bottom:132.053598pt;}
.y3c{bottom:137.653596pt;}
.y6{bottom:141.813594pt;}
.y51{bottom:146.773592pt;}
.y59{bottom:149.653591pt;}
.y21{bottom:156.853588pt;}
.y4f{bottom:161.813586pt;}
.y3b{bottom:166.453584pt;}
.y4d{bottom:173.013581pt;}
.y4b{bottom:180.533578pt;}
.y5{bottom:188.853575pt;}
.y3a{bottom:195.253573pt;}
.y58{bottom:195.733572pt;}
.y28{bottom:196.693572pt;}
.y19{bottom:202.453570pt;}
.y26{bottom:211.093566pt;}
.y27{bottom:225.493560pt;}
.y20{bottom:225.973560pt;}
.y4e{bottom:229.973559pt;}
.y18{bottom:230.613558pt;}
.y57{bottom:241.813554pt;}
.y4c{bottom:252.533550pt;}
.y1f{bottom:254.773549pt;}
.y39{bottom:260.053547pt;}
.y38{bottom:281.653538pt;}
.y56{bottom:287.893536pt;}
.y1e{bottom:289.333535pt;}
.y50{bottom:290.453534pt;}
.y17{bottom:301.013530pt;}
.y37{bottom:310.453526pt;}
.y4{bottom:311.253526pt;}
.y2c{bottom:320.853522pt;}
.y16{bottom:329.173519pt;}
.y55{bottom:333.973517pt;}
.yf{bottom:334.613517pt;}
.y2b{bottom:344.693513pt;}
.y36{bottom:345.013513pt;}
.y15{bottom:357.333508pt;}
.y1d{bottom:360.853506pt;}
.y3{bottom:368.853503pt;}
.ye{bottom:369.813503pt;}
.y35{bottom:372.693502pt;}
.y2a{bottom:373.493501pt;}
.y14{bottom:392.533494pt;}
.y49{bottom:393.493493pt;}
.y1c{bottom:398.293491pt;}
.y34{bottom:400.373491pt;}
.y29{bottom:402.293490pt;}
.yd{bottom:405.013489pt;}
.y45{bottom:408.693487pt;}
.y2{bottom:426.453480pt;}
.y33{bottom:427.573480pt;}
.y44{bottom:431.093478pt;}
.y54{bottom:446.613472pt;}
.yc{bottom:447.253472pt;}
.y4a{bottom:451.733470pt;}
.y43{bottom:453.493469pt;}
.y32{bottom:454.613469pt;}
.y13{bottom:462.933465pt;}
.y42{bottom:477.333460pt;}
.y31{bottom:481.653458pt;}
.yb{bottom:482.453458pt;}
.y1{bottom:484.053457pt;}
.y12{bottom:491.093454pt;}
.y53{bottom:492.693454pt;}
.y41{bottom:506.133448pt;}
.y30{bottom:508.693447pt;}
.y23{bottom:513.173445pt;}
.y11{bottom:519.253443pt;}
.ya{bottom:524.693441pt;}
.y40{bottom:534.933437pt;}
.y2f{bottom:535.733436pt;}
.y10{bottom:554.453429pt;}
.y9{bottom:559.893427pt;}
.y2e{bottom:562.773426pt;}
.y3f{bottom:563.733425pt;}
.y2d{bottom:589.813415pt;}
.y25{bottom:627.573400pt;}
.y47{bottom:642.133394pt;}
.y48{bottom:648.213391pt;}
.y8{bottom:648.373391pt;}
.y46{bottom:685.333377pt;}
.y24{bottom:686.613376pt;}
.hd{height:46.468731pt;}
.he{height:51.882167pt;}
.hb{height:52.064979pt;}
.hc{height:55.402478pt;}
.h9{height:69.703097pt;}
.h3{height:71.324971pt;}
.ha{height:75.268720pt;}
.h6{height:100.124960pt;}
.h2{height:105.464958pt;}
.h5{height:122.152451pt;}
.h14{height:140.925881pt;}
.hf{height:145.148379pt;}
.h13{height:145.150567pt;}
.h10{height:149.709628pt;}
.h7{height:158.343687pt;}
.h8{height:163.162435pt;}
.h11{height:175.761492pt;}
.h12{height:178.222429pt;}
.h4{height:193.707110pt;}
.h1{height:200.249920pt;}
.h15{height:222.277411pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x10{left:117.267953pt;}
.x12{left:124.787417pt;}
.x9{left:138.867944pt;}
.x5{left:147.507941pt;}
.x11{left:153.267939pt;}
.xa{left:174.867930pt;}
.x1{left:184.627926pt;}
.xe{left:187.987925pt;}
.xc{left:209.107916pt;}
.xd{left:218.067913pt;}
.x2{left:219.187912pt;}
.x15{left:260.947896pt;}
.x3{left:302.227879pt;}
.xb{left:317.587873pt;}
.x1c{left:325.587870pt;}
.xf{left:326.547869pt;}
.x1e{left:336.467865pt;}
.x24{left:337.587865pt;}
.x14{left:352.627859pt;}
.x13{left:369.907852pt;}
.x4{left:373.427851pt;}
.x1b{left:385.587846pt;}
.x21{left:390.547844pt;}
.x25{left:404.947838pt;}
.x8{left:410.067836pt;}
.x26{left:426.387829pt;}
.x7{left:430.227828pt;}
.x6{left:438.227825pt;}
.x16{left:517.907793pt;}
.x19{left:533.107787pt;}
.x17{left:566.707773pt;}
.x18{left:570.067772pt;}
.x1f{left:592.307763pt;}
.x1d{left:624.947750pt;}
.x22{left:670.227732pt;}
.x23{left:776.147690pt;}
.x1a{left:805.267678pt;}
.x20{left:813.907674pt;}
}




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