
    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_5a00eef1e38da47d1806cd54.woff')format("woff");}.ff1{font-family:ff1;line-height:0.902344;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_620ff7b7c8140edec9d2988b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_d6a814365d232f790566d139.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_0bf03d88f6705a6a4ccc409f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.866211;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_add09a1df0156aab6c8dc38b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.931152;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v2{vertical-align:23.976000px;}
.ls8{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000600px;}
.ls15{letter-spacing:0.004800px;}
.ls16{letter-spacing:0.005400px;}
.ls13{letter-spacing:0.012600px;}
.ls1e{letter-spacing:0.016200px;}
.ls1d{letter-spacing:0.016800px;}
.ls17{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.030000px;}
.ls14{letter-spacing:0.030600px;}
.ls3{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.315600px;}
.ls1c{letter-spacing:0.330000px;}
.ls2{letter-spacing:3.000000px;}
.ls1a{letter-spacing:3.302400px;}
.ls18{letter-spacing:3.875400px;}
.lsc{letter-spacing:4.197333px;}
.ls9{letter-spacing:4.200000px;}
.lsd{letter-spacing:4.210000px;}
.lsb{letter-spacing:5.400000px;}
.lsa{letter-spacing:5.413333px;}
.lsf{letter-spacing:5.667600px;}
.ls0{letter-spacing:6.600000px;}
.ls6{letter-spacing:6.607800px;}
.ls5{letter-spacing:7.860000px;}
.ls20{letter-spacing:8.400000px;}
.ls11{letter-spacing:8.411400px;}
.ls7{letter-spacing:9.525000px;}
.ls10{letter-spacing:10.434600px;}
.ls1{letter-spacing:10.800000px;}
.lse{letter-spacing:11.016000px;}
.ls4{letter-spacing:11.952000px;}
.ls21{letter-spacing:19.800000px;}
.ls1f{letter-spacing:192.360000px;}
.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;}
}
.wsb{word-spacing:-36.102000px;}
.ws1{word-spacing:-32.184000px;}
.wsa{word-spacing:-29.148000px;}
.ws8{word-spacing:-25.146000px;}
.ws6{word-spacing:-20.232000px;}
.wsc{word-spacing:-19.860000px;}
.ws9{word-spacing:-18.546000px;}
.ws7{word-spacing:-17.784000px;}
.ws4{word-spacing:-16.860000px;}
.ws5{word-spacing:-11.795256px;}
.ws2{word-spacing:-0.072000px;}
.ws0{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
._22{margin-left:-19.800000px;}
._10{margin-left:-18.503400px;}
._1a{margin-left:-14.798400px;}
._1d{margin-left:-13.377333px;}
._11{margin-left:-12.280200px;}
._8{margin-left:-10.692000px;}
._6{margin-left:-9.504000px;}
._7{margin-left:-8.100000px;}
._3{margin-left:-6.480000px;}
._19{margin-left:-5.467200px;}
._a{margin-left:-4.428000px;}
._14{margin-left:-3.276000px;}
._b{margin-left:-2.274000px;}
._1{margin-left:-1.134000px;}
._4{width:1.350000px;}
._c{width:2.742000px;}
._13{width:4.576667px;}
._1b{width:5.634000px;}
._15{width:6.696000px;}
._12{width:7.920000px;}
._f{width:9.708000px;}
._9{width:10.936667px;}
._d{width:12.786000px;}
._e{width:14.088000px;}
._1e{width:18.774000px;}
._20{width:20.678133px;}
._16{width:21.967333px;}
._1f{width:23.436000px;}
._17{width:24.948000px;}
._18{width:32.760000px;}
._23{width:41.421000px;}
._1c{width:57.720420px;}
._0{width:68.706000px;}
._2{width:369.208200px;}
._5{width:738.306000px;}
._21{width:1013.116200px;}
.fc3{color:rgb(68,57,21);}
.fc2{color:rgb(35,31,32);}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(42,62,146);}
.fc0{color:rgb(73,19,22);}
.fs7{font-size:34.980000px;}
.fs6{font-size:41.976000px;}
.fs5{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y57{bottom:58.081050px;}
.y2{bottom:58.081200px;}
.y27{bottom:58.081350px;}
.y56{bottom:79.381050px;}
.y1{bottom:79.381200px;}
.y26{bottom:79.381350px;}
.y86{bottom:123.404850px;}
.yb0{bottom:125.296950px;}
.y55{bottom:132.554250px;}
.y25{bottom:138.698550px;}
.y85{bottom:145.904850px;}
.y24{bottom:161.198550px;}
.y54{bottom:162.105000px;}
.y84{bottom:168.404850px;}
.yaf{bottom:183.196950px;}
.y23{bottom:183.698550px;}
.y53{bottom:184.605000px;}
.y83{bottom:190.904850px;}
.yae{bottom:202.996950px;}
.y22{bottom:206.198550px;}
.y52{bottom:207.105000px;}
.y82{bottom:213.104850px;}
.yad{bottom:222.796950px;}
.y21{bottom:228.698550px;}
.y51{bottom:229.605000px;}
.y81{bottom:235.304850px;}
.yac{bottom:242.596950px;}
.yd7{bottom:246.405750px;}
.y20{bottom:251.198550px;}
.y50{bottom:252.105000px;}
.y80{bottom:257.504850px;}
.yab{bottom:262.396950px;}
.yd6{bottom:268.905750px;}
.y1f{bottom:273.698550px;}
.y4f{bottom:274.605000px;}
.y7f{bottom:279.704700px;}
.yaa{bottom:282.196950px;}
.yd5{bottom:291.405750px;}
.y1e{bottom:296.198550px;}
.y4e{bottom:297.105000px;}
.y7e{bottom:301.904850px;}
.ya9{bottom:301.996950px;}
.yd4{bottom:313.905750px;}
.y1d{bottom:318.698550px;}
.y4d{bottom:319.605000px;}
.ya8{bottom:321.796950px;}
.y7d{bottom:324.104850px;}
.y1c{bottom:341.198550px;}
.ya7{bottom:341.596950px;}
.y4c{bottom:342.105000px;}
.y7c{bottom:346.304850px;}
.ya6{bottom:361.396950px;}
.y1b{bottom:363.698550px;}
.y4b{bottom:364.605000px;}
.y7b{bottom:368.504850px;}
.yd3{bottom:374.805750px;}
.ya5{bottom:381.196950px;}
.y1a{bottom:386.198550px;}
.y4a{bottom:387.105000px;}
.y7a{bottom:390.704850px;}
.yd2{bottom:392.805750px;}
.ya4{bottom:400.996950px;}
.y19{bottom:408.698550px;}
.y49{bottom:409.605000px;}
.yd1{bottom:410.805750px;}
.y79{bottom:412.904850px;}
.ya3{bottom:420.796950px;}
.y18{bottom:431.198550px;}
.y48{bottom:432.105000px;}
.y78{bottom:435.104850px;}
.ya2{bottom:440.596950px;}
.y17{bottom:453.698550px;}
.y47{bottom:454.605000px;}
.y77{bottom:457.304850px;}
.ya1{bottom:460.396950px;}
.yd0{bottom:468.405750px;}
.y16{bottom:476.198550px;}
.y46{bottom:477.105000px;}
.y76{bottom:479.504850px;}
.ya0{bottom:480.196950px;}
.ycf{bottom:488.205750px;}
.y15{bottom:498.698550px;}
.y45{bottom:499.605000px;}
.y9f{bottom:499.996950px;}
.y75{bottom:501.704850px;}
.yce{bottom:508.005750px;}
.y9e{bottom:519.796950px;}
.y14{bottom:521.198550px;}
.y44{bottom:521.805000px;}
.y74{bottom:523.904850px;}
.ycd{bottom:527.805750px;}
.y9d{bottom:539.596950px;}
.y13{bottom:543.698550px;}
.y43{bottom:544.005000px;}
.y73{bottom:546.104850px;}
.ycc{bottom:547.605750px;}
.y9c{bottom:559.396950px;}
.y12{bottom:566.198550px;}
.y42{bottom:566.205000px;}
.ycb{bottom:567.405750px;}
.y72{bottom:568.304850px;}
.y9b{bottom:579.196950px;}
.yca{bottom:587.205750px;}
.y41{bottom:588.405000px;}
.y11{bottom:588.698550px;}
.y71{bottom:590.504850px;}
.yc9{bottom:607.005750px;}
.y40{bottom:610.605000px;}
.y10{bottom:611.198550px;}
.y70{bottom:612.704850px;}
.y9a{bottom:625.500900px;}
.yc8{bottom:626.805750px;}
.y3f{bottom:632.805000px;}
.yf{bottom:633.698550px;}
.y6f{bottom:634.904850px;}
.yc7{bottom:646.605750px;}
.y3e{bottom:655.005000px;}
.ye{bottom:656.198550px;}
.y6e{bottom:657.104850px;}
.yc6{bottom:666.405750px;}
.y3d{bottom:677.205000px;}
.yd{bottom:678.698550px;}
.y6d{bottom:679.304850px;}
.yc5{bottom:686.205750px;}
.y99{bottom:695.804850px;}
.y3c{bottom:699.405000px;}
.yc{bottom:701.198550px;}
.y6c{bottom:701.504850px;}
.yc4{bottom:706.005750px;}
.y98{bottom:718.304850px;}
.y3b{bottom:721.605000px;}
.yb{bottom:723.698550px;}
.y6b{bottom:723.704850px;}
.yc3{bottom:725.805750px;}
.y97{bottom:740.804850px;}
.y3a{bottom:743.805000px;}
.yc2{bottom:745.605750px;}
.y6a{bottom:745.904850px;}
.ya{bottom:746.198550px;}
.y96{bottom:763.304850px;}
.yc1{bottom:765.405750px;}
.y39{bottom:766.005000px;}
.y69{bottom:768.104850px;}
.y9{bottom:768.698550px;}
.yc0{bottom:785.205750px;}
.y95{bottom:785.804850px;}
.y38{bottom:788.205000px;}
.y68{bottom:790.304850px;}
.ybf{bottom:805.005750px;}
.y94{bottom:808.304850px;}
.y37{bottom:810.405000px;}
.y67{bottom:812.504850px;}
.ybe{bottom:824.805750px;}
.y93{bottom:830.804850px;}
.y36{bottom:832.605000px;}
.y66{bottom:834.704700px;}
.ybd{bottom:844.605750px;}
.y92{bottom:853.304850px;}
.y35{bottom:854.805000px;}
.y65{bottom:856.904850px;}
.y8{bottom:858.698550px;}
.ybc{bottom:864.405750px;}
.y91{bottom:875.804850px;}
.y7{bottom:876.698550px;}
.y34{bottom:877.005000px;}
.y64{bottom:879.104850px;}
.ybb{bottom:884.205750px;}
.y90{bottom:898.304850px;}
.y33{bottom:899.205000px;}
.y63{bottom:901.304850px;}
.yba{bottom:904.005750px;}
.y8f{bottom:920.804850px;}
.y32{bottom:921.405000px;}
.y62{bottom:923.504850px;}
.yb9{bottom:923.805750px;}
.y6{bottom:939.698550px;}
.y8e{bottom:943.304850px;}
.y31{bottom:943.605000px;}
.yb8{bottom:943.605750px;}
.y61{bottom:945.704700px;}
.yb7{bottom:963.405750px;}
.y8d{bottom:965.804850px;}
.y30{bottom:965.805000px;}
.y60{bottom:967.904850px;}
.y5{bottom:972.098550px;}
.yb6{bottom:983.205750px;}
.y8c{bottom:988.304850px;}
.y2f{bottom:988.305000px;}
.y5f{bottom:990.104850px;}
.yb5{bottom:1003.005750px;}
.y8b{bottom:1010.804850px;}
.y2e{bottom:1010.805000px;}
.y5e{bottom:1012.304850px;}
.yb4{bottom:1022.805750px;}
.y8a{bottom:1033.304850px;}
.y2d{bottom:1033.305000px;}
.y5d{bottom:1034.504850px;}
.y89{bottom:1055.804850px;}
.y2c{bottom:1055.805000px;}
.y5c{bottom:1056.704700px;}
.yb3{bottom:1065.105750px;}
.y88{bottom:1078.304850px;}
.y2b{bottom:1078.305000px;}
.y5b{bottom:1078.904850px;}
.yb2{bottom:1096.109700px;}
.y87{bottom:1100.804850px;}
.y2a{bottom:1100.805000px;}
.y5a{bottom:1101.104850px;}
.y4{bottom:1103.002500px;}
.yb1{bottom:1121.309700px;}
.y59{bottom:1123.304850px;}
.y29{bottom:1123.305000px;}
.y3{bottom:1124.302500px;}
.y58{bottom:1176.323550px;}
.y28{bottom:1176.323700px;}
.h9{height:30.967266px;}
.h2{height:43.989258px;}
.hc{height:45.536133px;}
.h3{height:45.852539px;}
.hd{height:49.675781px;}
.h8{height:50.947266px;}
.h4{height:56.041992px;}
.hb{height:57.955078px;}
.h7{height:61.136719px;}
.ha{height:71.326172px;}
.h6{height:74.513672px;}
.h5{height:91.705078px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x3{left:127.558950px;}
.x5{left:148.818900px;}
.x6{left:218.976450px;}
.x2{left:265.747950px;}
.x4{left:317.004300px;}
.x9{left:491.635650px;}
.x8{left:635.468700px;}
.x7{left:644.626950px;}
.xa{left:662.574150px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v2{vertical-align:21.312000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000533pt;}
.ls15{letter-spacing:0.004267pt;}
.ls16{letter-spacing:0.004800pt;}
.ls13{letter-spacing:0.011200pt;}
.ls1e{letter-spacing:0.014400pt;}
.ls1d{letter-spacing:0.014933pt;}
.ls17{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.026667pt;}
.ls14{letter-spacing:0.027200pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.280533pt;}
.ls1c{letter-spacing:0.293333pt;}
.ls2{letter-spacing:2.666667pt;}
.ls1a{letter-spacing:2.935467pt;}
.ls18{letter-spacing:3.444800pt;}
.lsc{letter-spacing:3.730963pt;}
.ls9{letter-spacing:3.733333pt;}
.lsd{letter-spacing:3.742222pt;}
.lsb{letter-spacing:4.800000pt;}
.lsa{letter-spacing:4.811852pt;}
.lsf{letter-spacing:5.037867pt;}
.ls0{letter-spacing:5.866667pt;}
.ls6{letter-spacing:5.873600pt;}
.ls5{letter-spacing:6.986667pt;}
.ls20{letter-spacing:7.466667pt;}
.ls11{letter-spacing:7.476800pt;}
.ls7{letter-spacing:8.466667pt;}
.ls10{letter-spacing:9.275200pt;}
.ls1{letter-spacing:9.600000pt;}
.lse{letter-spacing:9.792000pt;}
.ls4{letter-spacing:10.624000pt;}
.ls21{letter-spacing:17.600000pt;}
.ls1f{letter-spacing:170.986667pt;}
.wsb{word-spacing:-32.090667pt;}
.ws1{word-spacing:-28.608000pt;}
.wsa{word-spacing:-25.909333pt;}
.ws8{word-spacing:-22.352000pt;}
.ws6{word-spacing:-17.984000pt;}
.wsc{word-spacing:-17.653333pt;}
.ws9{word-spacing:-16.485333pt;}
.ws7{word-spacing:-15.808000pt;}
.ws4{word-spacing:-14.986667pt;}
.ws5{word-spacing:-10.484672pt;}
.ws2{word-spacing:-0.064000pt;}
.ws0{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
._22{margin-left:-17.600000pt;}
._10{margin-left:-16.447467pt;}
._1a{margin-left:-13.154133pt;}
._1d{margin-left:-11.890963pt;}
._11{margin-left:-10.915733pt;}
._8{margin-left:-9.504000pt;}
._6{margin-left:-8.448000pt;}
._7{margin-left:-7.200000pt;}
._3{margin-left:-5.760000pt;}
._19{margin-left:-4.859733pt;}
._a{margin-left:-3.936000pt;}
._14{margin-left:-2.912000pt;}
._b{margin-left:-2.021333pt;}
._1{margin-left:-1.008000pt;}
._4{width:1.200000pt;}
._c{width:2.437333pt;}
._13{width:4.068148pt;}
._1b{width:5.008000pt;}
._15{width:5.952000pt;}
._12{width:7.040000pt;}
._f{width:8.629333pt;}
._9{width:9.721481pt;}
._d{width:11.365333pt;}
._e{width:12.522667pt;}
._1e{width:16.688000pt;}
._20{width:18.380563pt;}
._16{width:19.526519pt;}
._1f{width:20.832000pt;}
._17{width:22.176000pt;}
._18{width:29.120000pt;}
._23{width:36.818667pt;}
._1c{width:51.307040pt;}
._0{width:61.072000pt;}
._2{width:328.185067pt;}
._5{width:656.272000pt;}
._21{width:900.547733pt;}
.fs7{font-size:31.093333pt;}
.fs6{font-size:37.312000pt;}
.fs5{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:51.627600pt;}
.y2{bottom:51.627733pt;}
.y27{bottom:51.627867pt;}
.y56{bottom:70.560933pt;}
.y1{bottom:70.561067pt;}
.y26{bottom:70.561200pt;}
.y86{bottom:109.693200pt;}
.yb0{bottom:111.375067pt;}
.y55{bottom:117.826000pt;}
.y25{bottom:123.287600pt;}
.y85{bottom:129.693200pt;}
.y24{bottom:143.287600pt;}
.y54{bottom:144.093333pt;}
.y84{bottom:149.693200pt;}
.yaf{bottom:162.841733pt;}
.y23{bottom:163.287600pt;}
.y53{bottom:164.093333pt;}
.y83{bottom:169.693200pt;}
.yae{bottom:180.441733pt;}
.y22{bottom:183.287600pt;}
.y52{bottom:184.093333pt;}
.y82{bottom:189.426533pt;}
.yad{bottom:198.041733pt;}
.y21{bottom:203.287600pt;}
.y51{bottom:204.093333pt;}
.y81{bottom:209.159867pt;}
.yac{bottom:215.641733pt;}
.yd7{bottom:219.027333pt;}
.y20{bottom:223.287600pt;}
.y50{bottom:224.093333pt;}
.y80{bottom:228.893200pt;}
.yab{bottom:233.241733pt;}
.yd6{bottom:239.027333pt;}
.y1f{bottom:243.287600pt;}
.y4f{bottom:244.093333pt;}
.y7f{bottom:248.626400pt;}
.yaa{bottom:250.841733pt;}
.yd5{bottom:259.027333pt;}
.y1e{bottom:263.287600pt;}
.y4e{bottom:264.093333pt;}
.y7e{bottom:268.359867pt;}
.ya9{bottom:268.441733pt;}
.yd4{bottom:279.027333pt;}
.y1d{bottom:283.287600pt;}
.y4d{bottom:284.093333pt;}
.ya8{bottom:286.041733pt;}
.y7d{bottom:288.093200pt;}
.y1c{bottom:303.287600pt;}
.ya7{bottom:303.641733pt;}
.y4c{bottom:304.093333pt;}
.y7c{bottom:307.826533pt;}
.ya6{bottom:321.241733pt;}
.y1b{bottom:323.287600pt;}
.y4b{bottom:324.093333pt;}
.y7b{bottom:327.559867pt;}
.yd3{bottom:333.160667pt;}
.ya5{bottom:338.841733pt;}
.y1a{bottom:343.287600pt;}
.y4a{bottom:344.093333pt;}
.y7a{bottom:347.293200pt;}
.yd2{bottom:349.160667pt;}
.ya4{bottom:356.441733pt;}
.y19{bottom:363.287600pt;}
.y49{bottom:364.093333pt;}
.yd1{bottom:365.160667pt;}
.y79{bottom:367.026533pt;}
.ya3{bottom:374.041733pt;}
.y18{bottom:383.287600pt;}
.y48{bottom:384.093333pt;}
.y78{bottom:386.759867pt;}
.ya2{bottom:391.641733pt;}
.y17{bottom:403.287600pt;}
.y47{bottom:404.093333pt;}
.y77{bottom:406.493200pt;}
.ya1{bottom:409.241733pt;}
.yd0{bottom:416.360667pt;}
.y16{bottom:423.287600pt;}
.y46{bottom:424.093333pt;}
.y76{bottom:426.226533pt;}
.ya0{bottom:426.841733pt;}
.ycf{bottom:433.960667pt;}
.y15{bottom:443.287600pt;}
.y45{bottom:444.093333pt;}
.y9f{bottom:444.441733pt;}
.y75{bottom:445.959867pt;}
.yce{bottom:451.560667pt;}
.y9e{bottom:462.041733pt;}
.y14{bottom:463.287600pt;}
.y44{bottom:463.826667pt;}
.y74{bottom:465.693200pt;}
.ycd{bottom:469.160667pt;}
.y9d{bottom:479.641733pt;}
.y13{bottom:483.287600pt;}
.y43{bottom:483.560000pt;}
.y73{bottom:485.426533pt;}
.ycc{bottom:486.760667pt;}
.y9c{bottom:497.241733pt;}
.y12{bottom:503.287600pt;}
.y42{bottom:503.293333pt;}
.ycb{bottom:504.360667pt;}
.y72{bottom:505.159867pt;}
.y9b{bottom:514.841733pt;}
.yca{bottom:521.960667pt;}
.y41{bottom:523.026667pt;}
.y11{bottom:523.287600pt;}
.y71{bottom:524.893200pt;}
.yc9{bottom:539.560667pt;}
.y40{bottom:542.760000pt;}
.y10{bottom:543.287600pt;}
.y70{bottom:544.626533pt;}
.y9a{bottom:556.000800pt;}
.yc8{bottom:557.160667pt;}
.y3f{bottom:562.493333pt;}
.yf{bottom:563.287600pt;}
.y6f{bottom:564.359867pt;}
.yc7{bottom:574.760667pt;}
.y3e{bottom:582.226667pt;}
.ye{bottom:583.287600pt;}
.y6e{bottom:584.093200pt;}
.yc6{bottom:592.360667pt;}
.y3d{bottom:601.960000pt;}
.yd{bottom:603.287600pt;}
.y6d{bottom:603.826533pt;}
.yc5{bottom:609.960667pt;}
.y99{bottom:618.493200pt;}
.y3c{bottom:621.693333pt;}
.yc{bottom:623.287600pt;}
.y6c{bottom:623.559867pt;}
.yc4{bottom:627.560667pt;}
.y98{bottom:638.493200pt;}
.y3b{bottom:641.426667pt;}
.yb{bottom:643.287600pt;}
.y6b{bottom:643.293200pt;}
.yc3{bottom:645.160667pt;}
.y97{bottom:658.493200pt;}
.y3a{bottom:661.160000pt;}
.yc2{bottom:662.760667pt;}
.y6a{bottom:663.026533pt;}
.ya{bottom:663.287600pt;}
.y96{bottom:678.493200pt;}
.yc1{bottom:680.360667pt;}
.y39{bottom:680.893333pt;}
.y69{bottom:682.759867pt;}
.y9{bottom:683.287600pt;}
.yc0{bottom:697.960667pt;}
.y95{bottom:698.493200pt;}
.y38{bottom:700.626667pt;}
.y68{bottom:702.493200pt;}
.ybf{bottom:715.560667pt;}
.y94{bottom:718.493200pt;}
.y37{bottom:720.360000pt;}
.y67{bottom:722.226533pt;}
.ybe{bottom:733.160667pt;}
.y93{bottom:738.493200pt;}
.y36{bottom:740.093333pt;}
.y66{bottom:741.959733pt;}
.ybd{bottom:750.760667pt;}
.y92{bottom:758.493200pt;}
.y35{bottom:759.826667pt;}
.y65{bottom:761.693200pt;}
.y8{bottom:763.287600pt;}
.ybc{bottom:768.360667pt;}
.y91{bottom:778.493200pt;}
.y7{bottom:779.287600pt;}
.y34{bottom:779.560000pt;}
.y64{bottom:781.426533pt;}
.ybb{bottom:785.960667pt;}
.y90{bottom:798.493200pt;}
.y33{bottom:799.293333pt;}
.y63{bottom:801.159867pt;}
.yba{bottom:803.560667pt;}
.y8f{bottom:818.493200pt;}
.y32{bottom:819.026667pt;}
.y62{bottom:820.893200pt;}
.yb9{bottom:821.160667pt;}
.y6{bottom:835.287600pt;}
.y8e{bottom:838.493200pt;}
.y31{bottom:838.760000pt;}
.yb8{bottom:838.760667pt;}
.y61{bottom:840.626400pt;}
.yb7{bottom:856.360667pt;}
.y8d{bottom:858.493200pt;}
.y30{bottom:858.493333pt;}
.y60{bottom:860.359867pt;}
.y5{bottom:864.087600pt;}
.yb6{bottom:873.960667pt;}
.y8c{bottom:878.493200pt;}
.y2f{bottom:878.493333pt;}
.y5f{bottom:880.093200pt;}
.yb5{bottom:891.560667pt;}
.y8b{bottom:898.493200pt;}
.y2e{bottom:898.493333pt;}
.y5e{bottom:899.826533pt;}
.yb4{bottom:909.160667pt;}
.y8a{bottom:918.493200pt;}
.y2d{bottom:918.493333pt;}
.y5d{bottom:919.559867pt;}
.y89{bottom:938.493200pt;}
.y2c{bottom:938.493333pt;}
.y5c{bottom:939.293067pt;}
.yb3{bottom:946.760667pt;}
.y88{bottom:958.493200pt;}
.y2b{bottom:958.493333pt;}
.y5b{bottom:959.026533pt;}
.yb2{bottom:974.319733pt;}
.y87{bottom:978.493200pt;}
.y2a{bottom:978.493333pt;}
.y5a{bottom:978.759867pt;}
.y4{bottom:980.446667pt;}
.yb1{bottom:996.719733pt;}
.y59{bottom:998.493200pt;}
.y29{bottom:998.493333pt;}
.y3{bottom:999.380000pt;}
.y58{bottom:1045.620933pt;}
.y28{bottom:1045.621067pt;}
.h9{height:27.526458pt;}
.h2{height:39.101562pt;}
.hc{height:40.476562pt;}
.h3{height:40.757812pt;}
.hd{height:44.156250pt;}
.h8{height:45.286458pt;}
.h4{height:49.815104pt;}
.hb{height:51.515625pt;}
.h7{height:54.343750pt;}
.ha{height:63.401042pt;}
.h6{height:66.234375pt;}
.h5{height:81.515625pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x3{left:113.385733pt;}
.x5{left:132.283467pt;}
.x6{left:194.645733pt;}
.x2{left:236.220400pt;}
.x4{left:281.781600pt;}
.x9{left:437.009467pt;}
.x8{left:564.861067pt;}
.x7{left:573.001733pt;}
.xa{left:588.954800pt;}
}




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