
    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_e8dcf3ba22987db8b1327d10.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_32997fbe223ba13b44704a42.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_ae8db149509bed4b5fc91fde.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_5472f88ffacc350effee4278.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;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_19cf5ceb80636f926d1f8234.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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);}
.v1{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.310908px;}
.ls4{letter-spacing:0.683998px;}
.ls1{letter-spacing:0.932724px;}
.ls3{letter-spacing:38.614774px;}
.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;}
}
.ws21{word-spacing:-61.784436px;}
.ws20{word-spacing:-57.455798px;}
.wsb{word-spacing:-36.500599px;}
.ws7e{word-spacing:-36.251873px;}
.ws1c{word-spacing:-35.878783px;}
.ws4{word-spacing:-35.567875px;}
.ws45{word-spacing:-24.810458px;}
.ws30{word-spacing:-24.748277px;}
.ws55{word-spacing:-24.375187px;}
.ws1a{word-spacing:-24.101616px;}
.ws46{word-spacing:-24.064279px;}
.ws19{word-spacing:-23.629008px;}
.ws61{word-spacing:-23.566826px;}
.ws48{word-spacing:-23.504645px;}
.ws32{word-spacing:-23.318100px;}
.ws7b{word-spacing:-23.193737px;}
.ws31{word-spacing:-22.882829px;}
.ws3f{word-spacing:-22.323194px;}
.ws54{word-spacing:-22.261013px;}
.ws36{word-spacing:-22.012286px;}
.ws68{word-spacing:-21.887923px;}
.ws77{word-spacing:-21.825742px;}
.ws67{word-spacing:-21.763560px;}
.ws62{word-spacing:-21.639197px;}
.ws6d{word-spacing:-21.452652px;}
.ws39{word-spacing:-21.328289px;}
.ws6c{word-spacing:-21.203926px;}
.ws5b{word-spacing:-21.141744px;}
.ws3d{word-spacing:-21.079562px;}
.ws14{word-spacing:-20.955199px;}
.ws24{word-spacing:-20.893018px;}
.ws64{word-spacing:-20.768654px;}
.ws15{word-spacing:-20.209020px;}
.ws2f{word-spacing:-20.146838px;}
.ws38{word-spacing:-20.022475px;}
.ws66{word-spacing:-19.960294px;}
.ws1d{word-spacing:-19.711567px;}
.ws33{word-spacing:-19.649386px;}
.ws3{word-spacing:-19.462841px;}
.wsd{word-spacing:-19.436304px;}
.ws0{word-spacing:-19.400659px;}
.ws5{word-spacing:-19.332497px;}
.ws59{word-spacing:-19.276296px;}
.ws4c{word-spacing:-19.151933px;}
.ws4f{word-spacing:-19.089751px;}
.ws70{word-spacing:-19.027570px;}
.ws1b{word-spacing:-18.778843px;}
.ws26{word-spacing:-18.530117px;}
.ws27{word-spacing:-18.281390px;}
.ws56{word-spacing:-18.219209px;}
.ws3e{word-spacing:-17.908301px;}
.ws10{word-spacing:-17.774331px;}
.wsa{word-spacing:-17.659574px;}
.ws57{word-spacing:-17.597393px;}
.ws6a{word-spacing:-17.535211px;}
.ws47{word-spacing:-17.410848px;}
.ws25{word-spacing:-17.348666px;}
.ws42{word-spacing:-17.286485px;}
.ws2b{word-spacing:-17.099940px;}
.ws79{word-spacing:-17.037758px;}
.ws35{word-spacing:-16.975577px;}
.ws2a{word-spacing:-16.913395px;}
.ws78{word-spacing:-16.664669px;}
.ws74{word-spacing:-16.478124px;}
.ws9{word-spacing:-16.353761px;}
.ws7a{word-spacing:-16.229398px;}
.ws18{word-spacing:-16.167216px;}
.ws5a{word-spacing:-16.105034px;}
.ws17{word-spacing:-15.856308px;}
.ws2d{word-spacing:-15.731945px;}
.ws81{word-spacing:-15.669763px;}
.ws29{word-spacing:-15.483218px;}
.ws5d{word-spacing:-15.358855px;}
.ws7c{word-spacing:-15.296674px;}
.ws2c{word-spacing:-15.234492px;}
.ws4e{word-spacing:-15.110129px;}
.ws5c{word-spacing:-14.923584px;}
.ws6b{word-spacing:-14.737039px;}
.ws3a{word-spacing:-14.488313px;}
.ws80{word-spacing:-14.363950px;}
.ws12{word-spacing:-14.115223px;}
.ws71{word-spacing:-14.053042px;}
.ws82{word-spacing:-13.990860px;}
.ws1e{word-spacing:-13.742134px;}
.ws44{word-spacing:-13.679952px;}
.ws58{word-spacing:-13.617770px;}
.ws49{word-spacing:-13.555589px;}
.ws69{word-spacing:-13.431226px;}
.ws65{word-spacing:-13.369044px;}
.ws6e{word-spacing:-13.120318px;}
.ws72{word-spacing:-12.995954px;}
.ws8{word-spacing:-12.436320px;}
.ws2e{word-spacing:-11.938867px;}
.ws34{word-spacing:-11.814504px;}
.wse{word-spacing:-11.503596px;}
.ws73{word-spacing:-11.441414px;}
.ws43{word-spacing:-11.006143px;}
.ws53{word-spacing:-10.943962px;}
.ws3b{word-spacing:-10.819598px;}
.ws16{word-spacing:-10.633054px;}
.wsf{word-spacing:-10.570872px;}
.ws13{word-spacing:-10.384327px;}
.ws7d{word-spacing:-10.233782px;}
.ws7{word-spacing:-10.197782px;}
.ws63{word-spacing:-10.073419px;}
.ws4a{word-spacing:-9.016332px;}
.ws3c{word-spacing:-8.954150px;}
.ws51{word-spacing:-8.891969px;}
.ws50{word-spacing:-8.829787px;}
.ws75{word-spacing:-8.581061px;}
.ws28{word-spacing:-7.959245px;}
.ws4b{word-spacing:-7.897063px;}
.ws5e{word-spacing:-7.337429px;}
.wsc{word-spacing:-6.404705px;}
.ws37{word-spacing:-6.280342px;}
.ws76{word-spacing:-5.596344px;}
.ws52{word-spacing:-4.103986px;}
.ws41{word-spacing:-3.419988px;}
.ws7f{word-spacing:-2.848056px;}
.ws4d{word-spacing:-2.611627px;}
.ws6f{word-spacing:-0.683998px;}
.ws6{word-spacing:0.000000px;}
.ws5f{word-spacing:0.435271px;}
.ws60{word-spacing:3.109080px;}
.ws2{word-spacing:5.950800px;}
.ws40{word-spacing:6.240614px;}
.ws11{word-spacing:7.488716px;}
.ws1{word-spacing:10.661850px;}
.ws23{word-spacing:18.936984px;}
.ws1f{word-spacing:38.945487px;}
.ws22{word-spacing:2344.441898px;}
._11{margin-left:-38.614774px;}
._12{margin-left:-22.447558px;}
._0{margin-left:-3.719250px;}
._8{margin-left:-2.582316px;}
._1{margin-left:-1.575938px;}
._d{width:2.029093px;}
._7{width:3.887926px;}
._6{width:4.963639px;}
._5{width:10.322146px;}
._1e{width:11.814504px;}
._c{width:13.555589px;}
._1a{width:14.964612px;}
._15{width:16.726850px;}
._13{width:19.981447px;}
._a{width:21.079562px;}
._20{width:22.323194px;}
._2{width:23.504645px;}
._19{width:25.494456px;}
._4{width:26.825244px;}
._18{width:28.603536px;}
._21{width:29.722805px;}
._b{width:31.339526px;}
._17{width:33.391519px;}
._1c{width:35.865600px;}
._1d{width:38.739137px;}
._22{width:40.915493px;}
._3{width:43.838028px;}
._9{width:48.439466px;}
._1b{width:53.103086px;}
._23{width:54.160174px;}
._1f{width:56.212166px;}
._24{width:62.989961px;}
._14{width:74.118228px;}
._e{width:2223.416342px;}
._10{width:2311.583689px;}
._f{width:2344.638262px;}
._16{width:2351.314631px;}
.fc3{color:rgb(0,63,95);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(5,102,141);}
.fs2{font-size:0.000000px;}
.fs4{font-size:56.787000px;}
.fs0{font-size:62.181600px;}
.fs6{font-size:65.454600px;}
.fs3{font-size:68.144400px;}
.fs7{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs1{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:107.419500px;}
.y17{bottom:144.567000px;}
.yb3{bottom:146.659500px;}
.y5c{bottom:156.768000px;}
.y7a{bottom:159.634500px;}
.y16{bottom:168.955500px;}
.yb2{bottom:171.048000px;}
.y5b{bottom:181.156500px;}
.y79{bottom:184.023000px;}
.y97{bottom:185.355000px;}
.y15{bottom:193.344000px;}
.y5a{bottom:205.545000px;}
.y96{bottom:209.743500px;}
.yb1{bottom:223.537500px;}
.y14{bottom:226.698000px;}
.y78{bottom:229.857000px;}
.y59{bottom:229.933500px;}
.y95{bottom:234.132000px;}
.y58{bottom:254.322000px;}
.y94{bottom:258.520500px;}
.y13{bottom:276.118500px;}
.y93{bottom:282.909000px;}
.y57{bottom:287.677500px;}
.y77{bottom:290.967000px;}
.yb0{bottom:293.899500px;}
.y12{bottom:300.507000px;}
.y92{bottom:307.297500px;}
.y56{bottom:312.066000px;}
.y76{bottom:315.355500px;}
.yaf{bottom:318.288000px;}
.y91{bottom:331.686000px;}
.y55{bottom:336.454500px;}
.y75{bottom:339.744000px;}
.yae{bottom:342.676500px;}
.y11{bottom:349.857000px;}
.y90{bottom:356.074500px;}
.y36{bottom:358.165500px;}
.y54{bottom:360.843000px;}
.y74{bottom:364.132500px;}
.yad{bottom:367.065000px;}
.y53{bottom:385.231500px;}
.y73{bottom:388.521000px;}
.y8f{bottom:389.430000px;}
.yac{bottom:391.453500px;}
.y35{bottom:391.519500px;}
.y8e{bottom:413.818500px;}
.y10{bottom:414.303000px;}
.yab{bottom:415.842000px;}
.y52{bottom:418.585500px;}
.y72{bottom:421.875000px;}
.y34{bottom:424.875000px;}
.y8d{bottom:438.207000px;}
.yf{bottom:438.691500px;}
.yaa{bottom:440.230500px;}
.y51{bottom:442.974000px;}
.y71{bottom:446.263500px;}
.y33{bottom:458.229000px;}
.y8c{bottom:462.595500px;}
.ye{bottom:463.080000px;}
.ya9{bottom:464.619000px;}
.y50{bottom:467.362500px;}
.y70{bottom:470.652000px;}
.y8b{bottom:486.984000px;}
.yd{bottom:487.468500px;}
.ya8{bottom:489.007500px;}
.y32{bottom:491.584500px;}
.y6f{bottom:495.040500px;}
.y4f{bottom:500.718000px;}
.y8a{bottom:511.372500px;}
.y6e{bottom:519.429000px;}
.yc{bottom:520.824000px;}
.y31{bottom:524.940000px;}
.y4e{bottom:525.106500px;}
.y89{bottom:535.761000px;}
.ya7{bottom:541.497000px;}
.y6d{bottom:543.817500px;}
.y4d{bottom:549.495000px;}
.y30{bottom:558.294000px;}
.y6c{bottom:568.206000px;}
.y4c{bottom:573.883500px;}
.y88{bottom:581.593500px;}
.y2f{bottom:591.649500px;}
.y4b{bottom:598.272000px;}
.y6b{bottom:601.561500px;}
.ya6{bottom:611.859000px;}
.y4a{bottom:622.660500px;}
.y2e{bottom:625.003500px;}
.y6a{bottom:625.950000px;}
.ya5{bottom:636.247500px;}
.y87{bottom:642.703500px;}
.y49{bottom:647.049000px;}
.y69{bottom:650.338500px;}
.y2d{bottom:658.359000px;}
.ya4{bottom:660.636000px;}
.y86{bottom:667.092000px;}
.y68{bottom:674.727000px;}
.y48{bottom:680.403000px;}
.y2c{bottom:682.747500px;}
.ya3{bottom:685.024500px;}
.y85{bottom:691.480500px;}
.y67{bottom:699.115500px;}
.y47{bottom:704.791500px;}
.ya2{bottom:709.413000px;}
.y84{bottom:715.869000px;}
.y2b{bottom:716.101500px;}
.yb{bottom:717.324000px;}
.y66{bottom:723.504000px;}
.y46{bottom:729.180000px;}
.ya1{bottom:733.801500px;}
.y83{bottom:749.224500px;}
.y2a{bottom:749.457000px;}
.ya{bottom:750.678000px;}
.y45{bottom:753.568500px;}
.ya0{bottom:758.190000px;}
.y65{bottom:769.336500px;}
.y82{bottom:773.613000px;}
.y44{bottom:777.957000px;}
.y9f{bottom:782.578500px;}
.y29{bottom:782.812500px;}
.y9{bottom:790.131000px;}
.y81{bottom:798.001500px;}
.y3d{bottom:798.817500px;}
.y9e{bottom:806.967000px;}
.y43{bottom:811.312500px;}
.y28{bottom:816.166500px;}
.y7{bottom:829.582500px;}
.y64{bottom:830.446500px;}
.y80{bottom:831.355500px;}
.y42{bottom:835.701000px;}
.y3c{bottom:838.750500px;}
.y9d{bottom:840.322500px;}
.y8{bottom:843.667500px;}
.y27{bottom:849.522000px;}
.y5{bottom:849.906000px;}
.y7f{bottom:855.744000px;}
.y41{bottom:860.089500px;}
.y21{bottom:860.998500px;}
.y6{bottom:863.992500px;}
.y9c{bottom:864.711000px;}
.y26{bottom:873.910500px;}
.y3b{bottom:878.685000px;}
.y7e{bottom:880.132500px;}
.y63{bottom:882.936000px;}
.y40{bottom:884.478000px;}
.y20{bottom:885.387000px;}
.y9b{bottom:889.099500px;}
.y4{bottom:892.467000px;}
.yb5{bottom:895.555500px;}
.y3a{bottom:903.073500px;}
.y7d{bottom:904.521000px;}
.y25{bottom:907.264500px;}
.y3f{bottom:908.866500px;}
.y1f{bottom:909.775500px;}
.y9a{bottom:913.488000px;}
.yb4{bottom:919.944000px;}
.y3{bottom:922.953000px;}
.y39{bottom:927.462000px;}
.y7c{bottom:928.909500px;}
.y24{bottom:931.653000px;}
.y1e{bottom:934.164000px;}
.y99{bottom:937.876500px;}
.y38{bottom:951.850500px;}
.y62{bottom:953.298000px;}
.y2{bottom:953.439000px;}
.y1d{bottom:958.552500px;}
.y3e{bottom:961.356000px;}
.y98{bottom:962.265000px;}
.y23{bottom:965.008500px;}
.y61{bottom:977.686500px;}
.y1c{bottom:982.941000px;}
.y7b{bottom:986.653500px;}
.y37{bottom:991.783500px;}
.y1{bottom:992.890500px;}
.y22{bottom:998.362500px;}
.y1b{bottom:1007.329500px;}
.y60{bottom:1011.042000px;}
.y1a{bottom:1031.718000px;}
.y5f{bottom:1035.430500px;}
.y5e{bottom:1059.819000px;}
.y19{bottom:1084.207500px;}
.y18{bottom:1140.885000px;}
.h4{height:0.000000px;}
.h6{height:43.449819px;}
.h2{height:47.577425px;}
.h8{height:49.090950px;}
.h5{height:52.139783px;}
.h9{height:53.798400px;}
.h7{height:64.557900px;}
.h3{height:92.981250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.299000px;}
.xd{left:126.001500px;}
.xb{left:129.618000px;}
.xe{left:147.208500px;}
.x1{left:170.079000px;}
.x6{left:260.652000px;}
.x5{left:263.640000px;}
.x2{left:294.784500px;}
.x8{left:393.586500px;}
.x7{left:396.576000px;}
.xc{left:442.398000px;}
.x9{left:525.048000px;}
.x4{left:665.914500px;}
.x3{left:668.904000px;}
@media print{
.v1{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.276363pt;}
.ls4{letter-spacing:0.607998pt;}
.ls1{letter-spacing:0.829088pt;}
.ls3{letter-spacing:34.324243pt;}
.ws21{word-spacing:-54.919499pt;}
.ws20{word-spacing:-51.071821pt;}
.wsb{word-spacing:-32.444977pt;}
.ws7e{word-spacing:-32.223887pt;}
.ws1c{word-spacing:-31.892252pt;}
.ws4{word-spacing:-31.615889pt;}
.ws45{word-spacing:-22.053741pt;}
.ws30{word-spacing:-21.998468pt;}
.ws55{word-spacing:-21.666833pt;}
.ws1a{word-spacing:-21.423659pt;}
.ws46{word-spacing:-21.390470pt;}
.ws19{word-spacing:-21.003563pt;}
.ws61{word-spacing:-20.948290pt;}
.ws48{word-spacing:-20.893018pt;}
.ws32{word-spacing:-20.727200pt;}
.ws7b{word-spacing:-20.616655pt;}
.ws31{word-spacing:-20.340292pt;}
.ws3f{word-spacing:-19.842839pt;}
.ws54{word-spacing:-19.787567pt;}
.ws36{word-spacing:-19.566477pt;}
.ws68{word-spacing:-19.455932pt;}
.ws77{word-spacing:-19.400659pt;}
.ws67{word-spacing:-19.345387pt;}
.ws62{word-spacing:-19.234842pt;}
.ws6d{word-spacing:-19.069024pt;}
.ws39{word-spacing:-18.958479pt;}
.ws6c{word-spacing:-18.847934pt;}
.ws5b{word-spacing:-18.792661pt;}
.ws3d{word-spacing:-18.737389pt;}
.ws14{word-spacing:-18.626844pt;}
.ws24{word-spacing:-18.571571pt;}
.ws64{word-spacing:-18.461026pt;}
.ws15{word-spacing:-17.963573pt;}
.ws2f{word-spacing:-17.908301pt;}
.ws38{word-spacing:-17.797756pt;}
.ws66{word-spacing:-17.742483pt;}
.ws1d{word-spacing:-17.521393pt;}
.ws33{word-spacing:-17.466121pt;}
.ws3{word-spacing:-17.300303pt;}
.wsd{word-spacing:-17.276715pt;}
.ws0{word-spacing:-17.245030pt;}
.ws5{word-spacing:-17.184442pt;}
.ws59{word-spacing:-17.134485pt;}
.ws4c{word-spacing:-17.023940pt;}
.ws4f{word-spacing:-16.968668pt;}
.ws70{word-spacing:-16.913395pt;}
.ws1b{word-spacing:-16.692305pt;}
.ws26{word-spacing:-16.471215pt;}
.ws27{word-spacing:-16.250125pt;}
.ws56{word-spacing:-16.194852pt;}
.ws3e{word-spacing:-15.918490pt;}
.ws10{word-spacing:-15.799405pt;}
.wsa{word-spacing:-15.697399pt;}
.ws57{word-spacing:-15.642127pt;}
.ws6a{word-spacing:-15.586854pt;}
.ws47{word-spacing:-15.476309pt;}
.ws25{word-spacing:-15.421037pt;}
.ws42{word-spacing:-15.365764pt;}
.ws2b{word-spacing:-15.199947pt;}
.ws79{word-spacing:-15.144674pt;}
.ws35{word-spacing:-15.089402pt;}
.ws2a{word-spacing:-15.034129pt;}
.ws78{word-spacing:-14.813039pt;}
.ws74{word-spacing:-14.647221pt;}
.ws9{word-spacing:-14.536676pt;}
.ws7a{word-spacing:-14.426131pt;}
.ws18{word-spacing:-14.370859pt;}
.ws5a{word-spacing:-14.315586pt;}
.ws17{word-spacing:-14.094496pt;}
.ws2d{word-spacing:-13.983951pt;}
.ws81{word-spacing:-13.928678pt;}
.ws29{word-spacing:-13.762861pt;}
.ws5d{word-spacing:-13.652316pt;}
.ws7c{word-spacing:-13.597043pt;}
.ws2c{word-spacing:-13.541771pt;}
.ws4e{word-spacing:-13.431226pt;}
.ws5c{word-spacing:-13.265408pt;}
.ws6b{word-spacing:-13.099590pt;}
.ws3a{word-spacing:-12.878500pt;}
.ws80{word-spacing:-12.767955pt;}
.ws12{word-spacing:-12.546865pt;}
.ws71{word-spacing:-12.491593pt;}
.ws82{word-spacing:-12.436320pt;}
.ws1e{word-spacing:-12.215230pt;}
.ws44{word-spacing:-12.159957pt;}
.ws58{word-spacing:-12.104685pt;}
.ws49{word-spacing:-12.049412pt;}
.ws69{word-spacing:-11.938867pt;}
.ws65{word-spacing:-11.883595pt;}
.ws6e{word-spacing:-11.662505pt;}
.ws72{word-spacing:-11.551959pt;}
.ws8{word-spacing:-11.054507pt;}
.ws2e{word-spacing:-10.612326pt;}
.ws34{word-spacing:-10.501781pt;}
.wse{word-spacing:-10.225419pt;}
.ws73{word-spacing:-10.170146pt;}
.ws43{word-spacing:-9.783238pt;}
.ws53{word-spacing:-9.727966pt;}
.ws3b{word-spacing:-9.617421pt;}
.ws16{word-spacing:-9.451603pt;}
.wsf{word-spacing:-9.396331pt;}
.ws13{word-spacing:-9.230513pt;}
.ws7d{word-spacing:-9.096695pt;}
.ws7{word-spacing:-9.064695pt;}
.ws63{word-spacing:-8.954150pt;}
.ws4a{word-spacing:-8.014517pt;}
.ws3c{word-spacing:-7.959245pt;}
.ws51{word-spacing:-7.903972pt;}
.ws50{word-spacing:-7.848700pt;}
.ws75{word-spacing:-7.627610pt;}
.ws28{word-spacing:-7.074884pt;}
.ws4b{word-spacing:-7.019612pt;}
.ws5e{word-spacing:-6.522159pt;}
.wsc{word-spacing:-5.693071pt;}
.ws37{word-spacing:-5.582526pt;}
.ws76{word-spacing:-4.974528pt;}
.ws52{word-spacing:-3.647987pt;}
.ws41{word-spacing:-3.039989pt;}
.ws7f{word-spacing:-2.531605pt;}
.ws4d{word-spacing:-2.321446pt;}
.ws6f{word-spacing:-0.607998pt;}
.ws6{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.386908pt;}
.ws60{word-spacing:2.763627pt;}
.ws2{word-spacing:5.289600pt;}
.ws40{word-spacing:5.547213pt;}
.ws11{word-spacing:6.656637pt;}
.ws1{word-spacing:9.477200pt;}
.ws23{word-spacing:16.832875pt;}
.ws1f{word-spacing:34.618211pt;}
.ws22{word-spacing:2083.948354pt;}
._11{margin-left:-34.324243pt;}
._12{margin-left:-19.953385pt;}
._0{margin-left:-3.306000pt;}
._8{margin-left:-2.295392pt;}
._1{margin-left:-1.400834pt;}
._d{width:1.803638pt;}
._7{width:3.455934pt;}
._6{width:4.412124pt;}
._5{width:9.175241pt;}
._1e{width:10.501781pt;}
._c{width:12.049412pt;}
._1a{width:13.301877pt;}
._15{width:14.868311pt;}
._13{width:17.761286pt;}
._a{width:18.737389pt;}
._20{width:19.842839pt;}
._2{width:20.893018pt;}
._19{width:22.661739pt;}
._4{width:23.844661pt;}
._18{width:25.425365pt;}
._21{width:26.420271pt;}
._b{width:27.857357pt;}
._17{width:29.681350pt;}
._1c{width:31.880533pt;}
._1d{width:34.434788pt;}
._22{width:36.369327pt;}
._3{width:38.967136pt;}
._9{width:43.057303pt;}
._1b{width:47.202743pt;}
._23{width:48.142377pt;}
._1f{width:49.966370pt;}
._24{width:55.991076pt;}
._14{width:65.882869pt;}
._e{width:1976.370082pt;}
._10{width:2054.741057pt;}
._f{width:2084.122899pt;}
._16{width:2090.057450pt;}
.fs2{font-size:0.000000pt;}
.fs4{font-size:50.477333pt;}
.fs0{font-size:55.272533pt;}
.fs6{font-size:58.181867pt;}
.fs3{font-size:60.572800pt;}
.fs7{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs1{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:95.484000pt;}
.y17{bottom:128.504000pt;}
.yb3{bottom:130.364000pt;}
.y5c{bottom:139.349333pt;}
.y7a{bottom:141.897333pt;}
.y16{bottom:150.182667pt;}
.yb2{bottom:152.042667pt;}
.y5b{bottom:161.028000pt;}
.y79{bottom:163.576000pt;}
.y97{bottom:164.760000pt;}
.y15{bottom:171.861333pt;}
.y5a{bottom:182.706667pt;}
.y96{bottom:186.438667pt;}
.yb1{bottom:198.700000pt;}
.y14{bottom:201.509333pt;}
.y78{bottom:204.317333pt;}
.y59{bottom:204.385333pt;}
.y95{bottom:208.117333pt;}
.y58{bottom:226.064000pt;}
.y94{bottom:229.796000pt;}
.y13{bottom:245.438667pt;}
.y93{bottom:251.474667pt;}
.y57{bottom:255.713333pt;}
.y77{bottom:258.637333pt;}
.yb0{bottom:261.244000pt;}
.y12{bottom:267.117333pt;}
.y92{bottom:273.153333pt;}
.y56{bottom:277.392000pt;}
.y76{bottom:280.316000pt;}
.yaf{bottom:282.922667pt;}
.y91{bottom:294.832000pt;}
.y55{bottom:299.070667pt;}
.y75{bottom:301.994667pt;}
.yae{bottom:304.601333pt;}
.y11{bottom:310.984000pt;}
.y90{bottom:316.510667pt;}
.y36{bottom:318.369333pt;}
.y54{bottom:320.749333pt;}
.y74{bottom:323.673333pt;}
.yad{bottom:326.280000pt;}
.y53{bottom:342.428000pt;}
.y73{bottom:345.352000pt;}
.y8f{bottom:346.160000pt;}
.yac{bottom:347.958667pt;}
.y35{bottom:348.017333pt;}
.y8e{bottom:367.838667pt;}
.y10{bottom:368.269333pt;}
.yab{bottom:369.637333pt;}
.y52{bottom:372.076000pt;}
.y72{bottom:375.000000pt;}
.y34{bottom:377.666667pt;}
.y8d{bottom:389.517333pt;}
.yf{bottom:389.948000pt;}
.yaa{bottom:391.316000pt;}
.y51{bottom:393.754667pt;}
.y71{bottom:396.678667pt;}
.y33{bottom:407.314667pt;}
.y8c{bottom:411.196000pt;}
.ye{bottom:411.626667pt;}
.ya9{bottom:412.994667pt;}
.y50{bottom:415.433333pt;}
.y70{bottom:418.357333pt;}
.y8b{bottom:432.874667pt;}
.yd{bottom:433.305333pt;}
.ya8{bottom:434.673333pt;}
.y32{bottom:436.964000pt;}
.y6f{bottom:440.036000pt;}
.y4f{bottom:445.082667pt;}
.y8a{bottom:454.553333pt;}
.y6e{bottom:461.714667pt;}
.yc{bottom:462.954667pt;}
.y31{bottom:466.613333pt;}
.y4e{bottom:466.761333pt;}
.y89{bottom:476.232000pt;}
.ya7{bottom:481.330667pt;}
.y6d{bottom:483.393333pt;}
.y4d{bottom:488.440000pt;}
.y30{bottom:496.261333pt;}
.y6c{bottom:505.072000pt;}
.y4c{bottom:510.118667pt;}
.y88{bottom:516.972000pt;}
.y2f{bottom:525.910667pt;}
.y4b{bottom:531.797333pt;}
.y6b{bottom:534.721333pt;}
.ya6{bottom:543.874667pt;}
.y4a{bottom:553.476000pt;}
.y2e{bottom:555.558667pt;}
.y6a{bottom:556.400000pt;}
.ya5{bottom:565.553333pt;}
.y87{bottom:571.292000pt;}
.y49{bottom:575.154667pt;}
.y69{bottom:578.078667pt;}
.y2d{bottom:585.208000pt;}
.ya4{bottom:587.232000pt;}
.y86{bottom:592.970667pt;}
.y68{bottom:599.757333pt;}
.y48{bottom:604.802667pt;}
.y2c{bottom:606.886667pt;}
.ya3{bottom:608.910667pt;}
.y85{bottom:614.649333pt;}
.y67{bottom:621.436000pt;}
.y47{bottom:626.481333pt;}
.ya2{bottom:630.589333pt;}
.y84{bottom:636.328000pt;}
.y2b{bottom:636.534667pt;}
.yb{bottom:637.621333pt;}
.y66{bottom:643.114667pt;}
.y46{bottom:648.160000pt;}
.ya1{bottom:652.268000pt;}
.y83{bottom:665.977333pt;}
.y2a{bottom:666.184000pt;}
.ya{bottom:667.269333pt;}
.y45{bottom:669.838667pt;}
.ya0{bottom:673.946667pt;}
.y65{bottom:683.854667pt;}
.y82{bottom:687.656000pt;}
.y44{bottom:691.517333pt;}
.y9f{bottom:695.625333pt;}
.y29{bottom:695.833333pt;}
.y9{bottom:702.338667pt;}
.y81{bottom:709.334667pt;}
.y3d{bottom:710.060000pt;}
.y9e{bottom:717.304000pt;}
.y43{bottom:721.166667pt;}
.y28{bottom:725.481333pt;}
.y7{bottom:737.406667pt;}
.y64{bottom:738.174667pt;}
.y80{bottom:738.982667pt;}
.y42{bottom:742.845333pt;}
.y3c{bottom:745.556000pt;}
.y9d{bottom:746.953333pt;}
.y8{bottom:749.926667pt;}
.y27{bottom:755.130667pt;}
.y5{bottom:755.472000pt;}
.y7f{bottom:760.661333pt;}
.y41{bottom:764.524000pt;}
.y21{bottom:765.332000pt;}
.y6{bottom:767.993333pt;}
.y9c{bottom:768.632000pt;}
.y26{bottom:776.809333pt;}
.y3b{bottom:781.053333pt;}
.y7e{bottom:782.340000pt;}
.y63{bottom:784.832000pt;}
.y40{bottom:786.202667pt;}
.y20{bottom:787.010667pt;}
.y9b{bottom:790.310667pt;}
.y4{bottom:793.304000pt;}
.yb5{bottom:796.049333pt;}
.y3a{bottom:802.732000pt;}
.y7d{bottom:804.018667pt;}
.y25{bottom:806.457333pt;}
.y3f{bottom:807.881333pt;}
.y1f{bottom:808.689333pt;}
.y9a{bottom:811.989333pt;}
.yb4{bottom:817.728000pt;}
.y3{bottom:820.402667pt;}
.y39{bottom:824.410667pt;}
.y7c{bottom:825.697333pt;}
.y24{bottom:828.136000pt;}
.y1e{bottom:830.368000pt;}
.y99{bottom:833.668000pt;}
.y38{bottom:846.089333pt;}
.y62{bottom:847.376000pt;}
.y2{bottom:847.501333pt;}
.y1d{bottom:852.046667pt;}
.y3e{bottom:854.538667pt;}
.y98{bottom:855.346667pt;}
.y23{bottom:857.785333pt;}
.y61{bottom:869.054667pt;}
.y1c{bottom:873.725333pt;}
.y7b{bottom:877.025333pt;}
.y37{bottom:881.585333pt;}
.y1{bottom:882.569333pt;}
.y22{bottom:887.433333pt;}
.y1b{bottom:895.404000pt;}
.y60{bottom:898.704000pt;}
.y1a{bottom:917.082667pt;}
.y5f{bottom:920.382667pt;}
.y5e{bottom:942.061333pt;}
.y19{bottom:963.740000pt;}
.y18{bottom:1014.120000pt;}
.h4{height:0.000000pt;}
.h6{height:38.622061pt;}
.h2{height:42.291045pt;}
.h8{height:43.636400pt;}
.h5{height:46.346473pt;}
.h9{height:47.820800pt;}
.h7{height:57.384800pt;}
.h3{height:82.650000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.488000pt;}
.xd{left:112.001333pt;}
.xb{left:115.216000pt;}
.xe{left:130.852000pt;}
.x1{left:151.181333pt;}
.x6{left:231.690667pt;}
.x5{left:234.346667pt;}
.x2{left:262.030667pt;}
.x8{left:349.854667pt;}
.x7{left:352.512000pt;}
.xc{left:393.242667pt;}
.x9{left:466.709333pt;}
.x4{left:591.924000pt;}
.x3{left:594.581333pt;}
}




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