
    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_a9b83ca947049f7735555953.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_681e38ffc9fc577e1959a58f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_386fa5206a0bd6769f19c222.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_5b4b47d13db49465f218822a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_42bd398e5517460e7477d8b0.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_9e9c7f8dfb975b6d703b90a3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c4944da69c7855c908b76733.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_577da499343ec03fa70c2a27.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_669858942e999d4e62df7402.woff')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.lsb{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.106800px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.612000px;}
.lsd{letter-spacing:0.720001px;}
.ls7{letter-spacing:3.744003px;}
.ls6{letter-spacing:23.904019px;}
.ls9{letter-spacing:28.195883px;}
.lsc{letter-spacing:28.224023px;}
.lsa{letter-spacing:43.118614px;}
.ls4{letter-spacing:44.035835px;}
.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;}
}
.ws4{word-spacing:-18.144015px;}
.ws2{word-spacing:-18.000014px;}
.ws5{word-spacing:-17.712014px;}
.ws0{word-spacing:-17.225294px;}
.ws1{word-spacing:-16.506493px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-1.158821px;}
._0{width:1.144861px;}
._1{width:2.208403px;}
._5{width:3.211326px;}
._7{width:4.373582px;}
._b{width:5.801737px;}
._6{width:7.126883px;}
._10{width:8.206797px;}
._12{width:9.608810px;}
._15{width:10.784998px;}
._a{width:11.889070px;}
._9{width:13.459378px;}
._14{width:14.844872px;}
._11{width:16.126861px;}
._4{width:19.366935px;}
._3{width:20.482864px;}
._19{width:21.499817px;}
._c{width:22.966866px;}
._d{width:23.972565px;}
._1a{width:25.005015px;}
._8{width:26.062797px;}
._1b{width:27.689475px;}
._e{width:28.834871px;}
._13{width:30.741837px;}
._27{width:32.900722px;}
._1e{width:37.220682px;}
._18{width:38.229745px;}
._16{width:40.865485px;}
._17{width:42.433923px;}
._25{width:44.529636px;}
._26{width:45.643511px;}
._1d{width:46.698761px;}
._1c{width:48.058886px;}
._1f{width:53.782891px;}
._20{width:54.933697px;}
._f{width:67.389740px;}
._23{width:82.870626px;}
._24{width:84.021537px;}
._21{width:93.958635px;}
._28{width:148.500119px;}
._29{width:149.501812px;}
._22{width:172.006698px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760048px;}
.fs1{font-size:66.240053px;}
.fs3{font-size:72.000058px;}
.fs2{font-size:95.760077px;}
.y0{bottom:0.000000px;}
.y69{bottom:3.959531px;}
.y65{bottom:3.959591px;}
.y77{bottom:3.961097px;}
.y73{bottom:3.961164px;}
.y6e{bottom:3.961248px;}
.y27{bottom:7.560960px;}
.y2a{bottom:12.960044px;}
.y68{bottom:24.659548px;}
.y76{bottom:24.661114px;}
.y72{bottom:24.661181px;}
.y6d{bottom:24.661264px;}
.y2b{bottom:25.920021px;}
.y29{bottom:41.580000px;}
.y4{bottom:43.920035px;}
.y67{bottom:45.359564px;}
.y75{bottom:45.361130px;}
.y71{bottom:45.361197px;}
.y6c{bottom:45.361281px;}
.y70{bottom:66.061214px;}
.y6b{bottom:66.106297px;}
.y10b{bottom:113.617141px;}
.y25{bottom:126.396251px;}
.y61{bottom:128.736703px;}
.yf5{bottom:132.696256px;}
.y82{bottom:134.677158px;}
.yde{bottom:142.596714px;}
.y24{bottom:157.349226px;}
.y10a{bottom:162.750130px;}
.yf4{bottom:163.829231px;}
.y60{bottom:168.690135px;}
.y47{bottom:173.729689px;}
.y81{bottom:183.810147px;}
.ycf{bottom:188.850151px;}
.yae{bottom:191.009253px;}
.y109{bottom:194.430156px;}
.yf3{bottom:194.789256px;}
.y46{bottom:204.689714px;}
.y23{bottom:206.489265px;}
.y5f{bottom:217.829724px;}
.yce{bottom:219.810176px;}
.yad{bottom:221.969278px;}
.yf2{bottom:225.929281px;}
.y80{bottom:232.770186px;}
.y45{bottom:235.829739px;}
.ybe{bottom:243.929745px;}
.y108{bottom:243.930195px;}
.y5e{bottom:248.789749px;}
.ycd{bottom:250.950201px;}
.yac{bottom:253.109302px;}
.y22{bottom:255.449304px;}
.y44{bottom:266.789763px;}
.y7f{bottom:272.910218px;}
.yf1{bottom:274.889320px;}
.ybd{bottom:274.889770px;}
.y5d{bottom:279.929774px;}
.ycc{bottom:281.910226px;}
.yab{bottom:284.069327px;}
.y107{bottom:292.890234px;}
.ydd{bottom:297.929788px;}
.y21{bottom:304.589344px;}
.ybc{bottom:306.029795px;}
.ycb{bottom:313.050250px;}
.yaa{bottom:315.209352px;}
.y43{bottom:315.929803px;}
.y9a{bottom:320.789357px;}
.y7e{bottom:321.870257px;}
.yf0{bottom:324.029359px;}
.y106{bottom:324.030259px;}
.y5c{bottom:328.889813px;}
.y20{bottom:335.549368px;}
.yca{bottom:344.055275px;}
.y99{bottom:351.974382px;}
.yef{bottom:355.034384px;}
.ybb{bottom:355.034834px;}
.ydc{bottom:360.074838px;}
.ya9{bottom:364.214391px;}
.y42{bottom:364.934842px;}
.y1f{bottom:366.734393px;}
.y7d{bottom:371.055297px;}
.y105{bottom:373.035298px;}
.yc9{bottom:375.015300px;}
.y5b{bottom:378.074852px;}
.y98{bottom:382.934406px;}
.yee{bottom:386.174409px;}
.y1e{bottom:397.694418px;}
.y7c{bottom:402.015322px;}
.yba{bottom:404.174873px;}
.y104{bottom:404.175323px;}
.y41{bottom:405.074874px;}
.yc8{bottom:406.155325px;}
.y5a{bottom:409.034877px;}
.ya8{bottom:413.354431px;}
.y97{bottom:414.074431px;}
.yed{bottom:417.134434px;}
.y1d{bottom:430.454444px;}
.yb9{bottom:435.134898px;}
.y40{bottom:436.034899px;}
.yc7{bottom:437.115350px;}
.y59{bottom:440.174902px;}
.y7b{bottom:442.155354px;}
.ya7{bottom:444.314455px;}
.y96{bottom:445.034456px;}
.y103{bottom:453.135363px;}
.y1c{bottom:454.394464px;}
.ydb{bottom:458.174917px;}
.yec{bottom:466.274473px;}
.yb8{bottom:466.274923px;}
.y3f{bottom:467.174924px;}
.yc6{bottom:468.255375px;}
.y58{bottom:471.134927px;}
.y7a{bottom:473.115378px;}
.ya6{bottom:475.454480px;}
.y95{bottom:476.174481px;}
.y1b{bottom:478.154483px;}
.y102{bottom:484.275387px;}
.yda{bottom:489.134941px;}
.yb7{bottom:497.234948px;}
.yc5{bottom:499.215399px;}
.y57{bottom:502.274952px;}
.ya5{bottom:506.414505px;}
.y94{bottom:507.134506px;}
.y3e{bottom:507.134956px;}
.y1a{bottom:510.914509px;}
.yeb{bottom:515.234512px;}
.y101{bottom:515.235412px;}
.yd9{bottom:520.274966px;}
.y79{bottom:522.255418px;}
.y56{bottom:533.234977px;}
.y19{bottom:534.674528px;}
.ya4{bottom:537.554530px;}
.y93{bottom:538.274531px;}
.y3d{bottom:538.274981px;}
.yea{bottom:546.374537px;}
.yb6{bottom:546.374987px;}
.yc4{bottom:548.355439px;}
.yd8{bottom:551.234991px;}
.y18{bottom:558.434547px;}
.y55{bottom:564.375001px;}
.y100{bottom:564.375452px;}
.y92{bottom:569.234555px;}
.y78{bottom:571.215457px;}
.ye9{bottom:577.334562px;}
.yb5{bottom:577.335012px;}
.y3c{bottom:578.235013px;}
.yc3{bottom:580.035464px;}
.y17{bottom:582.374566px;}
.yd7{bottom:582.375016px;}
.ya3{bottom:586.514569px;}
.yc2{bottom:595.335026px;}
.yff{bottom:595.335476px;}
.y91{bottom:600.374580px;}
.y16{bottom:606.165485px;}
.ye8{bottom:608.505487px;}
.yb4{bottom:608.505937px;}
.y3b{bottom:609.405938px;}
.y54{bottom:613.365941px;}
.y74{bottom:617.324400px;}
.yfe{bottom:626.505501px;}
.yc1{bottom:626.505951px;}
.ya2{bottom:635.685509px;}
.y15{bottom:638.925511px;}
.ye7{bottom:639.465512px;}
.y3a{bottom:640.365962px;}
.yd6{bottom:644.505966px;}
.y90{bottom:649.365519px;}
.yb3{bottom:657.465976px;}
.y53{bottom:662.505980px;}
.y14{bottom:662.685530px;}
.ye6{bottom:670.605536px;}
.yfd{bottom:675.465540px;}
.y39{bottom:680.505994px;}
.ya1{bottom:684.645548px;}
.y13{bottom:686.625549px;}
.yc0{bottom:688.606001px;}
.y52{bottom:693.466005px;}
.y8f{bottom:698.505559px;}
.y6f{bottom:701.204400px;}
.yfc{bottom:706.605565px;}
.yb2{bottom:706.606015px;}
.y38{bottom:711.466019px;}
.ya0{bottom:715.785573px;}
.y12{bottom:719.385576px;}
.ye5{bottom:719.565576px;}
.y51{bottom:724.606030px;}
.y8e{bottom:729.465584px;}
.yfb{bottom:737.565590px;}
.ybf{bottom:737.566040px;}
.yd5{bottom:742.606044px;}
.y11{bottom:743.145595px;}
.y9f{bottom:746.745597px;}
.y37{bottom:751.606051px;}
.y50{bottom:755.566054px;}
.y8d{bottom:760.605608px;}
.y10{bottom:766.905614px;}
.ye4{bottom:768.705615px;}
.y111{bottom:773.565619px;}
.yd4{bottom:773.566069px;}
.y9e{bottom:777.885622px;}
.yfa{bottom:786.705629px;}
.y4f{bottom:786.706079px;}
.y8c{bottom:791.565633px;}
.y36{bottom:791.566083px;}
.ye3{bottom:799.665640px;}
.yf{bottom:799.845640px;}
.y110{bottom:804.705644px;}
.yd3{bottom:804.706094px;}
.y6a{bottom:805.604400px;}
.y9d{bottom:808.845647px;}
.yf9{bottom:817.665654px;}
.yb1{bottom:817.666104px;}
.y8b{bottom:822.705658px;}
.ye{bottom:823.605659px;}
.y10f{bottom:835.665669px;}
.y4e{bottom:835.666119px;}
.y35{bottom:840.706123px;}
.yd{bottom:847.365678px;}
.ye2{bottom:848.805679px;}
.yb0{bottom:848.806129px;}
.y8a{bottom:853.665683px;}
.y9c{bottom:857.985686px;}
.yf8{bottom:866.805693px;}
.yd2{bottom:866.806143px;}
.y34{bottom:871.711147px;}
.ye1{bottom:879.810704px;}
.y89{bottom:884.850708px;}
.y4d{bottom:884.851158px;}
.y9b{bottom:889.710712px;}
.yc{bottom:896.550717px;}
.yf7{bottom:897.810718px;}
.yaf{bottom:897.811168px;}
.y33{bottom:902.851172px;}
.y66{bottom:910.051200px;}
.y88{bottom:915.810733px;}
.y4c{bottom:915.811183px;}
.ye0{bottom:919.950736px;}
.yd1{bottom:928.951193px;}
.y32{bottom:933.811197px;}
.yb{bottom:945.510756px;}
.y87{bottom:946.950758px;}
.y4b{bottom:946.951208px;}
.ydf{bottom:959.910768px;}
.yd0{bottom:959.911218px;}
.y10e{bottom:964.950772px;}
.y31{bottom:964.951222px;}
.ya{bottom:966.210773px;}
.y4a{bottom:977.911232px;}
.y64{bottom:984.751200px;}
.y9{bottom:986.910790px;}
.y86{bottom:995.910797px;}
.y30{bottom:995.911247px;}
.y8{bottom:1007.610806px;}
.y49{bottom:1009.051257px;}
.y85{bottom:1027.050822px;}
.yf6{bottom:1027.051272px;}
.y7{bottom:1037.310830px;}
.y63{bottom:1040.011282px;}
.y2f{bottom:1045.051286px;}
.y10d{bottom:1058.010846px;}
.y48{bottom:1058.011296px;}
.y84{bottom:1067.010854px;}
.y2e{bottom:1076.011311px;}
.y62{bottom:1089.151321px;}
.y6{bottom:1091.130873px;}
.y83{bottom:1098.150879px;}
.y10c{bottom:1107.150886px;}
.y2d{bottom:1107.151336px;}
.y5{bottom:1132.530906px;}
.y2c{bottom:1138.140911px;}
.y28{bottom:1168.200935px;}
.y3{bottom:1169.460936px;}
.y2{bottom:1188.360951px;}
.y26{bottom:1192.680000px;}
.y1{bottom:1205.640965px;}
.hc{height:20.700000px;}
.h7{height:21.600000px;}
.h9{height:27.000000px;}
.h8{height:40.501439px;}
.ha{height:42.952534px;}
.h2{height:43.506949px;}
.h3{height:44.149254px;}
.h5{height:48.796914px;}
.h10{height:49.992227px;}
.h6{height:51.679729px;}
.hb{height:51.750041px;}
.hd{height:62.100000px;}
.h4{height:64.899896px;}
.hf{height:82.800000px;}
.he{height:82.835280px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:43.740000px;}
.w5{width:151.769520px;}
.w7{width:241.094520px;}
.w6{width:283.350960px;}
.w3{width:649.587600px;}
.w2{width:694.407600px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.639966px;}
.x8{left:18.720615px;}
.x11{left:23.759985px;}
.x12{left:28.799989px;}
.xc{left:34.739994px;}
.x13{left:40.319998px;}
.x10{left:83.566103px;}
.x5{left:99.396720px;}
.x1{left:108.036686px;}
.xe{left:110.700777px;}
.x2{left:112.356690px;}
.x16{left:128.556103px;}
.x9{left:135.036708px;}
.x14{left:147.096718px;}
.xb{left:149.976720px;}
.xa{left:162.029680px;}
.x18{left:176.970142px;}
.x19{left:189.030151px;}
.x4{left:216.030173px;}
.xd{left:260.174520px;}
.x3{left:265.574312px;}
.xf{left:544.604400px;}
.x17{left:651.930522px;}
.x7{left:749.520000px;}
.x15{left:784.260627px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.544000pt;}
.lsd{letter-spacing:0.640001pt;}
.ls7{letter-spacing:3.328003pt;}
.ls6{letter-spacing:21.248017pt;}
.ls9{letter-spacing:25.063007pt;}
.lsc{letter-spacing:25.088020pt;}
.lsa{letter-spacing:38.327657pt;}
.ls4{letter-spacing:39.142965pt;}
.ws4{word-spacing:-16.128013pt;}
.ws2{word-spacing:-16.000013pt;}
.ws5{word-spacing:-15.744013pt;}
.ws0{word-spacing:-15.311372pt;}
.ws1{word-spacing:-14.672438pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-1.030063pt;}
._0{width:1.017655pt;}
._1{width:1.963025pt;}
._5{width:2.854512pt;}
._7{width:3.887628pt;}
._b{width:5.157100pt;}
._6{width:6.335007pt;}
._10{width:7.294931pt;}
._12{width:8.541164pt;}
._15{width:9.586665pt;}
._a{width:10.568062pt;}
._9{width:11.963892pt;}
._14{width:13.195442pt;}
._11{width:14.334987pt;}
._4{width:17.215054pt;}
._3{width:18.206991pt;}
._19{width:19.110949pt;}
._c{width:20.414992pt;}
._d{width:21.308946pt;}
._1a{width:22.226680pt;}
._8{width:23.166931pt;}
._1b{width:24.612867pt;}
._e{width:25.630997pt;}
._13{width:27.326078pt;}
._27{width:29.245086pt;}
._1e{width:33.085050pt;}
._18{width:33.981995pt;}
._16{width:36.324876pt;}
._17{width:37.719043pt;}
._25{width:39.581899pt;}
._26{width:40.572010pt;}
._1d{width:41.510010pt;}
._1c{width:42.719010pt;}
._1f{width:47.807014pt;}
._20{width:48.829953pt;}
._f{width:59.901991pt;}
._23{width:73.662779pt;}
._24{width:74.685811pt;}
._21{width:83.518787pt;}
._28{width:132.000106pt;}
._29{width:132.890499pt;}
._22{width:152.894842pt;}
.fs0{font-size:53.120042pt;}
.fs1{font-size:58.880047pt;}
.fs3{font-size:64.000051pt;}
.fs2{font-size:85.120068pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:3.519583pt;}
.y65{bottom:3.519636pt;}
.y77{bottom:3.520975pt;}
.y73{bottom:3.521035pt;}
.y6e{bottom:3.521109pt;}
.y27{bottom:6.720854pt;}
.y2a{bottom:11.520039pt;}
.y68{bottom:21.919598pt;}
.y76{bottom:21.920990pt;}
.y72{bottom:21.921050pt;}
.y6d{bottom:21.921124pt;}
.y2b{bottom:23.040018pt;}
.y29{bottom:36.960000pt;}
.y4{bottom:39.040031pt;}
.y67{bottom:40.319613pt;}
.y75{bottom:40.321005pt;}
.y71{bottom:40.321064pt;}
.y6c{bottom:40.321138pt;}
.y70{bottom:58.721079pt;}
.y6b{bottom:58.761153pt;}
.y10b{bottom:100.993014pt;}
.y25{bottom:112.352223pt;}
.y61{bottom:114.432625pt;}
.yf5{bottom:117.952228pt;}
.y82{bottom:119.713029pt;}
.yde{bottom:126.752635pt;}
.y24{bottom:139.865979pt;}
.y10a{bottom:144.666782pt;}
.yf4{bottom:145.625983pt;}
.y60{bottom:149.946787pt;}
.y47{bottom:154.426390pt;}
.y81{bottom:163.386797pt;}
.ycf{bottom:167.866801pt;}
.yae{bottom:169.786002pt;}
.y109{bottom:172.826805pt;}
.yf3{bottom:173.146005pt;}
.y46{bottom:181.946412pt;}
.y23{bottom:183.546014pt;}
.y5f{bottom:193.626422pt;}
.yce{bottom:195.386823pt;}
.yad{bottom:197.306025pt;}
.yf2{bottom:200.826027pt;}
.y80{bottom:206.906832pt;}
.y45{bottom:209.626434pt;}
.ybe{bottom:216.826440pt;}
.y108{bottom:216.826840pt;}
.y5e{bottom:221.146444pt;}
.ycd{bottom:223.066845pt;}
.yac{bottom:224.986047pt;}
.y22{bottom:227.066048pt;}
.y44{bottom:237.146456pt;}
.y7f{bottom:242.586861pt;}
.yf1{bottom:244.346062pt;}
.ybd{bottom:244.346462pt;}
.y5d{bottom:248.826466pt;}
.ycc{bottom:250.586867pt;}
.yab{bottom:252.506069pt;}
.y107{bottom:260.346875pt;}
.ydd{bottom:264.826479pt;}
.y21{bottom:270.746083pt;}
.ybc{bottom:272.026484pt;}
.ycb{bottom:278.266889pt;}
.yaa{bottom:280.186091pt;}
.y43{bottom:280.826491pt;}
.y9a{bottom:285.146095pt;}
.y7e{bottom:286.106896pt;}
.yf0{bottom:288.026097pt;}
.y106{bottom:288.026897pt;}
.y5c{bottom:292.346501pt;}
.y20{bottom:298.266105pt;}
.yca{bottom:305.826911pt;}
.y99{bottom:312.866117pt;}
.yef{bottom:315.586119pt;}
.ybb{bottom:315.586519pt;}
.ydc{bottom:320.066523pt;}
.ya9{bottom:323.746126pt;}
.y42{bottom:324.386526pt;}
.y1f{bottom:325.986127pt;}
.y7d{bottom:329.826931pt;}
.y105{bottom:331.586932pt;}
.yc9{bottom:333.346933pt;}
.y5b{bottom:336.066536pt;}
.y98{bottom:340.386139pt;}
.yee{bottom:343.266141pt;}
.y1e{bottom:353.506149pt;}
.y7c{bottom:357.346953pt;}
.yba{bottom:359.266554pt;}
.y104{bottom:359.266954pt;}
.y41{bottom:360.066555pt;}
.yc8{bottom:361.026955pt;}
.y5a{bottom:363.586558pt;}
.ya8{bottom:367.426161pt;}
.y97{bottom:368.066161pt;}
.yed{bottom:370.786163pt;}
.y1d{bottom:382.626173pt;}
.yb9{bottom:386.786576pt;}
.y40{bottom:387.586577pt;}
.yc7{bottom:388.546978pt;}
.y59{bottom:391.266580pt;}
.y7b{bottom:393.026981pt;}
.ya7{bottom:394.946183pt;}
.y96{bottom:395.586183pt;}
.y103{bottom:402.786989pt;}
.y1c{bottom:403.906190pt;}
.ydb{bottom:407.266592pt;}
.yec{bottom:414.466198pt;}
.yb8{bottom:414.466598pt;}
.y3f{bottom:415.266599pt;}
.yc6{bottom:416.227000pt;}
.y58{bottom:418.786602pt;}
.y7a{bottom:420.547003pt;}
.ya6{bottom:422.626205pt;}
.y95{bottom:423.266205pt;}
.y1b{bottom:425.026207pt;}
.y102{bottom:430.467011pt;}
.yda{bottom:434.786614pt;}
.yb7{bottom:441.986620pt;}
.yc5{bottom:443.747022pt;}
.y57{bottom:446.466624pt;}
.ya5{bottom:450.146227pt;}
.y94{bottom:450.786227pt;}
.y3e{bottom:450.786627pt;}
.y1a{bottom:454.146230pt;}
.yeb{bottom:457.986233pt;}
.y101{bottom:457.987033pt;}
.yd9{bottom:462.466637pt;}
.y79{bottom:464.227038pt;}
.y56{bottom:473.986646pt;}
.y19{bottom:475.266247pt;}
.ya4{bottom:477.826249pt;}
.y93{bottom:478.466249pt;}
.y3d{bottom:478.466649pt;}
.yea{bottom:485.666255pt;}
.yb6{bottom:485.666655pt;}
.yc4{bottom:487.427057pt;}
.yd8{bottom:489.986659pt;}
.y18{bottom:496.386264pt;}
.y55{bottom:501.666668pt;}
.y100{bottom:501.667068pt;}
.y92{bottom:505.986271pt;}
.y78{bottom:507.747073pt;}
.ye9{bottom:513.186277pt;}
.yb5{bottom:513.186677pt;}
.y3c{bottom:513.986678pt;}
.yc3{bottom:515.587079pt;}
.y17{bottom:517.666281pt;}
.yd7{bottom:517.666681pt;}
.ya3{bottom:521.346284pt;}
.yc2{bottom:529.186690pt;}
.yff{bottom:529.187090pt;}
.y91{bottom:533.666294pt;}
.y16{bottom:538.813764pt;}
.ye8{bottom:540.893766pt;}
.yb4{bottom:540.894166pt;}
.y3b{bottom:541.694167pt;}
.y54{bottom:545.214170pt;}
.y74{bottom:548.732800pt;}
.yfe{bottom:556.893779pt;}
.yc1{bottom:556.894179pt;}
.ya2{bottom:565.053785pt;}
.y15{bottom:567.933788pt;}
.ye7{bottom:568.413788pt;}
.y3a{bottom:569.214189pt;}
.yd6{bottom:572.894192pt;}
.y90{bottom:577.213795pt;}
.yb3{bottom:584.414201pt;}
.y53{bottom:588.894204pt;}
.y14{bottom:589.053805pt;}
.ye6{bottom:596.093810pt;}
.yfd{bottom:600.413814pt;}
.y39{bottom:604.894217pt;}
.ya1{bottom:608.573820pt;}
.y13{bottom:610.333822pt;}
.yc0{bottom:612.094223pt;}
.y52{bottom:616.414226pt;}
.y8f{bottom:620.893830pt;}
.y6f{bottom:623.292800pt;}
.yfc{bottom:628.093836pt;}
.yb2{bottom:628.094236pt;}
.y38{bottom:632.414239pt;}
.ya0{bottom:636.253842pt;}
.y12{bottom:639.453845pt;}
.ye5{bottom:639.613845pt;}
.y51{bottom:644.094249pt;}
.y8e{bottom:648.413852pt;}
.yfb{bottom:655.613858pt;}
.ybf{bottom:655.614258pt;}
.yd5{bottom:660.094261pt;}
.y11{bottom:660.573862pt;}
.y9f{bottom:663.773864pt;}
.y37{bottom:668.094268pt;}
.y50{bottom:671.614271pt;}
.y8d{bottom:676.093874pt;}
.y10{bottom:681.693879pt;}
.ye4{bottom:683.293880pt;}
.y111{bottom:687.613883pt;}
.yd4{bottom:687.614283pt;}
.y9e{bottom:691.453886pt;}
.yfa{bottom:699.293893pt;}
.y4f{bottom:699.294293pt;}
.y8c{bottom:703.613896pt;}
.y36{bottom:703.614296pt;}
.ye3{bottom:710.813902pt;}
.yf{bottom:710.973902pt;}
.y110{bottom:715.293906pt;}
.yd3{bottom:715.294306pt;}
.y6a{bottom:716.092800pt;}
.y9d{bottom:718.973909pt;}
.yf9{bottom:726.813915pt;}
.yb1{bottom:726.814315pt;}
.y8b{bottom:731.293918pt;}
.ye{bottom:732.093919pt;}
.y10f{bottom:742.813928pt;}
.y4e{bottom:742.814328pt;}
.y35{bottom:747.294331pt;}
.yd{bottom:753.213936pt;}
.ye2{bottom:754.493937pt;}
.yb0{bottom:754.494337pt;}
.y8a{bottom:758.813940pt;}
.y9c{bottom:762.653943pt;}
.yf8{bottom:770.493950pt;}
.yd2{bottom:770.494350pt;}
.y34{bottom:774.854353pt;}
.ye1{bottom:782.053959pt;}
.y89{bottom:786.533963pt;}
.y4d{bottom:786.534363pt;}
.y9b{bottom:790.853966pt;}
.yc{bottom:796.933971pt;}
.yf7{bottom:798.053972pt;}
.yaf{bottom:798.054372pt;}
.y33{bottom:802.534375pt;}
.y66{bottom:808.934400pt;}
.y88{bottom:814.053985pt;}
.y4c{bottom:814.054385pt;}
.ye0{bottom:817.733988pt;}
.yd1{bottom:825.734394pt;}
.y32{bottom:830.054397pt;}
.yb{bottom:840.454006pt;}
.y87{bottom:841.734007pt;}
.y4b{bottom:841.734407pt;}
.ydf{bottom:853.254016pt;}
.yd0{bottom:853.254416pt;}
.y10e{bottom:857.734020pt;}
.y31{bottom:857.734420pt;}
.ya{bottom:858.854020pt;}
.y4a{bottom:869.254429pt;}
.y64{bottom:875.334400pt;}
.y9{bottom:877.254035pt;}
.y86{bottom:885.254042pt;}
.y30{bottom:885.254442pt;}
.y8{bottom:895.654050pt;}
.y49{bottom:896.934451pt;}
.y85{bottom:912.934064pt;}
.yf6{bottom:912.934464pt;}
.y7{bottom:922.054071pt;}
.y63{bottom:924.454473pt;}
.y2f{bottom:928.934476pt;}
.y10d{bottom:940.454086pt;}
.y48{bottom:940.454486pt;}
.y84{bottom:948.454092pt;}
.y2e{bottom:956.454498pt;}
.y62{bottom:968.134508pt;}
.y6{bottom:969.894109pt;}
.y83{bottom:976.134114pt;}
.y10c{bottom:984.134121pt;}
.y2d{bottom:984.134521pt;}
.y5{bottom:1006.694139pt;}
.y2c{bottom:1011.680809pt;}
.y28{bottom:1038.400831pt;}
.y3{bottom:1039.520832pt;}
.y2{bottom:1056.320845pt;}
.y26{bottom:1060.160000pt;}
.y1{bottom:1071.680857pt;}
.hc{height:18.400000pt;}
.h7{height:19.200000pt;}
.h9{height:24.000000pt;}
.h8{height:36.001279pt;}
.ha{height:38.180031pt;}
.h2{height:38.672843pt;}
.h3{height:39.243781pt;}
.h5{height:43.375035pt;}
.h10{height:44.437536pt;}
.h6{height:45.937537pt;}
.hb{height:46.000037pt;}
.hd{height:55.200000pt;}
.h4{height:57.688796pt;}
.hf{height:73.600000pt;}
.he{height:73.631360pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:38.880000pt;}
.w5{width:134.906240pt;}
.w7{width:214.306240pt;}
.w6{width:251.867520pt;}
.w3{width:577.411200pt;}
.w2{width:617.251200pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.679970pt;}
.x8{left:16.640546pt;}
.x11{left:21.119987pt;}
.x12{left:25.599990pt;}
.xc{left:30.879994pt;}
.x13{left:35.839998pt;}
.x10{left:74.280980pt;}
.x5{left:88.352640pt;}
.x1{left:96.032610pt;}
.xe{left:98.400690pt;}
.x2{left:99.872613pt;}
.x16{left:114.272091pt;}
.x9{left:120.032629pt;}
.x14{left:130.752638pt;}
.xb{left:133.312640pt;}
.xa{left:144.026382pt;}
.x18{left:157.306793pt;}
.x19{left:168.026801pt;}
.x4{left:192.026820pt;}
.xd{left:231.266240pt;}
.x3{left:236.066056pt;}
.xf{left:484.092800pt;}
.x17{left:579.493797pt;}
.x7{left:666.240000pt;}
.x15{left:697.120558pt;}
}




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