
    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_8714364e976baa3653b6d45c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946777;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_a05592512f1e2be29a5e9377.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_430b3a5de24a83e0f1a57588.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728516;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_1ca58974923f76d34696007d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969238;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_401a34d1b0afa0a983fad429.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.129395;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_9a7e463160dde9d25959ef9a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.041016;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_4f5d18ba877d6f059eb73819.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_d74ec6a26bb2758d1555e495.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_d9651fb44378035455f7f6c6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v6{vertical-align:-23.759995px;}
.v5{vertical-align:-20.880063px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.440036px;}
.v1{vertical-align:5.759996px;}
.v4{vertical-align:23.759995px;}
.v3{vertical-align:27.360009px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007763px;}
.ls5{letter-spacing:0.179437px;}
.ls4{letter-spacing:0.179442px;}
.lsb{letter-spacing:0.179509px;}
.lsd{letter-spacing:6.850799px;}
.ls9{letter-spacing:7.199321px;}
.ls6{letter-spacing:25.379464px;}
.ls2{letter-spacing:32.770777px;}
.lse{letter-spacing:34.055251px;}
.ls3{letter-spacing:35.650772px;}
.lsa{letter-spacing:39.970732px;}
.lsc{letter-spacing:39.970799px;}
.ls7{letter-spacing:55.090808px;}
.ls8{letter-spacing:195.119365px;}
.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;}
}
.ws4{word-spacing:-66.242700px;}
.ws6{word-spacing:-18.000676px;}
.ws5{word-spacing:-16.560675px;}
.ws3{word-spacing:-14.940563px;}
.ws1{word-spacing:-10.440405px;}
.ws2{word-spacing:-9.720371px;}
.ws0{word-spacing:0.000000px;}
._19{margin-left:-2.540881px;}
._1{margin-left:-1.080045px;}
._0{width:1.086373px;}
._1b{width:2.137964px;}
._2{width:3.149217px;}
._a{width:4.150886px;}
._11{width:5.255857px;}
._9{width:6.266592px;}
._b{width:7.351506px;}
._c{width:8.476517px;}
._e{width:10.242406px;}
._10{width:11.546944px;}
._f{width:12.608593px;}
._8{width:14.539490px;}
._2c{width:16.135101px;}
._7{width:17.614705px;}
._23{width:19.039429px;}
._6{width:20.389112px;}
._5{width:21.543165px;}
._21{width:22.558486px;}
._20{width:24.387923px;}
._1e{width:25.852515px;}
._16{width:27.066324px;}
._17{width:28.956548px;}
._14{width:30.603967px;}
._2a{width:31.717035px;}
._1a{width:32.767883px;}
._29{width:33.771615px;}
._d{width:34.849238px;}
._26{width:35.968109px;}
._1d{width:37.680682px;}
._1c{width:39.083193px;}
._27{width:40.113577px;}
._2d{width:41.234270px;}
._22{width:42.744405px;}
._25{width:43.830414px;}
._24{width:45.193742px;}
._34{width:46.262429px;}
._1f{width:47.342312px;}
._33{width:49.223508px;}
._13{width:50.460607px;}
._12{width:51.706483px;}
._28{width:52.908658px;}
._35{width:54.438388px;}
._36{width:55.883114px;}
._2e{width:56.892366px;}
._2f{width:68.245388px;}
._30{width:69.356107px;}
._31{width:87.849801px;}
._32{width:88.859651px;}
._15{width:154.173389px;}
._2b{width:158.268510px;}
._4{width:192.895632px;}
._18{width:195.415965px;}
._3{width:495.159370px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760225px;}
.fs7{font-size:38.881485px;}
.fs6{font-size:41.761620px;}
.fs0{font-size:54.002250px;}
.fs4{font-size:59.762250px;}
.fs5{font-size:63.362250px;}
.fs1{font-size:66.242700px;}
.fs2{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.599997px;}
.y6{bottom:305.280052px;}
.y5{bottom:322.380066px;}
.y61{bottom:342.360077px;}
.y6c{bottom:347.580093px;}
.ya1{bottom:349.200096px;}
.y37{bottom:352.980079px;}
.y6b{bottom:359.460091px;}
.y73{bottom:359.640060px;}
.y60{bottom:364.860077px;}
.ya0{bottom:368.100083px;}
.y34{bottom:372.600083px;}
.y5f{bottom:376.740074px;}
.y9c{bottom:377.640060px;}
.y72{bottom:381.960091px;}
.y6a{bottom:382.140060px;}
.y9f{bottom:386.640060px;}
.ya8{bottom:387.000068px;}
.y33{bottom:390.780052px;}
.y36{bottom:391.140060px;}
.y71{bottom:394.020058px;}
.y69{bottom:394.200096px;}
.y7d{bottom:394.740074px;}
.y5e{bottom:399.240074px;}
.y9b{bottom:406.080093px;}
.y32{bottom:408.780052px;}
.y35{bottom:409.140060px;}
.y7b{bottom:411.300041px;}
.y5d{bottom:412.020058px;}
.y68{bottom:416.520058px;}
.y7c{bottom:424.980079px;}
.y31{bottom:427.680039px;}
.y67{bottom:428.580093px;}
.y70{bottom:429.300041px;}
.y97{bottom:439.200096px;}
.ya7{bottom:443.700096px;}
.y5c{bottom:444.060036px;}
.y30{bottom:445.860077px;}
.y66{bottom:451.080093px;}
.y96{bottom:458.280052px;}
.ya6{bottom:462.600083px;}
.y5b{bottom:462.960091px;}
.y65{bottom:463.140060px;}
.y2f{bottom:464.940033px;}
.y7a{bottom:468.360077px;}
.y95{bottom:477.180039px;}
.ya2{bottom:481.140060px;}
.y5a{bottom:481.860077px;}
.y2e{bottom:483.120072px;}
.y79{bottom:485.460091px;}
.y64{bottom:485.640060px;}
.y94{bottom:496.260064px;}
.y78{bottom:497.520058px;}
.y98{bottom:498.240074px;}
.y63{bottom:498.420043px;}
.y59{bottom:500.940033px;}
.y2d{bottom:501.300041px;}
.y77{bottom:514.800041px;}
.y93{bottom:515.160049px;}
.y2c{bottom:519.300041px;}
.y58{bottom:519.840088px;}
.y76{bottom:532.080093px;}
.y92{bottom:534.060036px;}
.y2b{bottom:537.480079px;}
.y57{bottom:538.920043px;}
.y91{bottom:553.140060px;}
.y75{bottom:554.580093px;}
.y2a{bottom:555.480079px;}
.y9e{bottom:557.460091px;}
.y56{bottom:557.820099px;}
.y74{bottom:567.360077px;}
.y90{bottom:572.040047px;}
.y29{bottom:573.660049px;}
.y9d{bottom:576.360077px;}
.y55{bottom:576.720085px;}
.y8f{bottom:591.120072px;}
.y28{bottom:591.840088px;}
.y54{bottom:595.800041px;}
.y27{bottom:609.840088px;}
.y8e{bottom:610.020058px;}
.ya5{bottom:614.340088px;}
.y53{bottom:614.700096px;}
.y26{bottom:628.020058px;}
.y8d{bottom:628.920043px;}
.ya4{bottom:633.420043px;}
.y52{bottom:633.780052px;}
.y25{bottom:646.200096px;}
.y8c{bottom:648.000068px;}
.ya3{bottom:652.320099px;}
.y51{bottom:652.680039px;}
.y24{bottom:664.200096px;}
.y8b{bottom:666.540047px;}
.y50{bottom:671.760064px;}
.y23{bottom:682.380066px;}
.y8a{bottom:685.980079px;}
.y4f{bottom:690.660049px;}
.y22{bottom:700.380066px;}
.y89{bottom:704.880066px;}
.y4e{bottom:709.560070px;}
.y21{bottom:718.560070px;}
.y88{bottom:723.780052px;}
.y4d{bottom:728.640060px;}
.y20{bottom:736.740074px;}
.y87{bottom:742.860077px;}
.y4c{bottom:747.540081px;}
.y1f{bottom:754.740074px;}
.y86{bottom:761.760064px;}
.y4b{bottom:766.620072px;}
.y1e{bottom:772.920078px;}
.y85{bottom:780.840054px;}
.y4a{bottom:785.520058px;}
.y1d{bottom:791.100083px;}
.y84{bottom:799.740074px;}
.y49{bottom:804.420078px;}
.y1c{bottom:809.100083px;}
.y83{bottom:818.820065px;}
.y48{bottom:823.500068px;}
.y1b{bottom:827.280052px;}
.y82{bottom:838.800076px;}
.y47{bottom:842.400055px;}
.y1a{bottom:845.280052px;}
.y81{bottom:857.880066px;}
.y46{bottom:861.480079px;}
.y19{bottom:863.460056px;}
.y80{bottom:878.040081px;}
.y45{bottom:880.380066px;}
.y18{bottom:881.640060px;}
.y7f{bottom:897.120072px;}
.y44{bottom:899.280052px;}
.y17{bottom:899.640060px;}
.y7e{bottom:917.280052px;}
.y16{bottom:917.460056px;}
.y43{bottom:918.360077px;}
.y15{bottom:936.180073px;}
.y42{bottom:937.260064px;}
.y14{bottom:953.460056px;}
.yaa{bottom:954.900055px;}
.y9a{bottom:955.980079px;}
.y41{bottom:956.340054px;}
.y13{bottom:969.120072px;}
.y99{bottom:974.880066px;}
.y40{bottom:975.240074px;}
.y12{bottom:989.100065px;}
.y3f{bottom:994.140060px;}
.y11{bottom:1008.360060px;}
.y6f{bottom:1012.860060px;}
.y3e{bottom:1013.220068px;}
.y10{bottom:1025.460074px;}
.y6e{bottom:1031.760064px;}
.y3d{bottom:1032.120072px;}
.yf{bottom:1044.540064px;}
.y6d{bottom:1050.840070px;}
.y3c{bottom:1051.200061px;}
.ye{bottom:1063.440067px;}
.ya9{bottom:1069.740074px;}
.y3b{bottom:1070.100065px;}
.yd{bottom:1082.520058px;}
.y3a{bottom:1089.000068px;}
.yc{bottom:1100.160067px;}
.yb{bottom:1103.760064px;}
.y39{bottom:1108.080059px;}
.y9{bottom:1119.060070px;}
.y8{bottom:1122.660067px;}
.y38{bottom:1126.620063px;}
.y62{bottom:1126.980063px;}
.y7{bottom:1140.660067px;}
.y4{bottom:1145.880066px;}
.y3{bottom:1164.420069px;}
.y2{bottom:1180.260064px;}
.y1{bottom:1196.100065px;}
.h5{height:4.128911px;}
.h7{height:18.539994px;}
.h14{height:34.040284px;}
.h2{height:38.682276px;}
.h3{height:47.450215px;}
.ha{height:47.482560px;}
.h1a{height:49.257167px;}
.h6{height:49.908440px;}
.he{height:52.224354px;}
.h9{height:52.321150px;}
.hc{height:53.079850px;}
.h11{height:54.598475px;}
.hf{height:55.472907px;}
.hd{height:56.277311px;}
.h10{height:57.994708px;}
.h8{height:58.835679px;}
.hb{height:58.839845px;}
.h15{height:60.321665px;}
.h16{height:60.321669px;}
.h17{height:60.321800px;}
.h13{height:60.321804px;}
.h19{height:60.321836px;}
.h18{height:60.321939px;}
.h1b{height:60.321944px;}
.h12{height:61.780719px;}
.h4{height:63.037524px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:8.100013px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:166.860008px;}
.xa{left:174.060001px;}
.x14{left:175.319996px;}
.x15{left:193.860008px;}
.x17{left:202.319996px;}
.x2{left:215.099997px;}
.x16{left:220.860008px;}
.x11{left:223.560001px;}
.x1{left:228.780001px;}
.x10{left:237.240006px;}
.xb{left:242.280001px;}
.xf{left:282.960005px;}
.xd{left:328.860008px;}
.x3{left:375.300007px;}
.x12{left:383.759994px;}
.xe{left:396.720017px;}
.x6{left:427.500000px;}
.xc{left:434.160015px;}
.x4{left:442.079990px;}
.x13{left:450.540012px;}
.x9{left:492.839985px;}
.x7{left:590.399987px;}
.x8{left:717.480011px;}
@media print{
.v6{vertical-align:-21.119996pt;}
.v5{vertical-align:-18.560056pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.280032pt;}
.v1{vertical-align:5.119996pt;}
.v4{vertical-align:21.119996pt;}
.v3{vertical-align:24.320008pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006900pt;}
.ls5{letter-spacing:0.159500pt;}
.ls4{letter-spacing:0.159504pt;}
.lsb{letter-spacing:0.159564pt;}
.lsd{letter-spacing:6.089599pt;}
.ls9{letter-spacing:6.399396pt;}
.ls6{letter-spacing:22.559524pt;}
.ls2{letter-spacing:29.129579pt;}
.lse{letter-spacing:30.271334pt;}
.ls3{letter-spacing:31.689575pt;}
.lsa{letter-spacing:35.529539pt;}
.lsc{letter-spacing:35.529599pt;}
.ls7{letter-spacing:48.969607pt;}
.ls8{letter-spacing:173.439436pt;}
.ws4{word-spacing:-58.882400pt;}
.ws6{word-spacing:-16.000601pt;}
.ws5{word-spacing:-14.720600pt;}
.ws3{word-spacing:-13.280500pt;}
.ws1{word-spacing:-9.280360pt;}
.ws2{word-spacing:-8.640330pt;}
.ws0{word-spacing:0.000000pt;}
._19{margin-left:-2.258561pt;}
._1{margin-left:-0.960040pt;}
._0{width:0.965665pt;}
._1b{width:1.900412pt;}
._2{width:2.799304pt;}
._a{width:3.689677pt;}
._11{width:4.671873pt;}
._9{width:5.570304pt;}
._b{width:6.534672pt;}
._c{width:7.534682pt;}
._e{width:9.104361pt;}
._10{width:10.263950pt;}
._f{width:11.207638pt;}
._8{width:12.923991pt;}
._2c{width:14.342312pt;}
._7{width:15.657516pt;}
._23{width:16.923937pt;}
._6{width:18.123655pt;}
._5{width:19.149480pt;}
._21{width:20.051987pt;}
._20{width:21.678154pt;}
._1e{width:22.980014pt;}
._16{width:24.058954pt;}
._17{width:25.739154pt;}
._14{width:27.203526pt;}
._2a{width:28.192920pt;}
._1a{width:29.127007pt;}
._29{width:30.019213pt;}
._d{width:30.977100pt;}
._26{width:31.971652pt;}
._1d{width:33.493940pt;}
._1c{width:34.740616pt;}
._27{width:35.656513pt;}
._2d{width:36.652685pt;}
._22{width:37.995026pt;}
._25{width:38.960368pt;}
._24{width:40.172215pt;}
._34{width:41.122160pt;}
._1f{width:42.082055pt;}
._33{width:43.754230pt;}
._13{width:44.853873pt;}
._12{width:45.961318pt;}
._28{width:47.029918pt;}
._35{width:48.389678pt;}
._36{width:49.673879pt;}
._2e{width:50.570992pt;}
._2f{width:60.662567pt;}
._30{width:61.649873pt;}
._31{width:78.088712pt;}
._32{width:78.986357pt;}
._15{width:137.043012pt;}
._2b{width:140.683120pt;}
._4{width:171.462784pt;}
._18{width:173.703080pt;}
._3{width:440.141662pt;}
.fs3{font-size:5.120200pt;}
.fs7{font-size:34.561320pt;}
.fs6{font-size:37.121440pt;}
.fs0{font-size:48.002000pt;}
.fs4{font-size:53.122000pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:58.882400pt;}
.fs2{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.199997pt;}
.y6{bottom:271.360047pt;}
.y5{bottom:286.560059pt;}
.y61{bottom:304.320069pt;}
.y6c{bottom:308.960083pt;}
.ya1{bottom:310.400086pt;}
.y37{bottom:313.760071pt;}
.y6b{bottom:319.520081pt;}
.y73{bottom:319.680054pt;}
.y60{bottom:324.320069pt;}
.ya0{bottom:327.200074pt;}
.y34{bottom:331.200074pt;}
.y5f{bottom:334.880066pt;}
.y9c{bottom:335.680054pt;}
.y72{bottom:339.520081pt;}
.y6a{bottom:339.680054pt;}
.y9f{bottom:343.680054pt;}
.ya8{bottom:344.000061pt;}
.y33{bottom:347.360047pt;}
.y36{bottom:347.680054pt;}
.y71{bottom:350.240052pt;}
.y69{bottom:350.400086pt;}
.y7d{bottom:350.880066pt;}
.y5e{bottom:354.880066pt;}
.y9b{bottom:360.960083pt;}
.y32{bottom:363.360047pt;}
.y35{bottom:363.680054pt;}
.y7b{bottom:365.600037pt;}
.y5d{bottom:366.240052pt;}
.y68{bottom:370.240052pt;}
.y7c{bottom:377.760071pt;}
.y31{bottom:380.160035pt;}
.y67{bottom:380.960083pt;}
.y70{bottom:381.600037pt;}
.y97{bottom:390.400086pt;}
.ya7{bottom:394.400086pt;}
.y5c{bottom:394.720032pt;}
.y30{bottom:396.320069pt;}
.y66{bottom:400.960083pt;}
.y96{bottom:407.360047pt;}
.ya6{bottom:411.200074pt;}
.y5b{bottom:411.520081pt;}
.y65{bottom:411.680054pt;}
.y2f{bottom:413.280030pt;}
.y7a{bottom:416.320069pt;}
.y95{bottom:424.160035pt;}
.ya2{bottom:427.680054pt;}
.y5a{bottom:428.320069pt;}
.y2e{bottom:429.440064pt;}
.y79{bottom:431.520081pt;}
.y64{bottom:431.680054pt;}
.y94{bottom:441.120057pt;}
.y78{bottom:442.240052pt;}
.y98{bottom:442.880066pt;}
.y63{bottom:443.040039pt;}
.y59{bottom:445.280030pt;}
.y2d{bottom:445.600037pt;}
.y77{bottom:457.600037pt;}
.y93{bottom:457.920044pt;}
.y2c{bottom:461.600037pt;}
.y58{bottom:462.080079pt;}
.y76{bottom:472.960083pt;}
.y92{bottom:474.720032pt;}
.y2b{bottom:477.760071pt;}
.y57{bottom:479.040039pt;}
.y91{bottom:491.680054pt;}
.y75{bottom:492.960083pt;}
.y2a{bottom:493.760071pt;}
.y9e{bottom:495.520081pt;}
.y56{bottom:495.840088pt;}
.y74{bottom:504.320069pt;}
.y90{bottom:508.480042pt;}
.y29{bottom:509.920044pt;}
.y9d{bottom:512.320069pt;}
.y55{bottom:512.640076pt;}
.y8f{bottom:525.440064pt;}
.y28{bottom:526.080079pt;}
.y54{bottom:529.600037pt;}
.y27{bottom:542.080079pt;}
.y8e{bottom:542.240052pt;}
.ya5{bottom:546.080079pt;}
.y53{bottom:546.400086pt;}
.y26{bottom:558.240052pt;}
.y8d{bottom:559.040039pt;}
.ya4{bottom:563.040039pt;}
.y52{bottom:563.360047pt;}
.y25{bottom:574.400086pt;}
.y8c{bottom:576.000061pt;}
.ya3{bottom:579.840088pt;}
.y51{bottom:580.160035pt;}
.y24{bottom:590.400086pt;}
.y8b{bottom:592.480042pt;}
.y50{bottom:597.120057pt;}
.y23{bottom:606.560059pt;}
.y8a{bottom:609.760071pt;}
.y4f{bottom:613.920044pt;}
.y22{bottom:622.560059pt;}
.y89{bottom:626.560059pt;}
.y4e{bottom:630.720063pt;}
.y21{bottom:638.720063pt;}
.y88{bottom:643.360047pt;}
.y4d{bottom:647.680054pt;}
.y20{bottom:654.880066pt;}
.y87{bottom:660.320069pt;}
.y4c{bottom:664.480072pt;}
.y1f{bottom:670.880066pt;}
.y86{bottom:677.120057pt;}
.y4b{bottom:681.440064pt;}
.y1e{bottom:687.040070pt;}
.y85{bottom:694.080048pt;}
.y4a{bottom:698.240052pt;}
.y1d{bottom:703.200074pt;}
.y84{bottom:710.880066pt;}
.y49{bottom:715.040070pt;}
.y1c{bottom:719.200074pt;}
.y83{bottom:727.840058pt;}
.y48{bottom:732.000061pt;}
.y1b{bottom:735.360047pt;}
.y82{bottom:745.600068pt;}
.y47{bottom:748.800049pt;}
.y1a{bottom:751.360047pt;}
.y81{bottom:762.560059pt;}
.y46{bottom:765.760071pt;}
.y19{bottom:767.520050pt;}
.y80{bottom:780.480072pt;}
.y45{bottom:782.560059pt;}
.y18{bottom:783.680054pt;}
.y7f{bottom:797.440064pt;}
.y44{bottom:799.360047pt;}
.y17{bottom:799.680054pt;}
.y7e{bottom:815.360047pt;}
.y16{bottom:815.520050pt;}
.y43{bottom:816.320069pt;}
.y15{bottom:832.160065pt;}
.y42{bottom:833.120057pt;}
.y14{bottom:847.520050pt;}
.yaa{bottom:848.800049pt;}
.y9a{bottom:849.760071pt;}
.y41{bottom:850.080048pt;}
.y13{bottom:861.440064pt;}
.y99{bottom:866.560059pt;}
.y40{bottom:866.880066pt;}
.y12{bottom:879.200058pt;}
.y3f{bottom:883.680054pt;}
.y11{bottom:896.320054pt;}
.y6f{bottom:900.320054pt;}
.y3e{bottom:900.640061pt;}
.y10{bottom:911.520066pt;}
.y6e{bottom:917.120057pt;}
.y3d{bottom:917.440064pt;}
.yf{bottom:928.480057pt;}
.y6d{bottom:934.080063pt;}
.y3c{bottom:934.400055pt;}
.ye{bottom:945.280060pt;}
.ya9{bottom:950.880066pt;}
.y3b{bottom:951.200058pt;}
.yd{bottom:962.240052pt;}
.y3a{bottom:968.000061pt;}
.yc{bottom:977.920060pt;}
.yb{bottom:981.120057pt;}
.y39{bottom:984.960053pt;}
.y9{bottom:994.720063pt;}
.y8{bottom:997.920060pt;}
.y38{bottom:1001.440056pt;}
.y62{bottom:1001.760056pt;}
.y7{bottom:1013.920060pt;}
.y4{bottom:1018.560059pt;}
.y3{bottom:1035.040062pt;}
.y2{bottom:1049.120057pt;}
.y1{bottom:1063.200058pt;}
.h5{height:3.670143pt;}
.h7{height:16.479995pt;}
.h14{height:30.258031pt;}
.h2{height:34.384245pt;}
.h3{height:42.177969pt;}
.ha{height:42.206720pt;}
.h1a{height:43.784148pt;}
.h6{height:44.363058pt;}
.he{height:46.421648pt;}
.h9{height:46.507688pt;}
.hc{height:47.182089pt;}
.h11{height:48.531978pt;}
.hf{height:49.309251pt;}
.hd{height:50.024276pt;}
.h10{height:51.550851pt;}
.h8{height:52.298382pt;}
.hb{height:52.302085pt;}
.h15{height:53.619258pt;}
.h16{height:53.619262pt;}
.h17{height:53.619378pt;}
.h13{height:53.619382pt;}
.h19{height:53.619410pt;}
.h18{height:53.619502pt;}
.h1b{height:53.619506pt;}
.h12{height:54.916195pt;}
.h4{height:56.033355pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:7.200012pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:148.320007pt;}
.xa{left:154.720001pt;}
.x14{left:155.839996pt;}
.x15{left:172.320007pt;}
.x17{left:179.839996pt;}
.x2{left:191.199997pt;}
.x16{left:196.320007pt;}
.x11{left:198.720001pt;}
.x1{left:203.360001pt;}
.x10{left:210.880005pt;}
.xb{left:215.360001pt;}
.xf{left:251.520004pt;}
.xd{left:292.320007pt;}
.x3{left:333.600006pt;}
.x12{left:341.119995pt;}
.xe{left:352.640015pt;}
.x6{left:380.000000pt;}
.xc{left:385.920013pt;}
.x4{left:392.959991pt;}
.x13{left:400.480011pt;}
.x9{left:438.079987pt;}
.x7{left:524.799988pt;}
.x8{left:637.760010pt;}
}




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