
    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_4242098a13d1e8c76215028d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fd4a4ae118b2e6cf7376cc2e.woff')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_6de018d6fb7daa9c43abb61f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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;}
.v1{vertical-align:30.799998px;}
.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;}
}
.ws0{word-spacing:-18.348000px;}
.ws67{word-spacing:-12.231999px;}
.ws5d{word-spacing:-1.211496px;}
.ws5{word-spacing:-1.050846px;}
.ws22{word-spacing:-0.980496px;}
.ws66{word-spacing:-0.803586px;}
.ws34{word-spacing:-0.721212px;}
.ws12{word-spacing:-0.711780px;}
.ws55{word-spacing:-0.618684px;}
.ws3b{word-spacing:-0.519684px;}
.ws1d{word-spacing:-0.400062px;}
.ws68{word-spacing:-0.372642px;}
.ws63{word-spacing:-0.188496px;}
.ws4{word-spacing:-0.180330px;}
.ws1{word-spacing:0.000000px;}
.ws71{word-spacing:0.049566px;}
.ws6d{word-spacing:0.054414px;}
.ws2b{word-spacing:0.454722px;}
.ws17{word-spacing:0.493122px;}
.wsd{word-spacing:0.535446px;}
.ws7b{word-spacing:0.800868px;}
.ws42{word-spacing:0.977688px;}
.ws7{word-spacing:1.028886px;}
.wsc{word-spacing:1.148472px;}
.ws6{word-spacing:1.335588px;}
.ws7e{word-spacing:1.347240px;}
.ws72{word-spacing:1.773270px;}
.ws81{word-spacing:1.782072px;}
.ws1f{word-spacing:1.889736px;}
.ws1a{word-spacing:1.895724px;}
.ws79{word-spacing:1.897566px;}
.ws19{word-spacing:1.918788px;}
.ws45{word-spacing:2.132688px;}
.ws76{word-spacing:2.182788px;}
.ws70{word-spacing:2.260566px;}
.ws7d{word-spacing:2.423220px;}
.ws31{word-spacing:2.499270px;}
.ws77{word-spacing:2.512470px;}
.ws43{word-spacing:2.796816px;}
.wsa{word-spacing:2.817438px;}
.ws4e{word-spacing:2.843586px;}
.ws28{word-spacing:2.888850px;}
.ws7f{word-spacing:2.899668px;}
.ws20{word-spacing:2.941788px;}
.ws60{word-spacing:2.942268px;}
.ws8{word-spacing:3.063240px;}
.ws1b{word-spacing:3.157632px;}
.ws38{word-spacing:3.227502px;}
.ws50{word-spacing:3.320688px;}
.ws47{word-spacing:3.489270px;}
.ws29{word-spacing:3.498066px;}
.ws39{word-spacing:3.502188px;}
.ws80{word-spacing:3.516390px;}
.ws61{word-spacing:3.723846px;}
.ws3f{word-spacing:3.735672px;}
.ws4a{word-spacing:4.136058px;}
.ws48{word-spacing:4.186938px;}
.ws35{word-spacing:4.530504px;}
.ws3a{word-spacing:4.569588px;}
.ws5f{word-spacing:4.963272px;}
.ws41{word-spacing:5.058504px;}
.ws46{word-spacing:5.098566px;}
.ws40{word-spacing:5.163312px;}
.ws53{word-spacing:5.214072px;}
.ws6a{word-spacing:5.303646px;}
.ws5b{word-spacing:5.371722px;}
.ws82{word-spacing:5.449788px;}
.ws4f{word-spacing:5.451702px;}
.ws1e{word-spacing:5.922096px;}
.ws3{word-spacing:5.935668px;}
.ws64{word-spacing:5.953272px;}
.ws11{word-spacing:6.018438px;}
.ws5a{word-spacing:6.109788px;}
.ws69{word-spacing:6.762096px;}
.ws7a{word-spacing:6.921816px;}
.ws54{word-spacing:6.938316px;}
.ws33{word-spacing:6.963084px;}
.ws4c{word-spacing:7.194060px;}
.ws3d{word-spacing:7.277670px;}
.ws2f{word-spacing:7.403706px;}
.ws56{word-spacing:7.414056px;}
.ws25{word-spacing:7.510872px;}
.ws4b{word-spacing:7.782096px;}
.ws5c{word-spacing:7.892268px;}
.ws73{word-spacing:7.906872px;}
.ws27{word-spacing:8.392236px;}
.ws3c{word-spacing:8.539464px;}
.ws6f{word-spacing:8.620392px;}
.ws2d{word-spacing:8.651586px;}
.ws2c{word-spacing:8.866068px;}
.ws13{word-spacing:9.358872px;}
.wsb{word-spacing:9.387312px;}
.ws78{word-spacing:9.427926px;}
.ws51{word-spacing:9.450438px;}
.ws18{word-spacing:9.478908px;}
.ws14{word-spacing:9.508788px;}
.ws15{word-spacing:9.702066px;}
.ws4d{word-spacing:9.922086px;}
.ws1c{word-spacing:9.966078px;}
.ws65{word-spacing:10.840566px;}
.ws5e{word-spacing:10.847358px;}
.ws16{word-spacing:10.939566px;}
.ws37{word-spacing:11.053122px;}
.ws2a{word-spacing:11.641464px;}
.ws58{word-spacing:11.880060px;}
.ws62{word-spacing:12.134646px;}
.ws24{word-spacing:12.622584px;}
.ws9{word-spacing:12.653220px;}
.ws44{word-spacing:12.917220px;}
.ws49{word-spacing:13.048650px;}
.ws6c{word-spacing:13.125816px;}
.ws2{word-spacing:13.337154px;}
.ws3e{word-spacing:13.754472px;}
.ws57{word-spacing:13.836504px;}
.ws10{word-spacing:14.242872px;}
.ws83{word-spacing:14.506872px;}
.ws26{word-spacing:15.419316px;}
.ws6e{word-spacing:16.148088px;}
.wse{word-spacing:16.153584px;}
.wsf{word-spacing:16.728540px;}
.ws75{word-spacing:17.017926px;}
.ws36{word-spacing:17.571312px;}
.ws59{word-spacing:17.581722px;}
.ws7c{word-spacing:18.418788px;}
.ws74{word-spacing:19.187220px;}
.ws30{word-spacing:20.116872px;}
.ws6b{word-spacing:20.511930px;}
.ws32{word-spacing:20.710872px;}
.ws52{word-spacing:20.772096px;}
.ws23{word-spacing:21.558504px;}
.ws21{word-spacing:23.925072px;}
.ws2e{word-spacing:26.605446px;}
._0{margin-left:-3.564024px;}
._1{margin-left:-1.782042px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(21,21,21);}
.fs7{font-size:6.000000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:43.999998px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:102.000000px;}
.fs1{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.ydd{bottom:1.837500px;}
.ya7{bottom:94.255821px;}
.y55{bottom:97.027821px;}
.y75{bottom:98.130363px;}
.y23{bottom:102.617303px;}
.ycb{bottom:105.040890px;}
.ya6{bottom:114.880820px;}
.y54{bottom:117.652820px;}
.y22{bottom:123.242301px;}
.ya5{bottom:135.505818px;}
.yca{bottom:136.261889px;}
.y53{bottom:138.277818px;}
.y21{bottom:143.867300px;}
.y74{bottom:153.309363px;}
.ya4{bottom:156.130817px;}
.y52{bottom:158.902817px;}
.yc9{bottom:160.285890px;}
.y20{bottom:164.492297px;}
.y51{bottom:179.527814px;}
.y1f{bottom:185.117295px;}
.yc8{bottom:190.540889px;}
.y73{bottom:192.496049px;}
.ya3{bottom:197.380812px;}
.y50{bottom:200.152812px;}
.y1e{bottom:205.742294px;}
.ya2{bottom:218.005811px;}
.y4f{bottom:220.777811px;}
.yc7{bottom:221.761887px;}
.y1d{bottom:226.367292px;}
.y72{bottom:236.732891px;}
.ya1{bottom:238.630809px;}
.y4e{bottom:241.402809px;}
.yc6{bottom:245.785887px;}
.y1c{bottom:246.992289px;}
.ya0{bottom:259.255806px;}
.y1b{bottom:267.617287px;}
.yc5{bottom:276.040886px;}
.y9f{bottom:279.880805px;}
.y4d{bottom:282.652805px;}
.y1a{bottom:288.242286px;}
.y9e{bottom:300.505803px;}
.y4c{bottom:303.277803px;}
.yc4{bottom:307.261884px;}
.y19{bottom:308.867284px;}
.y9d{bottom:321.130802px;}
.y4b{bottom:323.902802px;}
.y18{bottom:329.492281px;}
.yc3{bottom:331.285886px;}
.y9c{bottom:341.755799px;}
.y4a{bottom:344.527799px;}
.y17{bottom:350.117280px;}
.y71{bottom:352.407104px;}
.yc2{bottom:361.540884px;}
.y9b{bottom:362.380797px;}
.y49{bottom:365.152797px;}
.y16{bottom:370.742278px;}
.y9a{bottom:383.005796px;}
.y48{bottom:385.777795px;}
.y15{bottom:391.367275px;}
.y70{bottom:392.626944px;}
.yc1{bottom:392.761882px;}
.y99{bottom:403.630794px;}
.y47{bottom:406.402794px;}
.y6f{bottom:411.376944px;}
.y14{bottom:411.992274px;}
.yc0{bottom:416.785883px;}
.y98{bottom:424.255791px;}
.y46{bottom:427.027791px;}
.y6e{bottom:430.126942px;}
.y13{bottom:432.617272px;}
.y97{bottom:444.880789px;}
.y45{bottom:447.652789px;}
.y6d{bottom:448.876942px;}
.y12{bottom:453.242271px;}
.ybf{bottom:455.290882px;}
.y96{bottom:465.505788px;}
.y6c{bottom:467.626942px;}
.y44{bottom:468.277788px;}
.y11{bottom:473.636268px;}
.y95{bottom:486.130786px;}
.y6b{bottom:486.376941px;}
.y43{bottom:488.902786px;}
.y6a{bottom:505.126939px;}
.y94{bottom:506.755783px;}
.y10{bottom:507.248172px;}
.y42{bottom:509.296783px;}
.ybe{bottom:509.527783px;}
.y69{bottom:523.876939px;}
.yf{bottom:528.104171px;}
.ybd{bottom:530.152782px;}
.y68{bottom:542.626939px;}
.y41{bottom:542.908687px;}
.y93{bottom:548.005780px;}
.ye{bottom:548.960169px;}
.ybc{bottom:550.777780px;}
.y67{bottom:561.376938px;}
.y40{bottom:563.533686px;}
.y92{bottom:568.630779px;}
.yd{bottom:569.816166px;}
.ybb{bottom:571.402779px;}
.y66{bottom:580.126938px;}
.y3f{bottom:584.158684px;}
.y91{bottom:589.255776px;}
.yc{bottom:590.672165px;}
.yba{bottom:592.027776px;}
.y65{bottom:598.876936px;}
.y3e{bottom:604.783682px;}
.y90{bottom:609.880774px;}
.yb{bottom:611.528163px;}
.yb9{bottom:612.652774px;}
.y64{bottom:617.626936px;}
.y3d{bottom:625.408680px;}
.y8f{bottom:630.505773px;}
.ya{bottom:632.384162px;}
.yb8{bottom:633.277773px;}
.y63{bottom:645.057871px;}
.y3c{bottom:646.033678px;}
.y8e{bottom:651.130770px;}
.y9{bottom:653.240158px;}
.yb7{bottom:653.902770px;}
.y3b{bottom:666.658675px;}
.y8d{bottom:671.755768px;}
.y8{bottom:674.096157px;}
.yb6{bottom:674.527768px;}
.y3a{bottom:687.283674px;}
.y8c{bottom:692.380767px;}
.y7{bottom:694.952155px;}
.yb5{bottom:695.152767px;}
.y39{bottom:707.908672px;}
.y8b{bottom:713.005765px;}
.yb4{bottom:715.777765px;}
.y6{bottom:715.808154px;}
.y62{bottom:715.921741px;}
.y38{bottom:728.533671px;}
.y8a{bottom:733.630762px;}
.y5{bottom:736.664151px;}
.y61{bottom:747.142740px;}
.y37{bottom:749.158668px;}
.y89{bottom:754.255761px;}
.yb3{bottom:757.027761px;}
.y4{bottom:757.520149px;}
.y36{bottom:769.783666px;}
.y60{bottom:771.166740px;}
.y88{bottom:774.880760px;}
.yb2{bottom:777.652760px;}
.y35{bottom:790.408665px;}
.y87{bottom:795.505758px;}
.yb1{bottom:798.277758px;}
.y5f{bottom:801.421738px;}
.y34{bottom:811.033664px;}
.y3{bottom:812.699150px;}
.y86{bottom:816.130755px;}
.yb0{bottom:818.902755px;}
.y5e{bottom:832.642737px;}
.y85{bottom:836.755753px;}
.yaf{bottom:839.527754px;}
.y2{bottom:851.885835px;}
.y33{bottom:852.283659px;}
.y5d{bottom:856.666738px;}
.y84{bottom:857.380752px;}
.yae{bottom:860.152752px;}
.yd9{bottom:868.776863px;}
.y32{bottom:872.908657px;}
.y83{bottom:878.005750px;}
.yad{bottom:880.777750px;}
.y5c{bottom:886.921737px;}
.y31{bottom:893.533656px;}
.y1{bottom:896.122677px;}
.y82{bottom:898.399747px;}
.yac{bottom:901.402747px;}
.yd8{bottom:908.996704px;}
.y30{bottom:914.158653px;}
.y5b{bottom:918.142735px;}
.yab{bottom:922.027746px;}
.yd7{bottom:927.746703px;}
.y81{bottom:932.011651px;}
.y2f{bottom:934.783652px;}
.y5a{bottom:942.166735px;}
.yaa{bottom:942.652744px;}
.yd6{bottom:946.496701px;}
.y80{bottom:952.867650px;}
.y2e{bottom:955.408650px;}
.ya9{bottom:963.277743px;}
.yd5{bottom:965.246701px;}
.y59{bottom:972.421734px;}
.y7f{bottom:973.723648px;}
.y2d{bottom:976.033649px;}
.ya8{bottom:983.671740px;}
.yd4{bottom:983.996701px;}
.y7e{bottom:994.579645px;}
.y2c{bottom:996.658645px;}
.yd3{bottom:1002.746700px;}
.y58{bottom:1003.642732px;}
.y7d{bottom:1015.435644px;}
.y2b{bottom:1017.283644px;}
.yd2{bottom:1021.496698px;}
.y57{bottom:1027.666734px;}
.y7c{bottom:1036.291642px;}
.y2a{bottom:1037.908643px;}
.yd1{bottom:1040.246699px;}
.y7b{bottom:1057.147641px;}
.y29{bottom:1058.533641px;}
.yd0{bottom:1058.996699px;}
.y56{bottom:1066.171732px;}
.ydc{bottom:1071.117759px;}
.ycf{bottom:1077.746697px;}
.y7a{bottom:1078.003638px;}
.y28{bottom:1079.158638px;}
.yce{bottom:1096.496697px;}
.y79{bottom:1098.859637px;}
.y27{bottom:1099.783637px;}
.ydb{bottom:1108.617758px;}
.ycd{bottom:1115.246695px;}
.y78{bottom:1119.715635px;}
.y26{bottom:1120.408635px;}
.ycc{bottom:1133.996695px;}
.y77{bottom:1140.571633px;}
.y25{bottom:1141.033634px;}
.yda{bottom:1146.117756px;}
.y76{bottom:1161.427631px;}
.y24{bottom:1161.658631px;}
.h9{height:6.257812px;}
.h7{height:43.804688px;}
.h6{height:56.320312px;}
.h2{height:62.578125px;}
.h5{height:68.835938px;}
.h8{height:76.690621px;}
.h4{height:106.382812px;}
.h3{height:118.898438px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:4.252500px;}
.x2{left:89.291870px;}
.x4{left:139.331870px;}
.x3{left:144.335870px;}
.x1{left:658.572130px;}
.x5{left:701.922130px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.377776pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-16.309333pt;}
.ws67{word-spacing:-10.872888pt;}
.ws5d{word-spacing:-1.076885pt;}
.ws5{word-spacing:-0.934085pt;}
.ws22{word-spacing:-0.871552pt;}
.ws66{word-spacing:-0.714299pt;}
.ws34{word-spacing:-0.641077pt;}
.ws12{word-spacing:-0.632693pt;}
.ws55{word-spacing:-0.549941pt;}
.ws3b{word-spacing:-0.461941pt;}
.ws1d{word-spacing:-0.355611pt;}
.ws68{word-spacing:-0.331237pt;}
.ws63{word-spacing:-0.167552pt;}
.ws4{word-spacing:-0.160293pt;}
.ws1{word-spacing:0.000000pt;}
.ws71{word-spacing:0.044059pt;}
.ws6d{word-spacing:0.048368pt;}
.ws2b{word-spacing:0.404197pt;}
.ws17{word-spacing:0.438331pt;}
.wsd{word-spacing:0.475952pt;}
.ws7b{word-spacing:0.711883pt;}
.ws42{word-spacing:0.869056pt;}
.ws7{word-spacing:0.914565pt;}
.wsc{word-spacing:1.020864pt;}
.ws6{word-spacing:1.187189pt;}
.ws7e{word-spacing:1.197547pt;}
.ws72{word-spacing:1.576240pt;}
.ws81{word-spacing:1.584064pt;}
.ws1f{word-spacing:1.679765pt;}
.ws1a{word-spacing:1.685088pt;}
.ws79{word-spacing:1.686725pt;}
.ws19{word-spacing:1.705589pt;}
.ws45{word-spacing:1.895723pt;}
.ws76{word-spacing:1.940256pt;}
.ws70{word-spacing:2.009392pt;}
.ws7d{word-spacing:2.153973pt;}
.ws31{word-spacing:2.221573pt;}
.ws77{word-spacing:2.233307pt;}
.ws43{word-spacing:2.486059pt;}
.wsa{word-spacing:2.504389pt;}
.ws4e{word-spacing:2.527632pt;}
.ws28{word-spacing:2.567867pt;}
.ws7f{word-spacing:2.577483pt;}
.ws20{word-spacing:2.614923pt;}
.ws60{word-spacing:2.615349pt;}
.ws8{word-spacing:2.722880pt;}
.ws1b{word-spacing:2.806784pt;}
.ws38{word-spacing:2.868891pt;}
.ws50{word-spacing:2.951723pt;}
.ws47{word-spacing:3.101573pt;}
.ws29{word-spacing:3.109392pt;}
.ws39{word-spacing:3.113056pt;}
.ws80{word-spacing:3.125680pt;}
.ws61{word-spacing:3.310085pt;}
.ws3f{word-spacing:3.320597pt;}
.ws4a{word-spacing:3.676496pt;}
.ws48{word-spacing:3.721723pt;}
.ws35{word-spacing:4.027115pt;}
.ws3a{word-spacing:4.061856pt;}
.ws5f{word-spacing:4.411797pt;}
.ws41{word-spacing:4.496448pt;}
.ws46{word-spacing:4.532059pt;}
.ws40{word-spacing:4.589611pt;}
.ws53{word-spacing:4.634731pt;}
.ws6a{word-spacing:4.714352pt;}
.ws5b{word-spacing:4.774864pt;}
.ws82{word-spacing:4.844256pt;}
.ws4f{word-spacing:4.845957pt;}
.ws1e{word-spacing:5.264085pt;}
.ws3{word-spacing:5.276149pt;}
.ws64{word-spacing:5.291797pt;}
.ws11{word-spacing:5.349723pt;}
.ws5a{word-spacing:5.430923pt;}
.ws69{word-spacing:6.010752pt;}
.ws7a{word-spacing:6.152725pt;}
.ws54{word-spacing:6.167392pt;}
.ws33{word-spacing:6.189408pt;}
.ws4c{word-spacing:6.394720pt;}
.ws3d{word-spacing:6.469040pt;}
.ws2f{word-spacing:6.581072pt;}
.ws56{word-spacing:6.590272pt;}
.ws25{word-spacing:6.676331pt;}
.ws4b{word-spacing:6.917419pt;}
.ws5c{word-spacing:7.015349pt;}
.ws73{word-spacing:7.028331pt;}
.ws27{word-spacing:7.459765pt;}
.ws3c{word-spacing:7.590635pt;}
.ws6f{word-spacing:7.662571pt;}
.ws2d{word-spacing:7.690299pt;}
.ws2c{word-spacing:7.880949pt;}
.ws13{word-spacing:8.318997pt;}
.wsb{word-spacing:8.344277pt;}
.ws78{word-spacing:8.380379pt;}
.ws51{word-spacing:8.400389pt;}
.ws18{word-spacing:8.425696pt;}
.ws14{word-spacing:8.452256pt;}
.ws15{word-spacing:8.624059pt;}
.ws4d{word-spacing:8.819632pt;}
.ws1c{word-spacing:8.858736pt;}
.ws65{word-spacing:9.636059pt;}
.ws5e{word-spacing:9.642096pt;}
.ws16{word-spacing:9.724059pt;}
.ws37{word-spacing:9.824997pt;}
.ws2a{word-spacing:10.347968pt;}
.ws58{word-spacing:10.560053pt;}
.ws62{word-spacing:10.786352pt;}
.ws24{word-spacing:11.220075pt;}
.ws9{word-spacing:11.247307pt;}
.ws44{word-spacing:11.481973pt;}
.ws49{word-spacing:11.598800pt;}
.ws6c{word-spacing:11.667392pt;}
.ws2{word-spacing:11.855248pt;}
.ws3e{word-spacing:12.226197pt;}
.ws57{word-spacing:12.299115pt;}
.ws10{word-spacing:12.660331pt;}
.ws83{word-spacing:12.894997pt;}
.ws26{word-spacing:13.706059pt;}
.ws6e{word-spacing:14.353856pt;}
.wse{word-spacing:14.358741pt;}
.wsf{word-spacing:14.869813pt;}
.ws75{word-spacing:15.127045pt;}
.ws36{word-spacing:15.618944pt;}
.ws59{word-spacing:15.628197pt;}
.ws7c{word-spacing:16.372256pt;}
.ws74{word-spacing:17.055307pt;}
.ws30{word-spacing:17.881664pt;}
.ws6b{word-spacing:18.232827pt;}
.ws32{word-spacing:18.409664pt;}
.ws52{word-spacing:18.464085pt;}
.ws23{word-spacing:19.163115pt;}
.ws21{word-spacing:21.266731pt;}
.ws2e{word-spacing:23.649285pt;}
._0{margin-left:-3.168021pt;}
._1{margin-left:-1.584037pt;}
.fs7{font-size:5.333333pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:39.111109pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:90.666667pt;}
.fs1{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.ydd{bottom:1.633333pt;}
.ya7{bottom:83.782952pt;}
.y55{bottom:86.246952pt;}
.y75{bottom:87.226989pt;}
.y23{bottom:91.215380pt;}
.ycb{bottom:93.369680pt;}
.ya6{bottom:102.116284pt;}
.y54{bottom:104.580284pt;}
.y22{bottom:109.548712pt;}
.ya5{bottom:120.449616pt;}
.yca{bottom:121.121679pt;}
.y53{bottom:122.913616pt;}
.y21{bottom:127.882044pt;}
.y74{bottom:136.274989pt;}
.ya4{bottom:138.782948pt;}
.y52{bottom:141.246948pt;}
.yc9{bottom:142.476347pt;}
.y20{bottom:146.215375pt;}
.y51{bottom:159.580279pt;}
.y1f{bottom:164.548707pt;}
.yc8{bottom:169.369679pt;}
.y73{bottom:171.107599pt;}
.ya3{bottom:175.449611pt;}
.y50{bottom:177.913611pt;}
.y1e{bottom:182.882039pt;}
.ya2{bottom:193.782943pt;}
.y4f{bottom:196.246943pt;}
.yc7{bottom:197.121677pt;}
.y1d{bottom:201.215371pt;}
.y72{bottom:210.429236pt;}
.ya1{bottom:212.116275pt;}
.y4e{bottom:214.580275pt;}
.yc6{bottom:218.476344pt;}
.y1c{bottom:219.548701pt;}
.ya0{bottom:230.449605pt;}
.y1b{bottom:237.882033pt;}
.yc5{bottom:245.369676pt;}
.y9f{bottom:248.782937pt;}
.y4d{bottom:251.246937pt;}
.y1a{bottom:256.215365pt;}
.y9e{bottom:267.116269pt;}
.y4c{bottom:269.580269pt;}
.yc4{bottom:273.121675pt;}
.y19{bottom:274.548697pt;}
.y9d{bottom:285.449601pt;}
.y4b{bottom:287.913601pt;}
.y18{bottom:292.882028pt;}
.yc3{bottom:294.476343pt;}
.y9c{bottom:303.782932pt;}
.y4a{bottom:306.246932pt;}
.y17{bottom:311.215360pt;}
.y71{bottom:313.250759pt;}
.yc2{bottom:321.369675pt;}
.y9b{bottom:322.116264pt;}
.y49{bottom:324.580264pt;}
.y16{bottom:329.548692pt;}
.y9a{bottom:340.449596pt;}
.y48{bottom:342.913596pt;}
.y15{bottom:347.882023pt;}
.y70{bottom:349.001728pt;}
.yc1{bottom:349.121673pt;}
.y99{bottom:358.782928pt;}
.y47{bottom:361.246928pt;}
.y6f{bottom:365.668395pt;}
.y14{bottom:366.215355pt;}
.yc0{bottom:370.476340pt;}
.y98{bottom:377.116259pt;}
.y46{bottom:379.580259pt;}
.y6e{bottom:382.335060pt;}
.y13{bottom:384.548687pt;}
.y97{bottom:395.449591pt;}
.y45{bottom:397.913591pt;}
.y6d{bottom:399.001727pt;}
.y12{bottom:402.882019pt;}
.ybf{bottom:404.703007pt;}
.y96{bottom:413.782923pt;}
.y6c{bottom:415.668393pt;}
.y44{bottom:416.246923pt;}
.y11{bottom:421.010016pt;}
.y95{bottom:432.116255pt;}
.y6b{bottom:432.335059pt;}
.y43{bottom:434.580255pt;}
.y6a{bottom:449.001724pt;}
.y94{bottom:450.449585pt;}
.y10{bottom:450.887264pt;}
.y42{bottom:452.708252pt;}
.ybe{bottom:452.913585pt;}
.y69{bottom:465.668391pt;}
.yf{bottom:469.425929pt;}
.ybd{bottom:471.246917pt;}
.y68{bottom:482.335057pt;}
.y41{bottom:482.585500pt;}
.y93{bottom:487.116249pt;}
.ye{bottom:487.964595pt;}
.ybc{bottom:489.580249pt;}
.y67{bottom:499.001723pt;}
.y40{bottom:500.918832pt;}
.y92{bottom:505.449581pt;}
.yd{bottom:506.503259pt;}
.ybb{bottom:507.913581pt;}
.y66{bottom:515.668389pt;}
.y3f{bottom:519.252164pt;}
.y91{bottom:523.782912pt;}
.yc{bottom:525.041924pt;}
.yba{bottom:526.246912pt;}
.y65{bottom:532.335055pt;}
.y3e{bottom:537.585495pt;}
.y90{bottom:542.116244pt;}
.yb{bottom:543.580589pt;}
.yb9{bottom:544.580244pt;}
.y64{bottom:549.001721pt;}
.y3d{bottom:555.918827pt;}
.y8f{bottom:560.449576pt;}
.ya{bottom:562.119255pt;}
.yb8{bottom:562.913576pt;}
.y63{bottom:573.384775pt;}
.y3c{bottom:574.252159pt;}
.y8e{bottom:578.782907pt;}
.y9{bottom:580.657919pt;}
.yb7{bottom:581.246907pt;}
.y3b{bottom:592.585489pt;}
.y8d{bottom:597.116239pt;}
.y8{bottom:599.196584pt;}
.yb6{bottom:599.580239pt;}
.y3a{bottom:610.918821pt;}
.y8c{bottom:615.449571pt;}
.y7{bottom:617.735249pt;}
.yb5{bottom:617.913571pt;}
.y39{bottom:629.252153pt;}
.y8b{bottom:633.782903pt;}
.yb4{bottom:636.246903pt;}
.y6{bottom:636.273915pt;}
.y62{bottom:636.374881pt;}
.y38{bottom:647.585485pt;}
.y8a{bottom:652.116233pt;}
.y5{bottom:654.812579pt;}
.y61{bottom:664.126880pt;}
.y37{bottom:665.918816pt;}
.y89{bottom:670.449565pt;}
.yb3{bottom:672.913565pt;}
.y4{bottom:673.351244pt;}
.y36{bottom:684.252148pt;}
.y60{bottom:685.481547pt;}
.y88{bottom:688.782897pt;}
.yb2{bottom:691.246897pt;}
.y35{bottom:702.585480pt;}
.y87{bottom:707.116229pt;}
.yb1{bottom:709.580229pt;}
.y5f{bottom:712.374879pt;}
.y34{bottom:720.918812pt;}
.y3{bottom:722.399244pt;}
.y86{bottom:725.449560pt;}
.yb0{bottom:727.913560pt;}
.y5e{bottom:740.126877pt;}
.y85{bottom:743.782892pt;}
.yaf{bottom:746.246892pt;}
.y2{bottom:757.231853pt;}
.y33{bottom:757.585475pt;}
.y5d{bottom:761.481545pt;}
.y84{bottom:762.116224pt;}
.yae{bottom:764.580224pt;}
.yd9{bottom:772.246100pt;}
.y32{bottom:775.918807pt;}
.y83{bottom:780.449556pt;}
.yad{bottom:782.913556pt;}
.y5c{bottom:788.374877pt;}
.y31{bottom:794.252139pt;}
.y1{bottom:796.553491pt;}
.y82{bottom:798.577553pt;}
.yac{bottom:801.246887pt;}
.yd8{bottom:807.997071pt;}
.y30{bottom:812.585469pt;}
.y5b{bottom:816.126876pt;}
.yab{bottom:819.580219pt;}
.yd7{bottom:824.663736pt;}
.y81{bottom:828.454801pt;}
.y2f{bottom:830.918801pt;}
.y5a{bottom:837.481543pt;}
.yaa{bottom:837.913551pt;}
.yd6{bottom:841.330401pt;}
.y80{bottom:846.993467pt;}
.y2e{bottom:849.252133pt;}
.ya9{bottom:856.246883pt;}
.yd5{bottom:857.997068pt;}
.y59{bottom:864.374875pt;}
.y7f{bottom:865.532132pt;}
.y2d{bottom:867.585465pt;}
.ya8{bottom:874.374880pt;}
.yd4{bottom:874.663735pt;}
.y7e{bottom:884.070796pt;}
.y2c{bottom:885.918796pt;}
.yd3{bottom:891.330400pt;}
.y58{bottom:892.126873pt;}
.y7d{bottom:902.609461pt;}
.y2b{bottom:904.252128pt;}
.yd2{bottom:907.997065pt;}
.y57{bottom:913.481541pt;}
.y7c{bottom:921.148127pt;}
.y2a{bottom:922.585460pt;}
.yd1{bottom:924.663732pt;}
.y7b{bottom:939.686792pt;}
.y29{bottom:940.918792pt;}
.yd0{bottom:941.330399pt;}
.y56{bottom:947.708207pt;}
.ydc{bottom:952.104675pt;}
.ycf{bottom:957.997064pt;}
.y7a{bottom:958.225456pt;}
.y28{bottom:959.252123pt;}
.yce{bottom:974.663731pt;}
.y79{bottom:976.764121pt;}
.y27{bottom:977.585455pt;}
.ydb{bottom:985.438007pt;}
.ycd{bottom:991.330396pt;}
.y78{bottom:995.302787pt;}
.y26{bottom:995.918787pt;}
.ycc{bottom:1007.997063pt;}
.y77{bottom:1013.841452pt;}
.y25{bottom:1014.252119pt;}
.yda{bottom:1018.771339pt;}
.y76{bottom:1032.380116pt;}
.y24{bottom:1032.585449pt;}
.h9{height:5.562500pt;}
.h7{height:38.937500pt;}
.h6{height:50.062500pt;}
.h2{height:55.625000pt;}
.h5{height:61.187500pt;}
.h8{height:68.169441pt;}
.h4{height:94.562500pt;}
.h3{height:105.687500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:3.780000pt;}
.x2{left:79.370551pt;}
.x4{left:123.850551pt;}
.x3{left:128.298551pt;}
.x1{left:585.397449pt;}
.x5{left:623.930783pt;}
}




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