
    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_045940c3c0195ad90c748048.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.037000;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_777f825977b59ac75aa332d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.029000;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_d16a30a8c4bd8aa242df787d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_53170b488f5c476c9407f751.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.173000;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_18e94f1e850ce9fa39c0607a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.012000;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_d47f5b4fee7e379c3984640a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.012000;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_cd2fc5c971f4ab3f55035b27.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.185000;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_c3e6ec729fe38cdb2c1dfa2a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.874023;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_39488e7d2179cb7942940b11.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;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:ffa;src:url('chunks/assets/font_55826ff759ba0c62049fc01c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;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:ffb;src:url('chunks/assets/font_8ec02ba7d793a7694152879c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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:ffc;src:url('chunks/assets/font_98441f6caed074bf41c30c43.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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:ffd;src:url('chunks/assets/font_4685c43299e3d0c4483d4502.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.691406;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);}
.v3{vertical-align:-27.360000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.v5{vertical-align:9.360000px;}
.v2{vertical-align:27.360000px;}
.ls4{letter-spacing:-9.000000px;}
.ls5{letter-spacing:-6.300000px;}
.ls2{letter-spacing:-3.232764px;}
.ls0{letter-spacing:-2.959902px;}
.lsc{letter-spacing:-2.160000px;}
.lsf{letter-spacing:-1.920000px;}
.ls1{letter-spacing:-1.778688px;}
.lsd{letter-spacing:-1.440000px;}
.lse{letter-spacing:-0.960000px;}
.ls11{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.480000px;}
.ls19{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.048000px;}
.ls13{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.289440px;}
.ls8{letter-spacing:0.390000px;}
.ls9{letter-spacing:0.480000px;}
.lsa{letter-spacing:0.600000px;}
.ls1a{letter-spacing:0.864000px;}
.ls16{letter-spacing:0.900000px;}
.ls7{letter-spacing:0.922752px;}
.ls6{letter-spacing:11.340000px;}
.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;}
}
.ws1a{word-spacing:-18.864000px;}
.ws16{word-spacing:-18.288000px;}
.ws14{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.856000px;}
.ws19{word-spacing:-17.712000px;}
.ws13{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.008000px;}
.ws9{word-spacing:-12.528000px;}
.ws17{word-spacing:-12.349440px;}
.wsa{word-spacing:-12.288000px;}
.ws15{word-spacing:-12.060000px;}
.ws7{word-spacing:-12.048000px;}
.ws5{word-spacing:-11.520000px;}
.ws6{word-spacing:-11.088000px;}
.ws12{word-spacing:-9.720000px;}
.wsd{word-spacing:-0.720000px;}
.wsc{word-spacing:-0.461376px;}
.ws10{word-spacing:-0.300000px;}
.wsf{word-spacing:-0.240000px;}
.wse{word-spacing:-0.195000px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:1.778688px;}
.ws11{word-spacing:1.920000px;}
.wsb{word-spacing:2.160000px;}
.ws0{word-spacing:2.959902px;}
.ws2{word-spacing:3.232764px;}
.ws4{word-spacing:9.000000px;}
._7{margin-left:-16.500000px;}
._1d{margin-left:-7.658693px;}
._9{margin-left:-5.440689px;}
._4{margin-left:-4.094834px;}
._0{margin-left:-2.959902px;}
._2{margin-left:-1.479951px;}
._1{width:1.085297px;}
._e{width:2.160000px;}
._3{width:3.348405px;}
._33{width:4.451595px;}
._30{width:5.815902px;}
._2f{width:6.816000px;}
._6{width:8.594834px;}
._8{width:10.174736px;}
._2b{width:11.847951px;}
._2c{width:13.141475px;}
._31{width:15.552000px;}
._26{width:17.141503px;}
._28{width:18.336703px;}
._27{width:19.422000px;}
._20{width:20.762535px;}
._2d{width:22.032000px;}
._32{width:23.367951px;}
._2e{width:24.696000px;}
._2a{width:28.326240px;}
._29{width:29.521440px;}
._34{width:71.064000px;}
._35{width:72.243951px;}
._25{width:95.089680px;}
._24{width:96.238800px;}
._17{width:100.578703px;}
._1b{width:102.471951px;}
._c{width:105.552000px;}
._f{width:107.280000px;}
._d{width:182.190935px;}
._1a{width:217.659740px;}
._12{width:229.086641px;}
._23{width:319.325003px;}
._11{width:370.231755px;}
._13{width:463.510295px;}
._21{width:465.518540px;}
._10{width:559.565062px;}
._18{width:566.031510px;}
._1f{width:723.214442px;}
._22{width:968.707691px;}
._14{width:1568.767902px;}
._16{width:1651.319853px;}
._1e{width:1708.439853px;}
._19{width:1993.663902px;}
._b{width:2012.260053px;}
._1c{width:2020.766834px;}
._15{width:2127.840000px;}
._a{width:2420.496000px;}
._5{width:2659.353600px;}
.fc5{color:rgb(100,99,99);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc4{color:rgb(157,157,156);}
.fc1{color:rgb(87,87,86);}
.fc0{color:rgb(209,18,42);}
.fs3{font-size:36.000000px;}
.fsf{font-size:38.880000px;}
.fsa{font-size:39.000000px;}
.fs7{font-size:48.000000px;}
.fs10{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.289600px;}
.fse{font-size:59.760000px;}
.fsb{font-size:60.000000px;}
.fs11{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fs8{font-size:92.275200px;}
.fsc{font-size:95.760000px;}
.fs0{font-size:98.663400px;}
.fs2{font-size:107.758800px;}
.fs5{font-size:210.000000px;}
.fs4{font-size:300.000000px;}
.y6{bottom:-34.759800px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.924000px;}
.yb{bottom:30.885300px;}
.ya{bottom:36.309300px;}
.y42{bottom:91.871700px;}
.y41{bottom:112.619700px;}
.y9{bottom:123.424650px;}
.y40{bottom:135.527700px;}
.y3f{bottom:156.275700px;}
.y3e{bottom:179.183700px;}
.y8{bottom:181.958550px;}
.y68{bottom:199.110000px;}
.y3d{bottom:199.931700px;}
.y3c{bottom:222.839700px;}
.y67{bottom:237.270000px;}
.y3b{bottom:243.587700px;}
.y7{bottom:253.658550px;}
.y66{bottom:261.030000px;}
.y3a{bottom:266.495700px;}
.y39{bottom:287.243700px;}
.y65{bottom:299.910000px;}
.y38{bottom:310.151700px;}
.y64{bottom:323.670000px;}
.y37{bottom:330.899700px;}
.y36{bottom:345.299700px;}
.y63{bottom:347.430000px;}
.y35{bottom:368.207700px;}
.y62{bottom:371.190000px;}
.y5{bottom:372.075393px;}
.y34{bottom:388.955700px;}
.y4{bottom:402.005400px;}
.y33{bottom:403.355700px;}
.y61{bottom:410.115000px;}
.y32{bottom:426.263700px;}
.y60{bottom:433.875000px;}
.y31{bottom:447.011700px;}
.y5f{bottom:457.635000px;}
.y30{bottom:469.919700px;}
.y5e{bottom:481.575000px;}
.y2f{bottom:486.419700px;}
.y5d{bottom:505.335000px;}
.y2e{bottom:507.167700px;}
.y2d{bottom:521.567700px;}
.y5c{bottom:529.095000px;}
.y2c{bottom:544.475700px;}
.y5b{bottom:552.855000px;}
.y2b{bottom:560.975700px;}
.y2a{bottom:581.723700px;}
.y5a{bottom:591.735000px;}
.y29{bottom:604.631700px;}
.y59{bottom:615.495000px;}
.y28{bottom:621.131700px;}
.y27{bottom:637.631700px;}
.y58{bottom:639.255000px;}
.y26{bottom:658.379700px;}
.y57{bottom:663.225000px;}
.y25{bottom:672.779700px;}
.y56{bottom:686.985000px;}
.y24{bottom:699.935550px;}
.y55{bottom:710.745000px;}
.y23{bottom:717.935550px;}
.y54{bottom:749.625000px;}
.y22{bottom:757.198800px;}
.y53{bottom:773.385000px;}
.y21{bottom:777.946800px;}
.y20{bottom:792.346800px;}
.y52{bottom:797.145000px;}
.y1f{bottom:815.254800px;}
.y51{bottom:820.905000px;}
.y3{bottom:825.597922px;}
.y1e{bottom:836.002800px;}
.y50{bottom:844.845000px;}
.y2{bottom:845.104200px;}
.y1d{bottom:858.910800px;}
.y4f{bottom:868.605000px;}
.y1c{bottom:879.658800px;}
.y1{bottom:888.345450px;}
.y1b{bottom:902.566800px;}
.y4e{bottom:907.350000px;}
.y1a{bottom:923.314800px;}
.y4d{bottom:927.510000px;}
.y19{bottom:946.222800px;}
.y4c{bottom:951.630000px;}
.y4b{bottom:962.070000px;}
.y18{bottom:966.970800px;}
.y4a{bottom:986.190000px;}
.y17{bottom:989.878800px;}
.y49{bottom:1003.290000px;}
.y16{bottom:1006.378800px;}
.y48{bottom:1013.730000px;}
.y15{bottom:1027.126800px;}
.y47{bottom:1031.010000px;}
.y46{bottom:1049.190000px;}
.y14{bottom:1050.034800px;}
.y13{bottom:1066.534800px;}
.y45{bottom:1075.290000px;}
.yf{bottom:1082.749650px;}
.y12{bottom:1087.282800px;}
.y44{bottom:1104.630000px;}
.y11{bottom:1110.527400px;}
.y10{bottom:1125.279150px;}
.y43{bottom:1133.970000px;}
.ye{bottom:1165.559100px;}
.yd{bottom:1187.159100px;}
.h7{height:26.525391px;}
.hf{height:37.401000px;}
.h17{height:38.158594px;}
.ha{height:42.498000px;}
.h1c{height:45.184219px;}
.h10{height:45.484800px;}
.h11{height:46.032000px;}
.h5{height:48.143155px;}
.hc{height:48.498000px;}
.h1b{height:49.992188px;}
.he{height:56.664000px;}
.h12{height:56.880000px;}
.h18{height:58.651172px;}
.h16{height:65.518594px;}
.h14{height:69.528867px;}
.h19{height:70.664062px;}
.h1a{height:72.562500px;}
.h4{height:80.114681px;}
.h15{height:84.898125px;}
.h6{height:86.638075px;}
.hd{height:88.491917px;}
.h9{height:165.270000px;}
.h8{height:284.400000px;}
.hb{height:1231.949700px;}
.h0{height:1259.820000px;}
.h1{height:1260.000000px;}
.h2{height:1262.835000px;}
.h13{height:1262.880000px;}
.h3{height:1263.000000px;}
.w3{width:892.912500px;}
.w2{width:892.914000px;}
.w4{width:892.980000px;}
.w1{width:893.250000px;}
.w0{width:893.520000px;}
.x0{left:0.000000px;}
.x4{left:15.000000px;}
.x1{left:83.932950px;}
.xc{left:85.039350px;}
.xf{left:127.656000px;}
.xe{left:138.901650px;}
.xd{left:140.731350px;}
.x6{left:206.914950px;}
.x7{left:286.042950px;}
.x2{left:359.516250px;}
.x5{left:467.614950px;}
.x3{left:519.834405px;}
.x9{left:531.153450px;}
.xa{left:556.636800px;}
.xb{left:648.937350px;}
.x8{left:793.042800px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.v5{vertical-align:8.320000pt;}
.v2{vertical-align:24.320000pt;}
.ls4{letter-spacing:-8.000000pt;}
.ls5{letter-spacing:-5.600000pt;}
.ls2{letter-spacing:-2.873568pt;}
.ls0{letter-spacing:-2.631024pt;}
.lsc{letter-spacing:-1.920000pt;}
.lsf{letter-spacing:-1.706667pt;}
.ls1{letter-spacing:-1.581056pt;}
.lsd{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.853333pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.426667pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.042667pt;}
.ls13{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.257280pt;}
.ls8{letter-spacing:0.346667pt;}
.ls9{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.533333pt;}
.ls1a{letter-spacing:0.768000pt;}
.ls16{letter-spacing:0.800000pt;}
.ls7{letter-spacing:0.820224pt;}
.ls6{letter-spacing:10.080000pt;}
.ws1a{word-spacing:-16.768000pt;}
.ws16{word-spacing:-16.256000pt;}
.ws14{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.872000pt;}
.ws19{word-spacing:-15.744000pt;}
.ws13{word-spacing:-13.280000pt;}
.ws8{word-spacing:-11.562667pt;}
.ws9{word-spacing:-11.136000pt;}
.ws17{word-spacing:-10.977280pt;}
.wsa{word-spacing:-10.922667pt;}
.ws15{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.709333pt;}
.ws5{word-spacing:-10.240000pt;}
.ws6{word-spacing:-9.856000pt;}
.ws12{word-spacing:-8.640000pt;}
.wsd{word-spacing:-0.640000pt;}
.wsc{word-spacing:-0.410112pt;}
.ws10{word-spacing:-0.266667pt;}
.wsf{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.173333pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:1.581056pt;}
.ws11{word-spacing:1.706667pt;}
.wsb{word-spacing:1.920000pt;}
.ws0{word-spacing:2.631024pt;}
.ws2{word-spacing:2.873568pt;}
.ws4{word-spacing:8.000000pt;}
._7{margin-left:-14.666667pt;}
._1d{margin-left:-6.807727pt;}
._9{margin-left:-4.836168pt;}
._4{margin-left:-3.639853pt;}
._0{margin-left:-2.631024pt;}
._2{margin-left:-1.315512pt;}
._1{width:0.964709pt;}
._e{width:1.920000pt;}
._3{width:2.976360pt;}
._33{width:3.956973pt;}
._30{width:5.169691pt;}
._2f{width:6.058667pt;}
._6{width:7.639853pt;}
._8{width:9.044210pt;}
._2b{width:10.531512pt;}
._2c{width:11.681311pt;}
._31{width:13.824000pt;}
._26{width:15.236891pt;}
._28{width:16.299291pt;}
._27{width:17.264000pt;}
._20{width:18.455587pt;}
._2d{width:19.584000pt;}
._32{width:20.771512pt;}
._2e{width:21.952000pt;}
._2a{width:25.178880pt;}
._29{width:26.241280pt;}
._34{width:63.168000pt;}
._35{width:64.216845pt;}
._25{width:84.524160pt;}
._24{width:85.545600pt;}
._17{width:89.403291pt;}
._1b{width:91.086179pt;}
._c{width:93.824000pt;}
._f{width:95.360000pt;}
._d{width:161.947498pt;}
._1a{width:193.475324pt;}
._12{width:203.632570pt;}
._23{width:283.844447pt;}
._11{width:329.094893pt;}
._13{width:412.009151pt;}
._21{width:413.794258pt;}
._10{width:497.391166pt;}
._18{width:503.139120pt;}
._1f{width:642.857282pt;}
._22{width:861.073503pt;}
._14{width:1394.460357pt;}
._16{width:1467.839869pt;}
._1e{width:1518.613203pt;}
._19{width:1772.145691pt;}
._b{width:1788.675603pt;}
._1c{width:1796.237186pt;}
._15{width:1891.413333pt;}
._a{width:2151.552000pt;}
._5{width:2363.869867pt;}
.fs3{font-size:32.000000pt;}
.fsf{font-size:34.560000pt;}
.fsa{font-size:34.666667pt;}
.fs7{font-size:42.666667pt;}
.fs10{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:52.701867pt;}
.fse{font-size:53.120000pt;}
.fsb{font-size:53.333333pt;}
.fs11{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fs8{font-size:82.022400pt;}
.fsc{font-size:85.120000pt;}
.fs0{font-size:87.700800pt;}
.fs2{font-size:95.785600pt;}
.fs5{font-size:186.666667pt;}
.fs4{font-size:266.666667pt;}
.y6{bottom:-30.897600pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.488000pt;}
.yb{bottom:27.453600pt;}
.ya{bottom:32.274933pt;}
.y42{bottom:81.663733pt;}
.y41{bottom:100.106400pt;}
.y9{bottom:109.710800pt;}
.y40{bottom:120.469067pt;}
.y3f{bottom:138.911733pt;}
.y3e{bottom:159.274400pt;}
.y8{bottom:161.740933pt;}
.y68{bottom:176.986667pt;}
.y3d{bottom:177.717067pt;}
.y3c{bottom:198.079733pt;}
.y67{bottom:210.906667pt;}
.y3b{bottom:216.522400pt;}
.y7{bottom:225.474267pt;}
.y66{bottom:232.026667pt;}
.y3a{bottom:236.885067pt;}
.y39{bottom:255.327733pt;}
.y65{bottom:266.586667pt;}
.y38{bottom:275.690400pt;}
.y64{bottom:287.706667pt;}
.y37{bottom:294.133067pt;}
.y36{bottom:306.933067pt;}
.y63{bottom:308.826667pt;}
.y35{bottom:327.295733pt;}
.y62{bottom:329.946667pt;}
.y5{bottom:330.733683pt;}
.y34{bottom:345.738400pt;}
.y4{bottom:357.338133pt;}
.y33{bottom:358.538400pt;}
.y61{bottom:364.546667pt;}
.y32{bottom:378.901067pt;}
.y60{bottom:385.666667pt;}
.y31{bottom:397.343733pt;}
.y5f{bottom:406.786667pt;}
.y30{bottom:417.706400pt;}
.y5e{bottom:428.066667pt;}
.y2f{bottom:432.373067pt;}
.y5d{bottom:449.186667pt;}
.y2e{bottom:450.815733pt;}
.y2d{bottom:463.615733pt;}
.y5c{bottom:470.306667pt;}
.y2c{bottom:483.978400pt;}
.y5b{bottom:491.426667pt;}
.y2b{bottom:498.645067pt;}
.y2a{bottom:517.087733pt;}
.y5a{bottom:525.986667pt;}
.y29{bottom:537.450400pt;}
.y59{bottom:547.106667pt;}
.y28{bottom:552.117067pt;}
.y27{bottom:566.783733pt;}
.y58{bottom:568.226667pt;}
.y26{bottom:585.226400pt;}
.y57{bottom:589.533333pt;}
.y25{bottom:598.026400pt;}
.y56{bottom:610.653333pt;}
.y24{bottom:622.164933pt;}
.y55{bottom:631.773333pt;}
.y23{bottom:638.164933pt;}
.y54{bottom:666.333333pt;}
.y22{bottom:673.065600pt;}
.y53{bottom:687.453333pt;}
.y21{bottom:691.508267pt;}
.y20{bottom:704.308267pt;}
.y52{bottom:708.573333pt;}
.y1f{bottom:724.670933pt;}
.y51{bottom:729.693333pt;}
.y3{bottom:733.864819pt;}
.y1e{bottom:743.113600pt;}
.y50{bottom:750.973333pt;}
.y2{bottom:751.203733pt;}
.y1d{bottom:763.476267pt;}
.y4f{bottom:772.093333pt;}
.y1c{bottom:781.918933pt;}
.y1{bottom:789.640400pt;}
.y1b{bottom:802.281600pt;}
.y4e{bottom:806.533333pt;}
.y1a{bottom:820.724267pt;}
.y4d{bottom:824.453333pt;}
.y19{bottom:841.086933pt;}
.y4c{bottom:845.893333pt;}
.y4b{bottom:855.173333pt;}
.y18{bottom:859.529600pt;}
.y4a{bottom:876.613333pt;}
.y17{bottom:879.892267pt;}
.y49{bottom:891.813333pt;}
.y16{bottom:894.558933pt;}
.y48{bottom:901.093333pt;}
.y15{bottom:913.001600pt;}
.y47{bottom:916.453333pt;}
.y46{bottom:932.613333pt;}
.y14{bottom:933.364267pt;}
.y13{bottom:948.030933pt;}
.y45{bottom:955.813333pt;}
.yf{bottom:962.444133pt;}
.y12{bottom:966.473600pt;}
.y44{bottom:981.893333pt;}
.y11{bottom:987.135467pt;}
.y10{bottom:1000.248133pt;}
.y43{bottom:1007.973333pt;}
.ye{bottom:1036.052533pt;}
.yd{bottom:1055.252533pt;}
.h7{height:23.578125pt;}
.hf{height:33.245333pt;}
.h17{height:33.918750pt;}
.ha{height:37.776000pt;}
.h1c{height:40.163750pt;}
.h10{height:40.430933pt;}
.h11{height:40.917333pt;}
.h5{height:42.793916pt;}
.hc{height:43.109333pt;}
.h1b{height:44.437500pt;}
.he{height:50.368000pt;}
.h12{height:50.560000pt;}
.h18{height:52.134375pt;}
.h16{height:58.238750pt;}
.h14{height:61.803437pt;}
.h19{height:62.812500pt;}
.h1a{height:64.500000pt;}
.h4{height:71.213050pt;}
.h15{height:75.465000pt;}
.h6{height:77.011622pt;}
.hd{height:78.659482pt;}
.h9{height:146.906667pt;}
.h8{height:252.800000pt;}
.hb{height:1095.066400pt;}
.h0{height:1119.840000pt;}
.h1{height:1120.000000pt;}
.h2{height:1122.520000pt;}
.h13{height:1122.560000pt;}
.h3{height:1122.666667pt;}
.w3{width:793.700000pt;}
.w2{width:793.701333pt;}
.w4{width:793.760000pt;}
.w1{width:794.000000pt;}
.w0{width:794.240000pt;}
.x0{left:0.000000pt;}
.x4{left:13.333333pt;}
.x1{left:74.607067pt;}
.xc{left:75.590533pt;}
.xf{left:113.472000pt;}
.xe{left:123.468133pt;}
.xd{left:125.094533pt;}
.x6{left:183.924400pt;}
.x7{left:254.260400pt;}
.x2{left:319.570000pt;}
.x5{left:415.657733pt;}
.x3{left:462.075026pt;}
.x9{left:472.136400pt;}
.xa{left:494.788267pt;}
.xb{left:576.833200pt;}
.x8{left:704.926933pt;}
}




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