
    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_92cb5fff6bf9945ad8e67f69.woff')format("woff");}.ff1{font-family:ff1;line-height:0.712000;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_8d6f5dd421a0ba30d8657daa.woff')format("woff");}.ff2{font-family:ff2;line-height:0.999000;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_313842e7c5d4c48bc2001412.woff')format("woff");}.ff3{font-family:ff3;line-height:0.897000;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_1e2e563482d6e94eb1e0d0b1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e4dc44d778edef92cb16c4ba.woff')format("woff");}.ff5{font-family:ff5;line-height:0.735000;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_0d61c3cbd042fe4125d9e5aa.woff')format("woff");}.ff6{font-family:ff6;line-height:0.854000;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_4a74f0572916563d39416290.woff')format("woff");}.ff7{font-family:ff7;line-height:0.699000;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_d78292805d9defca0561c846.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4d27c6355190613a0a158b4c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.844000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003056px;}
.ls2{letter-spacing:6.242566px;}
.ls3{letter-spacing:14.532141px;}
.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;}
}
.ws40{word-spacing:-14.111859px;}
.ws16{word-spacing:-2.443633px;}
.ws4c{word-spacing:-0.926564px;}
.ws4d{word-spacing:-0.913373px;}
.ws14{word-spacing:-0.865553px;}
.ws49{word-spacing:-0.817732px;}
.ws54{word-spacing:-0.148244px;}
.ws4{word-spacing:-0.047821px;}
.wsc{word-spacing:0.000000px;}
.ws58{word-spacing:0.377783px;}
.ws59{word-spacing:0.397442px;}
.ws4e{word-spacing:0.425603px;}
.ws4f{word-spacing:0.903809px;}
.ws51{word-spacing:1.477657px;}
.wsa{word-spacing:1.573298px;}
.wsd{word-spacing:1.607880px;}
.ws5{word-spacing:1.610234px;}
.ws3{word-spacing:1.613880px;}
.wse{word-spacing:1.616234px;}
.ws7{word-spacing:1.621118px;}
.ws4b{word-spacing:1.812401px;}
.ws57{word-spacing:1.955863px;}
.ws1e{word-spacing:2.386248px;}
.ws1f{word-spacing:2.434069px;}
.ws5e{word-spacing:2.606216px;}
.wsb{word-spacing:2.816633px;}
.ws6b{word-spacing:2.820056px;}
.ws23{word-spacing:2.827782px;}
.ws25{word-spacing:3.039610px;}
.ws67{word-spacing:3.480654px;}
.ws55{word-spacing:3.486122px;}
.ws1{word-spacing:3.801728px;}
.ws5f{word-spacing:3.861504px;}
.ws1b{word-spacing:3.868687px;}
.ws63{word-spacing:4.214557px;}
.ws61{word-spacing:4.251251px;}
.ws15{word-spacing:4.490354px;}
.ws2f{word-spacing:4.522881px;}
.ws35{word-spacing:4.533640px;}
.ws28{word-spacing:4.539020px;}
.ws26{word-spacing:4.539168px;}
.ws2d{word-spacing:4.543628px;}
.ws29{word-spacing:4.555160px;}
.ws33{word-spacing:4.560540px;}
.ws2a{word-spacing:4.565919px;}
.ws2b{word-spacing:4.571299px;}
.ws56{word-spacing:5.064202px;}
.ws1d{word-spacing:5.159843px;}
.ws1a{word-spacing:5.351125px;}
.ws53{word-spacing:5.542408px;}
.ws42{word-spacing:5.685869px;}
.ws44{word-spacing:5.924972px;}
.ws17{word-spacing:6.164075px;}
.ws19{word-spacing:6.785743px;}
.ws3c{word-spacing:6.929205px;}
.ws3e{word-spacing:6.949197px;}
.ws13{word-spacing:7.885617px;}
.ws10{word-spacing:9.061981px;}
.ws12{word-spacing:10.467929px;}
.ws4a{word-spacing:13.206830px;}
.ws5a{word-spacing:14.462586px;}
.ws5c{word-spacing:14.462755px;}
.ws5b{word-spacing:14.476932px;}
.ws50{word-spacing:14.948586px;}
.ws48{word-spacing:15.254771px;}
.ws9{word-spacing:15.662755px;}
.wsf{word-spacing:15.668755px;}
.ws8{word-spacing:15.680917px;}
.ws3b{word-spacing:16.505332px;}
.ws3a{word-spacing:16.514755px;}
.ws21{word-spacing:16.865332px;}
.ws69{word-spacing:16.874755px;}
.ws6a{word-spacing:16.877671px;}
.ws22{word-spacing:16.877840px;}
.ws5d{word-spacing:16.888932px;}
.ws68{word-spacing:17.543332px;}
.ws66{word-spacing:17.552755px;}
.ws2{word-spacing:18.076187px;}
.ws62{word-spacing:18.284756px;}
.ws64{word-spacing:18.287671px;}
.ws38{word-spacing:19.032599px;}
.ws20{word-spacing:19.462984px;}
.ws6{word-spacing:19.496397px;}
.ws47{word-spacing:19.973332px;}
.ws46{word-spacing:19.982756px;}
.ws65{word-spacing:20.228114px;}
.ws3d{word-spacing:20.999671px;}
.ws3f{word-spacing:21.036651px;}
.ws60{word-spacing:21.088885px;}
.ws1c{word-spacing:22.188758px;}
.ws52{word-spacing:22.619144px;}
.ws43{word-spacing:23.049529px;}
.ws45{word-spacing:23.816397px;}
.ws39{word-spacing:23.890025px;}
.ws18{word-spacing:24.005941px;}
.ws24{word-spacing:25.344918px;}
.ws27{word-spacing:28.190362px;}
.ws11{word-spacing:28.261975px;}
.ws41{word-spacing:28.378025px;}
.ws0{word-spacing:32.192873px;}
.ws32{word-spacing:244.486829px;}
.ws34{word-spacing:244.540627px;}
.ws36{word-spacing:258.313018px;}
.ws37{word-spacing:261.379526px;}
.ws2e{word-spacing:264.446035px;}
.ws31{word-spacing:267.404947px;}
.ws30{word-spacing:272.139206px;}
.ws2c{word-spacing:272.193005px;}
._31{margin-left:-6.479653px;}
._5{margin-left:-4.997262px;}
._29{margin-left:-3.765863px;}
._0{margin-left:-1.853044px;}
._2{width:1.434618px;}
._2d{width:13.999476px;}
._2f{width:16.581788px;}
._3{width:18.071927px;}
._2e{width:19.213874px;}
._9{width:21.007337px;}
._2a{width:22.243488px;}
._2b{width:25.392739px;}
._7{width:33.856985px;}
._2c{width:35.571878px;}
._1{width:51.288580px;}
._30{width:52.513665px;}
._8{width:54.821891px;}
._6{width:56.476826px;}
._4{width:60.158792px;}
._27{width:73.456246px;}
._d{width:74.773774px;}
._1f{width:79.480579px;}
._c{width:88.498368px;}
._15{width:101.700406px;}
._26{width:129.944566px;}
._19{width:158.188726px;}
._f{width:186.432886px;}
._28{width:187.750414px;}
._12{width:214.677046px;}
._23{width:243.584400px;}
._e{width:248.763802px;}
._1a{width:258.339917px;}
._11{width:259.846272px;}
._17{width:271.165366px;}
._16{width:276.738970px;}
._a{width:278.083930px;}
._13{width:279.536486px;}
._18{width:283.218676px;}
._21{width:284.432141px;}
._20{width:286.655489px;}
._14{width:287.791540px;}
._1d{width:288.897408px;}
._10{width:291.802522px;}
._25{width:294.474828px;}
._24{width:298.204531px;}
._1c{width:299.409526px;}
._1b{width:301.324838px;}
._22{width:308.121050px;}
._b{width:352.182265px;}
._1e{width:385.381837px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y9{bottom:283.819500px;}
.y4e{bottom:354.993000px;}
.y5b{bottom:367.056000px;}
.y18{bottom:374.461500px;}
.y5a{bottom:381.253500px;}
.y54{bottom:383.667000px;}
.y50{bottom:383.779500px;}
.y56{bottom:384.424500px;}
.y52{bottom:386.472000px;}
.y17{bottom:388.657500px;}
.y59{bottom:395.449500px;}
.y8{bottom:402.460500px;}
.y16{bottom:402.855000px;}
.y1e{bottom:408.687000px;}
.y3b{bottom:412.497000px;}
.y7{bottom:416.658000px;}
.y1d{bottom:422.884500px;}
.y3a{bottom:426.694500px;}
.y1c{bottom:437.080500px;}
.y39{bottom:440.890500px;}
.yd{bottom:451.996500px;}
.y38{bottom:455.088000px;}
.y3d{bottom:465.396000px;}
.yc{bottom:466.192500px;}
.y3c{bottom:479.593500px;}
.y20{bottom:491.611500px;}
.y1f{bottom:505.807500px;}
.y44{bottom:584.151000px;}
.y5d{bottom:584.881500px;}
.y37{bottom:585.741000px;}
.y43{bottom:598.348500px;}
.y5c{bottom:599.077500px;}
.y36{bottom:602.179500px;}
.y42{bottom:612.544500px;}
.y6{bottom:617.086500px;}
.y35{bottom:618.618000px;}
.y41{bottom:626.742000px;}
.y5{bottom:631.284000px;}
.y34{bottom:635.056500px;}
.y40{bottom:640.938000px;}
.y33{bottom:651.495000px;}
.y3f{bottom:655.135500px;}
.y32{bottom:667.933500px;}
.y3e{bottom:669.331500px;}
.y15{bottom:675.207000px;}
.y31{bottom:684.372000px;}
.y14{bottom:689.403000px;}
.y30{bottom:700.810500px;}
.y13{bottom:703.600500px;}
.y2f{bottom:717.247500px;}
.y4d{bottom:717.322500px;}
.y12{bottom:717.796500px;}
.y4c{bottom:731.518500px;}
.y11{bottom:731.994000px;}
.y2e{bottom:733.686000px;}
.y4b{bottom:745.716000px;}
.y10{bottom:746.190000px;}
.y58{bottom:746.568000px;}
.y2d{bottom:750.124500px;}
.y4a{bottom:759.912000px;}
.yf{bottom:760.387500px;}
.y57{bottom:760.765500px;}
.y2c{bottom:766.563000px;}
.y49{bottom:774.109500px;}
.y2b{bottom:783.001500px;}
.y48{bottom:788.305500px;}
.y2a{bottom:799.440000px;}
.y53{bottom:799.668000px;}
.y4f{bottom:802.110000px;}
.y47{bottom:802.503000px;}
.y55{bottom:805.284000px;}
.y51{bottom:810.216000px;}
.y29{bottom:815.878500px;}
.y46{bottom:816.699000px;}
.y1b{bottom:827.637000px;}
.y45{bottom:830.896500px;}
.y4{bottom:831.712500px;}
.y28{bottom:832.317000px;}
.y1a{bottom:841.834500px;}
.y3{bottom:845.910000px;}
.y27{bottom:848.755500px;}
.y19{bottom:856.030500px;}
.y26{bottom:865.194000px;}
.yb{bottom:870.780000px;}
.y25{bottom:881.632500px;}
.ya{bottom:884.976000px;}
.y24{bottom:898.069500px;}
.y23{bottom:918.693000px;}
.y22{bottom:948.820500px;}
.y21{bottom:963.070500px;}
.ye{bottom:1087.890000px;}
.y2{bottom:1105.890000px;}
.y1{bottom:1137.339000px;}
.h4{height:35.865450px;}
.h6{height:38.519654px;}
.h5{height:40.468081px;}
.h3{height:44.831700px;}
.h2{height:60.254040px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:150.106500px;}
.x3{left:186.892500px;}
.x5{left:196.456500px;}
.x7{left:420.592500px;}
.x2{left:424.327500px;}
.x6{left:457.377000px;}
.x4{left:461.113500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.002717pt;}
.ls2{letter-spacing:5.548948pt;}
.ls3{letter-spacing:12.917459pt;}
.ws40{word-spacing:-12.543875pt;}
.ws16{word-spacing:-2.172118pt;}
.ws4c{word-spacing:-0.823612pt;}
.ws4d{word-spacing:-0.811888pt;}
.ws14{word-spacing:-0.769380pt;}
.ws49{word-spacing:-0.726873pt;}
.ws54{word-spacing:-0.131772pt;}
.ws4{word-spacing:-0.042507pt;}
.wsc{word-spacing:0.000000pt;}
.ws58{word-spacing:0.335807pt;}
.ws59{word-spacing:0.353282pt;}
.ws4e{word-spacing:0.378314pt;}
.ws4f{word-spacing:0.803386pt;}
.ws51{word-spacing:1.313472pt;}
.wsa{word-spacing:1.398487pt;}
.wsd{word-spacing:1.429227pt;}
.ws5{word-spacing:1.431319pt;}
.ws3{word-spacing:1.434560pt;}
.wse{word-spacing:1.436652pt;}
.ws7{word-spacing:1.440994pt;}
.ws4b{word-spacing:1.611023pt;}
.ws57{word-spacing:1.738544pt;}
.ws1e{word-spacing:2.121109pt;}
.ws1f{word-spacing:2.163616pt;}
.ws5e{word-spacing:2.316637pt;}
.wsb{word-spacing:2.503674pt;}
.ws6b{word-spacing:2.506716pt;}
.ws23{word-spacing:2.513584pt;}
.ws25{word-spacing:2.701875pt;}
.ws67{word-spacing:3.093915pt;}
.ws55{word-spacing:3.098775pt;}
.ws1{word-spacing:3.379314pt;}
.ws5f{word-spacing:3.432448pt;}
.ws1b{word-spacing:3.438832pt;}
.ws63{word-spacing:3.746273pt;}
.ws61{word-spacing:3.778890pt;}
.ws15{word-spacing:3.991426pt;}
.ws2f{word-spacing:4.020338pt;}
.ws35{word-spacing:4.029903pt;}
.ws28{word-spacing:4.034685pt;}
.ws26{word-spacing:4.034816pt;}
.ws2d{word-spacing:4.038781pt;}
.ws29{word-spacing:4.049031pt;}
.ws33{word-spacing:4.053813pt;}
.ws2a{word-spacing:4.058595pt;}
.ws2b{word-spacing:4.063377pt;}
.ws56{word-spacing:4.501512pt;}
.ws1d{word-spacing:4.586527pt;}
.ws1a{word-spacing:4.756556pt;}
.ws53{word-spacing:4.926584pt;}
.ws42{word-spacing:5.054106pt;}
.ws44{word-spacing:5.266642pt;}
.ws17{word-spacing:5.479178pt;}
.ws19{word-spacing:6.031772pt;}
.ws3c{word-spacing:6.159293pt;}
.ws3e{word-spacing:6.177064pt;}
.ws13{word-spacing:7.009437pt;}
.ws10{word-spacing:8.055094pt;}
.ws12{word-spacing:9.304826pt;}
.ws4a{word-spacing:11.739404pt;}
.ws5a{word-spacing:12.855632pt;}
.ws5c{word-spacing:12.855783pt;}
.ws5b{word-spacing:12.868384pt;}
.ws50{word-spacing:13.287632pt;}
.ws48{word-spacing:13.559797pt;}
.ws9{word-spacing:13.922449pt;}
.wsf{word-spacing:13.927783pt;}
.ws8{word-spacing:13.938593pt;}
.ws3b{word-spacing:14.671406pt;}
.ws3a{word-spacing:14.679783pt;}
.ws21{word-spacing:14.991406pt;}
.ws69{word-spacing:14.999783pt;}
.ws6a{word-spacing:15.002374pt;}
.ws22{word-spacing:15.002525pt;}
.ws5d{word-spacing:15.012384pt;}
.ws68{word-spacing:15.594073pt;}
.ws66{word-spacing:15.602449pt;}
.ws2{word-spacing:16.067722pt;}
.ws62{word-spacing:16.253116pt;}
.ws64{word-spacing:16.255707pt;}
.ws38{word-spacing:16.917866pt;}
.ws20{word-spacing:17.300430pt;}
.ws6{word-spacing:17.330131pt;}
.ws47{word-spacing:17.754073pt;}
.ws46{word-spacing:17.762449pt;}
.ws65{word-spacing:17.980546pt;}
.ws3d{word-spacing:18.666374pt;}
.ws3f{word-spacing:18.699245pt;}
.ws60{word-spacing:18.745675pt;}
.ws1c{word-spacing:19.723341pt;}
.ws52{word-spacing:20.105906pt;}
.ws43{word-spacing:20.488470pt;}
.ws45{word-spacing:21.170131pt;}
.ws39{word-spacing:21.235578pt;}
.ws18{word-spacing:21.338614pt;}
.ws24{word-spacing:22.528816pt;}
.ws27{word-spacing:25.058099pt;}
.ws11{word-spacing:25.121755pt;}
.ws41{word-spacing:25.224911pt;}
.ws0{word-spacing:28.615887pt;}
.ws32{word-spacing:217.321626pt;}
.ws34{word-spacing:217.369446pt;}
.ws36{word-spacing:229.611571pt;}
.ws37{word-spacing:232.337357pt;}
.ws2e{word-spacing:235.063142pt;}
.ws31{word-spacing:237.693286pt;}
.ws30{word-spacing:241.901517pt;}
.ws2c{word-spacing:241.949338pt;}
._31{margin-left:-5.759692pt;}
._5{margin-left:-4.442011pt;}
._29{margin-left:-3.347434pt;}
._0{margin-left:-1.647150pt;}
._2{width:1.275216pt;}
._2d{width:12.443979pt;}
._2f{width:14.739367pt;}
._3{width:16.063935pt;}
._2e{width:17.078999pt;}
._9{width:18.673188pt;}
._2a{width:19.771989pt;}
._2b{width:22.571323pt;}
._7{width:30.095098pt;}
._2c{width:31.619447pt;}
._1{width:45.589849pt;}
._30{width:46.678813pt;}
._8{width:48.730570pt;}
._6{width:50.201623pt;}
._4{width:53.474482pt;}
._27{width:65.294441pt;}
._d{width:66.465577pt;}
._1f{width:70.649404pt;}
._c{width:78.665216pt;}
._15{width:90.400361pt;}
._26{width:115.506281pt;}
._19{width:140.612201pt;}
._f{width:165.718121pt;}
._28{width:166.889257pt;}
._12{width:190.824041pt;}
._23{width:216.519467pt;}
._e{width:221.123379pt;}
._1a{width:229.635482pt;}
._11{width:230.974464pt;}
._17{width:241.035881pt;}
._16{width:245.990195pt;}
._a{width:247.185715pt;}
._13{width:248.476877pt;}
._18{width:251.749934pt;}
._21{width:252.828570pt;}
._20{width:254.804879pt;}
._14{width:255.814702pt;}
._1d{width:256.797696pt;}
._10{width:259.380019pt;}
._25{width:261.755403pt;}
._24{width:265.070694pt;}
._1c{width:266.141801pt;}
._1b{width:267.844301pt;}
._22{width:273.885378pt;}
._b{width:313.050902pt;}
._1e{width:342.561633pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:252.284000pt;}
.y4e{bottom:315.549333pt;}
.y5b{bottom:326.272000pt;}
.y18{bottom:332.854667pt;}
.y5a{bottom:338.892000pt;}
.y54{bottom:341.037333pt;}
.y50{bottom:341.137333pt;}
.y56{bottom:341.710667pt;}
.y52{bottom:343.530667pt;}
.y17{bottom:345.473333pt;}
.y59{bottom:351.510667pt;}
.y8{bottom:357.742667pt;}
.y16{bottom:358.093333pt;}
.y1e{bottom:363.277333pt;}
.y3b{bottom:366.664000pt;}
.y7{bottom:370.362667pt;}
.y1d{bottom:375.897333pt;}
.y3a{bottom:379.284000pt;}
.y1c{bottom:388.516000pt;}
.y39{bottom:391.902667pt;}
.yd{bottom:401.774667pt;}
.y38{bottom:404.522667pt;}
.y3d{bottom:413.685333pt;}
.yc{bottom:414.393333pt;}
.y3c{bottom:426.305333pt;}
.y20{bottom:436.988000pt;}
.y1f{bottom:449.606667pt;}
.y44{bottom:519.245333pt;}
.y5d{bottom:519.894667pt;}
.y37{bottom:520.658667pt;}
.y43{bottom:531.865333pt;}
.y5c{bottom:532.513333pt;}
.y36{bottom:535.270667pt;}
.y42{bottom:544.484000pt;}
.y6{bottom:548.521333pt;}
.y35{bottom:549.882667pt;}
.y41{bottom:557.104000pt;}
.y5{bottom:561.141333pt;}
.y34{bottom:564.494667pt;}
.y40{bottom:569.722667pt;}
.y33{bottom:579.106667pt;}
.y3f{bottom:582.342667pt;}
.y32{bottom:593.718667pt;}
.y3e{bottom:594.961333pt;}
.y15{bottom:600.184000pt;}
.y31{bottom:608.330667pt;}
.y14{bottom:612.802667pt;}
.y30{bottom:622.942667pt;}
.y13{bottom:625.422667pt;}
.y2f{bottom:637.553333pt;}
.y4d{bottom:637.620000pt;}
.y12{bottom:638.041333pt;}
.y4c{bottom:650.238667pt;}
.y11{bottom:650.661333pt;}
.y2e{bottom:652.165333pt;}
.y4b{bottom:662.858667pt;}
.y10{bottom:663.280000pt;}
.y58{bottom:663.616000pt;}
.y2d{bottom:666.777333pt;}
.y4a{bottom:675.477333pt;}
.yf{bottom:675.900000pt;}
.y57{bottom:676.236000pt;}
.y2c{bottom:681.389333pt;}
.y49{bottom:688.097333pt;}
.y2b{bottom:696.001333pt;}
.y48{bottom:700.716000pt;}
.y2a{bottom:710.613333pt;}
.y53{bottom:710.816000pt;}
.y4f{bottom:712.986667pt;}
.y47{bottom:713.336000pt;}
.y55{bottom:715.808000pt;}
.y51{bottom:720.192000pt;}
.y29{bottom:725.225333pt;}
.y46{bottom:725.954667pt;}
.y1b{bottom:735.677333pt;}
.y45{bottom:738.574667pt;}
.y4{bottom:739.300000pt;}
.y28{bottom:739.837333pt;}
.y1a{bottom:748.297333pt;}
.y3{bottom:751.920000pt;}
.y27{bottom:754.449333pt;}
.y19{bottom:760.916000pt;}
.y26{bottom:769.061333pt;}
.yb{bottom:774.026667pt;}
.y25{bottom:783.673333pt;}
.ya{bottom:786.645333pt;}
.y24{bottom:798.284000pt;}
.y23{bottom:816.616000pt;}
.y22{bottom:843.396000pt;}
.y21{bottom:856.062667pt;}
.ye{bottom:967.013333pt;}
.y2{bottom:983.013333pt;}
.y1{bottom:1010.968000pt;}
.h4{height:31.880400pt;}
.h6{height:34.239693pt;}
.h5{height:35.971628pt;}
.h3{height:39.850400pt;}
.h2{height:53.559147pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:133.428000pt;}
.x3{left:166.126667pt;}
.x5{left:174.628000pt;}
.x7{left:373.860000pt;}
.x2{left:377.180000pt;}
.x6{left:406.557333pt;}
.x4{left:409.878667pt;}
}




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