
    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_cf91e43ba4591ad207872579.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.140861;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_b4f67d962c9e294891dd4d58.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_a7079a3146dd920daac0ed34.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.894000;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_94b9d1d439eea27fad544898.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_4bd4725af0e779bdf2e4e222.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_7e28e34ba6aa6750b87fad9d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.947000;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_e7ac5a8c81cfa32d16872477.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.981000;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_84707d4b461e412b31eb64f9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f649df8eecdb1a590c5ed622.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_679a5e2450b903f5d48276be.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.831333;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:ffb;src:url('chunks/assets/font_2e7aedd6f5052a15b61aed4d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.933105;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:ffc;src:url('chunks/assets/font_ea328101ac1873ba7104d11a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_469b7f78fdc621a2578643a1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.989000;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;}
.m5{transform:matrix(0.249657,0.013080,-0.013322,0.249645,0,0);-ms-transform:matrix(0.249657,0.013080,-0.013322,0.249645,0,0);-webkit-transform:matrix(0.249657,0.013080,-0.013322,0.249645,0,0);}
.m6{transform:matrix(0.249815,-0.009621,0.009433,0.249822,0,0);-ms-transform:matrix(0.249815,-0.009621,0.009433,0.249822,0,0);-webkit-transform:matrix(0.249815,-0.009621,0.009433,0.249822,0,0);}
.m7{transform:matrix(0.249815,-0.009619,0.009480,0.249820,0,0);-ms-transform:matrix(0.249815,-0.009619,0.009480,0.249820,0,0);-webkit-transform:matrix(0.249815,-0.009619,0.009480,0.249820,0,0);}
.m4{transform:matrix(0.249815,-0.009608,0.009543,0.249818,0,0);-ms-transform:matrix(0.249815,-0.009608,0.009543,0.249818,0,0);-webkit-transform:matrix(0.249815,-0.009608,0.009543,0.249818,0,0);}
.m3{transform:matrix(0.249815,-0.009603,0.009511,0.249819,0,0);-ms-transform:matrix(0.249815,-0.009603,0.009511,0.249819,0,0);-webkit-transform:matrix(0.249815,-0.009603,0.009511,0.249819,0,0);}
.m2{transform:matrix(0.249816,-0.009595,0.009498,0.249820,0,0);-ms-transform:matrix(0.249816,-0.009595,0.009498,0.249820,0,0);-webkit-transform:matrix(0.249816,-0.009595,0.009498,0.249820,0,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:-26.244136px;}
.v1{vertical-align:-13.860275px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:57.791432px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.019642px;}
.lsb{letter-spacing:0.037373px;}
.ls3{letter-spacing:0.223357px;}
.lsa{letter-spacing:0.262868px;}
.ls8{letter-spacing:0.344462px;}
.ls9{letter-spacing:0.347670px;}
.ls7{letter-spacing:12.937543px;}
.ls6{letter-spacing:107.972095px;}
.ls4{letter-spacing:107.986478px;}
.ls2{letter-spacing:358.462079px;}
.ls1{letter-spacing:385.964019px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(144,204,72),0 0.015em rgb(144,204,72),0.015em 0 rgb(144,204,72),0 -0.015em  rgb(144,204,72);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(144,204,72);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-84.000000px;}
.ws0{word-spacing:-54.180003px;}
.ws2{word-spacing:-52.032003px;}
.wsc{word-spacing:-45.528000px;}
.wsb{word-spacing:-43.902001px;}
.ws13{word-spacing:-23.436001px;}
.wsa{word-spacing:-23.268000px;}
.ws16{word-spacing:-18.648305px;}
.wsf{word-spacing:-16.980000px;}
.ws10{word-spacing:-15.720000px;}
.ws11{word-spacing:-9.307934px;}
.ws15{word-spacing:-0.330000px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:39.330200px;}
.ws3{word-spacing:182.540961px;}
.ws4{word-spacing:239.337378px;}
.ws8{word-spacing:294.348006px;}
.ws5{word-spacing:320.883688px;}
.ws7{word-spacing:321.824069px;}
.ws9{word-spacing:321.849946px;}
.ws6{word-spacing:349.326009px;}
.wsd{word-spacing:717.987294px;}
.wse{word-spacing:1214.612756px;}
._11{margin-left:-24.444002px;}
._5{margin-left:-14.976001px;}
._13{margin-left:-12.474000px;}
._14{margin-left:-10.596000px;}
._15{margin-left:-9.492001px;}
._7{margin-left:-7.296000px;}
._12{margin-left:-5.454000px;}
._3{margin-left:-4.338000px;}
._8{margin-left:-3.228000px;}
._0{margin-left:-2.052000px;}
._2{margin-left:-1.020008px;}
._1{width:1.890000px;}
._6{width:3.648000px;}
._17{width:28.003498px;}
._18{width:61.522954px;}
._19{width:71.759641px;}
._b{width:213.696002px;}
._e{width:312.604130px;}
._c{width:340.106070px;}
._10{width:358.497817px;}
._f{width:367.608010px;}
._d{width:385.973880px;}
._4{width:554.158549px;}
._16{width:861.202112px;}
._a{width:1265.099087px;}
._9{width:1756.073114px;}
.fc4{color:rgb(11,10,5);}
.fc2{color:transparent;}
.fc1{color:rgb(254,152,7);}
.fc3{color:rgb(144,204,72);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:55.500000px;}
.fsa{font-size:60.000000px;}
.fs6{font-size:66.000004px;}
.fs0{font-size:84.000000px;}
.fs3{font-size:90.000003px;}
.fs9{font-size:102.000000px;}
.fs1{font-size:108.000003px;}
.fse{font-size:120.000001px;}
.fs12{font-size:132.000007px;}
.fsd{font-size:149.999999px;}
.fs7{font-size:162.000005px;}
.fs8{font-size:167.999999px;}
.fs5{font-size:192.000012px;}
.fs2{font-size:210.000013px;}
.fsf{font-size:300.000001px;}
.fsc{font-size:300.000020px;}
.fs13{font-size:300.000041px;}
.fsb{font-size:312.000052px;}
.fs11{font-size:330.000110px;}
.fs10{font-size:414.000216px;}
.y0{bottom:0.000000px;}
.y10{bottom:90.236566px;}
.y27{bottom:91.245414px;}
.y33{bottom:113.697160px;}
.y26{bottom:116.445420px;}
.y29{bottom:119.573877px;}
.yf{bottom:119.750830px;}
.y25{bottom:166.845413px;}
.y28{bottom:169.973869px;}
.y31{bottom:177.234325px;}
.ye{bottom:178.150997px;}
.yd{bottom:205.150998px;}
.y24{bottom:211.634373px;}
.y30{bottom:227.634326px;}
.y2b{bottom:229.970766px;}
.yc{bottom:232.150999px;}
.y23{bottom:238.634374px;}
.y45{bottom:246.081847px;}
.y3e{bottom:249.712785px;}
.yb{bottom:259.151000px;}
.y47{bottom:265.632746px;}
.y22{bottom:265.634375px;}
.y2f{bottom:278.034321px;}
.y2a{bottom:278.570764px;}
.y44{bottom:281.271848px;}
.ya{bottom:286.151001px;}
.y3d{bottom:287.512786px;}
.y21{bottom:292.634376px;}
.y46{bottom:298.032751px;}
.y9{bottom:313.151002px;}
.y43{bottom:316.461849px;}
.y20{bottom:319.634377px;}
.y3c{bottom:330.712787px;}
.y8{bottom:340.151002px;}
.y1f{bottom:346.634378px;}
.y42{bottom:351.651847px;}
.y7{bottom:367.151003px;}
.y3b{bottom:368.512789px;}
.y2e{bottom:372.210702px;}
.y1e{bottom:373.634379px;}
.y41{bottom:386.841843px;}
.y6{bottom:394.151008px;}
.y32{bottom:395.144989px;}
.y3{bottom:399.367314px;}
.y1d{bottom:400.634379px;}
.y4c{bottom:406.196569px;}
.y4b{bottom:412.490632px;}
.y5{bottom:421.151006px;}
.y2d{bottom:422.610704px;}
.y1c{bottom:427.634380px;}
.y2{bottom:431.767315px;}
.y38{bottom:437.411165px;}
.y3a{bottom:439.692549px;}
.y36{bottom:442.491716px;}
.y1b{bottom:454.634381px;}
.y49{bottom:454.725354px;}
.y40{bottom:459.363348px;}
.y4a{bottom:466.719151px;}
.y4{bottom:466.867677px;}
.y2c{bottom:473.010699px;}
.y35{bottom:480.961407px;}
.y18{bottom:481.634404px;}
.y39{bottom:491.484120px;}
.y37{bottom:492.342130px;}
.y4d{bottom:498.372991px;}
.y1a{bottom:504.134405px;}
.y13{bottom:504.318669px;}
.y3f{bottom:514.496008px;}
.y34{bottom:519.364712px;}
.y19{bottom:526.634406px;}
.y48{bottom:529.139509px;}
.y14{bottom:541.125700px;}
.y17{bottom:553.634407px;}
.y11{bottom:665.763187px;}
.y16{bottom:668.590319px;}
.y12{bottom:670.466921px;}
.y15{bottom:674.605076px;}
.y1{bottom:744.626457px;}
.h7{height:43.678500px;}
.hf{height:44.820000px;}
.h10{height:47.220000px;}
.h9{height:48.049807px;}
.ha{height:61.154297px;}
.h6{height:62.748000px;}
.h4{height:66.780002px;}
.h5{height:67.230002px;}
.h2{height:73.458987px;}
.hd{height:74.258789px;}
.h19{height:78.438000px;}
.h1{height:79.872333px;}
.h1a{height:83.052003px;}
.h16{height:92.280001px;}
.h15{height:99.975585px;}
.h1e{height:101.508006px;}
.he{height:132.050221px;}
.h3{height:149.940009px;}
.hb{height:154.039505px;}
.hc{height:159.744666px;}
.h8{height:182.565345px;}
.h17{height:204.700001px;}
.h14{height:204.700014px;}
.h12{height:212.888035px;}
.h18{height:218.408204px;}
.h13{height:218.408218px;}
.h1f{height:218.408233px;}
.h1d{height:225.170075px;}
.h1c{height:240.249104px;}
.h1b{height:301.403477px;}
.h11{height:607.500000px;}
.h0{height:810.000000px;}
.w1{width:1080.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xc{left:26.880018px;}
.x15{left:49.330005px;}
.x14{left:53.915003px;}
.x27{left:55.421299px;}
.x19{left:93.639611px;}
.x30{left:96.910775px;}
.x2f{left:100.881705px;}
.x28{left:105.067916px;}
.x18{left:108.298230px;}
.x2a{left:123.958119px;}
.x7{left:127.711062px;}
.x9{left:129.399750px;}
.xa{left:131.004927px;}
.x2b{left:134.463251px;}
.x29{left:152.369301px;}
.x1f{left:168.212604px;}
.x3{left:172.343425px;}
.x2c{left:176.858274px;}
.x2{left:184.267986px;}
.x31{left:207.000007px;}
.x23{left:255.174306px;}
.x2d{left:259.878563px;}
.x24{left:288.252644px;}
.x32{left:302.318980px;}
.x20{left:306.810527px;}
.xb{left:324.645423px;}
.x25{left:353.736191px;}
.x26{left:412.222319px;}
.x8{left:427.369705px;}
.x2e{left:437.686563px;}
.xe{left:571.254551px;}
.x1a{left:573.900015px;}
.xd{left:585.931376px;}
.xf{left:592.343933px;}
.x1b{left:620.555645px;}
.x21{left:730.125023px;}
.x4{left:765.877007px;}
.x5{left:775.328762px;}
.x17{left:820.928164px;}
.x22{left:894.734354px;}
.x1e{left:1011.746485px;}
.x1c{left:1013.447237px;}
.x1d{left:1033.751456px;}
.x6{left:1119.858111px;}
.x11{left:1122.061768px;}
.x10{left:1137.181394px;}
.x12{left:1221.922499px;}
.x13{left:1256.794616px;}
.x16{left:1299.526524px;}
.x1{left:1305.823012px;}
@media print{
.v2{vertical-align:-23.328121pt;}
.v1{vertical-align:-12.320244pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:51.370162pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.017459pt;}
.lsb{letter-spacing:0.033221pt;}
.ls3{letter-spacing:0.198540pt;}
.lsa{letter-spacing:0.233660pt;}
.ls8{letter-spacing:0.306188pt;}
.ls9{letter-spacing:0.309040pt;}
.ls7{letter-spacing:11.500038pt;}
.ls6{letter-spacing:95.975195pt;}
.ls4{letter-spacing:95.987980pt;}
.ls2{letter-spacing:318.632959pt;}
.ls1{letter-spacing:343.079128pt;}
.ws12{word-spacing:-74.666667pt;}
.ws0{word-spacing:-48.160003pt;}
.ws2{word-spacing:-46.250670pt;}
.wsc{word-spacing:-40.469333pt;}
.wsb{word-spacing:-39.024001pt;}
.ws13{word-spacing:-20.832001pt;}
.wsa{word-spacing:-20.682667pt;}
.ws16{word-spacing:-16.576271pt;}
.wsf{word-spacing:-15.093333pt;}
.ws10{word-spacing:-13.973333pt;}
.ws11{word-spacing:-8.273720pt;}
.ws15{word-spacing:-0.293333pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:34.960178pt;}
.ws3{word-spacing:162.258632pt;}
.ws4{word-spacing:212.744336pt;}
.ws8{word-spacing:261.642672pt;}
.ws5{word-spacing:285.229945pt;}
.ws7{word-spacing:286.065839pt;}
.ws9{word-spacing:286.088841pt;}
.ws6{word-spacing:310.512008pt;}
.wsd{word-spacing:638.210928pt;}
.wse{word-spacing:1079.655783pt;}
._11{margin-left:-21.728001pt;}
._5{margin-left:-13.312001pt;}
._13{margin-left:-11.088000pt;}
._14{margin-left:-9.418667pt;}
._15{margin-left:-8.437334pt;}
._7{margin-left:-6.485334pt;}
._12{margin-left:-4.848000pt;}
._3{margin-left:-3.856000pt;}
._8{margin-left:-2.869334pt;}
._0{margin-left:-1.824000pt;}
._2{margin-left:-0.906674pt;}
._1{width:1.680000pt;}
._6{width:3.242667pt;}
._17{width:24.891998pt;}
._18{width:54.687070pt;}
._19{width:63.786348pt;}
._b{width:189.952001pt;}
._e{width:277.870338pt;}
._c{width:302.316507pt;}
._10{width:318.664726pt;}
._f{width:326.762676pt;}
._d{width:343.087894pt;}
._4{width:492.585377pt;}
._16{width:765.512988pt;}
._a{width:1124.532522pt;}
._9{width:1560.953880pt;}
.fs4{font-size:49.333334pt;}
.fsa{font-size:53.333334pt;}
.fs6{font-size:58.666670pt;}
.fs0{font-size:74.666666pt;}
.fs3{font-size:80.000003pt;}
.fs9{font-size:90.666667pt;}
.fs1{font-size:96.000003pt;}
.fse{font-size:106.666667pt;}
.fs12{font-size:117.333340pt;}
.fsd{font-size:133.333332pt;}
.fs7{font-size:144.000005pt;}
.fs8{font-size:149.333333pt;}
.fs5{font-size:170.666677pt;}
.fs2{font-size:186.666678pt;}
.fsf{font-size:266.666668pt;}
.fsc{font-size:266.666685pt;}
.fs13{font-size:266.666703pt;}
.fsb{font-size:277.333379pt;}
.fs11{font-size:293.333432pt;}
.fs10{font-size:368.000192pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:80.210281pt;}
.y27{bottom:81.107035pt;}
.y33{bottom:101.064142pt;}
.y26{bottom:103.507040pt;}
.y29{bottom:106.287890pt;}
.yf{bottom:106.445182pt;}
.y25{bottom:148.307034pt;}
.y28{bottom:151.087884pt;}
.y31{bottom:157.541622pt;}
.ye{bottom:158.356442pt;}
.yd{bottom:182.356443pt;}
.y24{bottom:188.119443pt;}
.y30{bottom:202.341623pt;}
.y2b{bottom:204.418459pt;}
.yc{bottom:206.356444pt;}
.y23{bottom:212.119444pt;}
.y45{bottom:218.739420pt;}
.y3e{bottom:221.966920pt;}
.yb{bottom:230.356444pt;}
.y47{bottom:236.117996pt;}
.y22{bottom:236.119445pt;}
.y2f{bottom:247.141619pt;}
.y2a{bottom:247.618457pt;}
.y44{bottom:250.019421pt;}
.ya{bottom:254.356445pt;}
.y3d{bottom:255.566921pt;}
.y21{bottom:260.119445pt;}
.y46{bottom:264.918001pt;}
.y9{bottom:278.356446pt;}
.y43{bottom:281.299422pt;}
.y20{bottom:284.119446pt;}
.y3c{bottom:293.966922pt;}
.y8{bottom:302.356447pt;}
.y1f{bottom:308.119447pt;}
.y42{bottom:312.579420pt;}
.y7{bottom:326.356447pt;}
.y3b{bottom:327.566923pt;}
.y2e{bottom:330.853958pt;}
.y1e{bottom:332.119448pt;}
.y41{bottom:343.859416pt;}
.y6{bottom:350.356451pt;}
.y32{bottom:351.239990pt;}
.y3{bottom:354.993168pt;}
.y1d{bottom:356.119448pt;}
.y4c{bottom:361.063617pt;}
.y4b{bottom:366.658339pt;}
.y5{bottom:374.356450pt;}
.y2d{bottom:375.653959pt;}
.y1c{bottom:380.119449pt;}
.y2{bottom:383.793169pt;}
.y38{bottom:388.809924pt;}
.y3a{bottom:390.837821pt;}
.y36{bottom:393.325970pt;}
.y1b{bottom:404.119450pt;}
.y49{bottom:404.200315pt;}
.y40{bottom:408.322976pt;}
.y4a{bottom:414.861467pt;}
.y4{bottom:414.993490pt;}
.y2c{bottom:420.453954pt;}
.y35{bottom:427.521251pt;}
.y18{bottom:428.119471pt;}
.y39{bottom:436.874774pt;}
.y37{bottom:437.637449pt;}
.y4d{bottom:442.998214pt;}
.y1a{bottom:448.119471pt;}
.y13{bottom:448.283261pt;}
.y3f{bottom:457.329785pt;}
.y34{bottom:461.657522pt;}
.y19{bottom:468.119472pt;}
.y48{bottom:470.346230pt;}
.y14{bottom:481.000622pt;}
.y17{bottom:492.119473pt;}
.y11{bottom:591.789500pt;}
.y16{bottom:594.302506pt;}
.y12{bottom:595.970596pt;}
.y15{bottom:599.648956pt;}
.y1{bottom:661.890184pt;}
.h7{height:38.825334pt;}
.hf{height:39.840000pt;}
.h10{height:41.973334pt;}
.h9{height:42.710940pt;}
.ha{height:54.359375pt;}
.h6{height:55.776000pt;}
.h4{height:59.360002pt;}
.h5{height:59.760002pt;}
.h2{height:65.296877pt;}
.hd{height:66.007813pt;}
.h19{height:69.722667pt;}
.h1{height:70.997629pt;}
.h1a{height:73.824002pt;}
.h16{height:82.026667pt;}
.h15{height:88.867187pt;}
.h1e{height:90.229338pt;}
.he{height:117.377974pt;}
.h3{height:133.280008pt;}
.hb{height:136.924004pt;}
.hc{height:141.995259pt;}
.h8{height:162.280307pt;}
.h17{height:181.955556pt;}
.h14{height:181.955568pt;}
.h12{height:189.233809pt;}
.h18{height:194.140626pt;}
.h13{height:194.140638pt;}
.h1f{height:194.140652pt;}
.h1d{height:200.151178pt;}
.h1c{height:213.554759pt;}
.h1b{height:267.914202pt;}
.h11{height:540.000000pt;}
.h0{height:720.000000pt;}
.w1{width:960.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xc{left:23.893350pt;}
.x15{left:43.848893pt;}
.x14{left:47.924448pt;}
.x27{left:49.263377pt;}
.x19{left:83.235210pt;}
.x30{left:86.142911pt;}
.x2f{left:89.672627pt;}
.x28{left:93.393703pt;}
.x18{left:96.265093pt;}
.x2a{left:110.184995pt;}
.x7{left:113.520944pt;}
.x9{left:115.022000pt;}
.xa{left:116.448824pt;}
.x2b{left:119.522890pt;}
.x29{left:135.439379pt;}
.x1f{left:149.522315pt;}
.x3{left:153.194156pt;}
.x2c{left:157.207355pt;}
.x2{left:163.793765pt;}
.x31{left:184.000006pt;}
.x23{left:226.821606pt;}
.x2d{left:231.003167pt;}
.x24{left:256.224573pt;}
.x32{left:268.727982pt;}
.x20{left:272.720469pt;}
.xb{left:288.573709pt;}
.x25{left:314.432170pt;}
.x26{left:366.419839pt;}
.x8{left:379.884182pt;}
.x2e{left:389.054722pt;}
.xe{left:507.781823pt;}
.x1a{left:510.133346pt;}
.xd{left:520.827890pt;}
.xf{left:526.527941pt;}
.x1b{left:551.605018pt;}
.x21{left:649.000021pt;}
.x4{left:680.779562pt;}
.x5{left:689.181122pt;}
.x17{left:729.713923pt;}
.x22{left:795.319425pt;}
.x1e{left:899.330209pt;}
.x1c{left:900.841989pt;}
.x1d{left:918.890183pt;}
.x6{left:995.429432pt;}
.x11{left:997.388238pt;}
.x10{left:1010.827905pt;}
.x12{left:1086.153332pt;}
.x13{left:1117.150770pt;}
.x16{left:1155.134688pt;}
.x1{left:1160.731566pt;}
}




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