
    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_1664343c32d751954df0a273.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_aa11736ab0cb42f408abcd8d.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_a9bac6f02361fd8a5acc7568.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.944824;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_966b380908fc154827060177.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_196db626697a0b8735bbfb89.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088867;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_472f91fdd1bf21140f92682f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c12b65cf796c155232327e29.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v5{vertical-align:-23.759995px;}
.v4{vertical-align:-20.880063px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.440036px;}
.v1{vertical-align:5.759996px;}
.v6{vertical-align:20.879793px;}
.v3{vertical-align:23.759991px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.007763px;}
.ls8{letter-spacing:0.179370px;}
.ls1{letter-spacing:0.179437px;}
.ls3{letter-spacing:0.179442px;}
.ls9{letter-spacing:0.179509px;}
.lsd{letter-spacing:0.261212px;}
.ls7{letter-spacing:0.719307px;}
.ls6{letter-spacing:12.239437px;}
.lsa{letter-spacing:15.839244px;}
.lsc{letter-spacing:16.559262px;}
.ls5{letter-spacing:18.719375px;}
.ls2{letter-spacing:30.239298px;}
.ls10{letter-spacing:34.930754px;}
.ls11{letter-spacing:34.930822px;}
.lsf{letter-spacing:38.530768px;}
.ls13{letter-spacing:39.250718px;}
.lsb{letter-spacing:39.970732px;}
.ls12{letter-spacing:39.970799px;}
.lse{letter-spacing:67.330741px;}
.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;}
}
.ws1{word-spacing:-16.560675px;}
.ws4{word-spacing:-14.940563px;}
.ws2{word-spacing:-10.440405px;}
.ws3{word-spacing:-9.720371px;}
.ws0{word-spacing:0.000000px;}
._1f{margin-left:-2.285611px;}
._1{margin-left:-1.080045px;}
._0{width:1.086373px;}
._12{width:2.121902px;}
._2{width:3.149217px;}
._1b{width:5.067168px;}
._11{width:6.115547px;}
._14{width:7.478956px;}
._18{width:9.196609px;}
._21{width:10.279393px;}
._1e{width:11.486079px;}
._e{width:12.764658px;}
._6{width:13.966083px;}
._5{width:15.102818px;}
._17{width:17.853184px;}
._20{width:18.860982px;}
._16{width:19.869166px;}
._f{width:20.889739px;}
._b{width:21.893989px;}
._c{width:23.073160px;}
._10{width:24.421303px;}
._19{width:25.547429px;}
._1a{width:26.623140px;}
._22{width:27.971137px;}
._26{width:29.301117px;}
._25{width:30.392221px;}
._1c{width:31.622609px;}
._1d{width:32.652929px;}
._7{width:33.850020px;}
._27{width:35.616837px;}
._13{width:36.697421px;}
._8{width:38.155278px;}
._23{width:39.340779px;}
._28{width:41.125590px;}
._2b{width:42.493934px;}
._29{width:43.745023px;}
._d{width:45.045036px;}
._2a{width:46.412823px;}
._24{width:48.280319px;}
._9{width:50.544733px;}
._a{width:51.780573px;}
._31{width:58.613145px;}
._33{width:85.459531px;}
._32{width:86.493818px;}
._37{width:122.494396px;}
._38{width:123.514054px;}
._36{width:127.747139px;}
._34{width:128.995755px;}
._35{width:130.011628px;}
._15{width:139.165821px;}
._4{width:179.423891px;}
._2c{width:219.969236px;}
._2d{width:274.917814px;}
._2e{width:276.254809px;}
._3{width:360.520018px;}
._2f{width:474.154120px;}
._30{width:475.158887px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760225px;}
.fs6{font-size:38.881485px;}
.fs5{font-size:41.761620px;}
.fs0{font-size:54.002250px;}
.fs4{font-size:59.762250px;}
.fs1{font-size:66.242700px;}
.fs2{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.599997px;}
.yf{bottom:3.600013px;}
.y6{bottom:305.280052px;}
.y5{bottom:322.380066px;}
.y63{bottom:342.360077px;}
.y77{bottom:347.580093px;}
.y8f{bottom:349.200096px;}
.y62{bottom:359.640060px;}
.y7c{bottom:360.360077px;}
.y39{bottom:362.880066px;}
.y76{bottom:364.860077px;}
.y87{bottom:368.100083px;}
.y61{bottom:376.740074px;}
.y7f{bottom:381.960091px;}
.y35{bottom:382.680039px;}
.y38{bottom:383.040047px;}
.y7b{bottom:387.000068px;}
.y75{bottom:394.020058px;}
.y89{bottom:394.740074px;}
.y60{bottom:399.240074px;}
.y34{bottom:401.580093px;}
.y37{bottom:401.940033px;}
.y7a{bottom:406.080093px;}
.y74{bottom:411.300041px;}
.y5f{bottom:412.020058px;}
.y6b{bottom:416.520058px;}
.y33{bottom:420.660049px;}
.y36{bottom:421.020058px;}
.y79{bottom:424.980079px;}
.y7e{bottom:428.580093px;}
.y80{bottom:429.300041px;}
.y6a{bottom:433.800041px;}
.y32{bottom:440.280052px;}
.y5e{bottom:444.060036px;}
.y69{bottom:445.860077px;}
.y7d{bottom:446.580093px;}
.y85{bottom:451.080093px;}
.y31{bottom:459.360077px;}
.y5d{bottom:462.960091px;}
.y73{bottom:463.140060px;}
.y68{bottom:468.360077px;}
.y30{bottom:479.340088px;}
.y84{bottom:480.240074px;}
.y67{bottom:481.140060px;}
.y5c{bottom:481.860077px;}
.y72{bottom:485.460091px;}
.y71{bottom:497.520058px;}
.y2f{bottom:498.420043px;}
.y5b{bottom:500.940033px;}
.y83{bottom:502.740074px;}
.y70{bottom:514.800041px;}
.y88{bottom:515.520058px;}
.y2e{bottom:517.320099px;}
.y5a{bottom:519.840088px;}
.y82{bottom:520.020058px;}
.y6f{bottom:532.080093px;}
.y81{bottom:532.800041px;}
.y2d{bottom:536.220085px;}
.y8e{bottom:538.560036px;}
.y59{bottom:538.920043px;}
.y6e{bottom:549.360077px;}
.y2c{bottom:555.300041px;}
.y8d{bottom:557.460091px;}
.y58{bottom:557.820099px;}
.y6d{bottom:571.860077px;}
.y2b{bottom:574.200096px;}
.y57{bottom:576.720085px;}
.y6c{bottom:584.640060px;}
.y2a{bottom:593.280052px;}
.y56{bottom:595.800041px;}
.y29{bottom:612.180039px;}
.y66{bottom:614.340088px;}
.y55{bottom:614.700096px;}
.y28{bottom:631.260064px;}
.y65{bottom:633.420043px;}
.y54{bottom:633.780052px;}
.y27{bottom:650.160049px;}
.y53{bottom:652.680039px;}
.y26{bottom:669.060036px;}
.y52{bottom:671.760064px;}
.y25{bottom:688.140060px;}
.y51{bottom:690.660049px;}
.y24{bottom:707.040081px;}
.y50{bottom:709.560070px;}
.y23{bottom:726.120072px;}
.y4f{bottom:728.640060px;}
.y22{bottom:745.020058px;}
.y4e{bottom:747.540081px;}
.y21{bottom:763.920078px;}
.y4d{bottom:766.620072px;}
.y20{bottom:783.000068px;}
.y4c{bottom:785.520058px;}
.y1f{bottom:801.900055px;}
.y78{bottom:804.060070px;}
.y4b{bottom:804.420078px;}
.y1e{bottom:820.980079px;}
.y4a{bottom:823.500068px;}
.y1d{bottom:839.880066px;}
.y49{bottom:842.400055px;}
.y1c{bottom:858.780052px;}
.y48{bottom:861.480079px;}
.y1b{bottom:877.500068px;}
.y86{bottom:880.020058px;}
.y47{bottom:880.380066px;}
.y1a{bottom:896.940067px;}
.y8c{bottom:898.920078px;}
.y46{bottom:899.280052px;}
.y19{bottom:912.780052px;}
.y8b{bottom:918.000068px;}
.y45{bottom:918.360077px;}
.y18{bottom:932.400055px;}
.y8a{bottom:936.900055px;}
.y44{bottom:937.260064px;}
.y17{bottom:951.480079px;}
.y43{bottom:956.340054px;}
.y16{bottom:968.580059px;}
.y42{bottom:975.240074px;}
.y15{bottom:987.660067px;}
.y41{bottom:994.140060px;}
.y14{bottom:1006.560070px;}
.y40{bottom:1013.220068px;}
.y13{bottom:1025.640060px;}
.y3f{bottom:1032.120072px;}
.y12{bottom:1043.280069px;}
.y11{bottom:1046.880066px;}
.y91{bottom:1049.940067px;}
.y3e{bottom:1051.200061px;}
.y10{bottom:1065.780069px;}
.y90{bottom:1069.740074px;}
.y3d{bottom:1070.100065px;}
.ye{bottom:1081.080059px;}
.yd{bottom:1084.680073px;}
.y3c{bottom:1089.000068px;}
.yc{bottom:1100.160067px;}
.yb{bottom:1103.760064px;}
.y3b{bottom:1108.080059px;}
.y9{bottom:1119.060070px;}
.y8{bottom:1122.660067px;}
.y3a{bottom:1126.620063px;}
.y64{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:5.043009px;}
.h7{height:18.539994px;}
.h9{height:18.539996px;}
.h8{height:18.540012px;}
.h1a{height:33.907389px;}
.h12{height:34.040284px;}
.h2{height:38.682276px;}
.h3{height:47.450215px;}
.h6{height:48.000081px;}
.hb{height:52.321150px;}
.hd{height:53.079850px;}
.h18{height:54.920077px;}
.hf{height:57.768292px;}
.h10{height:57.994708px;}
.ha{height:58.835679px;}
.hc{height:58.839845px;}
.he{height:59.208328px;}
.h17{height:60.321665px;}
.h15{height:60.321669px;}
.h11{height:60.321800px;}
.h13{height:60.321804px;}
.h16{height:60.321836px;}
.h14{height:60.321939px;}
.h19{height:60.321944px;}
.h4{height:63.037524px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:3.960022px;}
.w4{width:4.139992px;}
.w3{width:8.100013px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:148.319996px;}
.x5{left:166.860008px;}
.xd{left:170.099997px;}
.x16{left:175.319996px;}
.x1b{left:193.860008px;}
.x18{left:202.319996px;}
.x2{left:215.099997px;}
.x1a{left:219.780001px;}
.x17{left:220.860008px;}
.x13{left:223.560001px;}
.x1{left:228.780001px;}
.x12{left:237.240006px;}
.xe{left:266.759994px;}
.x11{left:282.960005px;}
.x10{left:307.259994px;}
.x3{left:375.300007px;}
.x14{left:383.759994px;}
.x9{left:395.279983px;}
.x6{left:427.500000px;}
.xf{left:433.980011px;}
.x4{left:442.079990px;}
.x15{left:450.540012px;}
.xb{left:546.120002px;}
.xc{left:547.740006px;}
.x7{left:569.339985px;}
.xa{left:717.480011px;}
.x8{left:721.620002px;}
@media print{
.v5{vertical-align:-21.119996pt;}
.v4{vertical-align:-18.560056pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.280032pt;}
.v1{vertical-align:5.119996pt;}
.v6{vertical-align:18.559816pt;}
.v3{vertical-align:21.119992pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.006900pt;}
.ls8{letter-spacing:0.159440pt;}
.ls1{letter-spacing:0.159500pt;}
.ls3{letter-spacing:0.159504pt;}
.ls9{letter-spacing:0.159564pt;}
.lsd{letter-spacing:0.232189pt;}
.ls7{letter-spacing:0.639384pt;}
.ls6{letter-spacing:10.879500pt;}
.lsa{letter-spacing:14.079328pt;}
.lsc{letter-spacing:14.719344pt;}
.ls5{letter-spacing:16.639444pt;}
.ls2{letter-spacing:26.879376pt;}
.ls10{letter-spacing:31.049559pt;}
.ls11{letter-spacing:31.049619pt;}
.lsf{letter-spacing:34.249571pt;}
.ls13{letter-spacing:34.889527pt;}
.lsb{letter-spacing:35.529539pt;}
.ls12{letter-spacing:35.529599pt;}
.lse{letter-spacing:59.849547pt;}
.ws1{word-spacing:-14.720600pt;}
.ws4{word-spacing:-13.280500pt;}
.ws2{word-spacing:-9.280360pt;}
.ws3{word-spacing:-8.640330pt;}
.ws0{word-spacing:0.000000pt;}
._1f{margin-left:-2.031654pt;}
._1{margin-left:-0.960040pt;}
._0{width:0.965665pt;}
._12{width:1.886135pt;}
._2{width:2.799304pt;}
._1b{width:4.504149pt;}
._11{width:5.436042pt;}
._14{width:6.647961pt;}
._18{width:8.174763pt;}
._21{width:9.137238pt;}
._1e{width:10.209848pt;}
._e{width:11.346362pt;}
._6{width:12.414296pt;}
._5{width:13.424727pt;}
._17{width:15.869497pt;}
._20{width:16.765317pt;}
._16{width:17.661481pt;}
._f{width:18.568657pt;}
._b{width:19.461323pt;}
._c{width:20.509476pt;}
._10{width:21.707825pt;}
._19{width:22.708826pt;}
._1a{width:23.665014pt;}
._22{width:24.863233pt;}
._26{width:26.045437pt;}
._25{width:27.015307pt;}
._1c{width:28.108986pt;}
._1d{width:29.024826pt;}
._7{width:30.088906pt;}
._27{width:31.659410pt;}
._13{width:32.619930pt;}
._8{width:33.915802pt;}
._23{width:34.969581pt;}
._28{width:36.556080pt;}
._2b{width:37.772386pt;}
._29{width:38.884465pt;}
._d{width:40.040032pt;}
._2a{width:41.255842pt;}
._24{width:42.915839pt;}
._9{width:44.928651pt;}
._a{width:46.027176pt;}
._31{width:52.100574pt;}
._33{width:75.964027pt;}
._32{width:76.883394pt;}
._37{width:108.883908pt;}
._38{width:109.790271pt;}
._36{width:113.553012pt;}
._34{width:114.662894pt;}
._35{width:115.565892pt;}
._15{width:123.702952pt;}
._4{width:159.487903pt;}
._2c{width:195.528210pt;}
._2d{width:244.371390pt;}
._2e{width:245.559830pt;}
._3{width:320.462238pt;}
._2f{width:421.470329pt;}
._30{width:422.363455pt;}
.fs3{font-size:5.120200pt;}
.fs6{font-size:34.561320pt;}
.fs5{font-size:37.121440pt;}
.fs0{font-size:48.002000pt;}
.fs4{font-size:53.122000pt;}
.fs1{font-size:58.882400pt;}
.fs2{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.199997pt;}
.yf{bottom:3.200012pt;}
.y6{bottom:271.360047pt;}
.y5{bottom:286.560059pt;}
.y63{bottom:304.320069pt;}
.y77{bottom:308.960083pt;}
.y8f{bottom:310.400086pt;}
.y62{bottom:319.680054pt;}
.y7c{bottom:320.320069pt;}
.y39{bottom:322.560059pt;}
.y76{bottom:324.320069pt;}
.y87{bottom:327.200074pt;}
.y61{bottom:334.880066pt;}
.y7f{bottom:339.520081pt;}
.y35{bottom:340.160035pt;}
.y38{bottom:340.480042pt;}
.y7b{bottom:344.000061pt;}
.y75{bottom:350.240052pt;}
.y89{bottom:350.880066pt;}
.y60{bottom:354.880066pt;}
.y34{bottom:356.960083pt;}
.y37{bottom:357.280030pt;}
.y7a{bottom:360.960083pt;}
.y74{bottom:365.600037pt;}
.y5f{bottom:366.240052pt;}
.y6b{bottom:370.240052pt;}
.y33{bottom:373.920044pt;}
.y36{bottom:374.240052pt;}
.y79{bottom:377.760071pt;}
.y7e{bottom:380.960083pt;}
.y80{bottom:381.600037pt;}
.y6a{bottom:385.600037pt;}
.y32{bottom:391.360047pt;}
.y5e{bottom:394.720032pt;}
.y69{bottom:396.320069pt;}
.y7d{bottom:396.960083pt;}
.y85{bottom:400.960083pt;}
.y31{bottom:408.320069pt;}
.y5d{bottom:411.520081pt;}
.y73{bottom:411.680054pt;}
.y68{bottom:416.320069pt;}
.y30{bottom:426.080079pt;}
.y84{bottom:426.880066pt;}
.y67{bottom:427.680054pt;}
.y5c{bottom:428.320069pt;}
.y72{bottom:431.520081pt;}
.y71{bottom:442.240052pt;}
.y2f{bottom:443.040039pt;}
.y5b{bottom:445.280030pt;}
.y83{bottom:446.880066pt;}
.y70{bottom:457.600037pt;}
.y88{bottom:458.240052pt;}
.y2e{bottom:459.840088pt;}
.y5a{bottom:462.080079pt;}
.y82{bottom:462.240052pt;}
.y6f{bottom:472.960083pt;}
.y81{bottom:473.600037pt;}
.y2d{bottom:476.640076pt;}
.y8e{bottom:478.720032pt;}
.y59{bottom:479.040039pt;}
.y6e{bottom:488.320069pt;}
.y2c{bottom:493.600037pt;}
.y8d{bottom:495.520081pt;}
.y58{bottom:495.840088pt;}
.y6d{bottom:508.320069pt;}
.y2b{bottom:510.400086pt;}
.y57{bottom:512.640076pt;}
.y6c{bottom:519.680054pt;}
.y2a{bottom:527.360047pt;}
.y56{bottom:529.600037pt;}
.y29{bottom:544.160035pt;}
.y66{bottom:546.080079pt;}
.y55{bottom:546.400086pt;}
.y28{bottom:561.120057pt;}
.y65{bottom:563.040039pt;}
.y54{bottom:563.360047pt;}
.y27{bottom:577.920044pt;}
.y53{bottom:580.160035pt;}
.y26{bottom:594.720032pt;}
.y52{bottom:597.120057pt;}
.y25{bottom:611.680054pt;}
.y51{bottom:613.920044pt;}
.y24{bottom:628.480072pt;}
.y50{bottom:630.720063pt;}
.y23{bottom:645.440064pt;}
.y4f{bottom:647.680054pt;}
.y22{bottom:662.240052pt;}
.y4e{bottom:664.480072pt;}
.y21{bottom:679.040070pt;}
.y4d{bottom:681.440064pt;}
.y20{bottom:696.000061pt;}
.y4c{bottom:698.240052pt;}
.y1f{bottom:712.800049pt;}
.y78{bottom:714.720063pt;}
.y4b{bottom:715.040070pt;}
.y1e{bottom:729.760071pt;}
.y4a{bottom:732.000061pt;}
.y1d{bottom:746.560059pt;}
.y49{bottom:748.800049pt;}
.y1c{bottom:763.360047pt;}
.y48{bottom:765.760071pt;}
.y1b{bottom:780.000061pt;}
.y86{bottom:782.240052pt;}
.y47{bottom:782.560059pt;}
.y1a{bottom:797.280060pt;}
.y8c{bottom:799.040070pt;}
.y46{bottom:799.360047pt;}
.y19{bottom:811.360047pt;}
.y8b{bottom:816.000061pt;}
.y45{bottom:816.320069pt;}
.y18{bottom:828.800049pt;}
.y8a{bottom:832.800049pt;}
.y44{bottom:833.120057pt;}
.y17{bottom:845.760071pt;}
.y43{bottom:850.080048pt;}
.y16{bottom:860.960053pt;}
.y42{bottom:866.880066pt;}
.y15{bottom:877.920060pt;}
.y41{bottom:883.680054pt;}
.y14{bottom:894.720063pt;}
.y40{bottom:900.640061pt;}
.y13{bottom:911.680054pt;}
.y3f{bottom:917.440064pt;}
.y12{bottom:927.360062pt;}
.y11{bottom:930.560059pt;}
.y91{bottom:933.280060pt;}
.y3e{bottom:934.400055pt;}
.y10{bottom:947.360062pt;}
.y90{bottom:950.880066pt;}
.y3d{bottom:951.200058pt;}
.ye{bottom:960.960053pt;}
.yd{bottom:964.160065pt;}
.y3c{bottom:968.000061pt;}
.yc{bottom:977.920060pt;}
.yb{bottom:981.120057pt;}
.y3b{bottom:984.960053pt;}
.y9{bottom:994.720063pt;}
.y8{bottom:997.920060pt;}
.y3a{bottom:1001.440056pt;}
.y64{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:4.482675pt;}
.h7{height:16.479995pt;}
.h9{height:16.479996pt;}
.h8{height:16.480011pt;}
.h1a{height:30.139901pt;}
.h12{height:30.258031pt;}
.h2{height:34.384245pt;}
.h3{height:42.177969pt;}
.h6{height:42.666739pt;}
.hb{height:46.507688pt;}
.hd{height:47.182089pt;}
.h18{height:48.817847pt;}
.hf{height:51.349593pt;}
.h10{height:51.550851pt;}
.ha{height:52.298382pt;}
.hc{height:52.302085pt;}
.he{height:52.629625pt;}
.h17{height:53.619258pt;}
.h15{height:53.619262pt;}
.h11{height:53.619378pt;}
.h13{height:53.619382pt;}
.h16{height:53.619410pt;}
.h14{height:53.619502pt;}
.h19{height:53.619506pt;}
.h4{height:56.033355pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:3.520020pt;}
.w4{width:3.679993pt;}
.w3{width:7.200012pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:131.839996pt;}
.x5{left:148.320007pt;}
.xd{left:151.199997pt;}
.x16{left:155.839996pt;}
.x1b{left:172.320007pt;}
.x18{left:179.839996pt;}
.x2{left:191.199997pt;}
.x1a{left:195.360001pt;}
.x17{left:196.320007pt;}
.x13{left:198.720001pt;}
.x1{left:203.360001pt;}
.x12{left:210.880005pt;}
.xe{left:237.119995pt;}
.x11{left:251.520004pt;}
.x10{left:273.119995pt;}
.x3{left:333.600006pt;}
.x14{left:341.119995pt;}
.x9{left:351.359985pt;}
.x6{left:380.000000pt;}
.xf{left:385.760010pt;}
.x4{left:392.959991pt;}
.x15{left:400.480011pt;}
.xb{left:485.440002pt;}
.xc{left:486.880005pt;}
.x7{left:506.079987pt;}
.xa{left:637.760010pt;}
.x8{left:641.440002pt;}
}




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