
    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_94e2a89a16b7a86aae494672.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196023;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_337f1f007d0488f189bff513.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971000;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_56b6e637385eae61dd30c320.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.985352;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_9cdbeace466475e7bbb381f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975098;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_29848870d8d49d8acf35dbcb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.898926;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_3b6ba9cecb82030860d93427.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.196023;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_205dfc8fa5e6403b145c3111.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.181818;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_f4bf7516050cfa4ab27f7748.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.985352;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_a97b218cd1bd2e9f377fa5b0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.985352;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_d355d2812f8e92b8736c6d77.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971000;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:ffb;src:url('chunks/assets/font_9f772540531f2a830fea807a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971000;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:ffc;src:url('chunks/assets/font_c074878bd24daf400411356f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.181818;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:ffd;src:url('chunks/assets/font_f6710da2a35c4e2117dc46de.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.181818;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:ffe;src:url('chunks/assets/font_16685432bd43d8caa30f4cee.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.181818;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:fff;src:url('chunks/assets/font_3366130b0a8dd7ed0ba1923c.woff2')format("woff");}.fff{font-family:fff;line-height:1.181818;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-59.152498px;}
.ws2{word-spacing:-33.552245px;}
.ws9{word-spacing:-24.005159px;}
.ws3{word-spacing:-22.368163px;}
.wsb{word-spacing:-17.894355px;}
.wsa{word-spacing:-16.604999px;}
.wsc{word-spacing:-14.753806px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:1648.898368px;}
.ws7{word-spacing:1787.220629px;}
.ws6{word-spacing:1822.236252px;}
.ws5{word-spacing:1887.626874px;}
.ws8{word-spacing:1894.394451px;}
._24{margin-left:-7.953090px;}
._4{margin-left:-5.523094px;}
._10{margin-left:-4.207505px;}
._2{margin-left:-2.969911px;}
._1{margin-left:-1.237477px;}
._0{width:1.208046px;}
._12{width:2.891373px;}
._3{width:4.499978px;}
._15{width:5.989716px;}
._2b{width:7.283062px;}
._1e{width:9.011682px;}
._35{width:10.128903px;}
._30{width:11.289541px;}
._1d{width:12.403306px;}
._3e{width:13.498862px;}
._31{width:15.438723px;}
._27{width:16.626128px;}
._1c{width:18.982142px;}
._16{width:20.621307px;}
._17{width:21.665064px;}
._18{width:23.166738px;}
._20{width:24.628872px;}
._3c{width:25.650868px;}
._2f{width:26.762343px;}
._2e{width:27.826122px;}
._2d{width:29.735325px;}
._37{width:30.826235px;}
._23{width:31.943957px;}
._22{width:32.972262px;}
._1a{width:34.171868px;}
._21{width:35.225691px;}
._14{width:36.427778px;}
._13{width:37.869440px;}
._2c{width:39.584453px;}
._34{width:40.849015px;}
._36{width:42.195006px;}
._26{width:43.525524px;}
._1b{width:44.733925px;}
._38{width:46.213616px;}
._19{width:47.314440px;}
._3d{width:48.706206px;}
._29{width:51.734079px;}
._3f{width:52.870836px;}
._25{width:54.001336px;}
._2a{width:59.731012px;}
._41{width:61.442812px;}
._28{width:62.589675px;}
._11{width:74.773559px;}
._46{width:77.935662px;}
._45{width:79.642412px;}
._43{width:82.185421px;}
._33{width:88.492950px;}
._40{width:89.880433px;}
._47{width:92.276332px;}
._32{width:93.671166px;}
._1f{width:95.751090px;}
._39{width:114.345781px;}
._42{width:125.969506px;}
._48{width:142.702075px;}
._44{width:152.163553px;}
._3b{width:161.600112px;}
._3a{width:162.618606px;}
._49{width:285.768996px;}
._d{width:1045.975715px;}
._5{width:1069.554198px;}
._b{width:1137.346804px;}
._e{width:1182.275698px;}
._6{width:1218.592893px;}
._9{width:1238.596798px;}
._a{width:1373.526482px;}
._7{width:1396.330152px;}
._8{width:1402.178827px;}
._f{width:1438.470644px;}
._c{width:1668.142854px;}
.fc2{color:rgb(10,10,10);}
.fc1{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:53.999998px;}
.fs8{font-size:59.039997px;}
.fs4{font-size:63.624373px;}
.fs5{font-size:71.999997px;}
.fs7{font-size:84.954371px;}
.fs3{font-size:89.999996px;}
.fs6{font-size:100.439996px;}
.fs2{font-size:134.999994px;}
.fs1{font-size:247.499990px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.067523px;}
.y2{bottom:90.703121px;}
.y4f{bottom:133.312494px;}
.ya9{bottom:135.140619px;}
.y94{bottom:143.859369px;}
.ycc{bottom:148.499994px;}
.y77{bottom:150.749994px;}
.y5f{bottom:151.593744px;}
.y4e{bottom:154.968744px;}
.ya8{bottom:156.937493px;}
.y93{bottom:165.656243px;}
.ycb{bottom:170.296868px;}
.y76{bottom:172.546868px;}
.y5e{bottom:173.390618px;}
.y4d{bottom:176.765618px;}
.yf0{bottom:178.031243px;}
.ya7{bottom:178.734368px;}
.yca{bottom:192.093742px;}
.y75{bottom:194.343742px;}
.y4c{bottom:198.562492px;}
.yef{bottom:199.828117px;}
.yc9{bottom:213.890616px;}
.ya6{bottom:214.031241px;}
.y74{bottom:216.140616px;}
.y4b{bottom:220.359366px;}
.yee{bottom:221.624991px;}
.y92{bottom:227.531241px;}
.y5d{bottom:235.265615px;}
.yc8{bottom:235.687490px;}
.ya5{bottom:235.828115px;}
.y73{bottom:237.937490px;}
.y4a{bottom:242.156240px;}
.y10d{bottom:242.718740px;}
.yed{bottom:243.421865px;}
.y91{bottom:247.781240px;}
.yc7{bottom:257.484364px;}
.ya4{bottom:257.624989px;}
.y72{bottom:259.734364px;}
.y49{bottom:263.953114px;}
.y10c{bottom:278.015613px;}
.yec{bottom:278.718738px;}
.ya3{bottom:279.421863px;}
.y71{bottom:281.531238px;}
.y48{bottom:285.749988px;}
.yc6{bottom:292.781238px;}
.y10b{bottom:299.812488px;}
.yeb{bottom:300.515612px;}
.y70{bottom:303.328112px;}
.y47{bottom:307.546862px;}
.ya2{bottom:308.249987px;}
.yc5{bottom:314.578112px;}
.yea{bottom:322.312487px;}
.y3b{bottom:324.562486px;}
.y6f{bottom:325.124986px;}
.y10a{bottom:335.109361px;}
.yc4{bottom:336.374986px;}
.y86{bottom:341.015611px;}
.ye9{bottom:344.109361px;}
.y3a{bottom:346.359361px;}
.y6e{bottom:346.921861px;}
.yc3{bottom:358.171860px;}
.y1f{bottom:362.531235px;}
.y85{bottom:362.812485px;}
.y39{bottom:368.156235px;}
.y6d{bottom:368.718735px;}
.y46{bottom:369.421860px;}
.y109{bottom:370.406235px;}
.ya1{bottom:370.546860px;}
.ye8{bottom:379.406234px;}
.yc2{bottom:379.968734px;}
.y84{bottom:384.609359px;}
.y38{bottom:389.953109px;}
.y108{bottom:392.203109px;}
.ya0{bottom:392.343734px;}
.y1e{bottom:405.140608px;}
.y83{bottom:406.406233px;}
.y37{bottom:411.749983px;}
.y9f{bottom:414.140608px;}
.ye7{bottom:414.703108px;}
.yc1{bottom:415.265608px;}
.y107{bottom:427.499982px;}
.y82{bottom:428.203107px;}
.y6c{bottom:430.453107px;}
.y36{bottom:433.546857px;}
.y9e{bottom:435.937482px;}
.ye6{bottom:436.499982px;}
.yc0{bottom:436.921857px;}
.y1d{bottom:447.609356px;}
.y106{bottom:449.296856px;}
.y81{bottom:449.999981px;}
.y35{bottom:455.343731px;}
.y9d{bottom:457.734356px;}
.ye5{bottom:458.296856px;}
.ybf{bottom:458.718731px;}
.y80{bottom:471.796855px;}
.y34{bottom:477.140605px;}
.y9c{bottom:479.531230px;}
.ybe{bottom:480.515605px;}
.y105{bottom:484.593730px;}
.y1c{bottom:490.078105px;}
.y7f{bottom:493.593729px;}
.y33{bottom:498.937479px;}
.y9b{bottom:501.328104px;}
.ybd{bottom:502.312479px;}
.y104{bottom:506.390604px;}
.y7e{bottom:515.390604px;}
.y32{bottom:520.734353px;}
.y9a{bottom:523.124978px;}
.y1b{bottom:532.687478px;}
.y7d{bottom:537.187478px;}
.ybc{bottom:537.609353px;}
.y5c{bottom:539.578103px;}
.y103{bottom:541.687477px;}
.y31{bottom:542.531227px;}
.y99{bottom:544.921852px;}
.y90{bottom:549.281227px;}
.y7c{bottom:558.984352px;}
.ybb{bottom:559.406227px;}
.y30{bottom:564.328101px;}
.y98{bottom:566.718726px;}
.ye4{bottom:572.484351px;}
.y1a{bottom:575.156226px;}
.y102{bottom:576.984351px;}
.y7b{bottom:580.781226px;}
.yba{bottom:581.203101px;}
.y2f{bottom:586.124976px;}
.y5b{bottom:593.156225px;}
.ye3{bottom:594.281225px;}
.y8f{bottom:602.859350px;}
.yb9{bottom:602.999975px;}
.y101{bottom:612.281224px;}
.y5a{bottom:614.953099px;}
.ye2{bottom:616.078099px;}
.y2e{bottom:617.062474px;}
.y19{bottom:617.624974px;}
.y9{bottom:623.671849px;}
.y8e{bottom:624.656224px;}
.yb8{bottom:624.796849px;}
.y97{bottom:628.593724px;}
.y59{bottom:636.749973px;}
.y7a{bottom:642.515598px;}
.y8d{bottom:646.453098px;}
.yb7{bottom:646.593723px;}
.y100{bottom:647.578098px;}
.ye1{bottom:651.374973px;}
.y2d{bottom:652.359348px;}
.y58{bottom:658.546848px;}
.y18{bottom:660.234347px;}
.y79{bottom:662.765597px;}
.y8c{bottom:668.249972px;}
.yb6{bottom:668.390597px;}
.yff{bottom:669.374972px;}
.y45{bottom:672.187472px;}
.ye0{bottom:673.031222px;}
.y8{bottom:673.593722px;}
.y57{bottom:680.343722px;}
.y8b{bottom:690.046846px;}
.yb5{bottom:690.187471px;}
.ydf{bottom:694.828096px;}
.y56{bottom:702.140596px;}
.y17{bottom:702.703096px;}
.y7{bottom:703.265596px;}
.yfe{bottom:704.671846px;}
.y8a{bottom:711.843720px;}
.yb4{bottom:711.984345px;}
.y2c{bottom:714.656220px;}
.y55{bottom:723.937470px;}
.y44{bottom:725.906220px;}
.yfd{bottom:726.468720px;}
.yde{bottom:730.124970px;}
.y89{bottom:733.640594px;}
.yb3{bottom:733.781219px;}
.y2b{bottom:736.453094px;}
.y16{bottom:745.312469px;}
.y54{bottom:745.734344px;}
.y43{bottom:747.703094px;}
.yb2{bottom:755.578094px;}
.y2a{bottom:758.249968px;}
.yfc{bottom:761.765593px;}
.ydd{bottom:765.421843px;}
.y53{bottom:767.531218px;}
.y42{bottom:769.499968px;}
.yb1{bottom:777.374968px;}
.y6{bottom:778.078093px;}
.y29{bottom:780.046842px;}
.y15{bottom:787.781217px;}
.y52{bottom:789.328092px;}
.y41{bottom:791.296842px;}
.y88{bottom:795.515592px;}
.yfb{bottom:797.062467px;}
.yb0{bottom:799.171842px;}
.ydc{bottom:800.718717px;}
.y28{bottom:801.843717px;}
.y40{bottom:813.093716px;}
.y87{bottom:815.624966px;}
.yfa{bottom:818.859341px;}
.yaf{bottom:820.968716px;}
.y5{bottom:822.515591px;}
.y27{bottom:823.640591px;}
.y14{bottom:830.249965px;}
.y3f{bottom:834.890590px;}
.ydb{bottom:836.015590px;}
.yf9{bottom:840.656215px;}
.yae{bottom:842.765590px;}
.y26{bottom:845.437465px;}
.y51{bottom:851.062465px;}
.y6b{bottom:854.437464px;}
.y3e{bottom:856.546839px;}
.yad{bottom:864.562464px;}
.y25{bottom:867.093714px;}
.yda{bottom:871.312464px;}
.y13{bottom:872.859339px;}
.yf8{bottom:875.812464px;}
.y4{bottom:876.656213px;}
.yd6{bottom:878.062463px;}
.yac{bottom:886.359338px;}
.y24{bottom:888.890588px;}
.yd9{bottom:893.109338px;}
.yd5{bottom:899.859338px;}
.y6a{bottom:908.156212px;}
.y23{bottom:910.687462px;}
.yf7{bottom:911.109337px;}
.yd8{bottom:914.906212px;}
.y12{bottom:915.328087px;}
.y3d{bottom:918.421837px;}
.yd4{bottom:921.656212px;}
.y69{bottom:929.812461px;}
.y22{bottom:932.484336px;}
.yf6{bottom:932.906211px;}
.y96{bottom:933.328086px;}
.y3c{bottom:938.671836px;}
.yd3{bottom:943.453086px;}
.y68{bottom:951.609335px;}
.yf5{bottom:954.703085px;}
.y11{bottom:957.937460px;}
.y3{bottom:959.062460px;}
.y21{bottom:961.453085px;}
.yd2{bottom:965.249960px;}
.yd7{bottom:971.999960px;}
.y67{bottom:973.406209px;}
.y78{bottom:976.921834px;}
.y95{bottom:986.906209px;}
.yf4{bottom:989.999959px;}
.yab{bottom:995.203084px;}
.y10{bottom:1000.406208px;}
.y66{bottom:1008.703083px;}
.yd1{bottom:1015.874958px;}
.yaa{bottom:1016.999958px;}
.ye{bottom:1020.093707px;}
.yf3{bottom:1025.296832px;}
.y65{bottom:1030.499957px;}
.yf2{bottom:1047.093706px;}
.y20{bottom:1049.062456px;}
.y64{bottom:1052.296831px;}
.yd{bottom:1055.390581px;}
.y63{bottom:1074.093705px;}
.yf{bottom:1074.937455px;}
.yd0{bottom:1078.171830px;}
.yf1{bottom:1082.390580px;}
.yc{bottom:1090.687455px;}
.y62{bottom:1095.890579px;}
.ycf{bottom:1099.968704px;}
.y61{bottom:1117.687453px;}
.yce{bottom:1121.765578px;}
.yb{bottom:1125.984328px;}
.y60{bottom:1139.484328px;}
.ycd{bottom:1150.734327px;}
.y50{bottom:1154.953077px;}
.ya{bottom:1161.281202px;}
.h3{height:51.928975px;}
.h8{height:55.582029px;}
.hb{height:56.356361px;}
.h7{height:60.732356px;}
.ha{height:66.519272px;}
.h6{height:68.554685px;}
.h9{height:78.644517px;}
.h5{height:104.216304px;}
.h4{height:193.792492px;}
.h2{height:1262.812447px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w2{width:892.968731px;}
.w0{width:893.879970px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:63.777829px;}
.x2{left:84.937496px;}
.x4{left:106.536617px;}
.x5{left:128.135737px;}
.x9{left:254.953114px;}
.x6{left:276.187488px;}
.x8{left:326.823469px;}
.xa{left:348.057843px;}
.xd{left:409.748270px;}
.xe{left:430.982645px;}
.xc{left:673.415747px;}
.xb{left:675.736059px;}
.x7{left:680.719458px;}
.xf{left:731.168674px;}
.x3{left:811.880826px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-52.579998pt;}
.ws2{word-spacing:-29.824218pt;}
.ws9{word-spacing:-21.337919pt;}
.ws3{word-spacing:-19.882812pt;}
.wsb{word-spacing:-15.906093pt;}
.wsa{word-spacing:-14.759999pt;}
.wsc{word-spacing:-13.114494pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:1465.687439pt;}
.ws7{word-spacing:1588.640559pt;}
.ws6{word-spacing:1619.765557pt;}
.ws5{word-spacing:1677.890555pt;}
.ws8{word-spacing:1683.906179pt;}
._24{margin-left:-7.069414pt;}
._4{margin-left:-4.909416pt;}
._10{margin-left:-3.740005pt;}
._2{margin-left:-2.639921pt;}
._1{margin-left:-1.099980pt;}
._0{width:1.073819pt;}
._12{width:2.570109pt;}
._3{width:3.999981pt;}
._15{width:5.324192pt;}
._2b{width:6.473833pt;}
._1e{width:8.010384pt;}
._35{width:9.003470pt;}
._30{width:10.035148pt;}
._1d{width:11.025161pt;}
._3e{width:11.998988pt;}
._31{width:13.723309pt;}
._27{width:14.778781pt;}
._1c{width:16.873015pt;}
._16{width:18.330051pt;}
._17{width:19.257835pt;}
._18{width:20.592656pt;}
._20{width:21.892331pt;}
._3c{width:22.800772pt;}
._2f{width:23.788749pt;}
._2e{width:24.734330pt;}
._2d{width:26.431400pt;}
._37{width:27.401098pt;}
._23{width:28.394628pt;}
._22{width:29.308677pt;}
._1a{width:30.374994pt;}
._21{width:31.311725pt;}
._14{width:32.380247pt;}
._13{width:33.661724pt;}
._2c{width:35.186180pt;}
._34{width:36.310235pt;}
._36{width:37.506672pt;}
._26{width:38.689354pt;}
._1b{width:39.763489pt;}
._38{width:41.078770pt;}
._19{width:42.057280pt;}
._3d{width:43.294406pt;}
._29{width:45.985848pt;}
._3f{width:46.996299pt;}
._25{width:48.001188pt;}
._2a{width:53.094233pt;}
._41{width:54.615833pt;}
._28{width:55.635266pt;}
._11{width:66.465386pt;}
._46{width:69.276144pt;}
._45{width:70.793255pt;}
._43{width:73.053708pt;}
._33{width:78.660400pt;}
._40{width:79.893719pt;}
._47{width:82.023406pt;}
._32{width:83.263259pt;}
._1f{width:85.112080pt;}
._39{width:101.640695pt;}
._42{width:111.972894pt;}
._48{width:126.846289pt;}
._44{width:135.256491pt;}
._3b{width:143.644544pt;}
._3a{width:144.549872pt;}
._49{width:254.016885pt;}
._d{width:929.756191pt;}
._5{width:950.714843pt;}
._b{width:1010.974937pt;}
._e{width:1050.911731pt;}
._6{width:1083.193683pt;}
._9{width:1100.974931pt;}
._a{width:1220.912429pt;}
._7{width:1241.182357pt;}
._8{width:1246.381180pt;}
._f{width:1278.640572pt;}
._c{width:1482.793648pt;}
.fs0{font-size:47.999998pt;}
.fs8{font-size:52.479997pt;}
.fs4{font-size:56.554998pt;}
.fs5{font-size:63.999997pt;}
.fs7{font-size:75.514996pt;}
.fs3{font-size:79.999997pt;}
.fs6{font-size:89.279996pt;}
.fs2{font-size:119.999995pt;}
.fs1{font-size:219.999991pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.060020pt;}
.y2{bottom:80.624997pt;}
.y4f{bottom:118.499995pt;}
.ya9{bottom:120.124995pt;}
.y94{bottom:127.874995pt;}
.ycc{bottom:131.999995pt;}
.y77{bottom:133.999994pt;}
.y5f{bottom:134.749994pt;}
.y4e{bottom:137.749994pt;}
.ya8{bottom:139.499994pt;}
.y93{bottom:147.249994pt;}
.ycb{bottom:151.374994pt;}
.y76{bottom:153.374994pt;}
.y5e{bottom:154.124994pt;}
.y4d{bottom:157.124993pt;}
.yf0{bottom:158.249993pt;}
.ya7{bottom:158.874993pt;}
.yca{bottom:170.749993pt;}
.y75{bottom:172.749993pt;}
.y4c{bottom:176.499993pt;}
.yef{bottom:177.624993pt;}
.yc9{bottom:190.124992pt;}
.ya6{bottom:190.249992pt;}
.y74{bottom:192.124992pt;}
.y4b{bottom:195.874992pt;}
.yee{bottom:196.999992pt;}
.y92{bottom:202.249992pt;}
.y5d{bottom:209.124991pt;}
.yc8{bottom:209.499991pt;}
.ya5{bottom:209.624991pt;}
.y73{bottom:211.499991pt;}
.y4a{bottom:215.249991pt;}
.y10d{bottom:215.749991pt;}
.yed{bottom:216.374991pt;}
.y91{bottom:220.249991pt;}
.yc7{bottom:228.874990pt;}
.ya4{bottom:228.999990pt;}
.y72{bottom:230.874990pt;}
.y49{bottom:234.624990pt;}
.y10c{bottom:247.124990pt;}
.yec{bottom:247.749990pt;}
.ya3{bottom:248.374990pt;}
.y71{bottom:250.249990pt;}
.y48{bottom:253.999989pt;}
.yc6{bottom:260.249989pt;}
.y10b{bottom:266.499989pt;}
.yeb{bottom:267.124989pt;}
.y70{bottom:269.624989pt;}
.y47{bottom:273.374989pt;}
.ya2{bottom:273.999989pt;}
.yc5{bottom:279.624988pt;}
.yea{bottom:286.499988pt;}
.y3b{bottom:288.499988pt;}
.y6f{bottom:288.999988pt;}
.y10a{bottom:297.874988pt;}
.yc4{bottom:298.999988pt;}
.y86{bottom:303.124987pt;}
.ye9{bottom:305.874987pt;}
.y3a{bottom:307.874987pt;}
.y6e{bottom:308.374987pt;}
.yc3{bottom:318.374987pt;}
.y1f{bottom:322.249987pt;}
.y85{bottom:322.499987pt;}
.y39{bottom:327.249986pt;}
.y6d{bottom:327.749986pt;}
.y46{bottom:328.374986pt;}
.y109{bottom:329.249986pt;}
.ya1{bottom:329.374986pt;}
.ye8{bottom:337.249986pt;}
.yc2{bottom:337.749986pt;}
.y84{bottom:341.874986pt;}
.y38{bottom:346.624986pt;}
.y108{bottom:348.624985pt;}
.ya0{bottom:348.749985pt;}
.y1e{bottom:360.124985pt;}
.y83{bottom:361.249985pt;}
.y37{bottom:365.999985pt;}
.y9f{bottom:368.124985pt;}
.ye7{bottom:368.624985pt;}
.yc1{bottom:369.124985pt;}
.y107{bottom:379.999984pt;}
.y82{bottom:380.624984pt;}
.y6c{bottom:382.624984pt;}
.y36{bottom:385.374984pt;}
.y9e{bottom:387.499984pt;}
.ye6{bottom:387.999984pt;}
.yc0{bottom:388.374984pt;}
.y1d{bottom:397.874983pt;}
.y106{bottom:399.374983pt;}
.y81{bottom:399.999983pt;}
.y35{bottom:404.749983pt;}
.y9d{bottom:406.874983pt;}
.ye5{bottom:407.374983pt;}
.ybf{bottom:407.749983pt;}
.y80{bottom:419.374983pt;}
.y34{bottom:424.124982pt;}
.y9c{bottom:426.249982pt;}
.ybe{bottom:427.124982pt;}
.y105{bottom:430.749982pt;}
.y1c{bottom:435.624982pt;}
.y7f{bottom:438.749982pt;}
.y33{bottom:443.499982pt;}
.y9b{bottom:445.624981pt;}
.ybd{bottom:446.499981pt;}
.y104{bottom:450.124981pt;}
.y7e{bottom:458.124981pt;}
.y32{bottom:462.874981pt;}
.y9a{bottom:464.999981pt;}
.y1b{bottom:473.499980pt;}
.y7d{bottom:477.499980pt;}
.ybc{bottom:477.874980pt;}
.y5c{bottom:479.624980pt;}
.y103{bottom:481.499980pt;}
.y31{bottom:482.249980pt;}
.y99{bottom:484.374980pt;}
.y90{bottom:488.249980pt;}
.y7c{bottom:496.874979pt;}
.ybb{bottom:497.249979pt;}
.y30{bottom:501.624979pt;}
.y98{bottom:503.749979pt;}
.ye4{bottom:508.874979pt;}
.y1a{bottom:511.249979pt;}
.y102{bottom:512.874979pt;}
.y7b{bottom:516.249978pt;}
.yba{bottom:516.624978pt;}
.y2f{bottom:520.999978pt;}
.y5b{bottom:527.249978pt;}
.ye3{bottom:528.249978pt;}
.y8f{bottom:535.874978pt;}
.yb9{bottom:535.999978pt;}
.y101{bottom:544.249977pt;}
.y5a{bottom:546.624977pt;}
.ye2{bottom:547.624977pt;}
.y2e{bottom:548.499977pt;}
.y19{bottom:548.999977pt;}
.y9{bottom:554.374977pt;}
.y8e{bottom:555.249977pt;}
.yb8{bottom:555.374977pt;}
.y97{bottom:558.749977pt;}
.y59{bottom:565.999976pt;}
.y7a{bottom:571.124976pt;}
.y8d{bottom:574.624976pt;}
.yb7{bottom:574.749976pt;}
.y100{bottom:575.624976pt;}
.ye1{bottom:578.999976pt;}
.y2d{bottom:579.874976pt;}
.y58{bottom:585.374976pt;}
.y18{bottom:586.874976pt;}
.y79{bottom:589.124975pt;}
.y8c{bottom:593.999975pt;}
.yb6{bottom:594.124975pt;}
.yff{bottom:594.999975pt;}
.y45{bottom:597.499975pt;}
.ye0{bottom:598.249975pt;}
.y8{bottom:598.749975pt;}
.y57{bottom:604.749975pt;}
.y8b{bottom:613.374974pt;}
.yb5{bottom:613.499974pt;}
.ydf{bottom:617.624974pt;}
.y56{bottom:624.124974pt;}
.y17{bottom:624.624974pt;}
.y7{bottom:625.124974pt;}
.yfe{bottom:626.374974pt;}
.y8a{bottom:632.749974pt;}
.yb4{bottom:632.874974pt;}
.y2c{bottom:635.249974pt;}
.y55{bottom:643.499973pt;}
.y44{bottom:645.249973pt;}
.yfd{bottom:645.749973pt;}
.yde{bottom:648.999973pt;}
.y89{bottom:652.124973pt;}
.yb3{bottom:652.249973pt;}
.y2b{bottom:654.624973pt;}
.y16{bottom:662.499972pt;}
.y54{bottom:662.874972pt;}
.y43{bottom:664.624972pt;}
.yb2{bottom:671.624972pt;}
.y2a{bottom:673.999972pt;}
.yfc{bottom:677.124972pt;}
.ydd{bottom:680.374972pt;}
.y53{bottom:682.249972pt;}
.y42{bottom:683.999972pt;}
.yb1{bottom:690.999971pt;}
.y6{bottom:691.624971pt;}
.y29{bottom:693.374971pt;}
.y15{bottom:700.249971pt;}
.y52{bottom:701.624971pt;}
.y41{bottom:703.374971pt;}
.y88{bottom:707.124971pt;}
.yfb{bottom:708.499970pt;}
.yb0{bottom:710.374970pt;}
.ydc{bottom:711.749970pt;}
.y28{bottom:712.749970pt;}
.y40{bottom:722.749970pt;}
.y87{bottom:724.999970pt;}
.yfa{bottom:727.874970pt;}
.yaf{bottom:729.749970pt;}
.y5{bottom:731.124970pt;}
.y27{bottom:732.124969pt;}
.y14{bottom:737.999969pt;}
.y3f{bottom:742.124969pt;}
.ydb{bottom:743.124969pt;}
.yf9{bottom:747.249969pt;}
.yae{bottom:749.124969pt;}
.y26{bottom:751.499969pt;}
.y51{bottom:756.499968pt;}
.y6b{bottom:759.499968pt;}
.y3e{bottom:761.374968pt;}
.yad{bottom:768.499968pt;}
.y25{bottom:770.749968pt;}
.yda{bottom:774.499968pt;}
.y13{bottom:775.874968pt;}
.yf8{bottom:778.499968pt;}
.y4{bottom:779.249968pt;}
.yd6{bottom:780.499967pt;}
.yac{bottom:787.874967pt;}
.y24{bottom:790.124967pt;}
.yd9{bottom:793.874967pt;}
.yd5{bottom:799.874967pt;}
.y6a{bottom:807.249966pt;}
.y23{bottom:809.499966pt;}
.yf7{bottom:809.874966pt;}
.yd8{bottom:813.249966pt;}
.y12{bottom:813.624966pt;}
.y3d{bottom:816.374966pt;}
.yd4{bottom:819.249966pt;}
.y69{bottom:826.499966pt;}
.y22{bottom:828.874965pt;}
.yf6{bottom:829.249965pt;}
.y96{bottom:829.624965pt;}
.y3c{bottom:834.374965pt;}
.yd3{bottom:838.624965pt;}
.y68{bottom:845.874965pt;}
.yf5{bottom:848.624965pt;}
.y11{bottom:851.499965pt;}
.y3{bottom:852.499964pt;}
.y21{bottom:854.624964pt;}
.yd2{bottom:857.999964pt;}
.yd7{bottom:863.999964pt;}
.y67{bottom:865.249964pt;}
.y78{bottom:868.374964pt;}
.y95{bottom:877.249963pt;}
.yf4{bottom:879.999963pt;}
.yab{bottom:884.624963pt;}
.y10{bottom:889.249963pt;}
.y66{bottom:896.624963pt;}
.yd1{bottom:902.999962pt;}
.yaa{bottom:903.999962pt;}
.ye{bottom:906.749962pt;}
.yf3{bottom:911.374962pt;}
.y65{bottom:915.999962pt;}
.yf2{bottom:930.749961pt;}
.y20{bottom:932.499961pt;}
.y64{bottom:935.374961pt;}
.yd{bottom:938.124961pt;}
.y63{bottom:954.749960pt;}
.yf{bottom:955.499960pt;}
.yd0{bottom:958.374960pt;}
.yf1{bottom:962.124960pt;}
.yc{bottom:969.499960pt;}
.y62{bottom:974.124959pt;}
.ycf{bottom:977.749959pt;}
.y61{bottom:993.499959pt;}
.yce{bottom:997.124958pt;}
.yb{bottom:1000.874958pt;}
.y60{bottom:1012.874958pt;}
.ycd{bottom:1022.874957pt;}
.y50{bottom:1026.624957pt;}
.ya{bottom:1032.249957pt;}
.h3{height:46.159089pt;}
.h8{height:49.406248pt;}
.hb{height:50.094543pt;}
.h7{height:53.984316pt;}
.ha{height:59.128242pt;}
.h6{height:60.937497pt;}
.h9{height:69.906237pt;}
.h5{height:92.636715pt;}
.h4{height:172.259993pt;}
.h2{height:1122.499953pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w2{width:793.749983pt;}
.w0{width:794.559973pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.691404pt;}
.x2{left:75.499997pt;}
.x4{left:94.699215pt;}
.x5{left:113.898433pt;}
.x9{left:226.624991pt;}
.x6{left:245.499990pt;}
.x8{left:290.509750pt;}
.xa{left:309.384750pt;}
.xd{left:364.220685pt;}
.xe{left:383.095684pt;}
.xc{left:598.591775pt;}
.xb{left:600.654275pt;}
.x7{left:605.083962pt;}
.xf{left:649.927710pt;}
.x3{left:721.671845pt;}
}




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