
    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_003be372bd87eb108b778741.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_0164a8eed00d6a28ad3e7ba5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_f9947589266acd010649555c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_108021fcbc1a275223b6cb3e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104492;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_aa9fa41745e013114e5db14b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.880000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.479520px;}
.ls4{letter-spacing:0.639360px;}
.ls1{letter-spacing:0.645120px;}
.ls2{letter-spacing:138.747696px;}
.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:-12.409920px;}
.wsd{word-spacing:-11.854080px;}
.ws1{word-spacing:-11.208960px;}
.wsc{word-spacing:0.000000px;}
.ws3{word-spacing:102.374181px;}
.ws1e{word-spacing:103.858734px;}
.wsf{word-spacing:111.030628px;}
.ws4{word-spacing:141.763270px;}
.ws1d{word-spacing:141.790034px;}
.ws21{word-spacing:143.189888px;}
.ws1f{word-spacing:143.388434px;}
.ws2a{word-spacing:145.668006px;}
.ws2{word-spacing:156.111239px;}
.wsb{word-spacing:157.598898px;}
.ws1c{word-spacing:160.482952px;}
.ws24{word-spacing:160.502782px;}
.ws18{word-spacing:166.239222px;}
.ws6{word-spacing:170.573778px;}
.ws8{word-spacing:171.981994px;}
.ws1a{word-spacing:172.255328px;}
.ws29{word-spacing:173.452928px;}
.ws9{word-spacing:173.469653px;}
.wsa{word-spacing:173.567850px;}
.ws26{word-spacing:174.895669px;}
.ws15{word-spacing:174.930194px;}
.wse{word-spacing:176.265300px;}
.ws10{word-spacing:176.372936px;}
.ws11{word-spacing:177.752959px;}
.ws13{word-spacing:177.851156px;}
.ws20{word-spacing:179.184232px;}
.ws22{word-spacing:180.671891px;}
.ws23{word-spacing:180.770088px;}
.ws16{word-spacing:182.420693px;}
.ws25{word-spacing:185.339625px;}
.ws12{word-spacing:190.800348px;}
.ws14{word-spacing:205.193234px;}
.ws1b{word-spacing:221.028862px;}
.ws5{word-spacing:336.517210px;}
.ws19{word-spacing:360.970700px;}
.ws17{word-spacing:362.458359px;}
.ws28{word-spacing:363.889632px;}
.ws27{word-spacing:365.377291px;}
.ws7{word-spacing:366.745724px;}
._0{margin-left:-12.409920px;}
._b{margin-left:-2.633760px;}
._1{margin-left:-1.562400px;}
._2{width:1.524267px;}
._8{width:3.542400px;}
._14{width:101.848147px;}
._13{width:103.290888px;}
._12{width:115.126057px;}
._17{width:118.293051px;}
._18{width:119.735792px;}
._1a{width:121.178533px;}
._10{width:126.667987px;}
._11{width:128.110728px;}
._19{width:137.048687px;}
._16{width:138.209917px;}
._9{width:159.968501px;}
._2a{width:160.972136px;}
._a{width:173.721426px;}
._1c{width:175.366895px;}
._15{width:180.330923px;}
._4{width:181.773664px;}
._5{width:183.216405px;}
._7{width:184.659147px;}
._2d{width:187.657208px;}
._23{width:191.228686px;}
._2c{width:193.254922px;}
._f{width:195.626325px;}
._1d{width:197.011241px;}
._3{width:200.247788px;}
._6{width:201.690530px;}
._20{width:204.269378px;}
._2f{width:206.110447px;}
._e{width:207.168255px;}
._27{width:209.406047px;}
._25{width:213.813784px;}
._d{width:220.446165px;}
._22{width:222.455069px;}
._2e{width:225.738547px;}
._1e{width:227.097647px;}
._2b{width:308.604838px;}
._28{width:511.804802px;}
._1b{width:673.618364px;}
._29{width:894.921817px;}
._24{width:901.568248px;}
._1f{width:909.174242px;}
._21{width:925.044395px;}
._26{width:926.094848px;}
._c{width:1432.467849px;}
.fc2{color:transparent;}
.fc3{color:rgb(132,132,132);}
.fc1{color:rgb(164,164,164);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:40.320000px;}
.fs0{font-size:44.640000px;}
.fs5{font-size:47.520000px;}
.fs4{font-size:53.280000px;}
.fs3{font-size:59.040000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:16.559850px;}
.y96{bottom:33.840000px;}
.y4c{bottom:54.360000px;}
.y98{bottom:57.600000px;}
.y4b{bottom:75.960000px;}
.y99{bottom:76.320000px;}
.y9a{bottom:95.040000px;}
.y4a{bottom:97.200000px;}
.y9b{bottom:113.760000px;}
.y49{bottom:118.439850px;}
.y9c{bottom:132.479850px;}
.y48{bottom:140.040000px;}
.y9d{bottom:151.560000px;}
.y47{bottom:161.280000px;}
.y9e{bottom:170.280000px;}
.y46{bottom:182.880000px;}
.y9f{bottom:189.000000px;}
.y45{bottom:203.760000px;}
.ya0{bottom:207.720000px;}
.ya1{bottom:226.440000px;}
.y44{bottom:227.160000px;}
.y97{bottom:257.760000px;}
.ya2{bottom:261.000000px;}
.y31{bottom:276.120000px;}
.y8b{bottom:289.080000px;}
.y32{bottom:303.840000px;}
.y8d{bottom:323.280000px;}
.y33{bottom:331.920000px;}
.y8e{bottom:346.680000px;}
.y34{bottom:359.640000px;}
.y8f{bottom:370.440000px;}
.y35{bottom:387.360000px;}
.y90{bottom:393.840000px;}
.y36{bottom:415.080000px;}
.y91{bottom:417.240000px;}
.y92{bottom:440.640000px;}
.yc0{bottom:441.360000px;}
.y37{bottom:443.160000px;}
.ybf{bottom:462.600000px;}
.y93{bottom:464.400000px;}
.y38{bottom:470.880000px;}
.ybe{bottom:485.280000px;}
.y94{bottom:487.800000px;}
.y39{bottom:498.600000px;}
.ybd{bottom:506.880000px;}
.y8c{bottom:513.000000px;}
.y95{bottom:516.600000px;}
.y3a{bottom:526.320000px;}
.ybc{bottom:528.120000px;}
.y78{bottom:541.440000px;}
.y7a{bottom:543.600000px;}
.ybb{bottom:549.360000px;}
.y3b{bottom:554.400000px;}
.y69{bottom:559.800000px;}
.y83{bottom:568.440000px;}
.yba{bottom:570.960000px;}
.y6a{bottom:576.720000px;}
.y3c{bottom:582.120000px;}
.y84{bottom:592.200000px;}
.y6b{bottom:593.640000px;}
.y82{bottom:598.680000px;}
.y3d{bottom:609.840000px;}
.y6c{bottom:610.560000px;}
.yb9{bottom:613.440000px;}
.y85{bottom:624.960000px;}
.y6d{bottom:627.480000px;}
.y81{bottom:628.920000px;}
.yb8{bottom:635.040000px;}
.y3e{bottom:637.920000px;}
.y6e{bottom:644.400000px;}
.yb7{bottom:656.280000px;}
.y86{bottom:657.360000px;}
.y80{bottom:659.160000px;}
.y6f{bottom:661.320000px;}
.y3f{bottom:665.640000px;}
.yb6{bottom:677.520000px;}
.y70{bottom:678.240000px;}
.y7f{bottom:689.400000px;}
.y87{bottom:689.760000px;}
.y40{bottom:693.360000px;}
.y71{bottom:695.160000px;}
.yb5{bottom:700.200000px;}
.y72{bottom:712.080000px;}
.y7e{bottom:720.000000px;}
.y41{bottom:721.080000px;}
.yb4{bottom:722.160000px;}
.y88{bottom:722.520000px;}
.y73{bottom:729.000000px;}
.y74{bottom:745.920000px;}
.y42{bottom:749.160000px;}
.y7d{bottom:750.240000px;}
.y89{bottom:754.920000px;}
.y75{bottom:762.840000px;}
.y43{bottom:776.880000px;}
.y76{bottom:779.760000px;}
.y7c{bottom:780.480000px;}
.y8a{bottom:787.320000px;}
.y30{bottom:795.600000px;}
.y77{bottom:796.680000px;}
.yb3{bottom:801.720000px;}
.y7b{bottom:810.720000px;}
.yb2{bottom:822.960000px;}
.y79{bottom:824.760000px;}
.y68{bottom:826.920000px;}
.yb1{bottom:845.640000px;}
.y11{bottom:849.600000px;}
.y27{bottom:855.000000px;}
.y13{bottom:855.720000px;}
.yb0{bottom:866.880000px;}
.y3{bottom:867.960000px;}
.y5a{bottom:875.520000px;}
.y67{bottom:876.240000px;}
.y2f{bottom:879.840000px;}
.y1c{bottom:880.560000px;}
.y4{bottom:887.400000px;}
.yaf{bottom:888.120000px;}
.y65{bottom:890.640000px;}
.y59{bottom:894.600000px;}
.y1d{bottom:896.760000px;}
.y5{bottom:906.840000px;}
.y2e{bottom:910.440000px;}
.yae{bottom:910.800000px;}
.y1b{bottom:911.160000px;}
.y58{bottom:913.680000px;}
.y64{bottom:916.560000px;}
.y1e{bottom:925.560000px;}
.y6{bottom:926.280000px;}
.yad{bottom:932.400000px;}
.y57{bottom:932.760000px;}
.y2d{bottom:941.040000px;}
.y1a{bottom:941.400000px;}
.y63{bottom:942.480000px;}
.y7{bottom:945.720000px;}
.yac{bottom:953.640000px;}
.y1f{bottom:954.000000px;}
.y8{bottom:964.800000px;}
.y62{bottom:968.760000px;}
.y2c{bottom:971.640000px;}
.y19{bottom:972.000000px;}
.yab{bottom:974.880000px;}
.y4d{bottom:982.080000px;}
.y20{bottom:982.800000px;}
.y9{bottom:984.240000px;}
.y61{bottom:994.680000px;}
.yaa{bottom:996.480000px;}
.y18{bottom:1002.600000px;}
.ya{bottom:1003.680000px;}
.y21{bottom:1011.600000px;}
.y4e{bottom:1013.040000px;}
.ya9{bottom:1017.720000px;}
.y60{bottom:1020.600000px;}
.yb{bottom:1023.120000px;}
.y17{bottom:1032.840000px;}
.y2b{bottom:1033.200000px;}
.ya8{bottom:1038.960000px;}
.y22{bottom:1040.400000px;}
.yc{bottom:1042.560000px;}
.y4f{bottom:1043.280000px;}
.y5f{bottom:1046.520000px;}
.ya7{bottom:1060.560000px;}
.yd{bottom:1062.000000px;}
.y16{bottom:1063.440000px;}
.y2a{bottom:1063.800000px;}
.y23{bottom:1069.200000px;}
.y50{bottom:1071.360000px;}
.y5e{bottom:1072.440000px;}
.ye{bottom:1081.440000px;}
.ya6{bottom:1081.800000px;}
.y15{bottom:1093.680000px;}
.y29{bottom:1094.400000px;}
.y51{bottom:1096.920000px;}
.y24{bottom:1098.000000px;}
.y5d{bottom:1098.720000px;}
.yf{bottom:1100.880000px;}
.ya5{bottom:1103.040000px;}
.y52{bottom:1118.880000px;}
.y10{bottom:1120.320000px;}
.y14{bottom:1124.280000px;}
.y5c{bottom:1124.640000px;}
.y28{bottom:1125.000000px;}
.ya4{bottom:1125.720000px;}
.y25{bottom:1126.440000px;}
.y53{bottom:1136.880000px;}
.y12{bottom:1138.320000px;}
.y26{bottom:1139.040000px;}
.y2{bottom:1144.080000px;}
.ya3{bottom:1147.680000px;}
.y54{bottom:1149.840000px;}
.y5b{bottom:1150.560000px;}
.y55{bottom:1158.120000px;}
.y56{bottom:1160.640000px;}
.y66{bottom:1164.600000px;}
.h6{height:32.520938px;}
.h2{height:42.052500px;}
.h4{height:43.011562px;}
.h1{height:46.558125px;}
.h5{height:55.569375px;}
.h7{height:61.576875px;}
.h3{height:75.093750px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:2.160000px;}
.x5{left:36.359850px;}
.x2b{left:37.800000px;}
.x7{left:40.320000px;}
.x2d{left:41.760000px;}
.x23{left:43.920000px;}
.x6{left:49.680000px;}
.x2c{left:51.120000px;}
.x22{left:52.200000px;}
.xe{left:54.000000px;}
.x21{left:62.280000px;}
.x4{left:64.440000px;}
.x2a{left:65.880000px;}
.xf{left:67.680000px;}
.x10{left:68.760000px;}
.x3b{left:70.200000px;}
.x20{left:74.160000px;}
.x37{left:77.760000px;}
.x35{left:80.280000px;}
.x34{left:83.160000px;}
.x39{left:89.640000px;}
.x1f{left:90.720000px;}
.x36{left:93.240000px;}
.x33{left:108.000000px;}
.x1e{left:110.880000px;}
.x1d{left:134.280000px;}
.x1c{left:159.840000px;}
.x1b{left:187.560000px;}
.x1a{left:229.320000px;}
.x3c{left:236.520000px;}
.x19{left:265.680000px;}
.x18{left:293.400000px;}
.x17{left:318.960000px;}
.x3a{left:321.120000px;}
.x38{left:324.000000px;}
.x16{left:342.360000px;}
.x15{left:362.520000px;}
.x14{left:379.080000px;}
.x3{left:388.440000px;}
.x13{left:390.960000px;}
.x29{left:392.040000px;}
.x2{left:393.480000px;}
.x28{left:397.080000px;}
.x12{left:398.520000px;}
.x11{left:401.040000px;}
.xb{left:479.520000px;}
.xd{left:483.480000px;}
.x30{left:484.560000px;}
.x32{left:488.520000px;}
.xc{left:492.840000px;}
.x25{left:496.080000px;}
.x31{left:497.880000px;}
.x26{left:502.200000px;}
.xa{left:507.600000px;}
.x2f{left:512.640000px;}
.x24{left:517.680000px;}
.x27{left:532.440000px;}
.x9{left:833.040000px;}
.x8{left:838.080000px;}
.x2e{left:843.480000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.560000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.426240pt;}
.ls4{letter-spacing:0.568320pt;}
.ls1{letter-spacing:0.573440pt;}
.ls2{letter-spacing:123.331285pt;}
.ws0{word-spacing:-11.031040pt;}
.wsd{word-spacing:-10.536960pt;}
.ws1{word-spacing:-9.963520pt;}
.wsc{word-spacing:0.000000pt;}
.ws3{word-spacing:90.999272pt;}
.ws1e{word-spacing:92.318875pt;}
.wsf{word-spacing:98.693892pt;}
.ws4{word-spacing:126.011796pt;}
.ws1d{word-spacing:126.035586pt;}
.ws21{word-spacing:127.279900pt;}
.ws1f{word-spacing:127.456386pt;}
.ws2a{word-spacing:129.482672pt;}
.ws2{word-spacing:138.765546pt;}
.wsb{word-spacing:140.087910pt;}
.ws1c{word-spacing:142.651513pt;}
.ws24{word-spacing:142.669140pt;}
.ws18{word-spacing:147.768197pt;}
.ws6{word-spacing:151.621136pt;}
.ws8{word-spacing:152.872883pt;}
.ws1a{word-spacing:153.115847pt;}
.ws29{word-spacing:154.180380pt;}
.ws9{word-spacing:154.195247pt;}
.wsa{word-spacing:154.282534pt;}
.ws26{word-spacing:155.462817pt;}
.ws15{word-spacing:155.493506pt;}
.wse{word-spacing:156.680267pt;}
.ws10{word-spacing:156.775943pt;}
.ws11{word-spacing:158.002630pt;}
.ws13{word-spacing:158.089917pt;}
.ws20{word-spacing:159.274873pt;}
.ws22{word-spacing:160.597236pt;}
.ws23{word-spacing:160.684523pt;}
.ws16{word-spacing:162.151727pt;}
.ws25{word-spacing:164.746333pt;}
.ws12{word-spacing:169.600309pt;}
.ws14{word-spacing:182.393986pt;}
.ws1b{word-spacing:196.470100pt;}
.ws5{word-spacing:299.126409pt;}
.ws19{word-spacing:320.862844pt;}
.ws17{word-spacing:322.185208pt;}
.ws28{word-spacing:323.457451pt;}
.ws27{word-spacing:324.779814pt;}
.ws7{word-spacing:325.996199pt;}
._0{margin-left:-11.031040pt;}
._b{margin-left:-2.341120pt;}
._1{margin-left:-1.388800pt;}
._2{width:1.354904pt;}
._8{width:3.148800pt;}
._14{width:90.531686pt;}
._13{width:91.814123pt;}
._12{width:102.334273pt;}
._17{width:105.149379pt;}
._18{width:106.431815pt;}
._1a{width:107.714252pt;}
._10{width:112.593766pt;}
._11{width:113.876203pt;}
._19{width:121.821055pt;}
._16{width:122.853259pt;}
._9{width:142.194223pt;}
._2a{width:143.086343pt;}
._a{width:154.419046pt;}
._1c{width:155.881685pt;}
._15{width:160.294154pt;}
._4{width:161.576590pt;}
._5{width:162.859027pt;}
._7{width:164.141464pt;}
._2d{width:166.806407pt;}
._23{width:169.981054pt;}
._2c{width:171.782153pt;}
._f{width:173.890067pt;}
._1d{width:175.121103pt;}
._3{width:177.998034pt;}
._6{width:179.280471pt;}
._20{width:181.572780pt;}
._2f{width:183.209287pt;}
._e{width:184.149560pt;}
._27{width:186.138709pt;}
._25{width:190.056697pt;}
._d{width:195.952147pt;}
._22{width:197.737839pt;}
._2e{width:200.656487pt;}
._1e{width:201.864575pt;}
._2b{width:274.315412pt;}
._28{width:454.937602pt;}
._1b{width:598.771879pt;}
._29{width:795.486059pt;}
._24{width:801.393998pt;}
._1f{width:808.154882pt;}
._21{width:822.261684pt;}
._26{width:823.195421pt;}
._c{width:1273.304755pt;}
.fs1{font-size:35.840000pt;}
.fs0{font-size:39.680000pt;}
.fs5{font-size:42.240000pt;}
.fs4{font-size:47.360000pt;}
.fs3{font-size:52.480000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:14.719867pt;}
.y96{bottom:30.080000pt;}
.y4c{bottom:48.320000pt;}
.y98{bottom:51.200000pt;}
.y4b{bottom:67.520000pt;}
.y99{bottom:67.840000pt;}
.y9a{bottom:84.480000pt;}
.y4a{bottom:86.400000pt;}
.y9b{bottom:101.120000pt;}
.y49{bottom:105.279867pt;}
.y9c{bottom:117.759867pt;}
.y48{bottom:124.480000pt;}
.y9d{bottom:134.720000pt;}
.y47{bottom:143.360000pt;}
.y9e{bottom:151.360000pt;}
.y46{bottom:162.560000pt;}
.y9f{bottom:168.000000pt;}
.y45{bottom:181.120000pt;}
.ya0{bottom:184.640000pt;}
.ya1{bottom:201.280000pt;}
.y44{bottom:201.920000pt;}
.y97{bottom:229.120000pt;}
.ya2{bottom:232.000000pt;}
.y31{bottom:245.440000pt;}
.y8b{bottom:256.960000pt;}
.y32{bottom:270.080000pt;}
.y8d{bottom:287.360000pt;}
.y33{bottom:295.040000pt;}
.y8e{bottom:308.160000pt;}
.y34{bottom:319.680000pt;}
.y8f{bottom:329.280000pt;}
.y35{bottom:344.320000pt;}
.y90{bottom:350.080000pt;}
.y36{bottom:368.960000pt;}
.y91{bottom:370.880000pt;}
.y92{bottom:391.680000pt;}
.yc0{bottom:392.320000pt;}
.y37{bottom:393.920000pt;}
.ybf{bottom:411.200000pt;}
.y93{bottom:412.800000pt;}
.y38{bottom:418.560000pt;}
.ybe{bottom:431.360000pt;}
.y94{bottom:433.600000pt;}
.y39{bottom:443.200000pt;}
.ybd{bottom:450.560000pt;}
.y8c{bottom:456.000000pt;}
.y95{bottom:459.200000pt;}
.y3a{bottom:467.840000pt;}
.ybc{bottom:469.440000pt;}
.y78{bottom:481.280000pt;}
.y7a{bottom:483.200000pt;}
.ybb{bottom:488.320000pt;}
.y3b{bottom:492.800000pt;}
.y69{bottom:497.600000pt;}
.y83{bottom:505.280000pt;}
.yba{bottom:507.520000pt;}
.y6a{bottom:512.640000pt;}
.y3c{bottom:517.440000pt;}
.y84{bottom:526.400000pt;}
.y6b{bottom:527.680000pt;}
.y82{bottom:532.160000pt;}
.y3d{bottom:542.080000pt;}
.y6c{bottom:542.720000pt;}
.yb9{bottom:545.280000pt;}
.y85{bottom:555.520000pt;}
.y6d{bottom:557.760000pt;}
.y81{bottom:559.040000pt;}
.yb8{bottom:564.480000pt;}
.y3e{bottom:567.040000pt;}
.y6e{bottom:572.800000pt;}
.yb7{bottom:583.360000pt;}
.y86{bottom:584.320000pt;}
.y80{bottom:585.920000pt;}
.y6f{bottom:587.840000pt;}
.y3f{bottom:591.680000pt;}
.yb6{bottom:602.240000pt;}
.y70{bottom:602.880000pt;}
.y7f{bottom:612.800000pt;}
.y87{bottom:613.120000pt;}
.y40{bottom:616.320000pt;}
.y71{bottom:617.920000pt;}
.yb5{bottom:622.400000pt;}
.y72{bottom:632.960000pt;}
.y7e{bottom:640.000000pt;}
.y41{bottom:640.960000pt;}
.yb4{bottom:641.920000pt;}
.y88{bottom:642.240000pt;}
.y73{bottom:648.000000pt;}
.y74{bottom:663.040000pt;}
.y42{bottom:665.920000pt;}
.y7d{bottom:666.880000pt;}
.y89{bottom:671.040000pt;}
.y75{bottom:678.080000pt;}
.y43{bottom:690.560000pt;}
.y76{bottom:693.120000pt;}
.y7c{bottom:693.760000pt;}
.y8a{bottom:699.840000pt;}
.y30{bottom:707.200000pt;}
.y77{bottom:708.160000pt;}
.yb3{bottom:712.640000pt;}
.y7b{bottom:720.640000pt;}
.yb2{bottom:731.520000pt;}
.y79{bottom:733.120000pt;}
.y68{bottom:735.040000pt;}
.yb1{bottom:751.680000pt;}
.y11{bottom:755.200000pt;}
.y27{bottom:760.000000pt;}
.y13{bottom:760.640000pt;}
.yb0{bottom:770.560000pt;}
.y3{bottom:771.520000pt;}
.y5a{bottom:778.240000pt;}
.y67{bottom:778.880000pt;}
.y2f{bottom:782.080000pt;}
.y1c{bottom:782.720000pt;}
.y4{bottom:788.800000pt;}
.yaf{bottom:789.440000pt;}
.y65{bottom:791.680000pt;}
.y59{bottom:795.200000pt;}
.y1d{bottom:797.120000pt;}
.y5{bottom:806.080000pt;}
.y2e{bottom:809.280000pt;}
.yae{bottom:809.600000pt;}
.y1b{bottom:809.920000pt;}
.y58{bottom:812.160000pt;}
.y64{bottom:814.720000pt;}
.y1e{bottom:822.720000pt;}
.y6{bottom:823.360000pt;}
.yad{bottom:828.800000pt;}
.y57{bottom:829.120000pt;}
.y2d{bottom:836.480000pt;}
.y1a{bottom:836.800000pt;}
.y63{bottom:837.760000pt;}
.y7{bottom:840.640000pt;}
.yac{bottom:847.680000pt;}
.y1f{bottom:848.000000pt;}
.y8{bottom:857.600000pt;}
.y62{bottom:861.120000pt;}
.y2c{bottom:863.680000pt;}
.y19{bottom:864.000000pt;}
.yab{bottom:866.560000pt;}
.y4d{bottom:872.960000pt;}
.y20{bottom:873.600000pt;}
.y9{bottom:874.880000pt;}
.y61{bottom:884.160000pt;}
.yaa{bottom:885.760000pt;}
.y18{bottom:891.200000pt;}
.ya{bottom:892.160000pt;}
.y21{bottom:899.200000pt;}
.y4e{bottom:900.480000pt;}
.ya9{bottom:904.640000pt;}
.y60{bottom:907.200000pt;}
.yb{bottom:909.440000pt;}
.y17{bottom:918.080000pt;}
.y2b{bottom:918.400000pt;}
.ya8{bottom:923.520000pt;}
.y22{bottom:924.800000pt;}
.yc{bottom:926.720000pt;}
.y4f{bottom:927.360000pt;}
.y5f{bottom:930.240000pt;}
.ya7{bottom:942.720000pt;}
.yd{bottom:944.000000pt;}
.y16{bottom:945.280000pt;}
.y2a{bottom:945.600000pt;}
.y23{bottom:950.400000pt;}
.y50{bottom:952.320000pt;}
.y5e{bottom:953.280000pt;}
.ye{bottom:961.280000pt;}
.ya6{bottom:961.600000pt;}
.y15{bottom:972.160000pt;}
.y29{bottom:972.800000pt;}
.y51{bottom:975.040000pt;}
.y24{bottom:976.000000pt;}
.y5d{bottom:976.640000pt;}
.yf{bottom:978.560000pt;}
.ya5{bottom:980.480000pt;}
.y52{bottom:994.560000pt;}
.y10{bottom:995.840000pt;}
.y14{bottom:999.360000pt;}
.y5c{bottom:999.680000pt;}
.y28{bottom:1000.000000pt;}
.ya4{bottom:1000.640000pt;}
.y25{bottom:1001.280000pt;}
.y53{bottom:1010.560000pt;}
.y12{bottom:1011.840000pt;}
.y26{bottom:1012.480000pt;}
.y2{bottom:1016.960000pt;}
.ya3{bottom:1020.160000pt;}
.y54{bottom:1022.080000pt;}
.y5b{bottom:1022.720000pt;}
.y55{bottom:1029.440000pt;}
.y56{bottom:1031.680000pt;}
.y66{bottom:1035.200000pt;}
.h6{height:28.907500pt;}
.h2{height:37.380000pt;}
.h4{height:38.232500pt;}
.h1{height:41.385000pt;}
.h5{height:49.395000pt;}
.h7{height:54.735000pt;}
.h3{height:66.750000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:1.920000pt;}
.x5{left:32.319867pt;}
.x2b{left:33.600000pt;}
.x7{left:35.840000pt;}
.x2d{left:37.120000pt;}
.x23{left:39.040000pt;}
.x6{left:44.160000pt;}
.x2c{left:45.440000pt;}
.x22{left:46.400000pt;}
.xe{left:48.000000pt;}
.x21{left:55.360000pt;}
.x4{left:57.280000pt;}
.x2a{left:58.560000pt;}
.xf{left:60.160000pt;}
.x10{left:61.120000pt;}
.x3b{left:62.400000pt;}
.x20{left:65.920000pt;}
.x37{left:69.120000pt;}
.x35{left:71.360000pt;}
.x34{left:73.920000pt;}
.x39{left:79.680000pt;}
.x1f{left:80.640000pt;}
.x36{left:82.880000pt;}
.x33{left:96.000000pt;}
.x1e{left:98.560000pt;}
.x1d{left:119.360000pt;}
.x1c{left:142.080000pt;}
.x1b{left:166.720000pt;}
.x1a{left:203.840000pt;}
.x3c{left:210.240000pt;}
.x19{left:236.160000pt;}
.x18{left:260.800000pt;}
.x17{left:283.520000pt;}
.x3a{left:285.440000pt;}
.x38{left:288.000000pt;}
.x16{left:304.320000pt;}
.x15{left:322.240000pt;}
.x14{left:336.960000pt;}
.x3{left:345.280000pt;}
.x13{left:347.520000pt;}
.x29{left:348.480000pt;}
.x2{left:349.760000pt;}
.x28{left:352.960000pt;}
.x12{left:354.240000pt;}
.x11{left:356.480000pt;}
.xb{left:426.240000pt;}
.xd{left:429.760000pt;}
.x30{left:430.720000pt;}
.x32{left:434.240000pt;}
.xc{left:438.080000pt;}
.x25{left:440.960000pt;}
.x31{left:442.560000pt;}
.x26{left:446.400000pt;}
.xa{left:451.200000pt;}
.x2f{left:455.680000pt;}
.x24{left:460.160000pt;}
.x27{left:473.280000pt;}
.x9{left:740.480000pt;}
.x8{left:744.960000pt;}
.x2e{left:749.760000pt;}
}




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