
    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_5f24b7fbed68ee2564d15d76.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_332d26b370c787e1d35ca0b4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6210f950e6abb7689862ecc0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_82c7e92195407d35d1aa6ce6.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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m6{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.082314px;}
.ls2{letter-spacing:9.999722px;}
.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;}
}
.ws3{word-spacing:-14.623608px;}
.ws0{word-spacing:-14.541294px;}
.ws2{word-spacing:-11.737975px;}
.ws1{word-spacing:-9.460616px;}
.ws4{word-spacing:0.000000px;}
._8{margin-left:-7.205440px;}
._6{margin-left:-2.266467px;}
._1{margin-left:-1.194061px;}
._0{width:1.325924px;}
._14{width:2.356529px;}
._e{width:3.572261px;}
._f{width:5.439724px;}
._b{width:6.670223px;}
._9{width:7.796814px;}
._a{width:9.406638px;}
._17{width:10.864090px;}
._7{width:12.427090px;}
._20{width:13.465749px;}
._1b{width:15.566683px;}
._11{width:16.574992px;}
._10{width:17.772239px;}
._1e{width:19.437021px;}
._1c{width:21.011376px;}
._1d{width:22.333910px;}
._15{width:24.477674px;}
._13{width:25.988171px;}
._12{width:27.115794px;}
._18{width:28.690947px;}
._1f{width:30.225034px;}
._1a{width:35.013508px;}
._19{width:36.110758px;}
._16{width:37.468644px;}
._d{width:39.084051px;}
._c{width:40.304422px;}
._3{width:73.349778px;}
._2{width:77.246258px;}
._4{width:81.274201px;}
._5{width:1533.640168px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:37.842465px;}
.fs7{font-size:40.646144px;}
.fs9{font-size:46.951901px;}
.fs8{font-size:52.559979px;}
.fs0{font-size:58.165177px;}
.fs6{font-size:64.471174px;}
.fs2{font-size:70.078772px;}
.fs4{font-size:75.683970px;}
.fs5{font-size:128.243949px;}
.fs3{font-size:140.158144px;}
.y0{bottom:0.000000px;}
.y3{bottom:109.020256px;}
.y1{bottom:126.300249px;}
.y2{bottom:131.340247px;}
.y12{bottom:161.039936px;}
.y11{bottom:175.439930px;}
.y10{bottom:180.659928px;}
.yf{bottom:192.719923px;}
.y9f{bottom:208.199917px;}
.y6a{bottom:209.999916px;}
.y3f{bottom:210.359916px;}
.yd6{bottom:212.339915px;}
.yd5{bottom:226.199910px;}
.y69{bottom:227.099909px;}
.y3e{bottom:227.459909px;}
.y9e{bottom:234.119906px;}
.yd4{bottom:240.059904px;}
.y68{bottom:244.379902px;}
.y3d{bottom:244.739902px;}
.y9d{bottom:251.399899px;}
.yd3{bottom:253.739899px;}
.y67{bottom:261.479895px;}
.y3c{bottom:261.839895px;}
.yd2{bottom:267.599893px;}
.y9c{bottom:268.499893px;}
.y66{bottom:278.759888px;}
.y3b{bottom:279.119888px;}
.yd1{bottom:281.459887px;}
.y9b{bottom:285.779886px;}
.yd0{bottom:295.319882px;}
.y65{bottom:295.859882px;}
.y3a{bottom:296.219882px;}
.y9a{bottom:302.879879px;}
.ycf{bottom:309.179876px;}
.y39{bottom:313.319875px;}
.y64{bottom:313.859874px;}
.y99{bottom:319.979872px;}
.yce{bottom:323.039871px;}
.y38{bottom:330.599868px;}
.y63{bottom:331.139868px;}
.ycd{bottom:336.899865px;}
.y98{bottom:338.159865px;}
.y37{bottom:347.699861px;}
.y62{bottom:348.239861px;}
.ycc{bottom:350.759860px;}
.y97{bottom:355.259858px;}
.ycb{bottom:364.619854px;}
.y36{bottom:364.979854px;}
.y61{bottom:365.339854px;}
.y96{bottom:372.359851px;}
.yca{bottom:378.299849px;}
.y35{bottom:382.079847px;}
.y60{bottom:382.619847px;}
.y95{bottom:389.639844px;}
.yc9{bottom:392.159843px;}
.y34{bottom:399.179840px;}
.y5f{bottom:399.719840px;}
.y94{bottom:406.739837px;}
.yc8{bottom:412.499835px;}
.y33{bottom:416.459833px;}
.y5e{bottom:416.999833px;}
.y93{bottom:424.019830px;}
.y32{bottom:433.559827px;}
.y5d{bottom:434.099826px;}
.yc7{bottom:438.419825px;}
.y92{bottom:441.119824px;}
.y31{bottom:450.659820px;}
.y5c{bottom:451.199820px;}
.yc6{bottom:455.699818px;}
.y91{bottom:459.119816px;}
.y30{bottom:467.939813px;}
.y5b{bottom:468.479813px;}
.yc5{bottom:472.799811px;}
.y90{bottom:476.399809px;}
.y2f{bottom:485.039806px;}
.y5a{bottom:485.579806px;}
.yc4{bottom:489.899804px;}
.y8f{bottom:493.499803px;}
.y2e{bottom:502.319799px;}
.y59{bottom:502.859799px;}
.yc3{bottom:507.179797px;}
.y8e{bottom:510.599796px;}
.y2d{bottom:519.419792px;}
.y58{bottom:519.959792px;}
.yc2{bottom:524.279790px;}
.y8d{bottom:527.879789px;}
.y2c{bottom:536.519785px;}
.y57{bottom:537.059785px;}
.yc1{bottom:541.559783px;}
.y8c{bottom:544.979782px;}
.y2b{bottom:553.799778px;}
.y56{bottom:554.339778px;}
.yc0{bottom:558.659777px;}
.y8b{bottom:562.079775px;}
.y2a{bottom:570.899772px;}
.y55{bottom:571.439771px;}
.ybf{bottom:575.759770px;}
.y8a{bottom:579.359768px;}
.y29{bottom:588.179765px;}
.y54{bottom:588.539765px;}
.ybe{bottom:593.039763px;}
.y89{bottom:597.359761px;}
.y28{bottom:605.279758px;}
.y53{bottom:605.819758px;}
.ybd{bottom:610.139756px;}
.y88{bottom:614.639754px;}
.y27{bottom:622.379751px;}
.y52{bottom:622.919751px;}
.ybc{bottom:627.419749px;}
.y87{bottom:631.739747px;}
.y26{bottom:639.659744px;}
.y51{bottom:640.199744px;}
.ybb{bottom:644.519742px;}
.y86{bottom:648.839740px;}
.y25{bottom:656.759737px;}
.y50{bottom:657.299737px;}
.yba{bottom:661.619735px;}
.y85{bottom:666.119734px;}
.y24{bottom:673.859730px;}
.y4f{bottom:674.399730px;}
.yb9{bottom:678.899728px;}
.y84{bottom:684.119726px;}
.y23{bottom:691.139724px;}
.y4e{bottom:691.679723px;}
.yb8{bottom:695.999722px;}
.y83{bottom:701.219720px;}
.y22{bottom:708.239717px;}
.y4d{bottom:708.779716px;}
.yb7{bottom:713.099715px;}
.y82{bottom:718.499713px;}
.y21{bottom:725.519710px;}
.y4c{bottom:726.059710px;}
.yb6{bottom:730.379708px;}
.y81{bottom:735.599706px;}
.y4b{bottom:743.159703px;}
.yb5{bottom:747.479701px;}
.y20{bottom:751.439699px;}
.y80{bottom:752.699699px;}
.y4a{bottom:760.259696px;}
.yb4{bottom:764.759694px;}
.y1f{bottom:767.819693px;}
.y7f{bottom:770.879692px;}
.y49{bottom:777.539689px;}
.yb3{bottom:781.859687px;}
.y1e{bottom:783.119687px;}
.y7e{bottom:787.979685px;}
.y48{bottom:794.639682px;}
.y1d{bottom:798.419681px;}
.yb2{bottom:798.959680px;}
.y7d{bottom:805.079678px;}
.y1c{bottom:813.539675px;}
.yb1{bottom:816.239674px;}
.y47{bottom:820.559672px;}
.y7c{bottom:822.359671px;}
.y1b{bottom:828.839668px;}
.yb0{bottom:833.339667px;}
.y7b{bottom:839.459664px;}
.y1a{bottom:844.139662px;}
.y46{bottom:846.479661px;}
.yaf{bottom:850.619660px;}
.y7a{bottom:856.739657px;}
.y19{bottom:859.259656px;}
.y45{bottom:863.759654px;}
.yae{bottom:867.719653px;}
.y18{bottom:874.559650px;}
.y79{bottom:874.739650px;}
.y44{bottom:880.859648px;}
.yad{bottom:884.819646px;}
.y17{bottom:889.859644px;}
.y78{bottom:891.839643px;}
.y43{bottom:897.959641px;}
.yac{bottom:902.099639px;}
.y16{bottom:904.979638px;}
.y77{bottom:910.019636px;}
.y42{bottom:915.239634px;}
.yab{bottom:919.199632px;}
.y15{bottom:920.279632px;}
.y76{bottom:927.119629px;}
.y41{bottom:932.339627px;}
.y14{bottom:935.579626px;}
.yaa{bottom:936.479625px;}
.y75{bottom:944.219622px;}
.y40{bottom:949.619620px;}
.y13{bottom:950.699620px;}
.ya9{bottom:953.579619px;}
.y74{bottom:961.499615px;}
.ye{bottom:965.999614px;}
.ya8{bottom:970.679612px;}
.y73{bottom:978.599609px;}
.yd{bottom:982.019607px;}
.yc{bottom:987.059605px;}
.ya7{bottom:987.959605px;}
.y72{bottom:995.699602px;}
.yb{bottom:999.119600px;}
.ya{bottom:1004.159598px;}
.ya6{bottom:1005.059598px;}
.y71{bottom:1012.979595px;}
.y8{bottom:1016.579593px;}
.ya5{bottom:1022.159591px;}
.y9{bottom:1022.339591px;}
.y70{bottom:1030.079588px;}
.y7{bottom:1035.119586px;}
.ya4{bottom:1039.439584px;}
.y6f{bottom:1047.359581px;}
.ya3{bottom:1056.539577px;}
.y5{bottom:1056.719577px;}
.y6e{bottom:1064.459574px;}
.y6{bottom:1067.879573px;}
.ya2{bottom:1073.819570px;}
.y6d{bottom:1081.559567px;}
.ya1{bottom:1090.919564px;}
.y4{bottom:1097.579561px;}
.y6c{bottom:1098.839560px;}
.y6b{bottom:1115.939554px;}
.ya0{bottom:1116.839553px;}
.ha{height:37.140310px;}
.h2{height:38.138109px;}
.h9{height:39.891967px;}
.hc{height:46.080723px;}
.hd{height:48.969366px;}
.hb{height:51.559081px;}
.h3{height:57.085940px;}
.h1{height:58.619592px;}
.h8{height:63.274932px;}
.h4{height:68.778482px;}
.h6{height:74.279677px;}
.h7{height:125.864422px;}
.h5{height:137.557553px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:65.699974px;}
.x18{left:70.379972px;}
.x19{left:74.159970px;}
.x2{left:80.459968px;}
.x3{left:88.739965px;}
.x2a{left:90.899663px;}
.x1b{left:91.979963px;}
.x9{left:93.599963px;}
.x5{left:97.559961px;}
.x6{left:152.639977px;}
.x1a{left:178.379929px;}
.x14{left:184.679926px;}
.x15{left:189.359924px;}
.x1c{left:211.139916px;}
.x1d{left:219.779912px;}
.x16{left:225.719910px;}
.x17{left:230.399908px;}
.xa{left:245.699902px;}
.xb{left:250.739900px;}
.x2b{left:262.616886px;}
.x1e{left:314.279874px;}
.xc{left:345.239862px;}
.xd{left:350.459860px;}
.x20{left:459.900665px;}
.x37{left:479.699910px;}
.xe{left:482.579807px;}
.x33{left:485.100368px;}
.x1f{left:486.180351px;}
.xf{left:487.619805px;}
.x21{left:533.520664px;}
.x22{left:547.019781px;}
.x23{left:549.899780px;}
.x24{left:559.619776px;}
.x2c{left:564.836271px;}
.x2d{left:583.199767px;}
.x2e{left:586.259765px;}
.x2f{left:595.079762px;}
.x34{left:606.242674px;}
.x10{left:614.519754px;}
.x35{left:615.779754px;}
.x11{left:619.739752px;}
.x25{left:631.619747px;}
.x26{left:642.059743px;}
.x36{left:681.479727px;}
.x30{left:696.779721px;}
.x27{left:702.899719px;}
.x31{left:706.499717px;}
.x28{left:713.339715px;}
.x7{left:731.339707px;}
.x8{left:740.699704px;}
.x32{left:748.799700px;}
.x29{left:780.119688px;}
.x12{left:794.699682px;}
.x13{left:799.739680px;}
.x4{left:854.099658px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.073168pt;}
.ls2{letter-spacing:8.888642pt;}
.ws3{word-spacing:-12.998762pt;}
.ws0{word-spacing:-12.925595pt;}
.ws2{word-spacing:-10.433756pt;}
.ws1{word-spacing:-8.409437pt;}
.ws4{word-spacing:0.000000pt;}
._8{margin-left:-6.404835pt;}
._6{margin-left:-2.014637pt;}
._1{margin-left:-1.061387pt;}
._0{width:1.178599pt;}
._14{width:2.094692pt;}
._e{width:3.175343pt;}
._f{width:4.835311pt;}
._b{width:5.929087pt;}
._9{width:6.930501pt;}
._a{width:8.361456pt;}
._17{width:9.656969pt;}
._7{width:11.046303pt;}
._20{width:11.969555pt;}
._1b{width:13.837051pt;}
._11{width:14.733326pt;}
._10{width:15.797546pt;}
._1e{width:17.277352pt;}
._1c{width:18.676778pt;}
._1d{width:19.852364pt;}
._15{width:21.757933pt;}
._13{width:23.100596pt;}
._12{width:24.102928pt;}
._18{width:25.503064pt;}
._1f{width:26.866697pt;}
._1a{width:31.123118pt;}
._19{width:32.098451pt;}
._16{width:33.305461pt;}
._d{width:34.741379pt;}
._c{width:35.826153pt;}
._3{width:65.199802pt;}
._2{width:68.663341pt;}
._4{width:72.243735pt;}
._5{width:1363.235704pt;}
.fs1{font-size:33.637747pt;}
.fs7{font-size:36.129906pt;}
.fs9{font-size:41.735023pt;}
.fs8{font-size:46.719981pt;}
.fs0{font-size:51.702379pt;}
.fs6{font-size:57.307710pt;}
.fs2{font-size:62.292242pt;}
.fs4{font-size:67.274640pt;}
.fs5{font-size:113.994621pt;}
.fs3{font-size:124.585017pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:96.906895pt;}
.y1{bottom:112.266888pt;}
.y2{bottom:116.746887pt;}
.y12{bottom:143.146609pt;}
.y11{bottom:155.946604pt;}
.y10{bottom:160.586602pt;}
.yf{bottom:171.306598pt;}
.y9f{bottom:185.066593pt;}
.y6a{bottom:186.666592pt;}
.y3f{bottom:186.986592pt;}
.yd6{bottom:188.746591pt;}
.yd5{bottom:201.066586pt;}
.y69{bottom:201.866586pt;}
.y3e{bottom:202.186586pt;}
.y9e{bottom:208.106583pt;}
.yd4{bottom:213.386581pt;}
.y68{bottom:217.226580pt;}
.y3d{bottom:217.546580pt;}
.y9d{bottom:223.466577pt;}
.yd3{bottom:225.546576pt;}
.y67{bottom:232.426574pt;}
.y3c{bottom:232.746574pt;}
.yd2{bottom:237.866572pt;}
.y9c{bottom:238.666571pt;}
.y66{bottom:247.786568pt;}
.y3b{bottom:248.106567pt;}
.yd1{bottom:250.186567pt;}
.y9b{bottom:254.026565pt;}
.yd0{bottom:262.506562pt;}
.y65{bottom:262.986561pt;}
.y3a{bottom:263.306561pt;}
.y9a{bottom:269.226559pt;}
.ycf{bottom:274.826557pt;}
.y39{bottom:278.506555pt;}
.y64{bottom:278.986555pt;}
.y99{bottom:284.426553pt;}
.yce{bottom:287.146552pt;}
.y38{bottom:293.866549pt;}
.y63{bottom:294.346549pt;}
.ycd{bottom:299.466547pt;}
.y98{bottom:300.586546pt;}
.y37{bottom:309.066543pt;}
.y62{bottom:309.546543pt;}
.ycc{bottom:311.786542pt;}
.y97{bottom:315.786540pt;}
.ycb{bottom:324.106537pt;}
.y36{bottom:324.426537pt;}
.y61{bottom:324.746537pt;}
.y96{bottom:330.986534pt;}
.yca{bottom:336.266532pt;}
.y35{bottom:339.626531pt;}
.y60{bottom:340.106531pt;}
.y95{bottom:346.346528pt;}
.yc9{bottom:348.586527pt;}
.y34{bottom:354.826525pt;}
.y5f{bottom:355.306525pt;}
.y94{bottom:361.546522pt;}
.yc8{bottom:366.666520pt;}
.y33{bottom:370.186519pt;}
.y5e{bottom:370.666518pt;}
.y93{bottom:376.906516pt;}
.y32{bottom:385.386513pt;}
.y5d{bottom:385.866512pt;}
.yc7{bottom:389.706511pt;}
.y92{bottom:392.106510pt;}
.y31{bottom:400.586506pt;}
.y5c{bottom:401.066506pt;}
.yc6{bottom:405.066505pt;}
.y91{bottom:408.106503pt;}
.y30{bottom:415.946500pt;}
.y5b{bottom:416.426500pt;}
.yc5{bottom:420.266499pt;}
.y90{bottom:423.466497pt;}
.y2f{bottom:431.146494pt;}
.y5a{bottom:431.626494pt;}
.yc4{bottom:435.466492pt;}
.y8f{bottom:438.666491pt;}
.y2e{bottom:446.506488pt;}
.y59{bottom:446.986488pt;}
.yc3{bottom:450.826486pt;}
.y8e{bottom:453.866485pt;}
.y2d{bottom:461.706482pt;}
.y58{bottom:462.186482pt;}
.yc2{bottom:466.026480pt;}
.y8d{bottom:469.226479pt;}
.y2c{bottom:476.906476pt;}
.y57{bottom:477.386476pt;}
.yc1{bottom:481.386474pt;}
.y8c{bottom:484.426473pt;}
.y2b{bottom:492.266470pt;}
.y56{bottom:492.746470pt;}
.yc0{bottom:496.586468pt;}
.y8b{bottom:499.626467pt;}
.y2a{bottom:507.466464pt;}
.y55{bottom:507.946463pt;}
.ybf{bottom:511.786462pt;}
.y8a{bottom:514.986461pt;}
.y29{bottom:522.826458pt;}
.y54{bottom:523.146457pt;}
.ybe{bottom:527.146456pt;}
.y89{bottom:530.986454pt;}
.y28{bottom:538.026451pt;}
.y53{bottom:538.506451pt;}
.ybd{bottom:542.346450pt;}
.y88{bottom:546.346448pt;}
.y27{bottom:553.226445pt;}
.y52{bottom:553.706445pt;}
.ybc{bottom:557.706444pt;}
.y87{bottom:561.546442pt;}
.y26{bottom:568.586439pt;}
.y51{bottom:569.066439pt;}
.ybb{bottom:572.906438pt;}
.y86{bottom:576.746436pt;}
.y25{bottom:583.786433pt;}
.y50{bottom:584.266433pt;}
.yba{bottom:588.106431pt;}
.y85{bottom:592.106430pt;}
.y24{bottom:598.986427pt;}
.y4f{bottom:599.466427pt;}
.yb9{bottom:603.466425pt;}
.y84{bottom:608.106423pt;}
.y23{bottom:614.346421pt;}
.y4e{bottom:614.826421pt;}
.yb8{bottom:618.666419pt;}
.y83{bottom:623.306417pt;}
.y22{bottom:629.546415pt;}
.y4d{bottom:630.026415pt;}
.yb7{bottom:633.866413pt;}
.y82{bottom:638.666411pt;}
.y21{bottom:644.906409pt;}
.y4c{bottom:645.386409pt;}
.yb6{bottom:649.226407pt;}
.y81{bottom:653.866405pt;}
.y4b{bottom:660.586402pt;}
.yb5{bottom:664.426401pt;}
.y20{bottom:667.946399pt;}
.y80{bottom:669.066399pt;}
.y4a{bottom:675.786396pt;}
.yb4{bottom:679.786395pt;}
.y1f{bottom:682.506394pt;}
.y7f{bottom:685.226393pt;}
.y49{bottom:691.146390pt;}
.yb3{bottom:694.986389pt;}
.y1e{bottom:696.106388pt;}
.y7e{bottom:700.426386pt;}
.y48{bottom:706.346384pt;}
.y1d{bottom:709.706383pt;}
.yb2{bottom:710.186383pt;}
.y7d{bottom:715.626380pt;}
.y1c{bottom:723.146377pt;}
.yb1{bottom:725.546376pt;}
.y47{bottom:729.386375pt;}
.y7c{bottom:730.986374pt;}
.y1b{bottom:736.746372pt;}
.yb0{bottom:740.746370pt;}
.y7b{bottom:746.186368pt;}
.y1a{bottom:750.346367pt;}
.y46{bottom:752.426366pt;}
.yaf{bottom:756.106364pt;}
.y7a{bottom:761.546362pt;}
.y19{bottom:763.786361pt;}
.y45{bottom:767.786360pt;}
.yae{bottom:771.306358pt;}
.y18{bottom:777.386356pt;}
.y79{bottom:777.546356pt;}
.y44{bottom:782.986353pt;}
.yad{bottom:786.506352pt;}
.y17{bottom:790.986350pt;}
.y78{bottom:792.746350pt;}
.y43{bottom:798.186347pt;}
.yac{bottom:801.866346pt;}
.y16{bottom:804.426345pt;}
.y77{bottom:808.906343pt;}
.y42{bottom:813.546341pt;}
.yab{bottom:817.066340pt;}
.y15{bottom:818.026339pt;}
.y76{bottom:824.106337pt;}
.y41{bottom:828.746335pt;}
.y14{bottom:831.626334pt;}
.yaa{bottom:832.426334pt;}
.y75{bottom:839.306331pt;}
.y40{bottom:844.106329pt;}
.y13{bottom:845.066329pt;}
.ya9{bottom:847.626328pt;}
.y74{bottom:854.666325pt;}
.ye{bottom:858.666323pt;}
.ya8{bottom:862.826322pt;}
.y73{bottom:869.866319pt;}
.yd{bottom:872.906318pt;}
.yc{bottom:877.386316pt;}
.ya7{bottom:878.186315pt;}
.y72{bottom:885.066313pt;}
.yb{bottom:888.106311pt;}
.ya{bottom:892.586310pt;}
.ya6{bottom:893.386309pt;}
.y71{bottom:900.426306pt;}
.y8{bottom:903.626305pt;}
.ya5{bottom:908.586303pt;}
.y9{bottom:908.746303pt;}
.y70{bottom:915.626300pt;}
.y7{bottom:920.106299pt;}
.ya4{bottom:923.946297pt;}
.y6f{bottom:930.986294pt;}
.ya3{bottom:939.146291pt;}
.y5{bottom:939.306291pt;}
.y6e{bottom:946.186288pt;}
.y6{bottom:949.226287pt;}
.ya2{bottom:954.506285pt;}
.y6d{bottom:961.386282pt;}
.ya1{bottom:969.706279pt;}
.y4{bottom:975.626276pt;}
.y6c{bottom:976.746276pt;}
.y6b{bottom:991.946270pt;}
.ya0{bottom:992.746270pt;}
.ha{height:33.013609pt;}
.h2{height:33.900541pt;}
.h9{height:35.459526pt;}
.hc{height:40.960643pt;}
.hd{height:43.528325pt;}
.hb{height:45.830294pt;}
.h3{height:50.743058pt;}
.h1{height:52.106304pt;}
.h8{height:56.244384pt;}
.h4{height:61.136429pt;}
.h6{height:66.026380pt;}
.h7{height:111.879486pt;}
.h5{height:122.273381pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:58.399977pt;}
.x18{left:62.559975pt;}
.x19{left:65.919974pt;}
.x2{left:71.519971pt;}
.x3{left:78.879968pt;}
.x2a{left:80.799700pt;}
.x1b{left:81.759967pt;}
.x9{left:83.199967pt;}
.x5{left:86.719965pt;}
.x6{left:135.679979pt;}
.x1a{left:158.559937pt;}
.x14{left:164.159934pt;}
.x15{left:168.319933pt;}
.x1c{left:187.679925pt;}
.x1d{left:195.359922pt;}
.x16{left:200.639920pt;}
.x17{left:204.799918pt;}
.xa{left:218.399913pt;}
.xb{left:222.879911pt;}
.x2b{left:233.437232pt;}
.x1e{left:279.359888pt;}
.xc{left:306.879877pt;}
.xd{left:311.519875pt;}
.x20{left:408.800591pt;}
.x37{left:426.399920pt;}
.xe{left:428.959828pt;}
.x33{left:431.200327pt;}
.x1f{left:432.160312pt;}
.xf{left:433.439827pt;}
.x21{left:474.240590pt;}
.x22{left:486.239806pt;}
.x23{left:488.799804pt;}
.x24{left:497.439801pt;}
.x2c{left:502.076686pt;}
.x2d{left:518.399793pt;}
.x2e{left:521.119792pt;}
.x2f{left:528.959788pt;}
.x34{left:538.882377pt;}
.x10{left:546.239782pt;}
.x35{left:547.359781pt;}
.x11{left:550.879780pt;}
.x25{left:561.439775pt;}
.x26{left:570.719772pt;}
.x36{left:605.759758pt;}
.x30{left:619.359752pt;}
.x27{left:624.799750pt;}
.x31{left:627.999749pt;}
.x28{left:634.079746pt;}
.x7{left:650.079740pt;}
.x8{left:658.399737pt;}
.x32{left:665.599734pt;}
.x29{left:693.439723pt;}
.x12{left:706.399717pt;}
.x13{left:710.879716pt;}
.x4{left:759.199696pt;}
}




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