
    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_e25a56f8c8ac623f8173b77d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_552827e4b9c34c74a7d778e0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_2608b9f6cdba11312371c0bb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_38216a840f22f414c308ea27.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_87596a2d0c4fb5967ed82c26.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_9256ccae4050b5478a67df3d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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);}
.v2{vertical-align:-24.169922px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.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;}
}
.ws5{word-spacing:-36.000000px;}
.ws3{word-spacing:-29.999999px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-10.800000px;}
.ws2{word-spacing:-8.138672px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-9.281250px;}
._10{margin-left:-8.264417px;}
._1{margin-left:-6.420567px;}
._f{margin-left:-4.959731px;}
._2{margin-left:-3.106786px;}
._0{margin-left:-1.016822px;}
._3{width:4.500000px;}
._7{width:9.000011px;}
._6{width:13.499999px;}
._5{width:22.500027px;}
._4{width:26.999999px;}
._c{width:31.500001px;}
._b{width:35.999909px;}
._9{width:40.500011px;}
._8{width:45.000000px;}
._a{width:49.500001px;}
._d{width:53.999991px;}
._e{width:90.000000px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:43.200002px;}
.fs5{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.124988px;}
.y5e{bottom:17.016358px;}
.y2c{bottom:17.016724px;}
.yb1{bottom:17.017090px;}
.ybb{bottom:37.157959px;}
.y5d{bottom:37.158326px;}
.y2b{bottom:37.158418px;}
.y25{bottom:109.684938px;}
.yca{bottom:112.215826px;}
.yaf{bottom:117.340582px;}
.y5b{bottom:117.340942px;}
.y8c{bottom:118.979729px;}
.yba{bottom:130.998053px;}
.y24{bottom:133.481323px;}
.yc9{bottom:134.553224px;}
.yae{bottom:139.677607px;}
.y5a{bottom:139.677974px;}
.yf2{bottom:141.267331px;}
.y8b{bottom:141.316402px;}
.y27{bottom:145.244013px;}
.yb9{bottom:153.334717px;}
.yc8{bottom:156.889897px;}
.y59{bottom:162.014648px;}
.yf1{bottom:163.604000px;}
.y8a{bottom:163.653432px;}
.y26{bottom:169.040497px;}
.yb8{bottom:175.671383px;}
.yc7{bottom:179.226563px;}
.y29{bottom:180.803193px;}
.y58{bottom:182.712892px;}
.yad{bottom:184.351312px;}
.yf0{bottom:185.941403px;}
.y89{bottom:185.990106px;}
.yb7{bottom:198.008427px;}
.yc6{bottom:201.563963px;}
.y28{bottom:204.599483px;}
.y57{bottom:205.049933px;}
.yac{bottom:206.687992px;}
.y88{bottom:208.327147px;}
.yef{bottom:220.277345px;}
.yc5{bottom:223.900632px;}
.y56{bottom:227.386595px;}
.yab{bottom:229.025017px;}
.y87{bottom:230.663812px;}
.y23{bottom:238.674779px;}
.yee{bottom:242.614748px;}
.y55{bottom:249.723447px;}
.yaa{bottom:251.362057px;}
.y86{bottom:253.000844px;}
.y22{bottom:261.011632px;}
.y54{bottom:272.060301px;}
.ya9{bottom:273.698738px;}
.y85{bottom:275.337517px;}
.yed{bottom:276.952151px;}
.y21{bottom:281.709862px;}
.y53{bottom:294.397153px;}
.ya8{bottom:296.035403px;}
.y84{bottom:296.035762px;}
.yec{bottom:299.288819px;}
.y20{bottom:302.408107px;}
.y52{bottom:316.734007px;}
.ya7{bottom:318.372443px;}
.yeb{bottom:321.625492px;}
.y1f{bottom:336.745058px;}
.y83{bottom:337.432253px;}
.y51{bottom:339.070859px;}
.ya6{bottom:340.709468px;}
.yea{bottom:355.962149px;}
.y82{bottom:359.769293px;}
.y50{bottom:361.407713px;}
.ya5{bottom:363.046147px;}
.y1e{bottom:371.081902px;}
.ye9{bottom:378.298823px;}
.y81{bottom:382.105962px;}
.y4f{bottom:383.744561px;}
.ya4{bottom:385.382819px;}
.y1d{bottom:393.418750px;}
.y80{bottom:404.442996px;}
.y4e{bottom:406.081415px;}
.ya3{bottom:407.719847px;}
.ye8{bottom:412.635496px;}
.y1c{bottom:415.755603px;}
.y7f{bottom:426.779659px;}
.y4d{bottom:428.418267px;}
.ya2{bottom:430.056890px;}
.ye7{bottom:434.972165px;}
.y1b{bottom:438.092455px;}
.y7e{bottom:449.116702px;}
.y4c{bottom:450.755121px;}
.ya1{bottom:452.393562px;}
.ye6{bottom:457.309567px;}
.y1a{bottom:460.429308px;}
.y7d{bottom:471.453374px;}
.y4b{bottom:473.091973px;}
.ya0{bottom:474.730596px;}
.ye5{bottom:478.007812px;}
.y19{bottom:482.766160px;}
.y7c{bottom:493.790408px;}
.y4a{bottom:495.428827px;}
.y9f{bottom:497.067637px;}
.ye4{bottom:498.706058px;}
.y18{bottom:505.103013px;}
.y7b{bottom:516.127083px;}
.y49{bottom:517.765679px;}
.y9e{bottom:519.404302px;}
.y17{bottom:527.439865px;}
.y7a{bottom:538.464104px;}
.y48{bottom:540.102533px;}
.ye3{bottom:541.740982px;}
.y9d{bottom:541.741334px;}
.y16{bottom:549.776740px;}
.y79{bottom:560.800765px;}
.y47{bottom:560.800777px;}
.ye2{bottom:564.077637px;}
.y9c{bottom:564.078007px;}
.y15{bottom:572.113593px;}
.yc4{bottom:572.557613px;}
.y46{bottom:581.499022px;}
.y78{bottom:583.137809px;}
.y9b{bottom:586.415037px;}
.ye1{bottom:586.415040px;}
.y14{bottom:594.450445px;}
.yc3{bottom:594.894292px;}
.y45{bottom:603.835883px;}
.y77{bottom:605.474482px;}
.y9a{bottom:608.751711px;}
.ye0{bottom:608.751712px;}
.y13{bottom:616.787298px;}
.yc2{bottom:617.230957px;}
.y44{bottom:626.172727px;}
.y76{bottom:627.811514px;}
.ydf{bottom:631.088381px;}
.y99{bottom:631.088752px;}
.y12{bottom:639.124150px;}
.yc1{bottom:639.568362px;}
.y43{bottom:648.509579px;}
.y75{bottom:650.148182px;}
.yde{bottom:653.425049px;}
.y98{bottom:653.425417px;}
.y11{bottom:661.461003px;}
.y42{bottom:670.846432px;}
.y74{bottom:672.485225px;}
.ydd{bottom:675.761723px;}
.y97{bottom:675.762449px;}
.y10{bottom:683.797805px;}
.y41{bottom:693.183284px;}
.y73{bottom:694.821897px;}
.ydc{bottom:698.099112px;}
.y96{bottom:698.099123px;}
.yf{bottom:706.134657px;}
.y40{bottom:715.520141px;}
.y72{bottom:717.158931px;}
.y95{bottom:718.797368px;}
.ydb{bottom:720.435786px;}
.ye{bottom:728.471511px;}
.y3f{bottom:737.856995px;}
.y71{bottom:739.495594px;}
.y94{bottom:739.495612px;}
.yda{bottom:742.772449px;}
.yd{bottom:750.808363px;}
.yb6{bottom:758.165768px;}
.y3e{bottom:760.193847px;}
.y70{bottom:761.832637px;}
.yd9{bottom:765.109856px;}
.yc{bottom:773.145217px;}
.yb5{bottom:780.502448px;}
.y3d{bottom:782.530701px;}
.y93{bottom:784.169299px;}
.y6f{bottom:784.169309px;}
.yd8{bottom:787.446524px;}
.yb{bottom:795.482069px;}
.yb4{bottom:802.839112px;}
.y3c{bottom:804.867553px;}
.y6e{bottom:806.506342px;}
.yd7{bottom:809.783198px;}
.ya{bottom:817.818922px;}
.yb3{bottom:825.176145px;}
.y3b{bottom:827.204407px;}
.y6d{bottom:828.843014px;}
.yd6{bottom:830.481442px;}
.y9{bottom:840.155782px;}
.y3a{bottom:849.541259px;}
.yd5{bottom:851.179688px;}
.y6c{bottom:851.180048px;}
.y8{bottom:862.492635px;}
.yd4{bottom:871.877933px;}
.y39{bottom:871.878113px;}
.y6b{bottom:871.878293px;}
.y92{bottom:873.516732px;}
.y7{bottom:884.829487px;}
.yd3{bottom:894.214589px;}
.y38{bottom:894.214966px;}
.y6a{bottom:894.214973px;}
.y91{bottom:895.853766px;}
.y6{bottom:907.166332px;}
.yd2{bottom:916.551270px;}
.y37{bottom:916.551819px;}
.y69{bottom:916.552002px;}
.y90{bottom:918.190429px;}
.yf8{bottom:937.226066px;}
.y68{bottom:938.888665px;}
.y36{bottom:938.888672px;}
.yd1{bottom:938.888673px;}
.y8f{bottom:940.527472px;}
.y5{bottom:948.425217px;}
.yf7{bottom:959.562734px;}
.yd0{bottom:961.225336px;}
.yc0{bottom:961.225343px;}
.y35{bottom:961.225525px;}
.y67{bottom:961.225708px;}
.y8e{bottom:962.864144px;}
.y4{bottom:974.484881px;}
.yf6{bottom:981.899408px;}
.ybf{bottom:983.562007px;}
.ycf{bottom:983.562013px;}
.y34{bottom:983.562378px;}
.y66{bottom:983.562380px;}
.y8d{bottom:985.201177px;}
.y3{bottom:1000.544541px;}
.y33{bottom:1005.899231px;}
.yce{bottom:1005.899411px;}
.y65{bottom:1005.899414px;}
.yf5{bottom:1016.236084px;}
.y32{bottom:1028.236084px;}
.y64{bottom:1028.236086px;}
.y1{bottom:1038.150009px;}
.yf4{bottom:1038.572753px;}
.ybe{bottom:1050.572754px;}
.y31{bottom:1050.572937px;}
.y63{bottom:1050.573120px;}
.yf3{bottom:1060.910155px;}
.ycd{bottom:1072.909417px;}
.ybd{bottom:1072.909424px;}
.y62{bottom:1072.909783px;}
.y30{bottom:1072.909789px;}
.ybc{bottom:1095.246093px;}
.ycc{bottom:1095.246094px;}
.y2f{bottom:1095.246643px;}
.y61{bottom:1095.246826px;}
.ycb{bottom:1117.583492px;}
.y2e{bottom:1117.583495px;}
.y60{bottom:1117.583498px;}
.yb2{bottom:1139.920165px;}
.y2d{bottom:1139.920349px;}
.y5f{bottom:1139.920531px;}
.yb0{bottom:1156.724853px;}
.y2a{bottom:1156.725036px;}
.y5c{bottom:1156.725219px;}
.h8{height:29.619139px;}
.h2{height:43.989259px;}
.h9{height:53.789057px;}
.ha{height:53.789061px;}
.h4{height:63.949219px;}
.h7{height:64.546875px;}
.h6{height:65.691211px;}
.h5{height:65.691214px;}
.h3{height:74.607419px;}
.hc{height:106.274781px;}
.hb{height:106.274964px;}
.hd{height:106.275147px;}
.h1{height:224.849991px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xa{left:121.950005px;}
.x5{left:127.575005px;}
.x2{left:145.693528px;}
.x6{left:148.960115px;}
.x3{left:172.702077px;}
.x8{left:180.450005px;}
.xc{left:222.075005px;}
.xb{left:235.575005px;}
.x14{left:284.320467px;}
.x11{left:308.310213px;}
.x13{left:314.172518px;}
.x4{left:349.155516px;}
.x16{left:360.381008px;}
.xf{left:373.656897px;}
.x7{left:376.218901px;}
.xd{left:383.140287px;}
.x9{left:446.456716px;}
.x10{left:472.894216px;}
.x1{left:636.019216px;}
.x12{left:672.019216px;}
.x15{left:709.706682px;}
.xe{left:749.644182px;}
.x17{left:795.825005px;}
@media print{
.v2{vertical-align:-21.484375pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ws5{word-spacing:-32.000000pt;}
.ws3{word-spacing:-26.666666pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-9.600000pt;}
.ws2{word-spacing:-7.234375pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-8.250000pt;}
._10{margin-left:-7.346148pt;}
._1{margin-left:-5.707170pt;}
._f{margin-left:-4.408649pt;}
._2{margin-left:-2.761587pt;}
._0{margin-left:-0.903842pt;}
._3{width:4.000000pt;}
._7{width:8.000010pt;}
._6{width:12.000000pt;}
._5{width:20.000024pt;}
._4{width:23.999999pt;}
._c{width:28.000001pt;}
._b{width:31.999919pt;}
._9{width:36.000010pt;}
._8{width:40.000000pt;}
._a{width:44.000001pt;}
._d{width:47.999992pt;}
._e{width:80.000000pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:38.400002pt;}
.fs5{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.666656pt;}
.y5e{bottom:15.125651pt;}
.y2c{bottom:15.125977pt;}
.yb1{bottom:15.126302pt;}
.ybb{bottom:33.029297pt;}
.y5d{bottom:33.029623pt;}
.y2b{bottom:33.029705pt;}
.y25{bottom:97.497723pt;}
.yca{bottom:99.747401pt;}
.yaf{bottom:104.302740pt;}
.y5b{bottom:104.303060pt;}
.y8c{bottom:105.759759pt;}
.yba{bottom:116.442713pt;}
.y24{bottom:118.650065pt;}
.yc9{bottom:119.602866pt;}
.yae{bottom:124.157873pt;}
.y5a{bottom:124.158200pt;}
.yf2{bottom:125.570961pt;}
.y8b{bottom:125.614580pt;}
.y27{bottom:129.105790pt;}
.yb9{bottom:136.297527pt;}
.yc8{bottom:139.457687pt;}
.y59{bottom:144.013020pt;}
.yf1{bottom:145.425778pt;}
.y8a{bottom:145.469717pt;}
.y26{bottom:150.258220pt;}
.yb8{bottom:156.152340pt;}
.yc7{bottom:159.312500pt;}
.y29{bottom:160.713950pt;}
.y58{bottom:162.411460pt;}
.yad{bottom:163.867833pt;}
.yf0{bottom:165.281247pt;}
.y89{bottom:165.324538pt;}
.yb7{bottom:176.007491pt;}
.yc6{bottom:179.167967pt;}
.y28{bottom:181.866207pt;}
.y57{bottom:182.266607pt;}
.yac{bottom:183.722660pt;}
.y88{bottom:185.179686pt;}
.yef{bottom:195.802085pt;}
.yc5{bottom:199.022784pt;}
.y56{bottom:202.121418pt;}
.yab{bottom:203.577793pt;}
.y87{bottom:205.034499pt;}
.y23{bottom:212.155359pt;}
.yee{bottom:215.657553pt;}
.y55{bottom:221.976398pt;}
.yaa{bottom:223.432940pt;}
.y86{bottom:224.889639pt;}
.y22{bottom:232.010340pt;}
.y54{bottom:241.831379pt;}
.ya9{bottom:243.287767pt;}
.y85{bottom:244.744460pt;}
.yed{bottom:246.179690pt;}
.y21{bottom:250.408767pt;}
.y53{bottom:261.686359pt;}
.ya8{bottom:263.142580pt;}
.y84{bottom:263.142900pt;}
.yec{bottom:266.034506pt;}
.y20{bottom:268.807207pt;}
.y52{bottom:281.541340pt;}
.ya7{bottom:282.997727pt;}
.yeb{bottom:285.889327pt;}
.y1f{bottom:299.328940pt;}
.y83{bottom:299.939780pt;}
.y51{bottom:301.396320pt;}
.ya6{bottom:302.852860pt;}
.yea{bottom:316.410800pt;}
.y82{bottom:319.794927pt;}
.y50{bottom:321.251300pt;}
.ya5{bottom:322.707686pt;}
.y1e{bottom:329.850580pt;}
.ye9{bottom:336.265620pt;}
.y81{bottom:339.649744pt;}
.y4f{bottom:341.106276pt;}
.ya4{bottom:342.562506pt;}
.y1d{bottom:349.705556pt;}
.y80{bottom:359.504885pt;}
.y4e{bottom:360.961257pt;}
.ya3{bottom:362.417642pt;}
.ye8{bottom:366.787108pt;}
.y1c{bottom:369.560536pt;}
.y7f{bottom:379.359697pt;}
.y4d{bottom:380.816237pt;}
.ya2{bottom:382.272791pt;}
.ye7{bottom:386.641925pt;}
.y1b{bottom:389.415516pt;}
.y7e{bottom:399.214846pt;}
.y4c{bottom:400.671219pt;}
.ya1{bottom:402.127611pt;}
.ye6{bottom:406.497393pt;}
.y1a{bottom:409.270496pt;}
.y7d{bottom:419.069666pt;}
.y4b{bottom:420.526199pt;}
.ya0{bottom:421.982752pt;}
.ye5{bottom:424.895833pt;}
.y19{bottom:429.125476pt;}
.y7c{bottom:438.924807pt;}
.y4a{bottom:440.381180pt;}
.y9f{bottom:441.837900pt;}
.ye4{bottom:443.294273pt;}
.y18{bottom:448.980456pt;}
.y7b{bottom:458.779629pt;}
.y49{bottom:460.236159pt;}
.y9e{bottom:461.692713pt;}
.y17{bottom:468.835436pt;}
.y7a{bottom:478.634759pt;}
.y48{bottom:480.091140pt;}
.ye3{bottom:481.547539pt;}
.y9d{bottom:481.547853pt;}
.y16{bottom:488.690436pt;}
.y79{bottom:498.489569pt;}
.y47{bottom:498.489580pt;}
.ye2{bottom:501.402344pt;}
.y9c{bottom:501.402673pt;}
.y15{bottom:508.545416pt;}
.yc4{bottom:508.940100pt;}
.y46{bottom:516.888020pt;}
.y78{bottom:518.344719pt;}
.y9b{bottom:521.257811pt;}
.ye1{bottom:521.257813pt;}
.y14{bottom:528.400396pt;}
.yc3{bottom:528.794927pt;}
.y45{bottom:536.743007pt;}
.y77{bottom:538.199539pt;}
.y9a{bottom:541.112632pt;}
.ye0{bottom:541.112633pt;}
.y13{bottom:548.255376pt;}
.yc2{bottom:548.649740pt;}
.y44{bottom:556.597979pt;}
.y76{bottom:558.054679pt;}
.ydf{bottom:560.967450pt;}
.y99{bottom:560.967780pt;}
.y12{bottom:568.110356pt;}
.yc1{bottom:568.505211pt;}
.y43{bottom:576.452959pt;}
.y75{bottom:577.909495pt;}
.yde{bottom:580.822266pt;}
.y98{bottom:580.822593pt;}
.y11{bottom:587.965336pt;}
.y42{bottom:596.307940pt;}
.y74{bottom:597.764644pt;}
.ydd{bottom:600.677087pt;}
.y97{bottom:600.677733pt;}
.y10{bottom:607.820271pt;}
.y41{bottom:616.162919pt;}
.y73{bottom:617.619464pt;}
.ydc{bottom:620.532544pt;}
.y96{bottom:620.532553pt;}
.yf{bottom:627.675251pt;}
.y40{bottom:636.017903pt;}
.y72{bottom:637.474605pt;}
.y95{bottom:638.930993pt;}
.ydb{bottom:640.387365pt;}
.ye{bottom:647.530232pt;}
.y3f{bottom:655.872884pt;}
.y71{bottom:657.329417pt;}
.y94{bottom:657.329433pt;}
.yda{bottom:660.242177pt;}
.yd{bottom:667.385212pt;}
.yb6{bottom:673.925127pt;}
.y3e{bottom:675.727864pt;}
.y70{bottom:677.184566pt;}
.yd9{bottom:680.097650pt;}
.yc{bottom:687.240193pt;}
.yb5{bottom:693.779953pt;}
.y3d{bottom:695.582845pt;}
.y93{bottom:697.039377pt;}
.y6f{bottom:697.039386pt;}
.yd8{bottom:699.952466pt;}
.yb{bottom:707.095173pt;}
.yb4{bottom:713.634767pt;}
.y3c{bottom:715.437825pt;}
.y6e{bottom:716.894527pt;}
.yd7{bottom:719.807287pt;}
.ya{bottom:726.950153pt;}
.yb3{bottom:733.489907pt;}
.y3b{bottom:735.292806pt;}
.y6d{bottom:736.749346pt;}
.yd6{bottom:738.205727pt;}
.y9{bottom:746.805140pt;}
.y3a{bottom:755.147786pt;}
.yd5{bottom:756.604167pt;}
.y6c{bottom:756.604487pt;}
.y8{bottom:766.660120pt;}
.yd4{bottom:775.002607pt;}
.y39{bottom:775.002767pt;}
.y6b{bottom:775.002927pt;}
.y92{bottom:776.459317pt;}
.y7{bottom:786.515100pt;}
.yd3{bottom:794.857412pt;}
.y38{bottom:794.857747pt;}
.y6a{bottom:794.857753pt;}
.y91{bottom:796.314459pt;}
.y6{bottom:806.370073pt;}
.yd2{bottom:814.712240pt;}
.y37{bottom:814.712728pt;}
.y69{bottom:814.712890pt;}
.y90{bottom:816.169270pt;}
.yf8{bottom:833.089837pt;}
.y68{bottom:834.567702pt;}
.y36{bottom:834.567708pt;}
.yd1{bottom:834.567709pt;}
.y8f{bottom:836.024419pt;}
.y5{bottom:843.044637pt;}
.yf7{bottom:852.944653pt;}
.yd0{bottom:854.422521pt;}
.yc0{bottom:854.422527pt;}
.y35{bottom:854.422689pt;}
.y67{bottom:854.422851pt;}
.y8e{bottom:855.879239pt;}
.y4{bottom:866.208783pt;}
.yf6{bottom:872.799473pt;}
.ybf{bottom:874.277340pt;}
.ycf{bottom:874.277345pt;}
.y34{bottom:874.277669pt;}
.y66{bottom:874.277671pt;}
.y8d{bottom:875.734380pt;}
.y3{bottom:889.372926pt;}
.y33{bottom:894.132650pt;}
.yce{bottom:894.132810pt;}
.y65{bottom:894.132812pt;}
.yf5{bottom:903.320964pt;}
.y32{bottom:913.987630pt;}
.y64{bottom:913.987632pt;}
.y1{bottom:922.800008pt;}
.yf4{bottom:923.175781pt;}
.ybe{bottom:933.842448pt;}
.y31{bottom:933.842611pt;}
.y63{bottom:933.842773pt;}
.yf3{bottom:943.031249pt;}
.ycd{bottom:953.697260pt;}
.ybd{bottom:953.697265pt;}
.y62{bottom:953.697585pt;}
.y30{bottom:953.697590pt;}
.ybc{bottom:973.552083pt;}
.ycc{bottom:973.552084pt;}
.y2f{bottom:973.552571pt;}
.y61{bottom:973.552734pt;}
.ycb{bottom:993.407549pt;}
.y2e{bottom:993.407551pt;}
.y60{bottom:993.407554pt;}
.yb2{bottom:1013.262369pt;}
.y2d{bottom:1013.262532pt;}
.y5f{bottom:1013.262695pt;}
.yb0{bottom:1028.199869pt;}
.y2a{bottom:1028.200032pt;}
.y5c{bottom:1028.200195pt;}
.h8{height:26.328124pt;}
.h2{height:39.101563pt;}
.h9{height:47.812495pt;}
.ha{height:47.812499pt;}
.h4{height:56.843750pt;}
.h7{height:57.375000pt;}
.h6{height:58.392187pt;}
.h5{height:58.392190pt;}
.h3{height:66.317706pt;}
.hc{height:94.466472pt;}
.hb{height:94.466635pt;}
.hd{height:94.466797pt;}
.h1{height:199.866659pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xa{left:108.400004pt;}
.x5{left:113.400004pt;}
.x2{left:129.505358pt;}
.x6{left:132.408991pt;}
.x3{left:153.512957pt;}
.x8{left:160.400004pt;}
.xc{left:197.400004pt;}
.xb{left:209.400004pt;}
.x14{left:252.729304pt;}
.x11{left:274.053523pt;}
.x13{left:279.264460pt;}
.x4{left:310.360458pt;}
.x16{left:320.338674pt;}
.xf{left:332.139464pt;}
.x7{left:334.416801pt;}
.xd{left:340.569144pt;}
.x9{left:396.850414pt;}
.x10{left:420.350414pt;}
.x1{left:565.350414pt;}
.x12{left:597.350414pt;}
.x15{left:630.850384pt;}
.xe{left:666.350384pt;}
.x17{left:707.400004pt;}
}




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