
    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_4af5f085ee5a5377130db62e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_bc241c7323184e0e34963732.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_416b09d5f3fb75f88c298d8a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.453000;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_27b2c925ffe9614bb765aa20.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_edd4cdbb5ac46aea22fbbe6d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_ecdec7c6961c4a8232379796.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_a4fc18c7b4aee4d0fefad987.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_bf45fd5089de0d3ec99b979e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;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:ff9;src:url('chunks/assets/font_c9cf793affab4ddfbe9111b9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.389000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.754000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.986053px;}
.ls7{letter-spacing:28.472751px;}
.ls4{letter-spacing:30.043661px;}
.ls5{letter-spacing:31.025480px;}
.ls6{letter-spacing:31.156390px;}
.ls9{letter-spacing:31.614572px;}
.ls2{letter-spacing:32.727300px;}
.ls8{letter-spacing:33.643664px;}
.ls3{letter-spacing:35.214575px;}
.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;}
}
.ws13{word-spacing:-18.183288px;}
.ws2e{word-spacing:-3.586912px;}
.ws2d{word-spacing:-2.736002px;}
.ws30{word-spacing:-2.605093px;}
.ws15{word-spacing:-1.950547px;}
.ws46{word-spacing:-1.754183px;}
.ws44{word-spacing:-1.165092px;}
.ws43{word-spacing:-1.099637px;}
.ws39{word-spacing:-0.117818px;}
.ws8{word-spacing:-0.071731px;}
.ws20{word-spacing:-0.065455px;}
.ws7{word-spacing:0.000000px;}
.ws34{word-spacing:0.274909px;}
.ws21{word-spacing:0.340364px;}
.ws1f{word-spacing:0.733092px;}
.ws26{word-spacing:1.125819px;}
.wsc{word-spacing:1.453092px;}
.ws3f{word-spacing:1.518547px;}
.ws4e{word-spacing:1.584001px;}
.ws42{word-spacing:1.780365px;}
.ws3c{word-spacing:1.911274px;}
.ws37{word-spacing:1.976729px;}
.ws2b{word-spacing:2.500366px;}
.ws10{word-spacing:2.631275px;}
.ws3e{word-spacing:2.827639px;}
.ws45{word-spacing:2.958548px;}
.ws2f{word-spacing:3.154912px;}
.ws50{word-spacing:3.299613px;}
.ws52{word-spacing:3.359389px;}
.ws5{word-spacing:3.613094px;}
.ws3d{word-spacing:3.678549px;}
.ws1e{word-spacing:3.874912px;}
.ws19{word-spacing:3.940367px;}
.wsa{word-spacing:4.162913px;}
.ws18{word-spacing:4.202185px;}
.wsb{word-spacing:4.333095px;}
.ws12{word-spacing:4.987641px;}
.ws2c{word-spacing:5.249459px;}
.ws11{word-spacing:5.511277px;}
.ws33{word-spacing:5.773096px;}
.ws36{word-spacing:6.034914px;}
.ws1b{word-spacing:6.165823px;}
.wsd{word-spacing:6.296733px;}
.ws4f{word-spacing:6.493096px;}
.ws1a{word-spacing:6.624006px;}
.ws4d{word-spacing:6.689460px;}
.ws48{word-spacing:6.754915px;}
.ws35{word-spacing:6.912006px;}
.ws49{word-spacing:7.082188px;}
.wse{word-spacing:7.147642px;}
.ws4b{word-spacing:7.540370px;}
.wsf{word-spacing:7.671279px;}
.ws2a{word-spacing:7.867643px;}
.ws1c{word-spacing:8.391280px;}
.ws4c{word-spacing:8.718553px;}
.ws4a{word-spacing:9.569463px;}
.ws31{word-spacing:10.354918px;}
.ws41{word-spacing:10.420372px;}
.ws6{word-spacing:10.878555px;}
.ws28{word-spacing:11.140373px;}
.ws1d{word-spacing:12.907647px;}
.ws17{word-spacing:13.300375px;}
.ws24{word-spacing:13.365829px;}
.ws38{word-spacing:13.889466px;}
.ws3a{word-spacing:14.151285px;}
.ws16{word-spacing:15.264013px;}
.ws23{word-spacing:15.290195px;}
.ws51{word-spacing:21.339889px;}
.ws3{word-spacing:26.253619px;}
.ws22{word-spacing:26.827469px;}
.ws3b{word-spacing:28.800024px;}
.ws27{word-spacing:30.632753px;}
.ws0{word-spacing:31.322414px;}
.ws4{word-spacing:31.504255px;}
.ws25{word-spacing:32.269118px;}
.ws32{word-spacing:32.334572px;}
.ws29{word-spacing:32.661845px;}
.ws47{word-spacing:33.250937px;}
.ws40{word-spacing:36.654576px;}
.ws9{word-spacing:39.639306px;}
.ws2{word-spacing:54.283749px;}
.ws1{word-spacing:54.432472px;}
.ws14{word-spacing:80.625869px;}
._f{margin-left:-5.889125px;}
._0{margin-left:-4.461678px;}
._1c{margin-left:-3.400061px;}
._1{margin-left:-2.223667px;}
._e{margin-left:-1.049063px;}
._14{width:1.176394px;}
._2{width:2.223667px;}
._20{width:4.578244px;}
._1a{width:6.483584px;}
._1f{width:17.476378px;}
._23{width:19.503682px;}
._15{width:24.216413px;}
._10{width:25.789112px;}
._12{width:27.225535px;}
._13{width:29.190962px;}
._22{width:30.500054px;}
._1e{width:31.881758px;}
._16{width:34.752814px;}
._24{width:35.800088px;}
._11{width:36.981849px;}
._25{width:38.481937px;}
._26{width:45.291005px;}
._21{width:49.416434px;}
._1d{width:50.619725px;}
._18{width:57.207320px;}
._17{width:58.514623px;}
._6{width:60.545505px;}
._4{width:66.894601px;}
._19{width:75.272790px;}
._1b{width:80.697600px;}
._c{width:1156.713691px;}
._b{width:1175.299219px;}
._a{width:1218.697408px;}
._9{width:1301.499266px;}
._8{width:1383.579335px;}
._7{width:1671.646819px;}
._5{width:1727.937775px;}
._3{width:2079.361733px;}
._d{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y2c{bottom:93.813000px;}
.y2b{bottom:176.005500px;}
.y2a{bottom:196.329000px;}
.y70{bottom:201.061500px;}
.y4e{bottom:202.237500px;}
.y29{bottom:216.652500px;}
.y6f{bottom:221.386500px;}
.y4d{bottom:222.561000px;}
.y28{bottom:236.976000px;}
.y4c{bottom:242.884500px;}
.y6e{bottom:248.434500px;}
.y27{bottom:257.301000px;}
.y6d{bottom:268.758000px;}
.y4b{bottom:276.658500px;}
.y26{bottom:277.624500px;}
.y6c{bottom:289.081500px;}
.y4a{bottom:296.982000px;}
.y25{bottom:297.948000px;}
.y49{bottom:317.305500px;}
.y24{bottom:318.271500px;}
.y6b{bottom:322.855500px;}
.y23{bottom:338.595000px;}
.y6a{bottom:343.179000px;}
.y48{bottom:351.079500px;}
.y22{bottom:358.920000px;}
.y69{bottom:363.502500px;}
.y47{bottom:371.403000px;}
.y89{bottom:374.943000px;}
.y21{bottom:379.243500px;}
.y46{bottom:391.726500px;}
.y88{bottom:392.877000px;}
.y68{bottom:397.276500px;}
.y20{bottom:399.567000px;}
.y67{bottom:417.600000px;}
.y87{bottom:418.281000px;}
.y1f{bottom:419.890500px;}
.y45{bottom:425.500500px;}
.y86{bottom:436.213500px;}
.y66{bottom:437.923500px;}
.y1e{bottom:440.214000px;}
.y44{bottom:445.824000px;}
.y85{bottom:461.619000px;}
.y43{bottom:466.147500px;}
.y65{bottom:474.453000px;}
.y1d{bottom:475.477500px;}
.y84{bottom:479.551500px;}
.y42{bottom:499.920000px;}
.y83{bottom:504.955500px;}
.y1c{bottom:518.845500px;}
.y64{bottom:520.033500px;}
.y41{bottom:520.245000px;}
.y82{bottom:522.889500px;}
.y7{bottom:532.603500px;}
.y1b{bottom:539.169000px;}
.y63{bottom:540.357000px;}
.y40{bottom:556.773000px;}
.y81{bottom:557.026500px;}
.y1a{bottom:559.492500px;}
.y6{bottom:569.326500px;}
.y62{bottom:574.129500px;}
.y19{bottom:579.816000px;}
.y61{bottom:594.454500px;}
.y5{bottom:598.059000px;}
.y18{bottom:600.141000px;}
.y3f{bottom:602.353500px;}
.y80{bottom:602.607000px;}
.y17{bottom:620.464500px;}
.y3e{bottom:622.677000px;}
.y7f{bottom:622.930500px;}
.y60{bottom:628.227000px;}
.y16{bottom:640.788000px;}
.y3d{bottom:643.000500px;}
.y7e{bottom:643.254000px;}
.y5f{bottom:648.550500px;}
.y15{bottom:661.111500px;}
.y3c{bottom:676.774500px;}
.y7d{bottom:679.782000px;}
.y14{bottom:681.435000px;}
.y5e{bottom:682.324500px;}
.y13{bottom:701.760000px;}
.y5d{bottom:702.648000px;}
.y3b{bottom:703.822500px;}
.y5c{bottom:722.971500px;}
.y3a{bottom:724.146000px;}
.y7c{bottom:725.362500px;}
.y12{bottom:735.991500px;}
.y39{bottom:744.471000px;}
.y7b{bottom:745.687500px;}
.y5b{bottom:756.745500px;}
.y4{bottom:759.814500px;}
.y7a{bottom:766.011000px;}
.y11{bottom:770.395500px;}
.y5a{bottom:777.069000px;}
.y38{bottom:778.243500px;}
.y79{bottom:786.334500px;}
.y3{bottom:797.095500px;}
.y37{bottom:798.567000px;}
.y78{bottom:806.658000px;}
.y10{bottom:807.084000px;}
.y59{bottom:813.597000px;}
.y36{bottom:818.892000px;}
.y2{bottom:841.927500px;}
.y77{bottom:843.186000px;}
.yf{bottom:843.771000px;}
.y35{bottom:855.420000px;}
.y58{bottom:859.177500px;}
.y57{bottom:879.502500px;}
.ye{bottom:880.458000px;}
.y76{bottom:888.766500px;}
.y34{bottom:901.000500px;}
.y75{bottom:909.091500px;}
.y56{bottom:913.275000px;}
.yd{bottom:917.146500px;}
.y33{bottom:921.324000px;}
.y55{bottom:933.598500px;}
.y74{bottom:947.347500px;}
.yc{bottom:953.833500px;}
.y54{bottom:953.922000px;}
.y32{bottom:955.098000px;}
.y73{bottom:981.121500px;}
.y53{bottom:987.696000px;}
.y31{bottom:988.870500px;}
.yb{bottom:990.520500px;}
.y52{bottom:1008.019500px;}
.y72{bottom:1014.894000px;}
.y30{bottom:1022.644500px;}
.ya{bottom:1027.209000px;}
.y51{bottom:1041.793500px;}
.y9{bottom:1047.532500px;}
.y71{bottom:1048.668000px;}
.y2f{bottom:1056.417000px;}
.y50{bottom:1062.117000px;}
.y4f{bottom:1082.440500px;}
.y8{bottom:1084.219500px;}
.y1{bottom:1087.587000px;}
.y2e{bottom:1090.191000px;}
.y2d{bottom:1118.968500px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.h9{height:44.831700px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.h5{height:61.631275px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x9{left:137.107500px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.xa{left:161.064000px;}
.x7{left:164.010000px;}
.x1{left:286.581000px;}
.x6{left:328.177500px;}
.x8{left:438.466500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.654270pt;}
.ls7{letter-spacing:25.309112pt;}
.ls4{letter-spacing:26.705477pt;}
.ls5{letter-spacing:27.578205pt;}
.ls6{letter-spacing:27.694569pt;}
.ls9{letter-spacing:28.101842pt;}
.ls2{letter-spacing:29.090933pt;}
.ls8{letter-spacing:29.905479pt;}
.ls3{letter-spacing:31.301844pt;}
.ws13{word-spacing:-16.162923pt;}
.ws2e{word-spacing:-3.188366pt;}
.ws2d{word-spacing:-2.432002pt;}
.ws30{word-spacing:-2.315638pt;}
.ws15{word-spacing:-1.733820pt;}
.ws46{word-spacing:-1.559274pt;}
.ws44{word-spacing:-1.035637pt;}
.ws43{word-spacing:-0.977455pt;}
.ws39{word-spacing:-0.104727pt;}
.ws8{word-spacing:-0.063761pt;}
.ws20{word-spacing:-0.058182pt;}
.ws7{word-spacing:0.000000pt;}
.ws34{word-spacing:0.244364pt;}
.ws21{word-spacing:0.302546pt;}
.ws1f{word-spacing:0.651637pt;}
.ws26{word-spacing:1.000728pt;}
.wsc{word-spacing:1.291637pt;}
.ws3f{word-spacing:1.349819pt;}
.ws4e{word-spacing:1.408001pt;}
.ws42{word-spacing:1.582547pt;}
.ws3c{word-spacing:1.698911pt;}
.ws37{word-spacing:1.757092pt;}
.ws2b{word-spacing:2.222547pt;}
.ws10{word-spacing:2.338911pt;}
.ws3e{word-spacing:2.513457pt;}
.ws45{word-spacing:2.629820pt;}
.ws2f{word-spacing:2.804366pt;}
.ws50{word-spacing:2.932989pt;}
.ws52{word-spacing:2.986123pt;}
.ws5{word-spacing:3.211639pt;}
.ws3d{word-spacing:3.269821pt;}
.ws1e{word-spacing:3.444367pt;}
.ws19{word-spacing:3.502548pt;}
.wsa{word-spacing:3.700367pt;}
.ws18{word-spacing:3.735276pt;}
.wsb{word-spacing:3.851640pt;}
.ws12{word-spacing:4.433458pt;}
.ws2c{word-spacing:4.666186pt;}
.ws11{word-spacing:4.898913pt;}
.ws33{word-spacing:5.131641pt;}
.ws36{word-spacing:5.364368pt;}
.ws1b{word-spacing:5.480732pt;}
.wsd{word-spacing:5.597096pt;}
.ws4f{word-spacing:5.771641pt;}
.ws1a{word-spacing:5.888005pt;}
.ws4d{word-spacing:5.946187pt;}
.ws48{word-spacing:6.004369pt;}
.ws35{word-spacing:6.144005pt;}
.ws49{word-spacing:6.295278pt;}
.wse{word-spacing:6.353460pt;}
.ws4b{word-spacing:6.702551pt;}
.wsf{word-spacing:6.818915pt;}
.ws2a{word-spacing:6.993460pt;}
.ws1c{word-spacing:7.458915pt;}
.ws4c{word-spacing:7.749825pt;}
.ws4a{word-spacing:8.506189pt;}
.ws31{word-spacing:9.204371pt;}
.ws41{word-spacing:9.262553pt;}
.ws6{word-spacing:9.669826pt;}
.ws28{word-spacing:9.902554pt;}
.ws1d{word-spacing:11.473464pt;}
.ws17{word-spacing:11.822555pt;}
.ws24{word-spacing:11.880737pt;}
.ws38{word-spacing:12.346192pt;}
.ws3a{word-spacing:12.578920pt;}
.ws16{word-spacing:13.568011pt;}
.ws23{word-spacing:13.591284pt;}
.ws51{word-spacing:18.968790pt;}
.ws3{word-spacing:23.336550pt;}
.ws22{word-spacing:23.846639pt;}
.ws3b{word-spacing:25.600021pt;}
.ws27{word-spacing:27.229114pt;}
.ws0{word-spacing:27.842146pt;}
.ws4{word-spacing:28.003782pt;}
.ws25{word-spacing:28.683660pt;}
.ws32{word-spacing:28.741842pt;}
.ws29{word-spacing:29.032751pt;}
.ws47{word-spacing:29.556388pt;}
.ws40{word-spacing:32.581845pt;}
.ws9{word-spacing:35.234938pt;}
.ws2{word-spacing:48.252221pt;}
.ws1{word-spacing:48.384419pt;}
.ws14{word-spacing:71.667439pt;}
._f{margin-left:-5.234778pt;}
._0{margin-left:-3.965936pt;}
._1c{margin-left:-3.022276pt;}
._1{margin-left:-1.976593pt;}
._e{margin-left:-0.932500pt;}
._14{width:1.045683pt;}
._2{width:1.976593pt;}
._20{width:4.069550pt;}
._1a{width:5.763186pt;}
._1f{width:15.534558pt;}
._23{width:17.336606pt;}
._15{width:21.525700pt;}
._10{width:22.923655pt;}
._12{width:24.200476pt;}
._13{width:25.947522pt;}
._22{width:27.111159pt;}
._1e{width:28.339340pt;}
._16{width:30.891390pt;}
._24{width:31.822300pt;}
._11{width:32.872755pt;}
._25{width:34.206166pt;}
._26{width:40.258671pt;}
._21{width:43.925719pt;}
._1d{width:44.995311pt;}
._18{width:50.850951pt;}
._17{width:52.012998pt;}
._6{width:53.818227pt;}
._4{width:59.461868pt;}
._19{width:66.909147pt;}
._1b{width:71.731200pt;}
._c{width:1028.189948pt;}
._b{width:1044.710417pt;}
._a{width:1083.286585pt;}
._9{width:1156.888237pt;}
._8{width:1229.848298pt;}
._7{width:1485.908283pt;}
._5{width:1535.944689pt;}
._3{width:1848.321540pt;}
._d{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:83.389333pt;}
.y2b{bottom:156.449333pt;}
.y2a{bottom:174.514667pt;}
.y70{bottom:178.721333pt;}
.y4e{bottom:179.766667pt;}
.y29{bottom:192.580000pt;}
.y6f{bottom:196.788000pt;}
.y4d{bottom:197.832000pt;}
.y28{bottom:210.645333pt;}
.y4c{bottom:215.897333pt;}
.y6e{bottom:220.830667pt;}
.y27{bottom:228.712000pt;}
.y6d{bottom:238.896000pt;}
.y4b{bottom:245.918667pt;}
.y26{bottom:246.777333pt;}
.y6c{bottom:256.961333pt;}
.y4a{bottom:263.984000pt;}
.y25{bottom:264.842667pt;}
.y49{bottom:282.049333pt;}
.y24{bottom:282.908000pt;}
.y6b{bottom:286.982667pt;}
.y23{bottom:300.973333pt;}
.y6a{bottom:305.048000pt;}
.y48{bottom:312.070667pt;}
.y22{bottom:319.040000pt;}
.y69{bottom:323.113333pt;}
.y47{bottom:330.136000pt;}
.y89{bottom:333.282667pt;}
.y21{bottom:337.105333pt;}
.y46{bottom:348.201333pt;}
.y88{bottom:349.224000pt;}
.y68{bottom:353.134667pt;}
.y20{bottom:355.170667pt;}
.y67{bottom:371.200000pt;}
.y87{bottom:371.805333pt;}
.y1f{bottom:373.236000pt;}
.y45{bottom:378.222667pt;}
.y86{bottom:387.745333pt;}
.y66{bottom:389.265333pt;}
.y1e{bottom:391.301333pt;}
.y44{bottom:396.288000pt;}
.y85{bottom:410.328000pt;}
.y43{bottom:414.353333pt;}
.y65{bottom:421.736000pt;}
.y1d{bottom:422.646667pt;}
.y84{bottom:426.268000pt;}
.y42{bottom:444.373333pt;}
.y83{bottom:448.849333pt;}
.y1c{bottom:461.196000pt;}
.y64{bottom:462.252000pt;}
.y41{bottom:462.440000pt;}
.y82{bottom:464.790667pt;}
.y7{bottom:473.425333pt;}
.y1b{bottom:479.261333pt;}
.y63{bottom:480.317333pt;}
.y40{bottom:494.909333pt;}
.y81{bottom:495.134667pt;}
.y1a{bottom:497.326667pt;}
.y6{bottom:506.068000pt;}
.y62{bottom:510.337333pt;}
.y19{bottom:515.392000pt;}
.y61{bottom:528.404000pt;}
.y5{bottom:531.608000pt;}
.y18{bottom:533.458667pt;}
.y3f{bottom:535.425333pt;}
.y80{bottom:535.650667pt;}
.y17{bottom:551.524000pt;}
.y3e{bottom:553.490667pt;}
.y7f{bottom:553.716000pt;}
.y60{bottom:558.424000pt;}
.y16{bottom:569.589333pt;}
.y3d{bottom:571.556000pt;}
.y7e{bottom:571.781333pt;}
.y5f{bottom:576.489333pt;}
.y15{bottom:587.654667pt;}
.y3c{bottom:601.577333pt;}
.y7d{bottom:604.250667pt;}
.y14{bottom:605.720000pt;}
.y5e{bottom:606.510667pt;}
.y13{bottom:623.786667pt;}
.y5d{bottom:624.576000pt;}
.y3b{bottom:625.620000pt;}
.y5c{bottom:642.641333pt;}
.y3a{bottom:643.685333pt;}
.y7c{bottom:644.766667pt;}
.y12{bottom:654.214667pt;}
.y39{bottom:661.752000pt;}
.y7b{bottom:662.833333pt;}
.y5b{bottom:672.662667pt;}
.y4{bottom:675.390667pt;}
.y7a{bottom:680.898667pt;}
.y11{bottom:684.796000pt;}
.y5a{bottom:690.728000pt;}
.y38{bottom:691.772000pt;}
.y79{bottom:698.964000pt;}
.y3{bottom:708.529333pt;}
.y37{bottom:709.837333pt;}
.y78{bottom:717.029333pt;}
.y10{bottom:717.408000pt;}
.y59{bottom:723.197333pt;}
.y36{bottom:727.904000pt;}
.y2{bottom:748.380000pt;}
.y77{bottom:749.498667pt;}
.yf{bottom:750.018667pt;}
.y35{bottom:760.373333pt;}
.y58{bottom:763.713333pt;}
.y57{bottom:781.780000pt;}
.ye{bottom:782.629333pt;}
.y76{bottom:790.014667pt;}
.y34{bottom:800.889333pt;}
.y75{bottom:808.081333pt;}
.y56{bottom:811.800000pt;}
.yd{bottom:815.241333pt;}
.y33{bottom:818.954667pt;}
.y55{bottom:829.865333pt;}
.y74{bottom:842.086667pt;}
.yc{bottom:847.852000pt;}
.y54{bottom:847.930667pt;}
.y32{bottom:848.976000pt;}
.y73{bottom:872.108000pt;}
.y53{bottom:877.952000pt;}
.y31{bottom:878.996000pt;}
.yb{bottom:880.462667pt;}
.y52{bottom:896.017333pt;}
.y72{bottom:902.128000pt;}
.y30{bottom:909.017333pt;}
.ya{bottom:913.074667pt;}
.y51{bottom:926.038667pt;}
.y9{bottom:931.140000pt;}
.y71{bottom:932.149333pt;}
.y2f{bottom:939.037333pt;}
.y50{bottom:944.104000pt;}
.y4f{bottom:962.169333pt;}
.y8{bottom:963.750667pt;}
.y1{bottom:966.744000pt;}
.y2e{bottom:969.058667pt;}
.y2d{bottom:994.638667pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.h9{height:39.850400pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.h5{height:54.783356pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x9{left:121.873333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.xa{left:143.168000pt;}
.x7{left:145.786667pt;}
.x1{left:254.738667pt;}
.x6{left:291.713333pt;}
.x8{left:389.748000pt;}
}




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