
    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_d90908c87101a75a06921a53.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_1a3533524cda64a7c4d23573.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1a1d49028e1e8d32824237f9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927734;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_f6f1408432070e0d0530824b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_c81db25bfe8082eeb50e8a12.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.100098;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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);}
.v3{vertical-align:-15.120000px;}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls15{letter-spacing:-0.984000px;}
.ls22{letter-spacing:-0.828000px;}
.ls10{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.660000px;}
.ls1b{letter-spacing:-0.624000px;}
.ls8{letter-spacing:-0.306000px;}
.ls13{letter-spacing:-0.302400px;}
.ls1f{letter-spacing:-0.234600px;}
.ls1d{letter-spacing:-0.204600px;}
.ls1e{letter-spacing:-0.145200px;}
.lsb{letter-spacing:-0.127200px;}
.ls7{letter-spacing:-0.126000px;}
.ls1a{letter-spacing:-0.106800px;}
.ls23{letter-spacing:-0.057600px;}
.ls19{letter-spacing:-0.048960px;}
.ls6{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.052560px;}
.ls11{letter-spacing:0.057600px;}
.ls14{letter-spacing:0.097800px;}
.ls2{letter-spacing:0.097920px;}
.ls21{letter-spacing:0.146880px;}
.ls5{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.204600px;}
.ls9{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.396000px;}
.ls1{letter-spacing:0.540000px;}
.lsa{letter-spacing:0.592800px;}
.lse{letter-spacing:0.900000px;}
.ls20{letter-spacing:1.440000px;}
.ls27{letter-spacing:4.320000px;}
.ls18{letter-spacing:5.400000px;}
.lsd{letter-spacing:6.120000px;}
.ls1c{letter-spacing:14.760000px;}
.ls26{letter-spacing:35.280000px;}
.ls24{letter-spacing:43.920000px;}
.ls17{letter-spacing:48.960000px;}
.lsc{letter-spacing:316.440000px;}
.lsf{letter-spacing:408.600000px;}
.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;}
}
.ws14{word-spacing:-16.764600px;}
.wsf{word-spacing:-16.657800px;}
.wsc{word-spacing:-16.617600px;}
.ws10{word-spacing:-16.608960px;}
.ws1{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.511040px;}
.ws12{word-spacing:-16.453200px;}
.wse{word-spacing:-16.257600px;}
.ws13{word-spacing:-15.936000px;}
.wsd{word-spacing:-15.900000px;}
.ws9{word-spacing:-15.532800px;}
.ws7{word-spacing:-14.992560px;}
.ws8{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.812800px;}
.ws6{word-spacing:-13.896000px;}
.ws5{word-spacing:-13.824000px;}
.ws2{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.374000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.000000px;}
.wsb{word-spacing:0.000000px;}
._18{margin-left:-4.345680px;}
._8{margin-left:-3.344880px;}
._2{margin-left:-2.260560px;}
._0{margin-left:-1.086000px;}
._1{width:1.074000px;}
._9{width:2.591040px;}
._10{width:4.231680px;}
._e{width:5.736960px;}
._12{width:6.857760px;}
._11{width:7.882560px;}
._7{width:9.262800px;}
._d{width:10.878000px;}
._c{width:12.549600px;}
._b{width:13.559280px;}
._17{width:14.765040px;}
._1b{width:16.015680px;}
._1c{width:17.908800px;}
._3{width:19.003680px;}
._4{width:20.400960px;}
._13{width:21.515040px;}
._f{width:22.587840px;}
._5{width:24.324000px;}
._6{width:25.339440px;}
._15{width:26.717760px;}
._1d{width:27.840960px;}
._1f{width:28.992960px;}
._20{width:30.006720px;}
._16{width:31.132800px;}
._26{width:32.656320px;}
._28{width:33.716160px;}
._21{width:34.776000px;}
._24{width:36.035520px;}
._23{width:37.367280px;}
._27{width:38.572080px;}
._22{width:39.677760px;}
._1e{width:41.135040px;}
._2e{width:42.369840px;}
._1a{width:43.652160px;}
._19{width:44.910720px;}
._25{width:46.103040px;}
._2c{width:48.024000px;}
._2d{width:49.121760px;}
._29{width:51.600960px;}
._2a{width:53.331600px;}
._2b{width:57.363840px;}
._32{width:58.887360px;}
._2f{width:73.596000px;}
._30{width:74.608800px;}
._31{width:76.043520px;}
._37{width:82.005120px;}
._36{width:83.263680px;}
._33{width:130.501200px;}
._34{width:139.063920px;}
._35{width:140.543520px;}
._38{width:154.148880px;}
._a{width:367.536000px;}
._14{width:459.696000px;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:23.760000px;}
.fs4{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:101.016000px;}
.y4f{bottom:152.670000px;}
.yaa{bottom:155.190000px;}
.y2a{bottom:161.670000px;}
.y4e{bottom:169.590000px;}
.y79{bottom:171.570000px;}
.y92{bottom:172.110000px;}
.ya9{bottom:173.730000px;}
.y29{bottom:178.590000px;}
.ybe{bottom:182.190000px;}
.yd9{bottom:182.730000px;}
.y4d{bottom:186.510000px;}
.y78{bottom:190.110000px;}
.y8b{bottom:190.290000px;}
.y91{bottom:190.650000px;}
.y28{bottom:195.510000px;}
.y8c{bottom:196.050000px;}
.y7f{bottom:199.290000px;}
.ybd{bottom:200.730000px;}
.ya8{bottom:201.270000px;}
.y4c{bottom:207.210000px;}
.y77{bottom:208.650000px;}
.y90{bottom:209.190000px;}
.y8a{bottom:212.250000px;}
.y27{bottom:212.430000px;}
.y7e{bottom:212.970000px;}
.y82{bottom:216.255000px;}
.ya7{bottom:220.035000px;}
.y4b{bottom:220.755000px;}
.y76{bottom:227.235000px;}
.ybc{bottom:228.315000px;}
.y26{bottom:229.215000px;}
.y81{bottom:229.755000px;}
.y8f{bottom:236.775000px;}
.ya6{bottom:238.575000px;}
.y75{bottom:245.775000px;}
.y25{bottom:246.135000px;}
.ybb{bottom:247.035000px;}
.yde{bottom:247.575000px;}
.y89{bottom:249.915000px;}
.y49{bottom:252.435000px;}
.y8e{bottom:255.315000px;}
.y4a{bottom:256.215000px;}
.ya5{bottom:257.115000px;}
.y24{bottom:263.055000px;}
.y88{bottom:263.595000px;}
.y74{bottom:264.315000px;}
.yba{bottom:265.575000px;}
.yd8{bottom:266.115000px;}
.y48{bottom:270.975000px;}
.yd1{bottom:275.655000px;}
.y23{bottom:279.975000px;}
.y73{bottom:283.035000px;}
.y7c{bottom:283.755000px;}
.ya4{bottom:284.655000px;}
.ydf{bottom:286.995000px;}
.y47{bottom:289.515000px;}
.yb9{bottom:293.115000px;}
.yd0{bottom:294.195000px;}
.y6b{bottom:296.715000px;}
.y7b{bottom:297.255000px;}
.y72{bottom:301.575000px;}
.ya3{bottom:303.195000px;}
.y22{bottom:305.715000px;}
.y46{bottom:308.055000px;}
.y21{bottom:309.495000px;}
.yb8{bottom:311.655000px;}
.ydd{bottom:312.195000px;}
.y6a{bottom:313.635000px;}
.y85{bottom:317.415000px;}
.y71{bottom:320.115000px;}
.ycf{bottom:321.735000px;}
.y20{bottom:323.175000px;}
.y87{bottom:323.895000px;}
.y45{bottom:326.595000px;}
.yb7{bottom:330.195000px;}
.y69{bottom:330.555000px;}
.ya2{bottom:330.735000px;}
.y84{bottom:331.095000px;}
.y70{bottom:338.655000px;}
.yce{bottom:340.275000px;}
.y68{bottom:347.475000px;}
.yb6{bottom:348.735000px;}
.ya1{bottom:349.275000px;}
.y67{bottom:351.255000px;}
.y44{bottom:354.495000px;}
.y1f{bottom:356.295000px;}
.y6f{bottom:357.195000px;}
.ycd{bottom:358.815000px;}
.yb5{bottom:367.275000px;}
.yd7{bottom:367.815000px;}
.y1e{bottom:373.215000px;}
.y6e{bottom:375.735000px;}
.ya0{bottom:376.815000px;}
.ycc{bottom:377.535000px;}
.y43{bottom:382.395000px;}
.yd6{bottom:386.535000px;}
.y1d{bottom:389.955000px;}
.y66{bottom:390.135000px;}
.y6d{bottom:394.275000px;}
.yb4{bottom:394.815000px;}
.y9f{bottom:395.535000px;}
.y80{bottom:398.055000px;}
.y42{bottom:400.575000px;}
.ycb{bottom:405.075000px;}
.y1c{bottom:406.875000px;}
.y65{bottom:407.595000px;}
.y6c{bottom:412.815000px;}
.yb3{bottom:413.535000px;}
.ydc{bottom:414.075000px;}
.y41{bottom:417.315000px;}
.y9e{bottom:423.105000px;}
.yca{bottom:423.645000px;}
.y1b{bottom:423.825000px;}
.y64{bottom:431.565000px;}
.yb2{bottom:432.105000px;}
.ydb{bottom:432.645000px;}
.y40{bottom:434.265000px;}
.y1a{bottom:441.105000px;}
.y9d{bottom:441.645000px;}
.yc9{bottom:442.185000px;}
.y63{bottom:450.105000px;}
.yb1{bottom:450.645000px;}
.y3f{bottom:451.185000px;}
.y19{bottom:458.925000px;}
.y9c{bottom:460.185000px;}
.y3e{bottom:468.105000px;}
.y62{bottom:468.645000px;}
.yb0{bottom:469.185000px;}
.yc8{bottom:469.725000px;}
.y18{bottom:474.045000px;}
.y3d{bottom:484.845000px;}
.y61{bottom:487.185000px;}
.y9b{bottom:487.725000px;}
.yc7{bottom:488.265000px;}
.y17{bottom:489.345000px;}
.y3c{bottom:501.765000px;}
.y16{bottom:504.465000px;}
.y60{bottom:505.725000px;}
.y9a{bottom:506.265000px;}
.yc6{bottom:506.805000px;}
.y3b{bottom:518.685000px;}
.y15{bottom:519.765000px;}
.y5f{bottom:524.265000px;}
.y99{bottom:524.805000px;}
.yd5{bottom:525.345000px;}
.yc5{bottom:534.345000px;}
.y14{bottom:534.885000px;}
.y3a{bottom:535.605000px;}
.y5e{bottom:542.805000px;}
.y98{bottom:543.345000px;}
.y7a{bottom:546.585000px;}
.y13{bottom:550.005000px;}
.y39{bottom:552.345000px;}
.yc4{bottom:553.065000px;}
.y5d{bottom:561.345000px;}
.y97{bottom:562.065000px;}
.y12{bottom:568.365000px;}
.y38{bottom:569.265000px;}
.yc3{bottom:571.605000px;}
.y5c{bottom:580.065000px;}
.yaf{bottom:580.605000px;}
.y11{bottom:581.145000px;}
.y83{bottom:583.845000px;}
.y37{bottom:586.185000px;}
.y96{bottom:589.605000px;}
.yd4{bottom:590.145000px;}
.y5b{bottom:598.605000px;}
.y10{bottom:598.965000px;}
.yae{bottom:599.145000px;}
.y36{bottom:603.105000px;}
.y95{bottom:608.145000px;}
.yd3{bottom:608.685000px;}
.yf{bottom:614.265000px;}
.y5a{bottom:617.145000px;}
.yc2{bottom:617.685000px;}
.y35{bottom:619.845000px;}
.y86{bottom:620.925000px;}
.y94{bottom:626.730000px;}
.ye{bottom:629.430000px;}
.y59{bottom:635.730000px;}
.yc1{bottom:636.270000px;}
.y34{bottom:636.810000px;}
.yd{bottom:644.550000px;}
.y93{bottom:645.270000px;}
.y58{bottom:654.270000px;}
.yc0{bottom:654.810000px;}
.yc{bottom:659.850000px;}
.yad{bottom:663.810000px;}
.y33{bottom:666.150000px;}
.y57{bottom:672.810000px;}
.yd2{bottom:673.350000px;}
.yb{bottom:674.970000px;}
.y8d{bottom:676.590000px;}
.yac{bottom:682.350000px;}
.y32{bottom:684.330000px;}
.y56{bottom:691.350000px;}
.ya{bottom:693.150000px;}
.yab{bottom:700.890000px;}
.y31{bottom:701.070000px;}
.y9{bottom:706.110000px;}
.y55{bottom:709.890000px;}
.y7d{bottom:713.670000px;}
.y30{bottom:717.990000px;}
.ybf{bottom:719.610000px;}
.y8{bottom:724.650000px;}
.y53{bottom:728.610000px;}
.y54{bottom:732.390000px;}
.y2f{bottom:734.910000px;}
.yda{bottom:738.150000px;}
.y52{bottom:747.150000px;}
.y2e{bottom:751.830000px;}
.y7{bottom:755.250000px;}
.y51{bottom:765.690000px;}
.y2d{bottom:768.570000px;}
.y5{bottom:774.150000px;}
.y6{bottom:780.990000px;}
.y50{bottom:784.230000px;}
.y2c{bottom:785.490000px;}
.y4{bottom:794.310000px;}
.y3{bottom:814.650000px;}
.y2{bottom:834.840000px;}
.y2b{bottom:838.800000px;}
.h4{height:28.281797px;}
.hd{height:32.539219px;}
.h7{height:32.953359px;}
.h11{height:34.713984px;}
.hf{height:34.893984px;}
.he{height:34.949531px;}
.h8{height:36.571289px;}
.hb{height:40.472227px;}
.h5{height:44.860781px;}
.h9{height:45.193359px;}
.h10{height:45.316055px;}
.h3{height:48.761719px;}
.hc{height:50.013984px;}
.h6{height:50.069531px;}
.ha{height:55.437187px;}
.h2{height:65.884219px;}
.h1{height:935.250000px;}
.h0{height:935.460000px;}
.w3{width:637.919981px;}
.w2{width:637.919990px;}
.w0{width:637.920000px;}
.w1{width:638.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655990px;}
.x14{left:132.155990px;}
.x29{left:136.655990px;}
.x2{left:138.815990px;}
.x4{left:142.235990px;}
.x15{left:148.895990px;}
.x3{left:156.449990px;}
.x1e{left:168.149990px;}
.x1f{left:170.129990px;}
.x20{left:184.169981px;}
.x21{left:189.029990px;}
.xa{left:210.089990px;}
.xb{left:211.349990px;}
.x10{left:232.094990px;}
.x5{left:240.734990px;}
.xe{left:241.994990px;}
.xc{left:244.694990px;}
.xd{left:260.894990px;}
.x24{left:264.134981px;}
.x11{left:266.474990px;}
.x12{left:268.994990px;}
.x8{left:281.774990px;}
.x22{left:299.594981px;}
.x23{left:304.454990px;}
.xf{left:305.714990px;}
.x18{left:311.834981px;}
.x19{left:316.694990px;}
.x9{left:319.034990px;}
.x1c{left:329.654981px;}
.x1d{left:334.514990px;}
.x1a{left:341.354981px;}
.x13{left:343.694990px;}
.x1b{left:346.214990px;}
.x16{left:354.884981px;}
.x17{left:359.744990px;}
.x25{left:374.684981px;}
.x26{left:379.544990px;}
.x6{left:393.044981px;}
.x7{left:397.184990px;}
.x27{left:445.064981px;}
.x28{left:454.784990px;}
.x2a{left:510.449990px;}
@media print{
.v3{vertical-align:-13.440000pt;}
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls15{letter-spacing:-0.874667pt;}
.ls22{letter-spacing:-0.736000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.586667pt;}
.ls1b{letter-spacing:-0.554667pt;}
.ls8{letter-spacing:-0.272000pt;}
.ls13{letter-spacing:-0.268800pt;}
.ls1f{letter-spacing:-0.208533pt;}
.ls1d{letter-spacing:-0.181867pt;}
.ls1e{letter-spacing:-0.129067pt;}
.lsb{letter-spacing:-0.113067pt;}
.ls7{letter-spacing:-0.112000pt;}
.ls1a{letter-spacing:-0.094933pt;}
.ls23{letter-spacing:-0.051200pt;}
.ls19{letter-spacing:-0.043520pt;}
.ls6{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.046720pt;}
.ls11{letter-spacing:0.051200pt;}
.ls14{letter-spacing:0.086933pt;}
.ls2{letter-spacing:0.087040pt;}
.ls21{letter-spacing:0.130560pt;}
.ls5{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.181867pt;}
.ls9{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.352000pt;}
.ls1{letter-spacing:0.480000pt;}
.lsa{letter-spacing:0.526933pt;}
.lse{letter-spacing:0.800000pt;}
.ls20{letter-spacing:1.280000pt;}
.ls27{letter-spacing:3.840000pt;}
.ls18{letter-spacing:4.800000pt;}
.lsd{letter-spacing:5.440000pt;}
.ls1c{letter-spacing:13.120000pt;}
.ls26{letter-spacing:31.360000pt;}
.ls24{letter-spacing:39.040000pt;}
.ls17{letter-spacing:43.520000pt;}
.lsc{letter-spacing:281.280000pt;}
.lsf{letter-spacing:363.200000pt;}
.ws14{word-spacing:-14.901867pt;}
.wsf{word-spacing:-14.806933pt;}
.wsc{word-spacing:-14.771200pt;}
.ws10{word-spacing:-14.763520pt;}
.ws1{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.676480pt;}
.ws12{word-spacing:-14.625067pt;}
.wse{word-spacing:-14.451200pt;}
.ws13{word-spacing:-14.165333pt;}
.wsd{word-spacing:-14.133333pt;}
.ws9{word-spacing:-13.806933pt;}
.ws7{word-spacing:-13.326720pt;}
.ws8{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.166933pt;}
.ws6{word-spacing:-12.352000pt;}
.ws5{word-spacing:-12.288000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.888000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.000000pt;}
.wsb{word-spacing:0.000000pt;}
._18{margin-left:-3.862827pt;}
._8{margin-left:-2.973227pt;}
._2{margin-left:-2.009387pt;}
._0{margin-left:-0.965333pt;}
._1{width:0.954667pt;}
._9{width:2.303147pt;}
._10{width:3.761493pt;}
._e{width:5.099520pt;}
._12{width:6.095787pt;}
._11{width:7.006720pt;}
._7{width:8.233600pt;}
._d{width:9.669333pt;}
._c{width:11.155200pt;}
._b{width:12.052693pt;}
._17{width:13.124480pt;}
._1b{width:14.236160pt;}
._1c{width:15.918933pt;}
._3{width:16.892160pt;}
._4{width:18.134187pt;}
._13{width:19.124480pt;}
._f{width:20.078080pt;}
._5{width:21.621333pt;}
._6{width:22.523947pt;}
._15{width:23.749120pt;}
._1d{width:24.747520pt;}
._1f{width:25.771520pt;}
._20{width:26.672640pt;}
._16{width:27.673600pt;}
._26{width:29.027840pt;}
._28{width:29.969920pt;}
._21{width:30.912000pt;}
._24{width:32.031573pt;}
._23{width:33.215360pt;}
._27{width:34.286293pt;}
._22{width:35.269120pt;}
._1e{width:36.564480pt;}
._2e{width:37.662080pt;}
._1a{width:38.801920pt;}
._19{width:39.920640pt;}
._25{width:40.980480pt;}
._2c{width:42.688000pt;}
._2d{width:43.663787pt;}
._29{width:45.867520pt;}
._2a{width:47.405867pt;}
._2b{width:50.990080pt;}
._32{width:52.344320pt;}
._2f{width:65.418667pt;}
._30{width:66.318933pt;}
._31{width:67.594240pt;}
._37{width:72.893440pt;}
._36{width:74.012160pt;}
._33{width:116.001067pt;}
._34{width:123.612373pt;}
._35{width:124.927573pt;}
._38{width:137.021227pt;}
._a{width:326.698667pt;}
._14{width:408.618667pt;}
.fs5{font-size:21.120000pt;}
.fs4{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:89.792000pt;}
.y4f{bottom:135.706667pt;}
.yaa{bottom:137.946667pt;}
.y2a{bottom:143.706667pt;}
.y4e{bottom:150.746667pt;}
.y79{bottom:152.506667pt;}
.y92{bottom:152.986667pt;}
.ya9{bottom:154.426667pt;}
.y29{bottom:158.746667pt;}
.ybe{bottom:161.946667pt;}
.yd9{bottom:162.426667pt;}
.y4d{bottom:165.786667pt;}
.y78{bottom:168.986667pt;}
.y8b{bottom:169.146667pt;}
.y91{bottom:169.466667pt;}
.y28{bottom:173.786667pt;}
.y8c{bottom:174.266667pt;}
.y7f{bottom:177.146667pt;}
.ybd{bottom:178.426667pt;}
.ya8{bottom:178.906667pt;}
.y4c{bottom:184.186667pt;}
.y77{bottom:185.466667pt;}
.y90{bottom:185.946667pt;}
.y8a{bottom:188.666667pt;}
.y27{bottom:188.826667pt;}
.y7e{bottom:189.306667pt;}
.y82{bottom:192.226667pt;}
.ya7{bottom:195.586667pt;}
.y4b{bottom:196.226667pt;}
.y76{bottom:201.986667pt;}
.ybc{bottom:202.946667pt;}
.y26{bottom:203.746667pt;}
.y81{bottom:204.226667pt;}
.y8f{bottom:210.466667pt;}
.ya6{bottom:212.066667pt;}
.y75{bottom:218.466667pt;}
.y25{bottom:218.786667pt;}
.ybb{bottom:219.586667pt;}
.yde{bottom:220.066667pt;}
.y89{bottom:222.146667pt;}
.y49{bottom:224.386667pt;}
.y8e{bottom:226.946667pt;}
.y4a{bottom:227.746667pt;}
.ya5{bottom:228.546667pt;}
.y24{bottom:233.826667pt;}
.y88{bottom:234.306667pt;}
.y74{bottom:234.946667pt;}
.yba{bottom:236.066667pt;}
.yd8{bottom:236.546667pt;}
.y48{bottom:240.866667pt;}
.yd1{bottom:245.026667pt;}
.y23{bottom:248.866667pt;}
.y73{bottom:251.586667pt;}
.y7c{bottom:252.226667pt;}
.ya4{bottom:253.026667pt;}
.ydf{bottom:255.106667pt;}
.y47{bottom:257.346667pt;}
.yb9{bottom:260.546667pt;}
.yd0{bottom:261.506667pt;}
.y6b{bottom:263.746667pt;}
.y7b{bottom:264.226667pt;}
.y72{bottom:268.066667pt;}
.ya3{bottom:269.506667pt;}
.y22{bottom:271.746667pt;}
.y46{bottom:273.826667pt;}
.y21{bottom:275.106667pt;}
.yb8{bottom:277.026667pt;}
.ydd{bottom:277.506667pt;}
.y6a{bottom:278.786667pt;}
.y85{bottom:282.146667pt;}
.y71{bottom:284.546667pt;}
.ycf{bottom:285.986667pt;}
.y20{bottom:287.266667pt;}
.y87{bottom:287.906667pt;}
.y45{bottom:290.306667pt;}
.yb7{bottom:293.506667pt;}
.y69{bottom:293.826667pt;}
.ya2{bottom:293.986667pt;}
.y84{bottom:294.306667pt;}
.y70{bottom:301.026667pt;}
.yce{bottom:302.466667pt;}
.y68{bottom:308.866667pt;}
.yb6{bottom:309.986667pt;}
.ya1{bottom:310.466667pt;}
.y67{bottom:312.226667pt;}
.y44{bottom:315.106667pt;}
.y1f{bottom:316.706667pt;}
.y6f{bottom:317.506667pt;}
.ycd{bottom:318.946667pt;}
.yb5{bottom:326.466667pt;}
.yd7{bottom:326.946667pt;}
.y1e{bottom:331.746667pt;}
.y6e{bottom:333.986667pt;}
.ya0{bottom:334.946667pt;}
.ycc{bottom:335.586667pt;}
.y43{bottom:339.906667pt;}
.yd6{bottom:343.586667pt;}
.y1d{bottom:346.626667pt;}
.y66{bottom:346.786667pt;}
.y6d{bottom:350.466667pt;}
.yb4{bottom:350.946667pt;}
.y9f{bottom:351.586667pt;}
.y80{bottom:353.826667pt;}
.y42{bottom:356.066667pt;}
.ycb{bottom:360.066667pt;}
.y1c{bottom:361.666667pt;}
.y65{bottom:362.306667pt;}
.y6c{bottom:366.946667pt;}
.yb3{bottom:367.586667pt;}
.ydc{bottom:368.066667pt;}
.y41{bottom:370.946667pt;}
.y9e{bottom:376.093333pt;}
.yca{bottom:376.573333pt;}
.y1b{bottom:376.733333pt;}
.y64{bottom:383.613333pt;}
.yb2{bottom:384.093333pt;}
.ydb{bottom:384.573333pt;}
.y40{bottom:386.013333pt;}
.y1a{bottom:392.093333pt;}
.y9d{bottom:392.573333pt;}
.yc9{bottom:393.053333pt;}
.y63{bottom:400.093333pt;}
.yb1{bottom:400.573333pt;}
.y3f{bottom:401.053333pt;}
.y19{bottom:407.933333pt;}
.y9c{bottom:409.053333pt;}
.y3e{bottom:416.093333pt;}
.y62{bottom:416.573333pt;}
.yb0{bottom:417.053333pt;}
.yc8{bottom:417.533333pt;}
.y18{bottom:421.373333pt;}
.y3d{bottom:430.973333pt;}
.y61{bottom:433.053333pt;}
.y9b{bottom:433.533333pt;}
.yc7{bottom:434.013333pt;}
.y17{bottom:434.973333pt;}
.y3c{bottom:446.013333pt;}
.y16{bottom:448.413333pt;}
.y60{bottom:449.533333pt;}
.y9a{bottom:450.013333pt;}
.yc6{bottom:450.493333pt;}
.y3b{bottom:461.053333pt;}
.y15{bottom:462.013333pt;}
.y5f{bottom:466.013333pt;}
.y99{bottom:466.493333pt;}
.yd5{bottom:466.973333pt;}
.yc5{bottom:474.973333pt;}
.y14{bottom:475.453333pt;}
.y3a{bottom:476.093333pt;}
.y5e{bottom:482.493333pt;}
.y98{bottom:482.973333pt;}
.y7a{bottom:485.853333pt;}
.y13{bottom:488.893333pt;}
.y39{bottom:490.973333pt;}
.yc4{bottom:491.613333pt;}
.y5d{bottom:498.973333pt;}
.y97{bottom:499.613333pt;}
.y12{bottom:505.213333pt;}
.y38{bottom:506.013333pt;}
.yc3{bottom:508.093333pt;}
.y5c{bottom:515.613333pt;}
.yaf{bottom:516.093333pt;}
.y11{bottom:516.573333pt;}
.y83{bottom:518.973333pt;}
.y37{bottom:521.053333pt;}
.y96{bottom:524.093333pt;}
.yd4{bottom:524.573333pt;}
.y5b{bottom:532.093333pt;}
.y10{bottom:532.413333pt;}
.yae{bottom:532.573333pt;}
.y36{bottom:536.093333pt;}
.y95{bottom:540.573333pt;}
.yd3{bottom:541.053333pt;}
.yf{bottom:546.013333pt;}
.y5a{bottom:548.573333pt;}
.yc2{bottom:549.053333pt;}
.y35{bottom:550.973333pt;}
.y86{bottom:551.933333pt;}
.y94{bottom:557.093333pt;}
.ye{bottom:559.493333pt;}
.y59{bottom:565.093333pt;}
.yc1{bottom:565.573333pt;}
.y34{bottom:566.053333pt;}
.yd{bottom:572.933333pt;}
.y93{bottom:573.573333pt;}
.y58{bottom:581.573333pt;}
.yc0{bottom:582.053333pt;}
.yc{bottom:586.533333pt;}
.yad{bottom:590.053333pt;}
.y33{bottom:592.133333pt;}
.y57{bottom:598.053333pt;}
.yd2{bottom:598.533333pt;}
.yb{bottom:599.973333pt;}
.y8d{bottom:601.413333pt;}
.yac{bottom:606.533333pt;}
.y32{bottom:608.293333pt;}
.y56{bottom:614.533333pt;}
.ya{bottom:616.133333pt;}
.yab{bottom:623.013333pt;}
.y31{bottom:623.173333pt;}
.y9{bottom:627.653333pt;}
.y55{bottom:631.013333pt;}
.y7d{bottom:634.373333pt;}
.y30{bottom:638.213333pt;}
.ybf{bottom:639.653333pt;}
.y8{bottom:644.133333pt;}
.y53{bottom:647.653333pt;}
.y54{bottom:651.013333pt;}
.y2f{bottom:653.253333pt;}
.yda{bottom:656.133333pt;}
.y52{bottom:664.133333pt;}
.y2e{bottom:668.293333pt;}
.y7{bottom:671.333333pt;}
.y51{bottom:680.613333pt;}
.y2d{bottom:683.173333pt;}
.y5{bottom:688.133333pt;}
.y6{bottom:694.213333pt;}
.y50{bottom:697.093333pt;}
.y2c{bottom:698.213333pt;}
.y4{bottom:706.053333pt;}
.y3{bottom:724.133333pt;}
.y2{bottom:742.080000pt;}
.y2b{bottom:745.600000pt;}
.h4{height:25.139375pt;}
.hd{height:28.923750pt;}
.h7{height:29.291875pt;}
.h11{height:30.856875pt;}
.hf{height:31.016875pt;}
.he{height:31.066250pt;}
.h8{height:32.507812pt;}
.hb{height:35.975313pt;}
.h5{height:39.876250pt;}
.h9{height:40.171875pt;}
.h10{height:40.280938pt;}
.h3{height:43.343750pt;}
.hc{height:44.456875pt;}
.h6{height:44.506250pt;}
.ha{height:49.277500pt;}
.h2{height:58.563750pt;}
.h1{height:831.333333pt;}
.h0{height:831.520000pt;}
.w3{width:567.039983pt;}
.w2{width:567.039992pt;}
.w0{width:567.040000pt;}
.w1{width:567.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.471992pt;}
.x14{left:117.471992pt;}
.x29{left:121.471992pt;}
.x2{left:123.391992pt;}
.x4{left:126.431992pt;}
.x15{left:132.351992pt;}
.x3{left:139.066658pt;}
.x1e{left:149.466658pt;}
.x1f{left:151.226658pt;}
.x20{left:163.706650pt;}
.x21{left:168.026658pt;}
.xa{left:186.746658pt;}
.xb{left:187.866658pt;}
.x10{left:206.306658pt;}
.x5{left:213.986658pt;}
.xe{left:215.106658pt;}
.xc{left:217.506658pt;}
.xd{left:231.906658pt;}
.x24{left:234.786650pt;}
.x11{left:236.866658pt;}
.x12{left:239.106658pt;}
.x8{left:250.466658pt;}
.x22{left:266.306650pt;}
.x23{left:270.626658pt;}
.xf{left:271.746658pt;}
.x18{left:277.186650pt;}
.x19{left:281.506658pt;}
.x9{left:283.586658pt;}
.x1c{left:293.026650pt;}
.x1d{left:297.346658pt;}
.x1a{left:303.426650pt;}
.x13{left:305.506658pt;}
.x1b{left:307.746658pt;}
.x16{left:315.453316pt;}
.x17{left:319.773325pt;}
.x25{left:333.053316pt;}
.x26{left:337.373325pt;}
.x6{left:349.373316pt;}
.x7{left:353.053325pt;}
.x27{left:395.613316pt;}
.x28{left:404.253325pt;}
.x2a{left:453.733325pt;}
}




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