
    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_bc8744c41460ec23546944ac.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_2929aa90e6d0f990d0db8ccc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_43186a94ad2edb2451175fab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_c0ed2aad60e1997b6fba65bd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_6ba6a6abb19328000f9eb113.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_141110f1f3695bd49c75f7f4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_6193fc93719873dbca485474.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.208200px;}
.ls6{letter-spacing:-0.206400px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206400px;}
.ls4{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:7.866720px;}
.ls1{letter-spacing:31.626720px;}
.lsa{letter-spacing:46.026720px;}
.lsd{letter-spacing:46.170720px;}
.ls9{letter-spacing:49.626720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.146400px;}
.ws7{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.733600px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._2{margin-left:-1949.263200px;}
._3{margin-left:-1629.524160px;}
._5{margin-left:-1199.100000px;}
._4{margin-left:-1171.100160px;}
._6{margin-left:-1166.086080px;}
._1f{margin-left:-707.304960px;}
._34{margin-left:-15.192000px;}
._38{margin-left:-6.454080px;}
._1e{margin-left:-3.870720px;}
._0{margin-left:-1.347840px;}
._1{width:1.124400px;}
._7{width:2.838000px;}
._9{width:4.140240px;}
._8{width:5.151120px;}
._d{width:6.513840px;}
._b{width:7.959120px;}
._15{width:9.262800px;}
._14{width:10.398240px;}
._17{width:12.011760px;}
._18{width:13.087440px;}
._a{width:16.564560px;}
._21{width:17.688960px;}
._e{width:19.063440px;}
._c{width:20.150160px;}
._1d{width:21.280560px;}
._16{width:22.361280px;}
._13{width:24.322320px;}
._12{width:25.338240px;}
._11{width:26.365200px;}
._29{width:27.695520px;}
._24{width:28.755600px;}
._26{width:30.336000px;}
._22{width:31.803360px;}
._f{width:33.058320px;}
._10{width:34.138560px;}
._30{width:36.214560px;}
._19{width:38.018400px;}
._25{width:39.202560px;}
._2d{width:40.349040px;}
._1a{width:41.723520px;}
._1b{width:43.086960px;}
._1c{width:44.282160px;}
._2c{width:45.656640px;}
._2f{width:46.732320px;}
._2a{width:48.047040px;}
._45{width:49.253280px;}
._2b{width:51.165600px;}
._32{width:53.305920px;}
._2e{width:57.907440px;}
._20{width:60.582720px;}
._31{width:62.340720px;}
._3f{width:65.078640px;}
._27{width:66.225120px;}
._43{width:68.997600px;}
._33{width:70.493280px;}
._46{width:75.607440px;}
._3e{width:77.280720px;}
._42{width:78.967200px;}
._23{width:84.764640px;}
._28{width:87.499680px;}
._36{width:105.476400px;}
._37{width:129.929280px;}
._3a{width:131.651280px;}
._35{width:137.926080px;}
._40{width:154.132080px;}
._41{width:158.304240px;}
._39{width:168.164640px;}
._3d{width:183.044880px;}
._3b{width:235.095840px;}
._3c{width:248.063760px;}
._44{width:348.292320px;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.760000px;}
.ya3{bottom:5.940000px;}
.y9{bottom:10.980000px;}
.y8{bottom:11.700000px;}
.y95{bottom:25.560000px;}
.ya6{bottom:25.740000px;}
.y9a{bottom:25.785000px;}
.ya{bottom:39.780000px;}
.y9c{bottom:45.360000px;}
.y97{bottom:45.540000px;}
.y99{bottom:45.585000px;}
.y6{bottom:55.440000px;}
.y9e{bottom:65.160000px;}
.ya1{bottom:65.370000px;}
.ya2{bottom:79.740000px;}
.y3a{bottom:82.980000px;}
.yd2{bottom:87.840000px;}
.y89{bottom:90.000000px;}
.y72{bottom:91.620000px;}
.ya0{bottom:100.440000px;}
.y39{bottom:102.780000px;}
.yd1{bottom:107.640000px;}
.y88{bottom:109.800000px;}
.y71{bottom:111.420000px;}
.y93{bottom:118.080000px;}
.y38{bottom:122.760000px;}
.yd0{bottom:127.620000px;}
.y87{bottom:129.600000px;}
.y70{bottom:131.220000px;}
.y92{bottom:138.060000px;}
.y37{bottom:142.560000px;}
.ycf{bottom:147.420000px;}
.y86{bottom:149.400000px;}
.y6f{bottom:151.200000px;}
.y91{bottom:157.890000px;}
.y36{bottom:162.390000px;}
.yce{bottom:167.250000px;}
.y85{bottom:169.410000px;}
.y6e{bottom:171.030000px;}
.y90{bottom:177.690000px;}
.y9f{bottom:180.570000px;}
.y35{bottom:182.190000px;}
.ycd{bottom:187.050000px;}
.y84{bottom:189.210000px;}
.y6d{bottom:190.830000px;}
.y8f{bottom:197.490000px;}
.y34{bottom:201.990000px;}
.ycc{bottom:206.850000px;}
.y83{bottom:209.010000px;}
.y6c{bottom:210.630000px;}
.y8e{bottom:217.290000px;}
.y33{bottom:221.970000px;}
.ycb{bottom:226.830000px;}
.y82{bottom:228.810000px;}
.y6b{bottom:230.430000px;}
.y8d{bottom:237.270000px;}
.y9d{bottom:240.870000px;}
.y32{bottom:241.770000px;}
.yca{bottom:246.630000px;}
.y81{bottom:248.610000px;}
.y6a{bottom:250.410000px;}
.y8c{bottom:257.070000px;}
.y31{bottom:261.570000px;}
.yc9{bottom:266.430000px;}
.y80{bottom:268.590000px;}
.y69{bottom:270.210000px;}
.y8b{bottom:276.870000px;}
.y30{bottom:281.370000px;}
.yc8{bottom:286.230000px;}
.y7f{bottom:288.390000px;}
.y68{bottom:290.010000px;}
.y8a{bottom:293.430000px;}
.y2f{bottom:301.170000px;}
.yc7{bottom:306.030000px;}
.y7e{bottom:308.190000px;}
.y67{bottom:309.810000px;}
.y9b{bottom:320.970000px;}
.y2e{bottom:321.150000px;}
.yc6{bottom:326.010000px;}
.y7d{bottom:327.990000px;}
.y66{bottom:329.610000px;}
.y2d{bottom:340.950000px;}
.yc5{bottom:345.810000px;}
.y7c{bottom:347.790000px;}
.y65{bottom:349.590000px;}
.y2c{bottom:360.750000px;}
.yc4{bottom:365.610000px;}
.y7b{bottom:367.770000px;}
.y64{bottom:369.390000px;}
.y2b{bottom:380.550000px;}
.y98{bottom:381.090000px;}
.yc3{bottom:385.410000px;}
.y7a{bottom:387.570000px;}
.y63{bottom:389.190000px;}
.y2a{bottom:400.350000px;}
.yc2{bottom:405.255000px;}
.y79{bottom:407.415000px;}
.y62{bottom:409.035000px;}
.y29{bottom:420.375000px;}
.yc1{bottom:425.235000px;}
.y78{bottom:427.215000px;}
.y61{bottom:428.835000px;}
.y28{bottom:440.175000px;}
.y96{bottom:441.435000px;}
.yc0{bottom:445.035000px;}
.y77{bottom:447.015000px;}
.y60{bottom:448.815000px;}
.y27{bottom:459.975000px;}
.ybf{bottom:464.835000px;}
.y76{bottom:466.995000px;}
.y5f{bottom:468.615000px;}
.y26{bottom:479.775000px;}
.ybe{bottom:484.635000px;}
.y75{bottom:486.795000px;}
.y5e{bottom:488.415000px;}
.y25{bottom:499.575000px;}
.y94{bottom:501.735000px;}
.ybd{bottom:504.435000px;}
.y74{bottom:506.595000px;}
.y5d{bottom:508.215000px;}
.y24{bottom:519.555000px;}
.y73{bottom:523.155000px;}
.ybc{bottom:524.415000px;}
.y5c{bottom:528.015000px;}
.y23{bottom:539.355000px;}
.ybb{bottom:544.215000px;}
.y5b{bottom:547.995000px;}
.y22{bottom:559.155000px;}
.yba{bottom:564.015000px;}
.y5a{bottom:567.795000px;}
.y21{bottom:581.295000px;}
.yb9{bottom:583.815000px;}
.y59{bottom:587.595000px;}
.y20{bottom:601.095000px;}
.yb8{bottom:603.615000px;}
.y58{bottom:607.395000px;}
.y1f{bottom:620.895000px;}
.yb7{bottom:623.595000px;}
.y57{bottom:627.195000px;}
.y1e{bottom:640.695000px;}
.yb6{bottom:643.395000px;}
.y56{bottom:647.175000px;}
.y1d{bottom:660.705000px;}
.yb5{bottom:663.225000px;}
.y55{bottom:667.005000px;}
.y1c{bottom:680.505000px;}
.yb4{bottom:683.025000px;}
.y54{bottom:686.805000px;}
.y1b{bottom:700.305000px;}
.yb3{bottom:702.825000px;}
.y53{bottom:706.605000px;}
.y1a{bottom:720.105000px;}
.yb2{bottom:722.805000px;}
.y52{bottom:726.405000px;}
.y19{bottom:739.905000px;}
.yb1{bottom:742.605000px;}
.y51{bottom:746.385000px;}
.y18{bottom:759.885000px;}
.yb0{bottom:762.405000px;}
.y50{bottom:766.185000px;}
.y17{bottom:779.685000px;}
.yaf{bottom:782.205000px;}
.y4f{bottom:785.985000px;}
.y16{bottom:799.485000px;}
.yae{bottom:802.005000px;}
.y4e{bottom:805.785000px;}
.y15{bottom:819.285000px;}
.yad{bottom:821.985000px;}
.y4d{bottom:825.585000px;}
.y14{bottom:839.085000px;}
.yac{bottom:841.785000px;}
.y4c{bottom:845.565000px;}
.y13{bottom:859.065000px;}
.yab{bottom:861.585000px;}
.y4b{bottom:865.365000px;}
.y12{bottom:878.865000px;}
.yaa{bottom:881.385000px;}
.y4a{bottom:885.165000px;}
.y11{bottom:898.530000px;}
.ya9{bottom:901.230000px;}
.y49{bottom:905.010000px;}
.ya8{bottom:916.170000px;}
.y10{bottom:920.850000px;}
.y48{bottom:924.810000px;}
.y47{bottom:944.790000px;}
.yf{bottom:945.870000px;}
.ye{bottom:960.990000px;}
.y46{bottom:964.590000px;}
.yd{bottom:982.230000px;}
.y45{bottom:984.390000px;}
.ya7{bottom:996.090000px;}
.y44{bottom:1004.190000px;}
.yc{bottom:1005.810000px;}
.y43{bottom:1023.990000px;}
.yb{bottom:1037.490000px;}
.y42{bottom:1043.970000px;}
.ya5{bottom:1056.390000px;}
.y41{bottom:1063.770000px;}
.y5{bottom:1065.570000px;}
.y40{bottom:1083.570000px;}
.y4{bottom:1085.910000px;}
.y3f{bottom:1103.370000px;}
.ya4{bottom:1116.690000px;}
.y3{bottom:1116.870000px;}
.y3e{bottom:1123.170000px;}
.y3d{bottom:1143.150000px;}
.y2{bottom:1147.680000px;}
.y3c{bottom:1172.520000px;}
.y1{bottom:1180.260000px;}
.y3b{bottom:1194.300000px;}
.h16{height:19.980000px;}
.h5{height:21.240000px;}
.hc{height:27.147656px;}
.h7{height:27.432422px;}
.h6{height:29.464453px;}
.h10{height:39.600000px;}
.h17{height:39.636000px;}
.h4{height:41.726953px;}
.ha{height:42.164648px;}
.hd{height:43.506914px;}
.he{height:45.461953px;}
.hf{height:46.251562px;}
.h3{height:46.736719px;}
.hb{height:53.224453px;}
.h13{height:59.400000px;}
.h2{height:59.436914px;}
.h11{height:59.580000px;}
.h12{height:59.616000px;}
.h8{height:65.884219px;}
.h9{height:67.565039px;}
.h14{height:79.200000px;}
.h15{height:79.416000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:37.620000px;}
.w6{width:49.860000px;}
.wb{width:49.896000px;}
.w8{width:57.420000px;}
.wa{width:57.600000px;}
.w3{width:59.076000px;}
.wc{width:92.880000px;}
.w9{width:92.916000px;}
.w7{width:140.076000px;}
.w4{width:732.930000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1e{left:46.260000px;}
.x1{left:54.179987px;}
.x8{left:65.159987px;}
.x12{left:70.199987px;}
.xd{left:75.599987px;}
.x10{left:82.979987px;}
.x1f{left:84.600000px;}
.x23{left:92.375987px;}
.x3{left:113.796000px;}
.x1c{left:135.396000px;}
.x9{left:138.455987px;}
.x7{left:193.539000px;}
.x6{left:198.579000px;}
.xb{left:225.209987px;}
.xc{left:249.329987px;}
.x1d{left:276.375000px;}
.x20{left:334.695000px;}
.x11{left:361.514987px;}
.x16{left:402.014987px;}
.x5{left:411.909000px;}
.xa{left:446.504987px;}
.x17{left:465.405000px;}
.xe{left:473.144987px;}
.x24{left:484.484987px;}
.x13{left:489.344987px;}
.xf{left:494.744987px;}
.x21{left:499.244987px;}
.x18{left:503.745000px;}
.x25{left:511.484987px;}
.x22{left:526.244987px;}
.x19{left:554.505000px;}
.x15{left:556.664987px;}
.x1a{left:695.490000px;}
.x4{left:708.624000px;}
.x1b{left:753.810000px;}
.x14{left:834.659987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.185067pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183467pt;}
.ls4{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:6.992640pt;}
.ls1{letter-spacing:28.112640pt;}
.lsa{letter-spacing:40.912640pt;}
.lsd{letter-spacing:41.040640pt;}
.ls9{letter-spacing:44.112640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.096533pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._2{margin-left:-1732.678400pt;}
._3{margin-left:-1448.465920pt;}
._5{margin-left:-1065.866667pt;}
._4{margin-left:-1040.977920pt;}
._6{margin-left:-1036.520960pt;}
._1f{margin-left:-628.715520pt;}
._34{margin-left:-13.504000pt;}
._38{margin-left:-5.736960pt;}
._1e{margin-left:-3.440640pt;}
._0{margin-left:-1.198080pt;}
._1{width:0.999467pt;}
._7{width:2.522667pt;}
._9{width:3.680213pt;}
._8{width:4.578773pt;}
._d{width:5.790080pt;}
._b{width:7.074773pt;}
._15{width:8.233600pt;}
._14{width:9.242880pt;}
._17{width:10.677120pt;}
._18{width:11.633280pt;}
._a{width:14.724053pt;}
._21{width:15.723520pt;}
._e{width:16.945280pt;}
._c{width:17.911253pt;}
._1d{width:18.916053pt;}
._16{width:19.876693pt;}
._13{width:21.619840pt;}
._12{width:22.522880pt;}
._11{width:23.435733pt;}
._29{width:24.618240pt;}
._24{width:25.560533pt;}
._26{width:26.965333pt;}
._22{width:28.269653pt;}
._f{width:29.385173pt;}
._10{width:30.345387pt;}
._30{width:32.190720pt;}
._19{width:33.794133pt;}
._25{width:34.846720pt;}
._2d{width:35.865813pt;}
._1a{width:37.087573pt;}
._1b{width:38.299520pt;}
._1c{width:39.361920pt;}
._2c{width:40.583680pt;}
._2f{width:41.539840pt;}
._2a{width:42.708480pt;}
._45{width:43.780693pt;}
._2b{width:45.480533pt;}
._32{width:47.383040pt;}
._2e{width:51.473280pt;}
._20{width:53.851307pt;}
._31{width:55.413973pt;}
._3f{width:57.847680pt;}
._27{width:58.866773pt;}
._43{width:61.331200pt;}
._33{width:62.660693pt;}
._46{width:67.206613pt;}
._3e{width:68.693973pt;}
._42{width:70.193067pt;}
._23{width:75.346347pt;}
._28{width:77.777493pt;}
._36{width:93.756800pt;}
._37{width:115.492693pt;}
._3a{width:117.023360pt;}
._35{width:122.600960pt;}
._40{width:137.006293pt;}
._41{width:140.714880pt;}
._39{width:149.479680pt;}
._3d{width:162.706560pt;}
._3b{width:208.974080pt;}
._3c{width:220.501120pt;}
._44{width:309.593173pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.120000pt;}
.ya3{bottom:5.280000pt;}
.y9{bottom:9.760000pt;}
.y8{bottom:10.400000pt;}
.y95{bottom:22.720000pt;}
.ya6{bottom:22.880000pt;}
.y9a{bottom:22.920000pt;}
.ya{bottom:35.360000pt;}
.y9c{bottom:40.320000pt;}
.y97{bottom:40.480000pt;}
.y99{bottom:40.520000pt;}
.y6{bottom:49.280000pt;}
.y9e{bottom:57.920000pt;}
.ya1{bottom:58.106667pt;}
.ya2{bottom:70.880000pt;}
.y3a{bottom:73.760000pt;}
.yd2{bottom:78.080000pt;}
.y89{bottom:80.000000pt;}
.y72{bottom:81.440000pt;}
.ya0{bottom:89.280000pt;}
.y39{bottom:91.360000pt;}
.yd1{bottom:95.680000pt;}
.y88{bottom:97.600000pt;}
.y71{bottom:99.040000pt;}
.y93{bottom:104.960000pt;}
.y38{bottom:109.120000pt;}
.yd0{bottom:113.440000pt;}
.y87{bottom:115.200000pt;}
.y70{bottom:116.640000pt;}
.y92{bottom:122.720000pt;}
.y37{bottom:126.720000pt;}
.ycf{bottom:131.040000pt;}
.y86{bottom:132.800000pt;}
.y6f{bottom:134.400000pt;}
.y91{bottom:140.346667pt;}
.y36{bottom:144.346667pt;}
.yce{bottom:148.666667pt;}
.y85{bottom:150.586667pt;}
.y6e{bottom:152.026667pt;}
.y90{bottom:157.946667pt;}
.y9f{bottom:160.506667pt;}
.y35{bottom:161.946667pt;}
.ycd{bottom:166.266667pt;}
.y84{bottom:168.186667pt;}
.y6d{bottom:169.626667pt;}
.y8f{bottom:175.546667pt;}
.y34{bottom:179.546667pt;}
.ycc{bottom:183.866667pt;}
.y83{bottom:185.786667pt;}
.y6c{bottom:187.226667pt;}
.y8e{bottom:193.146667pt;}
.y33{bottom:197.306667pt;}
.ycb{bottom:201.626667pt;}
.y82{bottom:203.386667pt;}
.y6b{bottom:204.826667pt;}
.y8d{bottom:210.906667pt;}
.y9d{bottom:214.106667pt;}
.y32{bottom:214.906667pt;}
.yca{bottom:219.226667pt;}
.y81{bottom:220.986667pt;}
.y6a{bottom:222.586667pt;}
.y8c{bottom:228.506667pt;}
.y31{bottom:232.506667pt;}
.yc9{bottom:236.826667pt;}
.y80{bottom:238.746667pt;}
.y69{bottom:240.186667pt;}
.y8b{bottom:246.106667pt;}
.y30{bottom:250.106667pt;}
.yc8{bottom:254.426667pt;}
.y7f{bottom:256.346667pt;}
.y68{bottom:257.786667pt;}
.y8a{bottom:260.826667pt;}
.y2f{bottom:267.706667pt;}
.yc7{bottom:272.026667pt;}
.y7e{bottom:273.946667pt;}
.y67{bottom:275.386667pt;}
.y9b{bottom:285.306667pt;}
.y2e{bottom:285.466667pt;}
.yc6{bottom:289.786667pt;}
.y7d{bottom:291.546667pt;}
.y66{bottom:292.986667pt;}
.y2d{bottom:303.066667pt;}
.yc5{bottom:307.386667pt;}
.y7c{bottom:309.146667pt;}
.y65{bottom:310.746667pt;}
.y2c{bottom:320.666667pt;}
.yc4{bottom:324.986667pt;}
.y7b{bottom:326.906667pt;}
.y64{bottom:328.346667pt;}
.y2b{bottom:338.266667pt;}
.y98{bottom:338.746667pt;}
.yc3{bottom:342.586667pt;}
.y7a{bottom:344.506667pt;}
.y63{bottom:345.946667pt;}
.y2a{bottom:355.866667pt;}
.yc2{bottom:360.226667pt;}
.y79{bottom:362.146667pt;}
.y62{bottom:363.586667pt;}
.y29{bottom:373.666667pt;}
.yc1{bottom:377.986667pt;}
.y78{bottom:379.746667pt;}
.y61{bottom:381.186667pt;}
.y28{bottom:391.266667pt;}
.y96{bottom:392.386667pt;}
.yc0{bottom:395.586667pt;}
.y77{bottom:397.346667pt;}
.y60{bottom:398.946667pt;}
.y27{bottom:408.866667pt;}
.ybf{bottom:413.186667pt;}
.y76{bottom:415.106667pt;}
.y5f{bottom:416.546667pt;}
.y26{bottom:426.466667pt;}
.ybe{bottom:430.786667pt;}
.y75{bottom:432.706667pt;}
.y5e{bottom:434.146667pt;}
.y25{bottom:444.066667pt;}
.y94{bottom:445.986667pt;}
.ybd{bottom:448.386667pt;}
.y74{bottom:450.306667pt;}
.y5d{bottom:451.746667pt;}
.y24{bottom:461.826667pt;}
.y73{bottom:465.026667pt;}
.ybc{bottom:466.146667pt;}
.y5c{bottom:469.346667pt;}
.y23{bottom:479.426667pt;}
.ybb{bottom:483.746667pt;}
.y5b{bottom:487.106667pt;}
.y22{bottom:497.026667pt;}
.yba{bottom:501.346667pt;}
.y5a{bottom:504.706667pt;}
.y21{bottom:516.706667pt;}
.yb9{bottom:518.946667pt;}
.y59{bottom:522.306667pt;}
.y20{bottom:534.306667pt;}
.yb8{bottom:536.546667pt;}
.y58{bottom:539.906667pt;}
.y1f{bottom:551.906667pt;}
.yb7{bottom:554.306667pt;}
.y57{bottom:557.506667pt;}
.y1e{bottom:569.506667pt;}
.yb6{bottom:571.906667pt;}
.y56{bottom:575.266667pt;}
.y1d{bottom:587.293333pt;}
.yb5{bottom:589.533333pt;}
.y55{bottom:592.893333pt;}
.y1c{bottom:604.893333pt;}
.yb4{bottom:607.133333pt;}
.y54{bottom:610.493333pt;}
.y1b{bottom:622.493333pt;}
.yb3{bottom:624.733333pt;}
.y53{bottom:628.093333pt;}
.y1a{bottom:640.093333pt;}
.yb2{bottom:642.493333pt;}
.y52{bottom:645.693333pt;}
.y19{bottom:657.693333pt;}
.yb1{bottom:660.093333pt;}
.y51{bottom:663.453333pt;}
.y18{bottom:675.453333pt;}
.yb0{bottom:677.693333pt;}
.y50{bottom:681.053333pt;}
.y17{bottom:693.053333pt;}
.yaf{bottom:695.293333pt;}
.y4f{bottom:698.653333pt;}
.y16{bottom:710.653333pt;}
.yae{bottom:712.893333pt;}
.y4e{bottom:716.253333pt;}
.y15{bottom:728.253333pt;}
.yad{bottom:730.653333pt;}
.y4d{bottom:733.853333pt;}
.y14{bottom:745.853333pt;}
.yac{bottom:748.253333pt;}
.y4c{bottom:751.613333pt;}
.y13{bottom:763.613333pt;}
.yab{bottom:765.853333pt;}
.y4b{bottom:769.213333pt;}
.y12{bottom:781.213333pt;}
.yaa{bottom:783.453333pt;}
.y4a{bottom:786.813333pt;}
.y11{bottom:798.693333pt;}
.ya9{bottom:801.093333pt;}
.y49{bottom:804.453333pt;}
.ya8{bottom:814.373333pt;}
.y10{bottom:818.533333pt;}
.y48{bottom:822.053333pt;}
.y47{bottom:839.813333pt;}
.yf{bottom:840.773333pt;}
.ye{bottom:854.213333pt;}
.y46{bottom:857.413333pt;}
.yd{bottom:873.093333pt;}
.y45{bottom:875.013333pt;}
.ya7{bottom:885.413333pt;}
.y44{bottom:892.613333pt;}
.yc{bottom:894.053333pt;}
.y43{bottom:910.213333pt;}
.yb{bottom:922.213333pt;}
.y42{bottom:927.973333pt;}
.ya5{bottom:939.013333pt;}
.y41{bottom:945.573333pt;}
.y5{bottom:947.173333pt;}
.y40{bottom:963.173333pt;}
.y4{bottom:965.253333pt;}
.y3f{bottom:980.773333pt;}
.ya4{bottom:992.613333pt;}
.y3{bottom:992.773333pt;}
.y3e{bottom:998.373333pt;}
.y3d{bottom:1016.133333pt;}
.y2{bottom:1020.160000pt;}
.y3c{bottom:1042.240000pt;}
.y1{bottom:1049.120000pt;}
.y3b{bottom:1061.600000pt;}
.h16{height:17.760000pt;}
.h5{height:18.880000pt;}
.hc{height:24.131250pt;}
.h7{height:24.384375pt;}
.h6{height:26.190625pt;}
.h10{height:35.200000pt;}
.h17{height:35.232000pt;}
.h4{height:37.090625pt;}
.ha{height:37.479688pt;}
.hd{height:38.672812pt;}
.he{height:40.410625pt;}
.hf{height:41.112500pt;}
.h3{height:41.543750pt;}
.hb{height:47.310625pt;}
.h13{height:52.800000pt;}
.h2{height:52.832812pt;}
.h11{height:52.960000pt;}
.h12{height:52.992000pt;}
.h8{height:58.563750pt;}
.h9{height:60.057813pt;}
.h14{height:70.400000pt;}
.h15{height:70.592000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:33.440000pt;}
.w6{width:44.320000pt;}
.wb{width:44.352000pt;}
.w8{width:51.040000pt;}
.wa{width:51.200000pt;}
.w3{width:52.512000pt;}
.wc{width:82.560000pt;}
.w9{width:82.592000pt;}
.w7{width:124.512000pt;}
.w4{width:651.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1e{left:41.120000pt;}
.x1{left:48.159988pt;}
.x8{left:57.919988pt;}
.x12{left:62.399988pt;}
.xd{left:67.199988pt;}
.x10{left:73.759988pt;}
.x1f{left:75.200000pt;}
.x23{left:82.111988pt;}
.x3{left:101.152000pt;}
.x1c{left:120.352000pt;}
.x9{left:123.071988pt;}
.x7{left:172.034667pt;}
.x6{left:176.514667pt;}
.xb{left:200.186655pt;}
.xc{left:221.626655pt;}
.x1d{left:245.666667pt;}
.x20{left:297.506667pt;}
.x11{left:321.346655pt;}
.x16{left:357.346655pt;}
.x5{left:366.141333pt;}
.xa{left:396.893322pt;}
.x17{left:413.693333pt;}
.xe{left:420.573322pt;}
.x24{left:430.653322pt;}
.x13{left:434.973322pt;}
.xf{left:439.773322pt;}
.x21{left:443.773322pt;}
.x18{left:447.773333pt;}
.x25{left:454.653322pt;}
.x22{left:467.773322pt;}
.x19{left:492.893333pt;}
.x15{left:494.813322pt;}
.x1a{left:618.213333pt;}
.x4{left:629.888000pt;}
.x1b{left:670.053333pt;}
.x14{left:741.919988pt;}
}




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