
    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_bfce5b37a8097e4dc3e8c621.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_2980bf59e9c17a1aea3457f1.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_286a7f4c40f77d482f26bf0c.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_9c7003cf55670c7b43cc7ee0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.709961;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_564cbdcd4eb87383cd6e9090.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_cb96a20fff3f08bca068d20e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6053317c6b8170538c319161.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.086914;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_74907e858e4bb8347ca8d5ce.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.693359;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;}
.v3{vertical-align:-22.768070px;}
.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;}
}
.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;}
._10{margin-left:-8.755915px;}
._1{margin-left:-6.335946px;}
._4{margin-left:-5.027343px;}
._b{margin-left:-2.882801px;}
._0{margin-left:-1.826113px;}
._8{width:4.500000px;}
._3{width:9.000023px;}
._2{width:13.499999px;}
._5{width:22.500000px;}
._c{width:26.999999px;}
._7{width:31.499991px;}
._6{width:36.000002px;}
._d{width:40.499989px;}
._a{width:45.000004px;}
._9{width:49.500001px;}
._f{width:54.000010px;}
._e{width:58.499999px;}
._12{width:94.500015px;}
._11{width:99.000003px;}
.fc1{color:rgb(17,85,204);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:43.200002px;}
.fs6{font-size:48.000002px;}
.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;}
.y5c{bottom:17.016358px;}
.y2c{bottom:17.016724px;}
.yaf{bottom:17.017090px;}
.yb4{bottom:37.157959px;}
.y5b{bottom:37.158326px;}
.y2b{bottom:37.158418px;}
.yad{bottom:70.444328px;}
.y59{bottom:70.444703px;}
.y29{bottom:109.440407px;}
.y8d{bottom:110.404900px;}
.y58{bottom:120.544553px;}
.y8c{bottom:131.103142px;}
.yd3{bottom:131.815426px;}
.y8b{bottom:151.801394px;}
.y28{bottom:152.698890px;}
.yd2{bottom:154.152824px;}
.y57{bottom:159.242793px;}
.y8a{bottom:172.499637px;}
.yd1{bottom:176.489498px;}
.y27{bottom:177.004945px;}
.y56{bottom:179.941036px;}
.y89{bottom:193.197879px;}
.y26{bottom:194.253477px;}
.yd0{bottom:197.187743px;}
.yfd{bottom:197.793457px;}
.y55{bottom:200.639278px;}
.y25{bottom:212.357938px;}
.y88{bottom:213.896122px;}
.ycf{bottom:217.885988px;}
.y54{bottom:221.337520px;}
.yfc{bottom:232.129400px;}
.y87{bottom:234.594363px;}
.yce{bottom:238.584230px;}
.y53{bottom:242.035762px;}
.yfb{bottom:254.466803px;}
.y86{bottom:255.292606px;}
.y24{bottom:261.060788px;}
.y52{bottom:262.734007px;}
.y85{bottom:275.990848px;}
.yfa{bottom:278.270512px;}
.y23{bottom:283.397648px;}
.y84{bottom:296.689090px;}
.yf9{bottom:302.072753px;}
.y51{bottom:303.070867px;}
.y22{bottom:305.734488px;}
.yac{bottom:309.194093px;}
.y83{bottom:317.387332px;}
.y50{bottom:323.769098px;}
.yf8{bottom:325.876470px;}
.y21{bottom:328.071340px;}
.yab{bottom:329.892338px;}
.y82{bottom:338.085577px;}
.yf7{bottom:349.678710px;}
.y20{bottom:350.408193px;}
.yaa{bottom:350.590572px;}
.y4f{bottom:358.105957px;}
.ya9{bottom:371.288814px;}
.y1f{bottom:372.745045px;}
.yf6{bottom:373.482419px;}
.y81{bottom:376.783814px;}
.ya8{bottom:391.987057px;}
.y4e{bottom:392.442817px;}
.y1e{bottom:395.081898px;}
.yb3{bottom:397.200443px;}
.yf5{bottom:397.284668px;}
.y80{bottom:397.482048px;}
.yc5{bottom:408.248288px;}
.ya7{bottom:412.685298px;}
.y4d{bottom:414.779654px;}
.y1d{bottom:417.418750px;}
.yb2{bottom:417.898687px;}
.y7f{bottom:418.180293px;}
.yf4{bottom:421.088377px;}
.yc4{bottom:428.946533px;}
.ya6{bottom:433.383541px;}
.y4c{bottom:437.116507px;}
.yb1{bottom:438.596917px;}
.y7e{bottom:438.878538px;}
.y1c{bottom:439.755603px;}
.yf3{bottom:444.890625px;}
.yc3{bottom:449.644778px;}
.ya5{bottom:454.081783px;}
.yb0{bottom:459.295163px;}
.y4b{bottom:459.453359px;}
.y7d{bottom:459.576779px;}
.y1b{bottom:462.092455px;}
.yf2{bottom:468.694334px;}
.yc2{bottom:470.343022px;}
.ya4{bottom:474.780025px;}
.y7c{bottom:480.275022px;}
.y4a{bottom:481.790216px;}
.y1a{bottom:484.429274px;}
.yc1{bottom:491.041263px;}
.yf1{bottom:492.496582px;}
.ya3{bottom:495.478268px;}
.y7b{bottom:500.973264px;}
.y49{bottom:504.127070px;}
.y19{bottom:506.766127px;}
.yc0{bottom:511.739504px;}
.ya2{bottom:516.176512px;}
.yf0{bottom:516.300293px;}
.y7a{bottom:521.671507px;}
.y48{bottom:526.463922px;}
.y18{bottom:529.102979px;}
.ybf{bottom:532.437747px;}
.ya1{bottom:536.874753px;}
.yef{bottom:540.102533px;}
.y79{bottom:542.369748px;}
.y47{bottom:548.800776px;}
.y17{bottom:551.439832px;}
.ybe{bottom:553.135989px;}
.ya0{bottom:557.572996px;}
.yee{bottom:560.800777px;}
.y78{bottom:563.067991px;}
.y46{bottom:571.137628px;}
.y16{bottom:573.776684px;}
.ybd{bottom:573.834232px;}
.y9f{bottom:578.271238px;}
.yed{bottom:581.499022px;}
.y77{bottom:583.766233px;}
.y45{bottom:593.474482px;}
.ybc{bottom:594.532473px;}
.y15{bottom:596.113537px;}
.y9e{bottom:598.969480px;}
.yec{bottom:603.835688px;}
.y76{bottom:604.464475px;}
.ybb{bottom:615.230716px;}
.y44{bottom:615.811334px;}
.y14{bottom:618.450389px;}
.y9d{bottom:619.667722px;}
.y75{bottom:625.162718px;}
.yeb{bottom:626.173103px;}
.ycd{bottom:630.532478px;}
.yba{bottom:635.928958px;}
.y43{bottom:638.148187px;}
.y9c{bottom:640.365968px;}
.y13{bottom:640.787242px;}
.yea{bottom:648.509755px;}
.ycc{bottom:651.230707px;}
.yb9{bottom:656.627200px;}
.y42{bottom:660.485039px;}
.y12{bottom:663.124094px;}
.y74{bottom:663.860958px;}
.ye9{bottom:670.847159px;}
.ycb{bottom:671.928952px;}
.yb8{bottom:677.325443px;}
.y9b{bottom:680.703008px;}
.y41{bottom:682.821896px;}
.y73{bottom:684.559203px;}
.y11{bottom:685.460951px;}
.yca{bottom:692.627197px;}
.ye8{bottom:693.183107px;}
.yb7{bottom:698.023688px;}
.y9a{bottom:703.039672px;}
.y40{bottom:705.158750px;}
.y72{bottom:705.257444px;}
.y10{bottom:707.797805px;}
.yc9{bottom:713.325443px;}
.ye7{bottom:715.520492px;}
.yb6{bottom:718.721918px;}
.y99{bottom:725.376712px;}
.y71{bottom:725.955687px;}
.y3f{bottom:727.495602px;}
.yf{bottom:730.134657px;}
.yc8{bottom:734.023688px;}
.ye6{bottom:737.856443px;}
.yb5{bottom:739.420163px;}
.y70{bottom:746.653929px;}
.y98{bottom:747.713377px;}
.y3e{bottom:749.832456px;}
.ye{bottom:752.471511px;}
.yc7{bottom:754.721918px;}
.ye5{bottom:760.193846px;}
.y6f{bottom:767.352172px;}
.y97{bottom:770.050418px;}
.y3d{bottom:772.169308px;}
.yd{bottom:774.808363px;}
.yc6{bottom:775.420163px;}
.ye4{bottom:782.530518px;}
.y6e{bottom:788.050413px;}
.y96{bottom:790.748663px;}
.y3c{bottom:794.506162px;}
.yc{bottom:797.145217px;}
.ye3{bottom:804.867916px;}
.y6d{bottom:808.748656px;}
.y3b{bottom:816.843014px;}
.yb{bottom:819.482069px;}
.ye2{bottom:827.204585px;}
.y6c{bottom:829.446898px;}
.y95{bottom:829.446899px;}
.y3a{bottom:839.179868px;}
.ya{bottom:841.818922px;}
.ye1{bottom:849.541988px;}
.y6b{bottom:850.145140px;}
.y94{bottom:850.145142px;}
.y39{bottom:861.516721px;}
.y9{bottom:864.155782px;}
.y6a{bottom:870.843382px;}
.y93{bottom:870.843384px;}
.ye0{bottom:871.877922px;}
.y38{bottom:883.853573px;}
.y8{bottom:886.492635px;}
.y92{bottom:891.541627px;}
.y69{bottom:891.541628px;}
.ydf{bottom:894.215325px;}
.y37{bottom:906.190430px;}
.y7{bottom:908.829487px;}
.y68{bottom:912.239862px;}
.y91{bottom:912.239868px;}
.yde{bottom:916.551259px;}
.y36{bottom:928.527284px;}
.y6{bottom:931.166332px;}
.y67{bottom:932.938107px;}
.y90{bottom:932.938111px;}
.ydd{bottom:938.888666px;}
.y35{bottom:950.864136px;}
.y66{bottom:953.636352px;}
.ydc{bottom:961.225334px;}
.y5{bottom:966.425193px;}
.y34{bottom:973.200990px;}
.y65{bottom:974.334593px;}
.y8f{bottom:974.334595px;}
.ydb{bottom:983.562007px;}
.y4{bottom:992.484879px;}
.y64{bottom:995.032836px;}
.y8e{bottom:995.032838px;}
.y33{bottom:995.537842px;}
.yda{bottom:1005.899425px;}
.y63{bottom:1015.731078px;}
.y32{bottom:1017.874696px;}
.y3{bottom:1018.544540px;}
.yd9{bottom:1028.236080px;}
.y62{bottom:1036.429321px;}
.y1{bottom:1038.150009px;}
.y31{bottom:1040.211548px;}
.yd8{bottom:1050.572754px;}
.y61{bottom:1057.127562px;}
.y30{bottom:1062.548401px;}
.yd7{bottom:1072.909417px;}
.y60{bottom:1077.825805px;}
.y2f{bottom:1084.885254px;}
.yd6{bottom:1095.246094px;}
.y5f{bottom:1098.524047px;}
.y2e{bottom:1105.583496px;}
.yd5{bottom:1117.583492px;}
.y5e{bottom:1119.222289px;}
.yd4{bottom:1139.920165px;}
.y2d{bottom:1139.920349px;}
.y5d{bottom:1139.920531px;}
.yae{bottom:1156.724853px;}
.y2a{bottom:1156.725036px;}
.y5a{bottom:1156.725219px;}
.h8{height:29.619139px;}
.hb{height:31.992188px;}
.h9{height:32.273438px;}
.h2{height:43.989259px;}
.ha{height:53.789061px;}
.h4{height:63.949219px;}
.h7{height:64.546875px;}
.h6{height:65.691211px;}
.h5{height:65.691214px;}
.h3{height:74.607419px;}
.h11{height:75.304685px;}
.hd{height:105.899775px;}
.hf{height:105.900150px;}
.he{height:106.274781px;}
.hc{height:106.274964px;}
.h10{height:106.275147px;}
.h1{height:224.849991px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x4{left:127.575005px;}
.x5{left:140.008455px;}
.x8{left:180.450005px;}
.x2{left:183.980306px;}
.xb{left:224.005526px;}
.xc{left:227.780427px;}
.xd{left:234.767733px;}
.x3{left:269.685888px;}
.x9{left:299.745271px;}
.xa{left:317.239902px;}
.x6{left:365.193023px;}
.x7{left:446.456716px;}
.x1{left:636.019216px;}
@media print{
.v2{vertical-align:-21.484375pt;}
.v3{vertical-align:-20.238284pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.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;}
._10{margin-left:-7.783036pt;}
._1{margin-left:-5.631952pt;}
._4{margin-left:-4.468750pt;}
._b{margin-left:-2.562489pt;}
._0{margin-left:-1.623212pt;}
._8{width:4.000000pt;}
._3{width:8.000021pt;}
._2{width:11.999999pt;}
._5{width:20.000000pt;}
._c{width:23.999999pt;}
._7{width:27.999992pt;}
._6{width:32.000002pt;}
._d{width:35.999990pt;}
._a{width:40.000004pt;}
._9{width:44.000001pt;}
._f{width:48.000009pt;}
._e{width:51.999999pt;}
._12{width:84.000013pt;}
._11{width:88.000002pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:38.400002pt;}
.fs6{font-size:42.666668pt;}
.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;}
.y5c{bottom:15.125651pt;}
.y2c{bottom:15.125977pt;}
.yaf{bottom:15.126302pt;}
.yb4{bottom:33.029297pt;}
.y5b{bottom:33.029623pt;}
.y2b{bottom:33.029705pt;}
.yad{bottom:62.617180pt;}
.y59{bottom:62.617514pt;}
.y29{bottom:97.280362pt;}
.y8d{bottom:98.137689pt;}
.y58{bottom:107.150713pt;}
.y8c{bottom:116.536127pt;}
.yd3{bottom:117.169268pt;}
.y8b{bottom:134.934573pt;}
.y28{bottom:135.732347pt;}
.yd2{bottom:137.024733pt;}
.y57{bottom:141.549149pt;}
.y8a{bottom:153.333011pt;}
.yd1{bottom:156.879553pt;}
.y27{bottom:157.337728pt;}
.y56{bottom:159.947587pt;}
.y89{bottom:171.731448pt;}
.y26{bottom:172.669757pt;}
.yd0{bottom:175.277993pt;}
.yfd{bottom:175.816407pt;}
.y55{bottom:178.346024pt;}
.y25{bottom:188.762612pt;}
.y88{bottom:190.129886pt;}
.ycf{bottom:193.676433pt;}
.y54{bottom:196.744462pt;}
.yfc{bottom:206.337245pt;}
.y87{bottom:208.528323pt;}
.yce{bottom:212.074871pt;}
.y53{bottom:215.142900pt;}
.yfb{bottom:226.192713pt;}
.y86{bottom:226.926761pt;}
.y24{bottom:232.054033pt;}
.y52{bottom:233.541340pt;}
.y85{bottom:245.325198pt;}
.yfa{bottom:247.351567pt;}
.y23{bottom:251.909020pt;}
.y84{bottom:263.723636pt;}
.yf9{bottom:268.509114pt;}
.y51{bottom:269.396327pt;}
.y22{bottom:271.763989pt;}
.yac{bottom:274.839193pt;}
.y83{bottom:282.122073pt;}
.y50{bottom:287.794753pt;}
.yf8{bottom:289.667973pt;}
.y21{bottom:291.618969pt;}
.yab{bottom:293.237633pt;}
.y82{bottom:300.520513pt;}
.yf7{bottom:310.825520pt;}
.y20{bottom:311.473949pt;}
.yaa{bottom:311.636064pt;}
.y4f{bottom:318.316407pt;}
.ya9{bottom:330.034501pt;}
.y1f{bottom:331.328929pt;}
.yf6{bottom:331.984372pt;}
.y81{bottom:334.918946pt;}
.ya8{bottom:348.432939pt;}
.y4e{bottom:348.838060pt;}
.y1e{bottom:351.183909pt;}
.yb3{bottom:353.067060pt;}
.yf5{bottom:353.141927pt;}
.y80{bottom:353.317376pt;}
.yc5{bottom:362.887367pt;}
.ya7{bottom:366.831376pt;}
.y4d{bottom:368.693026pt;}
.y1d{bottom:371.038889pt;}
.yb2{bottom:371.465500pt;}
.y7f{bottom:371.715816pt;}
.yf4{bottom:374.300780pt;}
.yc4{bottom:381.285807pt;}
.ya6{bottom:385.229814pt;}
.y4c{bottom:388.548006pt;}
.yb1{bottom:389.863927pt;}
.y7e{bottom:390.114256pt;}
.y1c{bottom:390.893869pt;}
.yf3{bottom:395.458333pt;}
.yc3{bottom:399.684247pt;}
.ya5{bottom:403.628251pt;}
.yb0{bottom:408.262367pt;}
.y4b{bottom:408.402986pt;}
.y7d{bottom:408.512693pt;}
.y1b{bottom:410.748849pt;}
.yf2{bottom:416.617185pt;}
.yc2{bottom:418.082687pt;}
.ya4{bottom:422.026689pt;}
.y7c{bottom:426.911131pt;}
.y4a{bottom:428.257970pt;}
.y1a{bottom:430.603799pt;}
.yc1{bottom:436.481122pt;}
.yf1{bottom:437.774740pt;}
.ya3{bottom:440.425127pt;}
.y7b{bottom:445.309568pt;}
.y49{bottom:448.112951pt;}
.y19{bottom:450.458779pt;}
.yc0{bottom:454.879559pt;}
.ya2{bottom:458.823566pt;}
.yf0{bottom:458.933593pt;}
.y7a{bottom:463.708006pt;}
.y48{bottom:467.967931pt;}
.y18{bottom:470.313759pt;}
.ybf{bottom:473.277997pt;}
.ya1{bottom:477.222003pt;}
.yef{bottom:480.091140pt;}
.y79{bottom:482.106443pt;}
.y47{bottom:487.822912pt;}
.y17{bottom:490.168739pt;}
.ybe{bottom:491.676435pt;}
.ya0{bottom:495.620441pt;}
.yee{bottom:498.489580pt;}
.y78{bottom:500.504881pt;}
.y46{bottom:507.677892pt;}
.y16{bottom:510.023719pt;}
.ybd{bottom:510.074872pt;}
.y9f{bottom:514.018878pt;}
.yed{bottom:516.888020pt;}
.y77{bottom:518.903318pt;}
.y45{bottom:527.532873pt;}
.ybc{bottom:528.473309pt;}
.y15{bottom:529.878699pt;}
.y9e{bottom:532.417316pt;}
.yec{bottom:536.742833pt;}
.y76{bottom:537.301756pt;}
.ybb{bottom:546.871747pt;}
.y44{bottom:547.387853pt;}
.y14{bottom:549.733679pt;}
.y9d{bottom:550.815753pt;}
.y75{bottom:555.700193pt;}
.yeb{bottom:556.598313pt;}
.ycd{bottom:560.473313pt;}
.yba{bottom:565.270185pt;}
.y43{bottom:567.242833pt;}
.y9c{bottom:569.214193pt;}
.y13{bottom:569.588659pt;}
.yea{bottom:576.453116pt;}
.ycc{bottom:578.871740pt;}
.yb9{bottom:583.668622pt;}
.y42{bottom:587.097812pt;}
.y12{bottom:589.443639pt;}
.y74{bottom:590.098629pt;}
.ye9{bottom:596.308586pt;}
.ycb{bottom:597.270180pt;}
.yb8{bottom:602.067060pt;}
.y9b{bottom:605.069340pt;}
.y41{bottom:606.952796pt;}
.y73{bottom:608.497069pt;}
.y11{bottom:609.298623pt;}
.yca{bottom:615.668620pt;}
.ye8{bottom:616.162762pt;}
.yb7{bottom:620.465500pt;}
.y9a{bottom:624.924153pt;}
.y40{bottom:626.807777pt;}
.y72{bottom:626.895506pt;}
.y10{bottom:629.153604pt;}
.yc9{bottom:634.067060pt;}
.ye7{bottom:636.018215pt;}
.yb6{bottom:638.863927pt;}
.y99{bottom:644.779300pt;}
.y71{bottom:645.293944pt;}
.y3f{bottom:646.662757pt;}
.yf{bottom:649.008584pt;}
.yc8{bottom:652.465500pt;}
.ye6{bottom:655.872394pt;}
.yb5{bottom:657.262367pt;}
.y70{bottom:663.692381pt;}
.y98{bottom:664.634113pt;}
.y3e{bottom:666.517738pt;}
.ye{bottom:668.863565pt;}
.yc7{bottom:670.863927pt;}
.ye5{bottom:675.727863pt;}
.y6f{bottom:682.090819pt;}
.y97{bottom:684.489260pt;}
.y3d{bottom:686.372718pt;}
.yd{bottom:688.718545pt;}
.yc6{bottom:689.262367pt;}
.ye4{bottom:695.582683pt;}
.y6e{bottom:700.489256pt;}
.y96{bottom:702.887700pt;}
.y3c{bottom:706.227699pt;}
.yc{bottom:708.573526pt;}
.ye3{bottom:715.438148pt;}
.y6d{bottom:718.887694pt;}
.y3b{bottom:726.082679pt;}
.yb{bottom:728.428506pt;}
.ye2{bottom:735.292965pt;}
.y6c{bottom:737.286131pt;}
.y95{bottom:737.286133pt;}
.y3a{bottom:745.937660pt;}
.ya{bottom:748.283487pt;}
.ye1{bottom:755.148433pt;}
.y6b{bottom:755.684569pt;}
.y94{bottom:755.684571pt;}
.y39{bottom:765.792640pt;}
.y9{bottom:768.138473pt;}
.y6a{bottom:774.083007pt;}
.y93{bottom:774.083008pt;}
.ye0{bottom:775.002597pt;}
.y38{bottom:785.647620pt;}
.y8{bottom:787.993453pt;}
.y92{bottom:792.481446pt;}
.y69{bottom:792.481447pt;}
.ydf{bottom:794.858066pt;}
.y37{bottom:805.502604pt;}
.y7{bottom:807.848433pt;}
.y68{bottom:810.879877pt;}
.y91{bottom:810.879883pt;}
.yde{bottom:814.712230pt;}
.y36{bottom:825.357585pt;}
.y6{bottom:827.703407pt;}
.y67{bottom:829.278317pt;}
.y90{bottom:829.278321pt;}
.ydd{bottom:834.567703pt;}
.y35{bottom:845.212565pt;}
.y66{bottom:847.676757pt;}
.ydc{bottom:854.422519pt;}
.y5{bottom:859.044616pt;}
.y34{bottom:865.067546pt;}
.y65{bottom:866.075194pt;}
.y8f{bottom:866.075196pt;}
.ydb{bottom:874.277340pt;}
.y4{bottom:882.208781pt;}
.y64{bottom:884.473632pt;}
.y8e{bottom:884.473633pt;}
.y33{bottom:884.922526pt;}
.yda{bottom:894.132822pt;}
.y63{bottom:902.872069pt;}
.y32{bottom:904.777507pt;}
.y3{bottom:905.372924pt;}
.yd9{bottom:913.987627pt;}
.y62{bottom:921.270507pt;}
.y1{bottom:922.800008pt;}
.y31{bottom:924.632487pt;}
.yd8{bottom:933.842448pt;}
.y61{bottom:939.668944pt;}
.y30{bottom:944.487468pt;}
.yd7{bottom:953.697260pt;}
.y60{bottom:958.067382pt;}
.y2f{bottom:964.342448pt;}
.yd6{bottom:973.552084pt;}
.y5f{bottom:976.465819pt;}
.y2e{bottom:982.740885pt;}
.yd5{bottom:993.407549pt;}
.y5e{bottom:994.864257pt;}
.yd4{bottom:1013.262369pt;}
.y2d{bottom:1013.262532pt;}
.y5d{bottom:1013.262695pt;}
.yae{bottom:1028.199869pt;}
.y2a{bottom:1028.200032pt;}
.y5a{bottom:1028.200195pt;}
.h8{height:26.328124pt;}
.hb{height:28.437501pt;}
.h9{height:28.687500pt;}
.h2{height:39.101563pt;}
.ha{height:47.812499pt;}
.h4{height:56.843750pt;}
.h7{height:57.375000pt;}
.h6{height:58.392187pt;}
.h5{height:58.392190pt;}
.h3{height:66.317706pt;}
.h11{height:66.937498pt;}
.hd{height:94.133133pt;}
.hf{height:94.133467pt;}
.he{height:94.466472pt;}
.hc{height:94.466635pt;}
.h10{height:94.466797pt;}
.h1{height:199.866659pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x4{left:113.400004pt;}
.x5{left:124.451960pt;}
.x8{left:160.400004pt;}
.x2{left:163.538050pt;}
.xb{left:199.116023pt;}
.xc{left:202.471491pt;}
.xd{left:208.682429pt;}
.x3{left:239.720789pt;}
.x9{left:266.440241pt;}
.xa{left:281.991024pt;}
.x6{left:324.616020pt;}
.x7{left:396.850414pt;}
.x1{left:565.350414pt;}
}




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