
    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_7d924c6e615f700efb57fa97.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_40ca9f489dba0b66746d7f0d.woff2')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_8b3602464da3eff675dcfd59.woff2')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_348b8c78bb8ad793009c5cce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.706055;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);}
.v2{vertical-align:-24.129369px;}
.v3{vertical-align:-22.729865px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.275838px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:197.667782px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-10.781879px;}
.ws2{word-spacing:-8.984899px;}
.ws1{word-spacing:-8.125008px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-11.123185px;}
._12{margin-left:-7.967081px;}
._0{margin-left:-6.778957px;}
._10{margin-left:-5.018174px;}
._3{margin-left:-3.432986px;}
._1{margin-left:-1.546204px;}
._7{width:4.492764px;}
._6{width:8.984827px;}
._5{width:13.477106px;}
._4{width:22.462230px;}
._a{width:26.954666px;}
._11{width:28.007584px;}
._d{width:31.447084px;}
._c{width:35.939417px;}
._b{width:40.432037px;}
._9{width:49.417044px;}
._8{width:53.909350px;}
._e{width:58.401719px;}
._15{width:152.743254px;}
._f{width:197.667782px;}
._14{width:234.372937px;}
._13{width:238.099828px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.939597px;}
.fs3{font-size:43.127518px;}
.fs5{font-size:59.899326px;}
.fs0{font-size:65.889262px;}
.fs2{font-size:71.879193px;}
.fs1{font-size:83.859056px;}
.y0{bottom:0.000000px;}
.y60{bottom:0.244703px;}
.y9d{bottom:0.244712px;}
.y2{bottom:4.118067px;}
.y64{bottom:16.987806px;}
.y2d{bottom:16.988172px;}
.ya0{bottom:16.988537px;}
.ycd{bottom:37.095612px;}
.y63{bottom:37.095979px;}
.y2c{bottom:37.096071px;}
.y9e{bottom:58.720634px;}
.y81{bottom:58.720643px;}
.y61{bottom:58.720838px;}
.y28{bottom:110.119979px;}
.y9c{bottom:119.188598px;}
.y5f{bottom:124.478778px;}
.y80{bottom:125.243979px;}
.y27{bottom:133.876438px;}
.y5e{bottom:145.142290px;}
.y2a{bottom:145.619398px;}
.y7f{bottom:147.543165px;}
.ycc{bottom:157.454118px;}
.y5d{bottom:165.805804px;}
.y29{bottom:168.521457px;}
.y7e{bottom:169.842719px;}
.ycb{bottom:179.753308px;}
.y5c{bottom:186.469317px;}
.y7d{bottom:192.141915px;}
.yca{bottom:202.052494px;}
.y5b{bottom:207.132831px;}
.y7c{bottom:214.441478px;}
.y26{bottom:216.643100px;}
.yc9{bottom:224.352425px;}
.y5a{bottom:227.796343px;}
.y7b{bottom:236.740664px;}
.y25{bottom:238.942474px;}
.yc8{bottom:246.651621px;}
.y59{bottom:248.459857px;}
.y7a{bottom:259.040218px;}
.y24{bottom:261.241841px;}
.yc7{bottom:268.950806px;}
.y58{bottom:269.123370px;}
.y79{bottom:281.339413px;}
.y23{bottom:283.541207px;}
.y57{bottom:289.786883px;}
.yc6{bottom:291.250370px;}
.y22{bottom:305.840547px;}
.y56{bottom:310.450397px;}
.yc5{bottom:313.549924px;}
.y78{bottom:321.608773px;}
.y21{bottom:328.139921px;}
.y55{bottom:331.113913px;}
.yc4{bottom:335.849119px;}
.y77{bottom:343.907960px;}
.y20{bottom:350.439296px;}
.y54{bottom:351.777429px;}
.yc3{bottom:358.148306px;}
.y76{bottom:366.207521px;}
.yee{bottom:366.328173px;}
.y53{bottom:372.440945px;}
.y1f{bottom:372.738670px;}
.yc2{bottom:380.447868px;}
.y75{bottom:388.506708px;}
.yed{bottom:388.627350px;}
.y52{bottom:393.104447px;}
.y1e{bottom:395.038044px;}
.yc1{bottom:402.747429px;}
.y74{bottom:410.806259px;}
.yec{bottom:410.926546px;}
.y51{bottom:413.767961px;}
.y1d{bottom:417.337418px;}
.yc0{bottom:425.046608px;}
.yeb{bottom:433.225731px;}
.y50{bottom:434.431474px;}
.y1c{bottom:439.636792px;}
.ybf{bottom:447.345802px;}
.y4f{bottom:455.094987px;}
.yea{bottom:455.524930px;}
.y1b{bottom:461.936166px;}
.ybe{bottom:469.645356px;}
.y4e{bottom:475.758500px;}
.ye9{bottom:477.824849px;}
.y1a{bottom:484.235507px;}
.ybd{bottom:491.944923px;}
.y4d{bottom:496.422014px;}
.ye8{bottom:500.124044px;}
.y19{bottom:506.534881px;}
.ybc{bottom:514.244110px;}
.y4c{bottom:517.085527px;}
.ye7{bottom:522.423246px;}
.y18{bottom:528.834255px;}
.ybb{bottom:536.543304px;}
.y4b{bottom:537.749043px;}
.y9b{bottom:540.873437px;}
.ye6{bottom:544.723162px;}
.y17{bottom:551.133629px;}
.y4a{bottom:558.412559px;}
.yba{bottom:558.842859px;}
.y9a{bottom:563.172624px;}
.ye5{bottom:567.022345px;}
.y16{bottom:573.433004px;}
.y49{bottom:579.076075px;}
.yb9{bottom:581.142422px;}
.y99{bottom:585.472177px;}
.ye4{bottom:589.321551px;}
.y15{bottom:595.732378px;}
.y48{bottom:599.739581px;}
.yb8{bottom:603.441609px;}
.y98{bottom:607.771383px;}
.ye3{bottom:611.620734px;}
.y14{bottom:618.031752px;}
.y47{bottom:620.403094px;}
.yb7{bottom:625.740803px;}
.y97{bottom:630.070925px;}
.ye2{bottom:633.919924px;}
.y13{bottom:640.331126px;}
.y46{bottom:641.066607px;}
.yb6{bottom:648.040358px;}
.y96{bottom:652.370108px;}
.ye1{bottom:656.219864px;}
.y45{bottom:661.730120px;}
.y12{bottom:662.630500px;}
.yb5{bottom:670.339911px;}
.y95{bottom:674.669674px;}
.ye0{bottom:678.519042px;}
.y44{bottom:682.393634px;}
.y11{bottom:684.929874px;}
.yb4{bottom:692.639101px;}
.y94{bottom:696.968868px;}
.ydf{bottom:700.818238px;}
.y43{bottom:703.057147px;}
.y10{bottom:707.229253px;}
.yb3{bottom:714.938287px;}
.y93{bottom:719.268422px;}
.yde{bottom:723.118160px;}
.y42{bottom:723.720660px;}
.yf{bottom:729.528628px;}
.yb2{bottom:737.237859px;}
.y92{bottom:741.567612px;}
.y41{bottom:744.384174px;}
.ydd{bottom:745.417351px;}
.ye{bottom:751.828002px;}
.yb1{bottom:759.537414px;}
.y91{bottom:763.867176px;}
.y40{bottom:765.047685px;}
.ydc{bottom:767.716541px;}
.yd{bottom:774.127378px;}
.yb0{bottom:781.836599px;}
.y3f{bottom:785.711199px;}
.y90{bottom:786.166370px;}
.ydb{bottom:790.015736px;}
.yc{bottom:796.426752px;}
.yaf{bottom:804.135798px;}
.y3e{bottom:806.374712px;}
.y8f{bottom:808.465925px;}
.yda{bottom:810.679257px;}
.yb{bottom:818.726127px;}
.yae{bottom:826.435358px;}
.y3d{bottom:827.038226px;}
.y8e{bottom:830.765111px;}
.yd9{bottom:831.342771px;}
.ya{bottom:841.025501px;}
.y3c{bottom:847.701739px;}
.yad{bottom:848.734912px;}
.y73{bottom:849.337784px;}
.yd8{bottom:852.006284px;}
.y8d{bottom:853.064675px;}
.y9{bottom:863.324876px;}
.y3b{bottom:868.365255px;}
.y72{bottom:870.001300px;}
.yac{bottom:871.034107px;}
.yd7{bottom:872.669785px;}
.y8c{bottom:875.363869px;}
.y8{bottom:885.624288px;}
.y3a{bottom:889.028771px;}
.y71{bottom:890.664814px;}
.yab{bottom:893.333297px;}
.yd6{bottom:893.333301px;}
.y8b{bottom:897.663424px;}
.y7{bottom:907.923669px;}
.y39{bottom:909.692283px;}
.y70{bottom:911.328328px;}
.yd5{bottom:915.632488px;}
.yaa{bottom:915.632861px;}
.y8a{bottom:919.962626px;}
.y6{bottom:930.223036px;}
.y38{bottom:930.355797px;}
.y6f{bottom:931.991841px;}
.ya9{bottom:937.932415px;}
.yd4{bottom:937.932429px;}
.y89{bottom:942.262172px;}
.y37{bottom:951.019310px;}
.y6e{bottom:952.655355px;}
.yd3{bottom:960.231607px;}
.ya8{bottom:960.231611px;}
.y5{bottom:965.422737px;}
.y36{bottom:971.682824px;}
.y6d{bottom:973.318867px;}
.ya7{bottom:982.530796px;}
.yd2{bottom:982.530802px;}
.y88{bottom:982.531161px;}
.y4{bottom:991.438698px;}
.y35{bottom:992.346336px;}
.y6c{bottom:993.982381px;}
.ya6{bottom:1004.830360px;}
.y87{bottom:1004.830725px;}
.y34{bottom:1013.009850px;}
.y6b{bottom:1014.645894px;}
.y3{bottom:1017.454634px;}
.ya5{bottom:1027.129914px;}
.yd1{bottom:1027.129916px;}
.y86{bottom:1027.129919px;}
.y33{bottom:1033.673363px;}
.y6a{bottom:1035.309406px;}
.y1{bottom:1037.027208px;}
.yd0{bottom:1049.429106px;}
.ya4{bottom:1049.429109px;}
.y85{bottom:1049.429474px;}
.y32{bottom:1054.336876px;}
.y69{bottom:1055.972919px;}
.ya3{bottom:1071.728301px;}
.y84{bottom:1071.728660px;}
.y31{bottom:1075.000390px;}
.y68{bottom:1076.636433px;}
.ycf{bottom:1094.027493px;}
.ya2{bottom:1094.027859px;}
.y83{bottom:1094.028224px;}
.y30{bottom:1095.663903px;}
.y67{bottom:1097.299946px;}
.yce{bottom:1116.327412px;}
.y2f{bottom:1116.327416px;}
.y82{bottom:1116.327418px;}
.y66{bottom:1117.963459px;}
.ya1{bottom:1138.626607px;}
.y2e{bottom:1138.626790px;}
.y65{bottom:1138.626973px;}
.y9f{bottom:1155.403099px;}
.y2b{bottom:1155.403281px;}
.y62{bottom:1155.403464px;}
.h7{height:29.569441px;}
.h9{height:32.219287px;}
.h2{height:43.915451px;}
.h8{height:53.698810px;}
.h4{height:63.841920px;}
.h6{height:64.438574px;}
.h5{height:65.580992px;}
.h3{height:74.482238px;}
.hb{height:106.096466px;}
.ha{height:106.096648px;}
.hc{height:106.096831px;}
.h1{height:224.472722px;}
.h0{height:1261.500000px;}
.w1{width:891.751243px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:127.360950px;}
.x3{left:158.248692px;}
.x8{left:170.039221px;}
.x2{left:176.469870px;}
.x9{left:181.270345px;}
.x6{left:251.782065px;}
.x4{left:276.978336px;}
.xd{left:290.257438px;}
.xc{left:313.224210px;}
.xa{left:317.431494px;}
.xf{left:339.928840px;}
.x7{left:445.707619px;}
.xb{left:611.928254px;}
.xe{left:629.898052px;}
.x1{left:634.952058px;}
@media print{
.v2{vertical-align:-21.448328pt;}
.v3{vertical-align:-20.204324pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.245190pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:175.704695pt;}
.ws0{word-spacing:-9.583893pt;}
.ws2{word-spacing:-7.986577pt;}
.ws1{word-spacing:-7.222230pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-9.887276pt;}
._12{margin-left:-7.081850pt;}
._0{margin-left:-6.025740pt;}
._10{margin-left:-4.460599pt;}
._3{margin-left:-3.051543pt;}
._1{margin-left:-1.374404pt;}
._7{width:3.993568pt;}
._6{width:7.986513pt;}
._5{width:11.979650pt;}
._4{width:19.966427pt;}
._a{width:23.959703pt;}
._11{width:24.895630pt;}
._d{width:27.952964pt;}
._c{width:31.946148pt;}
._b{width:35.939589pt;}
._9{width:43.926262pt;}
._8{width:47.919422pt;}
._e{width:51.912639pt;}
._15{width:135.771782pt;}
._f{width:175.704695pt;}
._14{width:208.331499pt;}
._13{width:211.644292pt;}
.fs4{font-size:31.946308pt;}
.fs3{font-size:38.335571pt;}
.fs5{font-size:53.243846pt;}
.fs0{font-size:58.568233pt;}
.fs2{font-size:63.892616pt;}
.fs1{font-size:74.541383pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:0.217514pt;}
.y9d{bottom:0.217522pt;}
.y2{bottom:3.660504pt;}
.y64{bottom:15.100272pt;}
.y2d{bottom:15.100597pt;}
.ya0{bottom:15.100922pt;}
.ycd{bottom:32.973878pt;}
.y63{bottom:32.974204pt;}
.y2c{bottom:32.974285pt;}
.y9e{bottom:52.196119pt;}
.y81{bottom:52.196127pt;}
.y61{bottom:52.196300pt;}
.y28{bottom:97.884425pt;}
.y9c{bottom:105.945421pt;}
.y5f{bottom:110.647802pt;}
.y80{bottom:111.327981pt;}
.y27{bottom:119.001279pt;}
.y5e{bottom:129.015369pt;}
.y2a{bottom:129.439465pt;}
.y7f{bottom:131.149480pt;}
.ycc{bottom:139.959216pt;}
.y5d{bottom:147.382937pt;}
.y29{bottom:149.796850pt;}
.y7e{bottom:150.971306pt;}
.ycb{bottom:159.780718pt;}
.y5c{bottom:165.750504pt;}
.y7d{bottom:170.792813pt;}
.yca{bottom:179.602217pt;}
.y5b{bottom:184.118072pt;}
.y7c{bottom:190.614647pt;}
.y26{bottom:192.571644pt;}
.yc9{bottom:199.424378pt;}
.y5a{bottom:202.485638pt;}
.y7b{bottom:210.436146pt;}
.y25{bottom:212.393311pt;}
.yc8{bottom:219.245885pt;}
.y59{bottom:220.853206pt;}
.y7a{bottom:230.257972pt;}
.y24{bottom:232.214970pt;}
.yc7{bottom:239.067384pt;}
.y58{bottom:239.220773pt;}
.y79{bottom:250.079478pt;}
.y23{bottom:252.036628pt;}
.y57{bottom:257.588341pt;}
.yc6{bottom:258.889218pt;}
.y22{bottom:271.858264pt;}
.y56{bottom:275.955908pt;}
.yc5{bottom:278.711044pt;}
.y78{bottom:285.874465pt;}
.y21{bottom:291.679930pt;}
.y55{bottom:294.323478pt;}
.yc4{bottom:298.532551pt;}
.y77{bottom:305.695964pt;}
.y20{bottom:311.501596pt;}
.y54{bottom:312.691048pt;}
.yc3{bottom:318.354050pt;}
.y76{bottom:325.517797pt;}
.yee{bottom:325.625042pt;}
.y53{bottom:331.058618pt;}
.y1f{bottom:331.323262pt;}
.yc2{bottom:338.175882pt;}
.y75{bottom:345.339296pt;}
.yed{bottom:345.446533pt;}
.y52{bottom:349.426175pt;}
.y1e{bottom:351.144928pt;}
.yc1{bottom:357.997715pt;}
.y74{bottom:365.161119pt;}
.yec{bottom:365.268041pt;}
.y51{bottom:367.793743pt;}
.y1d{bottom:370.966594pt;}
.yc0{bottom:377.819207pt;}
.yeb{bottom:385.089539pt;}
.y50{bottom:386.161310pt;}
.y1c{bottom:390.788260pt;}
.ybf{bottom:397.640713pt;}
.y4f{bottom:404.528878pt;}
.yea{bottom:404.911049pt;}
.y1b{bottom:410.609926pt;}
.ybe{bottom:417.462539pt;}
.y4e{bottom:422.896445pt;}
.ye9{bottom:424.733199pt;}
.y1a{bottom:430.431562pt;}
.ybd{bottom:437.284376pt;}
.y4d{bottom:441.264012pt;}
.ye8{bottom:444.554706pt;}
.y19{bottom:450.253228pt;}
.ybc{bottom:457.105875pt;}
.y4c{bottom:459.631580pt;}
.ye7{bottom:464.376219pt;}
.y18{bottom:470.074894pt;}
.ybb{bottom:476.927382pt;}
.y4b{bottom:477.999149pt;}
.y9b{bottom:480.776388pt;}
.ye6{bottom:484.198366pt;}
.y17{bottom:489.896559pt;}
.y4a{bottom:496.366719pt;}
.yba{bottom:496.749208pt;}
.y9a{bottom:500.597888pt;}
.ye5{bottom:504.019863pt;}
.y16{bottom:509.718225pt;}
.y49{bottom:514.734289pt;}
.yb9{bottom:516.571042pt;}
.y99{bottom:520.419713pt;}
.ye4{bottom:523.841379pt;}
.y15{bottom:529.539891pt;}
.y48{bottom:533.101850pt;}
.yb8{bottom:536.392541pt;}
.y98{bottom:540.241229pt;}
.ye3{bottom:543.662875pt;}
.y14{bottom:549.361557pt;}
.y47{bottom:551.469417pt;}
.yb7{bottom:556.214047pt;}
.y97{bottom:560.063045pt;}
.ye2{bottom:563.484377pt;}
.y13{bottom:569.183223pt;}
.y46{bottom:569.836984pt;}
.yb6{bottom:576.035873pt;}
.y96{bottom:579.884541pt;}
.ye1{bottom:583.306546pt;}
.y45{bottom:588.204551pt;}
.y12{bottom:589.004889pt;}
.yb5{bottom:595.857698pt;}
.y95{bottom:599.706377pt;}
.ye0{bottom:603.128037pt;}
.y44{bottom:606.572119pt;}
.y11{bottom:608.826555pt;}
.yb4{bottom:615.679200pt;}
.y94{bottom:619.527883pt;}
.ydf{bottom:622.949545pt;}
.y43{bottom:624.939686pt;}
.y10{bottom:628.648225pt;}
.yb3{bottom:635.500700pt;}
.y93{bottom:639.349708pt;}
.yde{bottom:642.771698pt;}
.y42{bottom:643.307254pt;}
.yf{bottom:648.469892pt;}
.yb2{bottom:655.322541pt;}
.y92{bottom:659.171211pt;}
.y41{bottom:661.674821pt;}
.ydd{bottom:662.593201pt;}
.ye{bottom:668.291558pt;}
.yb1{bottom:675.144368pt;}
.y91{bottom:678.993045pt;}
.y40{bottom:680.042387pt;}
.ydc{bottom:682.414703pt;}
.yd{bottom:688.113225pt;}
.yb0{bottom:694.965866pt;}
.y3f{bottom:698.409955pt;}
.y90{bottom:698.814551pt;}
.ydb{bottom:702.236210pt;}
.yc{bottom:707.934891pt;}
.yaf{bottom:714.787376pt;}
.y3e{bottom:716.777522pt;}
.y8f{bottom:718.636378pt;}
.yda{bottom:720.603784pt;}
.yb{bottom:727.756558pt;}
.yae{bottom:734.609207pt;}
.y3d{bottom:735.145089pt;}
.y8e{bottom:738.457876pt;}
.yd9{bottom:738.971352pt;}
.ya{bottom:747.578223pt;}
.y3c{bottom:753.512657pt;}
.yad{bottom:754.431033pt;}
.y73{bottom:754.966919pt;}
.yd8{bottom:757.338919pt;}
.y8d{bottom:758.279711pt;}
.y9{bottom:767.399890pt;}
.y3b{bottom:771.880226pt;}
.y72{bottom:773.334489pt;}
.yac{bottom:774.252540pt;}
.yd7{bottom:775.706476pt;}
.y8c{bottom:778.101217pt;}
.y8{bottom:787.221589pt;}
.y3a{bottom:790.247796pt;}
.y71{bottom:791.702057pt;}
.yab{bottom:794.074042pt;}
.yd6{bottom:794.074046pt;}
.y8b{bottom:797.923043pt;}
.y7{bottom:807.043262pt;}
.y39{bottom:808.615363pt;}
.y70{bottom:810.069625pt;}
.yd5{bottom:813.895545pt;}
.yaa{bottom:813.895877pt;}
.y8a{bottom:817.744556pt;}
.y6{bottom:826.864921pt;}
.y38{bottom:826.982931pt;}
.y6f{bottom:828.437192pt;}
.ya9{bottom:833.717702pt;}
.yd4{bottom:833.717715pt;}
.y89{bottom:837.566375pt;}
.y37{bottom:845.350498pt;}
.y6e{bottom:846.804760pt;}
.yd3{bottom:853.539206pt;}
.ya8{bottom:853.539210pt;}
.y5{bottom:858.153544pt;}
.y36{bottom:863.718065pt;}
.y6d{bottom:865.172327pt;}
.ya7{bottom:873.360708pt;}
.yd2{bottom:873.360713pt;}
.y88{bottom:873.361032pt;}
.y4{bottom:881.278843pt;}
.y35{bottom:882.085632pt;}
.y6c{bottom:883.539894pt;}
.ya6{bottom:893.182542pt;}
.y87{bottom:893.182867pt;}
.y34{bottom:900.453200pt;}
.y6b{bottom:901.907462pt;}
.y3{bottom:904.404119pt;}
.ya5{bottom:913.004368pt;}
.yd1{bottom:913.004369pt;}
.y86{bottom:913.004373pt;}
.y33{bottom:918.820767pt;}
.y6a{bottom:920.275028pt;}
.y1{bottom:921.801963pt;}
.yd0{bottom:932.825872pt;}
.ya4{bottom:932.825875pt;}
.y85{bottom:932.826199pt;}
.y32{bottom:937.188335pt;}
.y69{bottom:938.642595pt;}
.ya3{bottom:952.647378pt;}
.y84{bottom:952.647698pt;}
.y31{bottom:955.555902pt;}
.y68{bottom:957.010163pt;}
.ycf{bottom:972.468883pt;}
.ya2{bottom:972.469208pt;}
.y83{bottom:972.469532pt;}
.y30{bottom:973.923469pt;}
.y67{bottom:975.377729pt;}
.yce{bottom:992.291033pt;}
.y2f{bottom:992.291036pt;}
.y82{bottom:992.291038pt;}
.y66{bottom:993.745297pt;}
.ya1{bottom:1012.112540pt;}
.y2e{bottom:1012.112702pt;}
.y65{bottom:1012.112865pt;}
.y9f{bottom:1027.024977pt;}
.y2b{bottom:1027.025139pt;}
.y62{bottom:1027.025301pt;}
.h7{height:26.283948pt;}
.h9{height:28.639366pt;}
.h2{height:39.035956pt;}
.h8{height:47.732276pt;}
.h4{height:56.748374pt;}
.h6{height:57.278732pt;}
.h5{height:58.294215pt;}
.h3{height:66.206433pt;}
.hb{height:94.307970pt;}
.ha{height:94.308132pt;}
.hc{height:94.308294pt;}
.h1{height:199.531308pt;}
.h0{height:1121.333333pt;}
.w1{width:792.667771pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:113.209734pt;}
.x3{left:140.665504pt;}
.x8{left:151.145974pt;}
.x2{left:156.862106pt;}
.x9{left:161.129196pt;}
.x6{left:223.806280pt;}
.x4{left:246.202965pt;}
.xd{left:258.006612pt;}
.xc{left:278.421520pt;}
.xa{left:282.161328pt;}
.xf{left:302.158968pt;}
.x7{left:396.184551pt;}
.xb{left:543.936226pt;}
.xe{left:559.909380pt;}
.x1{left:564.401830pt;}
}




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