
    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_6b449ece01ea6119ed56bc3e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_7d55bfc88a7e5ddbedef5461.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_d0a2dea24742a0eab0555645.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_38ddeb7ed5cb2c1845ff63ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_e8b8f1056bb886d7badca135.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.789062;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_3b86b4fa4ba64da7dea3e5a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.701172;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_fcdafabe0c3f071487b5abb0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8e8dfe2b7a68b8a55f047b47.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_08d2311ebfd0b0cb89e54577.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.756836;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:ffa;src:url('chunks/assets/font_0d3a8250ede3352bbcacfa8c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.949219;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.759998px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.339840px;}
.ls3{letter-spacing:0.352800px;}
.ls0{letter-spacing:1.072800px;}
.ls1{letter-spacing:16.055994px;}
.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;}
}
.ws54{word-spacing:-14.011194px;}
.ws0{word-spacing:-12.599995px;}
.ws52{word-spacing:-12.409915px;}
.wsb{word-spacing:-11.159996px;}
.ws53{word-spacing:-10.007996px;}
.ws55{word-spacing:-8.999996px;}
.ws5a{word-spacing:-8.018637px;}
.ws56{word-spacing:-6.749987px;}
.ws4e{word-spacing:-1.545124px;}
.ws5e{word-spacing:-0.504000px;}
.ws1f{word-spacing:0.000000px;}
.ws29{word-spacing:0.190032px;}
.ws1d{word-spacing:0.190122px;}
.ws11{word-spacing:0.360021px;}
.ws4c{word-spacing:0.910075px;}
.ws1{word-spacing:1.419864px;}
.ws57{word-spacing:1.592032px;}
.ws2f{word-spacing:1.630074px;}
.ws1a{word-spacing:1.800018px;}
.ws12{word-spacing:2.350027px;}
.ws10{word-spacing:2.520016px;}
.ws3b{word-spacing:2.859860px;}
.ws18{word-spacing:3.240015px;}
.ws13{word-spacing:3.960013px;}
.ws17{word-spacing:4.319990px;}
.ws3f{word-spacing:4.680011px;}
.ws26{word-spacing:5.400009px;}
.ws25{word-spacing:5.654859px;}
.ws4a{word-spacing:5.739854px;}
.ws15{word-spacing:6.120008px;}
.ws3d{word-spacing:6.840006px;}
.ws33{word-spacing:7.094900px;}
.ws32{word-spacing:7.475054px;}
.wse{word-spacing:7.560004px;}
.ws6{word-spacing:7.814898px;}
.ws27{word-spacing:7.899804px;}
.wsf{word-spacing:7.899848px;}
.ws21{word-spacing:8.280002px;}
.ws7{word-spacing:9.000001px;}
.ws2{word-spacing:9.719999px;}
.ws1c{word-spacing:9.889899px;}
.ws3{word-spacing:10.059843px;}
.ws41{word-spacing:10.779841px;}
.ws14{word-spacing:10.990096px;}
.ws5c{word-spacing:11.015996px;}
.ws24{word-spacing:11.159996px;}
.ws2e{word-spacing:11.499840px;}
.ws28{word-spacing:11.879994px;}
.wsc{word-spacing:12.219793px;}
.ws4b{word-spacing:12.430092px;}
.ws2c{word-spacing:12.515087px;}
.ws50{word-spacing:12.939836px;}
.ws22{word-spacing:13.319990px;}
.ws51{word-spacing:14.294883px;}
.ws43{word-spacing:14.400010px;}
.ws5b{word-spacing:15.335994px;}
.ws38{word-spacing:15.395035px;}
.ws2b{word-spacing:15.479985px;}
.ws16{word-spacing:16.199983px;}
.ws23{word-spacing:16.919982px;}
.wsa{word-spacing:17.259826px;}
.ws49{word-spacing:17.470080px;}
.ws9{word-spacing:17.894874px;}
.ws1b{word-spacing:17.979780px;}
.ws4{word-spacing:18.190078px;}
.ws35{word-spacing:18.275028px;}
.ws5{word-spacing:18.359978px;}
.wsd{word-spacing:19.800019px;}
.ws36{word-spacing:20.774867px;}
.ws19{word-spacing:21.070072px;}
.ws3a{word-spacing:21.875020px;}
.ws48{word-spacing:21.960014px;}
.ws2a{word-spacing:22.680013px;}
.ws5d{word-spacing:23.975990px;}
.ws20{word-spacing:24.755057px;}
.ws1e{word-spacing:26.619848px;}
.ws8{word-spacing:27.720000px;}
.ws44{word-spacing:30.515044px;}
.ws58{word-spacing:32.312176px;}
.ws4f{word-spacing:32.590089px;}
.ws30{word-spacing:36.994939px;}
.ws4d{word-spacing:41.949977px;}
.ws45{word-spacing:43.390063px;}
.ws3e{word-spacing:43.899851px;}
.ws3c{word-spacing:44.619894px;}
.ws31{word-spacing:44.999780px;}
.ws39{word-spacing:47.075093px;}
.ws40{word-spacing:48.599995px;}
.ws47{word-spacing:56.139688px;}
.ws46{word-spacing:57.599862px;}
.ws42{word-spacing:59.019860px;}
.ws37{word-spacing:62.829882px;}
.ws34{word-spacing:62.999960px;}
.ws2d{word-spacing:88.030045px;}
.ws59{word-spacing:190.418381px;}
._3{margin-left:-5.311865px;}
._6{margin-left:-3.671950px;}
._1a{margin-left:-2.357444px;}
._2{margin-left:-1.268971px;}
._1{width:1.091602px;}
._0{width:2.171558px;}
._4{width:10.589753px;}
._10{width:12.293269px;}
._b{width:13.977394px;}
._d{width:15.840007px;}
._12{width:17.953998px;}
._f{width:19.081351px;}
._a{width:20.245027px;}
._5{width:21.939864px;}
._15{width:23.040048px;}
._8{width:24.524717px;}
._c{width:28.611311px;}
._7{width:30.709570px;}
._9{width:32.093340px;}
._e{width:33.375012px;}
._17{width:35.163108px;}
._11{width:37.100191px;}
._19{width:44.960899px;}
._13{width:49.247004px;}
._18{width:54.231870px;}
._16{width:56.234761px;}
._14{width:76.373263px;}
._1b{width:328.852610px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,153);}
.fc2{color:rgb(0,153,153);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,101);}
.fs6{font-size:26.639989px;}
.fs5{font-size:32.399987px;}
.fs3{font-size:35.999986px;}
.fs2{font-size:44.639982px;}
.fs0{font-size:50.399980px;}
.fs4{font-size:71.999971px;}
.fs1{font-size:77.039969px;}
.y0{bottom:0.000000px;}
.y76{bottom:84.180266px;}
.y75{bottom:127.560249px;}
.y74{bottom:139.800244px;}
.y73{bottom:142.500243px;}
.y93{bottom:170.939932px;}
.y92{bottom:181.739927px;}
.y91{bottom:192.539923px;}
.y90{bottom:203.339919px;}
.y72{bottom:210.179916px;}
.y1f{bottom:283.979886px;}
.y1e{bottom:297.479881px;}
.y42{bottom:298.379881px;}
.y1d{bottom:310.979876px;}
.y41{bottom:311.879875px;}
.y1c{bottom:324.479870px;}
.y40{bottom:325.379870px;}
.y70{bottom:331.859867px;}
.y1b{bottom:337.979865px;}
.y3f{bottom:338.879864px;}
.y6f{bottom:344.099862px;}
.y1a{bottom:351.479859px;}
.y3e{bottom:352.379859px;}
.y6e{bottom:356.159858px;}
.y19{bottom:364.979854px;}
.y3d{bottom:365.879854px;}
.y6d{bottom:368.399853px;}
.y18{bottom:378.479849px;}
.y17{bottom:394.679842px;}
.y6c{bottom:398.099841px;}
.y3c{bottom:398.279841px;}
.y16{bottom:406.919837px;}
.y6b{bottom:410.159836px;}
.y3b{bottom:411.779835px;}
.y15{bottom:418.979832px;}
.y6a{bottom:422.399831px;}
.y3a{bottom:425.279830px;}
.y14{bottom:431.219828px;}
.y69{bottom:434.459826px;}
.y39{bottom:438.779824px;}
.y13{bottom:443.279823px;}
.y68{bottom:446.699821px;}
.y38{bottom:452.279819px;}
.y12{bottom:455.519818px;}
.y67{bottom:458.759816px;}
.y37{bottom:465.779814px;}
.y11{bottom:467.579813px;}
.y66{bottom:470.999812px;}
.y65{bottom:483.059807px;}
.y20{bottom:485.939806px;}
.y64{bottom:495.299802px;}
.y36{bottom:498.179801px;}
.y63{bottom:507.359797px;}
.y35{bottom:511.679795px;}
.y62{bottom:519.599792px;}
.y31{bottom:524.459790px;}
.y34{bottom:525.179790px;}
.y61{bottom:531.659787px;}
.y30{bottom:536.699785px;}
.y33{bottom:538.679785px;}
.y60{bottom:543.899782px;}
.y32{bottom:552.179779px;}
.y5f{bottom:555.959778px;}
.y2f{bottom:566.399773px;}
.y5e{bottom:568.199773px;}
.y2e{bottom:578.459769px;}
.y3{bottom:578.819768px;}
.y5d{bottom:580.259768px;}
.y5c{bottom:592.499763px;}
.y2d{bottom:608.159757px;}
.y2c{bottom:620.399752px;}
.y5b{bottom:622.199751px;}
.y5a{bottom:634.259746px;}
.y59{bottom:646.499741px;}
.y2b{bottom:650.099740px;}
.y58{bottom:658.559737px;}
.y2a{bottom:662.159735px;}
.y57{bottom:670.799732px;}
.y29{bottom:677.099729px;}
.y56{bottom:682.859727px;}
.y28{bottom:691.859723px;}
.y27{bottom:704.099718px;}
.y7e{bottom:707.879717px;}
.y55{bottom:712.559715px;}
.y26{bottom:716.159714px;}
.y54{bottom:724.799710px;}
.y7a{bottom:725.699710px;}
.y25{bottom:728.399709px;}
.y53{bottom:736.859705px;}
.y24{bottom:740.459704px;}
.y52{bottom:749.099700px;}
.y23{bottom:752.699699px;}
.y51{bottom:761.159696px;}
.y22{bottom:764.759694px;}
.y7d{bottom:768.359693px;}
.y7b{bottom:773.039691px;}
.y50{bottom:773.399691px;}
.y21{bottom:779.699688px;}
.y7c{bottom:783.479687px;}
.y78{bottom:787.799685px;}
.y2{bottom:793.739683px;}
.y77{bottom:798.599681px;}
.y4f{bottom:803.099679px;}
.y4e{bottom:815.159674px;}
.y10{bottom:822.539671px;}
.y4d{bottom:827.399669px;}
.y79{bottom:831.719667px;}
.yf{bottom:836.039666px;}
.y7f{bottom:836.939665px;}
.y4c{bottom:839.459664px;}
.ye{bottom:849.539660px;}
.y4b{bottom:851.699659px;}
.y86{bottom:854.039658px;}
.yd{bottom:863.039655px;}
.y4a{bottom:863.759654px;}
.y85{bottom:864.839654px;}
.y8f{bottom:867.539653px;}
.y8d{bottom:871.319651px;}
.y84{bottom:875.639650px;}
.y49{bottom:875.999650px;}
.yc{bottom:876.539649px;}
.y83{bottom:886.439645px;}
.y48{bottom:888.059645px;}
.yb{bottom:890.039644px;}
.y8e{bottom:895.079642px;}
.y8c{bottom:895.619642px;}
.y82{bottom:897.239641px;}
.y47{bottom:900.299640px;}
.ya{bottom:903.539639px;}
.y8b{bottom:904.439638px;}
.y81{bottom:908.039637px;}
.y89{bottom:909.479636px;}
.y46{bottom:912.359635px;}
.y8a{bottom:916.859633px;}
.y88{bottom:917.399633px;}
.y45{bottom:924.599630px;}
.y87{bottom:926.579629px;}
.y9{bottom:935.939626px;}
.y44{bottom:936.659625px;}
.y80{bottom:941.519623px;}
.y1{bottom:955.019618px;}
.y43{bottom:966.359613px;}
.y71{bottom:976.799609px;}
.y8{bottom:1064.099574px;}
.y7{bottom:1080.119568px;}
.y6{bottom:1096.679561px;}
.y5{bottom:1113.239555px;}
.y4{bottom:1136.459545px;}
.hf{height:19.719836px;}
.he{height:25.479834px;}
.hd{height:35.332017px;}
.hc{height:36.281235px;}
.h9{height:37.546860px;}
.h5{height:38.858188px;}
.h6{height:43.811701px;}
.h7{height:44.988732px;}
.h8{height:46.558106px;}
.h4{height:49.440215px;}
.h3{height:49.464824px;}
.h1{height:50.793730px;}
.ha{height:52.565604px;}
.hb{height:75.093720px;}
.h2{height:80.350280px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x11{left:29.519988px;}
.x4{left:32.219987px;}
.x10{left:37.439985px;}
.xf{left:83.339967px;}
.x16{left:150.479940px;}
.xc{left:215.459914px;}
.x8{left:220.679912px;}
.xd{left:223.379911px;}
.x15{left:224.999910px;}
.x9{left:228.599909px;}
.x6{left:232.199907px;}
.xa{left:259.199896px;}
.x1{left:274.139890px;}
.x2{left:290.339884px;}
.x5{left:322.199871px;}
.xb{left:338.759864px;}
.x13{left:343.619863px;}
.x7{left:352.259859px;}
.x14{left:406.979837px;}
.x12{left:428.039829px;}
.x21{left:479.519808px;}
.x1d{left:515.879794px;}
.x1c{left:518.219793px;}
.xe{left:531.539787px;}
.x20{left:544.499782px;}
.x2b{left:547.739781px;}
.x1e{left:596.519761px;}
.x1f{left:597.599761px;}
.x17{left:627.479749px;}
.x18{left:629.999748px;}
.x27{left:640.979744px;}
.x23{left:643.859742px;}
.x22{left:647.999741px;}
.x3{left:654.299738px;}
.x24{left:682.739727px;}
.x28{left:687.059725px;}
.x19{left:723.419711px;}
.x26{left:726.659709px;}
.x1b{left:734.579706px;}
.x1a{left:742.139703px;}
.x25{left:759.599696px;}
.x2a{left:796.499681px;}
.x29{left:798.479681px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.119998pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.302080pt;}
.ls3{letter-spacing:0.313600pt;}
.ls0{letter-spacing:0.953600pt;}
.ls1{letter-spacing:14.271994pt;}
.ws54{word-spacing:-12.454395pt;}
.ws0{word-spacing:-11.199996pt;}
.ws52{word-spacing:-11.031036pt;}
.wsb{word-spacing:-9.919996pt;}
.ws53{word-spacing:-8.895996pt;}
.ws55{word-spacing:-7.999997pt;}
.ws5a{word-spacing:-7.127677pt;}
.ws56{word-spacing:-5.999988pt;}
.ws4e{word-spacing:-1.373443pt;}
.ws5e{word-spacing:-0.448000pt;}
.ws1f{word-spacing:0.000000pt;}
.ws29{word-spacing:0.168918pt;}
.ws1d{word-spacing:0.168997pt;}
.ws11{word-spacing:0.320019pt;}
.ws4c{word-spacing:0.808956pt;}
.ws1{word-spacing:1.262101pt;}
.ws57{word-spacing:1.415140pt;}
.ws2f{word-spacing:1.448954pt;}
.ws1a{word-spacing:1.600016pt;}
.ws12{word-spacing:2.088913pt;}
.ws10{word-spacing:2.240014pt;}
.ws3b{word-spacing:2.542098pt;}
.ws18{word-spacing:2.880013pt;}
.ws13{word-spacing:3.520011pt;}
.ws17{word-spacing:3.839991pt;}
.ws3f{word-spacing:4.160010pt;}
.ws26{word-spacing:4.800008pt;}
.ws25{word-spacing:5.026541pt;}
.ws4a{word-spacing:5.102092pt;}
.ws15{word-spacing:5.440007pt;}
.ws3d{word-spacing:6.080005pt;}
.ws33{word-spacing:6.306578pt;}
.ws32{word-spacing:6.644493pt;}
.wse{word-spacing:6.720004pt;}
.ws6{word-spacing:6.946576pt;}
.ws27{word-spacing:7.022048pt;}
.wsf{word-spacing:7.022087pt;}
.ws21{word-spacing:7.360002pt;}
.ws7{word-spacing:8.000001pt;}
.ws2{word-spacing:8.639999pt;}
.ws1c{word-spacing:8.791021pt;}
.ws3{word-spacing:8.942083pt;}
.ws41{word-spacing:9.582081pt;}
.ws14{word-spacing:9.768974pt;}
.ws5c{word-spacing:9.791996pt;}
.ws24{word-spacing:9.919996pt;}
.ws2e{word-spacing:10.222080pt;}
.ws28{word-spacing:10.559994pt;}
.wsc{word-spacing:10.862039pt;}
.ws4b{word-spacing:11.048971pt;}
.ws2c{word-spacing:11.124522pt;}
.ws50{word-spacing:11.502077pt;}
.ws22{word-spacing:11.839991pt;}
.ws51{word-spacing:12.706563pt;}
.ws43{word-spacing:12.800009pt;}
.ws5b{word-spacing:13.631995pt;}
.ws38{word-spacing:13.684476pt;}
.ws2b{word-spacing:13.759987pt;}
.ws16{word-spacing:14.399985pt;}
.ws23{word-spacing:15.039984pt;}
.wsa{word-spacing:15.342067pt;}
.ws49{word-spacing:15.528960pt;}
.ws9{word-spacing:15.906555pt;}
.ws1b{word-spacing:15.982026pt;}
.ws4{word-spacing:16.168959pt;}
.ws35{word-spacing:16.244470pt;}
.ws5{word-spacing:16.319981pt;}
.wsd{word-spacing:17.600017pt;}
.ws36{word-spacing:18.466549pt;}
.ws19{word-spacing:18.728953pt;}
.ws3a{word-spacing:19.444462pt;}
.ws48{word-spacing:19.520013pt;}
.ws2a{word-spacing:20.160011pt;}
.ws5d{word-spacing:21.311991pt;}
.ws20{word-spacing:22.004496pt;}
.ws1e{word-spacing:23.662087pt;}
.ws8{word-spacing:24.640000pt;}
.ws44{word-spacing:27.124483pt;}
.ws58{word-spacing:28.721934pt;}
.ws4f{word-spacing:28.968968pt;}
.ws30{word-spacing:32.884390pt;}
.ws4d{word-spacing:37.288868pt;}
.ws45{word-spacing:38.568945pt;}
.ws3e{word-spacing:39.022090pt;}
.ws3c{word-spacing:39.662128pt;}
.ws31{word-spacing:39.999805pt;}
.ws39{word-spacing:41.844527pt;}
.ws40{word-spacing:43.199996pt;}
.ws47{word-spacing:49.901945pt;}
.ws46{word-spacing:51.199877pt;}
.ws42{word-spacing:52.462097pt;}
.ws37{word-spacing:55.848784pt;}
.ws34{word-spacing:55.999965pt;}
.ws2d{word-spacing:78.248929pt;}
.ws59{word-spacing:169.260783pt;}
._3{margin-left:-4.721658pt;}
._6{margin-left:-3.263956pt;}
._1a{margin-left:-2.095506pt;}
._2{margin-left:-1.127974pt;}
._1{width:0.970313pt;}
._0{width:1.930274pt;}
._4{width:9.413114pt;}
._10{width:10.927351pt;}
._b{width:12.424350pt;}
._d{width:14.080006pt;}
._12{width:15.959109pt;}
._f{width:16.961201pt;}
._a{width:17.995580pt;}
._5{width:19.502102pt;}
._15{width:20.480043pt;}
._8{width:21.799749pt;}
._c{width:25.432277pt;}
._7{width:27.297396pt;}
._9{width:28.527413pt;}
._e{width:29.666677pt;}
._17{width:31.256096pt;}
._11{width:32.977948pt;}
._19{width:39.965243pt;}
._13{width:43.775115pt;}
._18{width:48.206107pt;}
._16{width:49.986454pt;}
._14{width:67.887345pt;}
._1b{width:292.313431pt;}
.fs6{font-size:23.679991pt;}
.fs5{font-size:28.799988pt;}
.fs3{font-size:31.999987pt;}
.fs2{font-size:39.679984pt;}
.fs0{font-size:44.799982pt;}
.fs4{font-size:63.999974pt;}
.fs1{font-size:68.479973pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:74.826903pt;}
.y75{bottom:113.386888pt;}
.y74{bottom:124.266884pt;}
.y73{bottom:126.666883pt;}
.y93{bottom:151.946606pt;}
.y92{bottom:161.546602pt;}
.y91{bottom:171.146598pt;}
.y90{bottom:180.746594pt;}
.y72{bottom:186.826592pt;}
.y1f{bottom:252.426566pt;}
.y1e{bottom:264.426561pt;}
.y42{bottom:265.226561pt;}
.y1d{bottom:276.426556pt;}
.y41{bottom:277.226556pt;}
.y1c{bottom:288.426551pt;}
.y40{bottom:289.226551pt;}
.y70{bottom:294.986549pt;}
.y1b{bottom:300.426546pt;}
.y3f{bottom:301.226546pt;}
.y6f{bottom:305.866544pt;}
.y1a{bottom:312.426542pt;}
.y3e{bottom:313.226541pt;}
.y6e{bottom:316.586540pt;}
.y19{bottom:324.426537pt;}
.y3d{bottom:325.226537pt;}
.y6d{bottom:327.466536pt;}
.y18{bottom:336.426532pt;}
.y17{bottom:350.826526pt;}
.y6c{bottom:353.866525pt;}
.y3c{bottom:354.026525pt;}
.y16{bottom:361.706522pt;}
.y6b{bottom:364.586521pt;}
.y3b{bottom:366.026520pt;}
.y15{bottom:372.426518pt;}
.y6a{bottom:375.466516pt;}
.y3a{bottom:378.026515pt;}
.y14{bottom:383.306513pt;}
.y69{bottom:386.186512pt;}
.y39{bottom:390.026511pt;}
.y13{bottom:394.026509pt;}
.y68{bottom:397.066508pt;}
.y38{bottom:402.026506pt;}
.y12{bottom:404.906505pt;}
.y67{bottom:407.786504pt;}
.y37{bottom:414.026501pt;}
.y11{bottom:415.626500pt;}
.y66{bottom:418.666499pt;}
.y65{bottom:429.386495pt;}
.y20{bottom:431.946494pt;}
.y64{bottom:440.266491pt;}
.y36{bottom:442.826490pt;}
.y63{bottom:450.986486pt;}
.y35{bottom:454.826485pt;}
.y62{bottom:461.866482pt;}
.y31{bottom:466.186480pt;}
.y34{bottom:466.826480pt;}
.y61{bottom:472.586478pt;}
.y30{bottom:477.066476pt;}
.y33{bottom:478.826475pt;}
.y60{bottom:483.466473pt;}
.y32{bottom:490.826470pt;}
.y5f{bottom:494.186469pt;}
.y2f{bottom:503.466465pt;}
.y5e{bottom:505.066465pt;}
.y2e{bottom:514.186461pt;}
.y3{bottom:514.506461pt;}
.y5d{bottom:515.786460pt;}
.y5c{bottom:526.666456pt;}
.y2d{bottom:540.586450pt;}
.y2c{bottom:551.466446pt;}
.y5b{bottom:553.066445pt;}
.y5a{bottom:563.786441pt;}
.y59{bottom:574.666437pt;}
.y2b{bottom:577.866436pt;}
.y58{bottom:585.386433pt;}
.y2a{bottom:588.586431pt;}
.y57{bottom:596.266428pt;}
.y29{bottom:601.866426pt;}
.y56{bottom:606.986424pt;}
.y28{bottom:614.986421pt;}
.y27{bottom:625.866416pt;}
.y7e{bottom:629.226415pt;}
.y55{bottom:633.386413pt;}
.y26{bottom:636.586412pt;}
.y54{bottom:644.266409pt;}
.y7a{bottom:645.066409pt;}
.y25{bottom:647.466408pt;}
.y53{bottom:654.986405pt;}
.y24{bottom:658.186403pt;}
.y52{bottom:665.866400pt;}
.y23{bottom:669.066399pt;}
.y51{bottom:676.586396pt;}
.y22{bottom:679.786395pt;}
.y7d{bottom:682.986393pt;}
.y7b{bottom:687.146392pt;}
.y50{bottom:687.466392pt;}
.y21{bottom:693.066389pt;}
.y7c{bottom:696.426388pt;}
.y78{bottom:700.266387pt;}
.y2{bottom:705.546384pt;}
.y77{bottom:709.866383pt;}
.y4f{bottom:713.866381pt;}
.y4e{bottom:724.586377pt;}
.y10{bottom:731.146374pt;}
.y4d{bottom:735.466372pt;}
.y79{bottom:739.306371pt;}
.yf{bottom:743.146369pt;}
.y7f{bottom:743.946369pt;}
.y4c{bottom:746.186368pt;}
.ye{bottom:755.146365pt;}
.y4b{bottom:757.066364pt;}
.y86{bottom:759.146363pt;}
.yd{bottom:767.146360pt;}
.y4a{bottom:767.786360pt;}
.y85{bottom:768.746359pt;}
.y8f{bottom:771.146358pt;}
.y8d{bottom:774.506357pt;}
.y84{bottom:778.346355pt;}
.y49{bottom:778.666355pt;}
.yc{bottom:779.146355pt;}
.y83{bottom:787.946351pt;}
.y48{bottom:789.386351pt;}
.yb{bottom:791.146350pt;}
.y8e{bottom:795.626348pt;}
.y8c{bottom:796.106348pt;}
.y82{bottom:797.546348pt;}
.y47{bottom:800.266347pt;}
.ya{bottom:803.146345pt;}
.y8b{bottom:803.946345pt;}
.y81{bottom:807.146344pt;}
.y89{bottom:808.426343pt;}
.y46{bottom:810.986342pt;}
.y8a{bottom:814.986341pt;}
.y88{bottom:815.466340pt;}
.y45{bottom:821.866338pt;}
.y87{bottom:823.626337pt;}
.y9{bottom:831.946334pt;}
.y44{bottom:832.586334pt;}
.y80{bottom:836.906332pt;}
.y1{bottom:848.906327pt;}
.y43{bottom:858.986323pt;}
.y71{bottom:868.266319pt;}
.y8{bottom:945.866288pt;}
.y7{bottom:960.106283pt;}
.y6{bottom:974.826277pt;}
.y5{bottom:989.546271pt;}
.y4{bottom:1010.186263pt;}
.hf{height:17.528743pt;}
.he{height:22.648741pt;}
.hd{height:31.406237pt;}
.hc{height:32.249987pt;}
.h9{height:33.374987pt;}
.h5{height:34.540611pt;}
.h6{height:38.943734pt;}
.h7{height:39.989984pt;}
.h8{height:41.384983pt;}
.h4{height:43.946857pt;}
.h3{height:43.968732pt;}
.h1{height:45.149982pt;}
.ha{height:46.724981pt;}
.hb{height:66.749973pt;}
.h2{height:71.422471pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x11{left:26.239990pt;}
.x4{left:28.639989pt;}
.x10{left:33.279987pt;}
.xf{left:74.079970pt;}
.x16{left:133.759946pt;}
.xc{left:191.519923pt;}
.x8{left:196.159922pt;}
.xd{left:198.559921pt;}
.x15{left:199.999920pt;}
.x9{left:203.199919pt;}
.x6{left:206.399917pt;}
.xa{left:230.399908pt;}
.x1{left:243.679903pt;}
.x2{left:258.079897pt;}
.x5{left:286.399885pt;}
.xb{left:301.119880pt;}
.x13{left:305.439878pt;}
.x7{left:313.119875pt;}
.x14{left:361.759855pt;}
.x12{left:380.479848pt;}
.x21{left:426.239830pt;}
.x1d{left:458.559817pt;}
.x1c{left:460.639816pt;}
.xe{left:472.479811pt;}
.x20{left:483.999806pt;}
.x2b{left:486.879805pt;}
.x1e{left:530.239788pt;}
.x1f{left:531.199788pt;}
.x17{left:557.759777pt;}
.x18{left:559.999776pt;}
.x27{left:569.759772pt;}
.x23{left:572.319771pt;}
.x22{left:575.999770pt;}
.x3{left:581.599767pt;}
.x24{left:606.879757pt;}
.x28{left:610.719756pt;}
.x19{left:643.039743pt;}
.x26{left:645.919742pt;}
.x1b{left:652.959739pt;}
.x1a{left:659.679736pt;}
.x25{left:675.199730pt;}
.x2a{left:707.999717pt;}
.x29{left:709.759716pt;}
}




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