
    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_f21a8d613695ea3c6374f576.woff')format("woff");}.ff1{font-family:ff1;line-height:0.716000;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_75b1fdba3d8a59bb34881c48.woff')format("woff");}.ff2{font-family:ff2;line-height:1.013672;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_44d9c5461d230980af50f211.woff')format("woff");}.ff3{font-family:ff3;line-height:1.097656;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_52f534a651685eb1500f650b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.948000;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_507971814184bc2db1b2b921.woff')format("woff");}.ff5{font-family:ff5;line-height:0.970000;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_5b343d2bd70a3dd5055beca5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_5acbcdfe3fd84f0168e70ab3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.716000;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_ee92fcbc3f0d9cd73ef20701.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fed4456bbb2bf4c03ccbcb0e.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f9a782e02157fa02f4b3fa37.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a1d2a87e521374aa763ec35a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8bcfadfed2880c0c8d06193c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.901855;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;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:1.133593px;}
.ls7{letter-spacing:1.163421px;}
.ls1{letter-spacing:1.181320px;}
.ls2{letter-spacing:1.193256px;}
.ls8{letter-spacing:1.196977px;}
.ls9{letter-spacing:1.216274px;}
.ls5{letter-spacing:1.217115px;}
.ls6{letter-spacing:1.225073px;}
.ls3{letter-spacing:1.240982px;}
.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;}
}
.ws1{word-spacing:-60.000000px;}
.wsb{word-spacing:-20.553771px;}
.ws9{word-spacing:-19.115865px;}
.ws4{word-spacing:-16.108956px;}
.ws3{word-spacing:-16.049293px;}
.ws6{word-spacing:-1.193256px;}
.ws5{word-spacing:-1.181320px;}
.ws0{word-spacing:-0.612829px;}
.ws7{word-spacing:-0.059663px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:0.059663px;}
.wsa{word-spacing:0.077561px;}
._9{margin-left:-2681.239488px;}
._d{margin-left:-1792.688152px;}
._c{margin-left:-1127.328606px;}
._a{margin-left:-814.158569px;}
._b{margin-left:-706.168901px;}
._8{margin-left:-8.043000px;}
._7{margin-left:-6.063000px;}
._2{margin-left:-4.389000px;}
._5{margin-left:-2.700000px;}
._3{margin-left:-1.200000px;}
._1{width:1.083000px;}
._4{width:2.496000px;}
._6{width:6.180000px;}
._0{width:987.810000px;}
.fc3{color:rgb(93,135,161);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:43.752600px;}
.fs3{font-size:48.000000px;}
.fs2{font-size:57.000000px;}
.fs7{font-size:59.662800px;}
.fs4{font-size:60.000000px;}
.fs9{font-size:71.595000px;}
.fs8{font-size:77.561400px;}
.fs5{font-size:180.000000px;}
.fs1{font-size:504.682800px;}
.fs0{font-size:612.829200px;}
.y0{bottom:0.000000px;}
.y38{bottom:3.900000px;}
.y37{bottom:39.425927px;}
.y2{bottom:43.317900px;}
.y4{bottom:63.078600px;}
.ya3{bottom:75.676860px;}
.yc2{bottom:82.007850px;}
.y10a{bottom:87.542730px;}
.y109{bottom:112.899420px;}
.yc1{bottom:115.567860px;}
.ya2{bottom:115.949250px;}
.y108{bottom:138.256110px;}
.yc0{bottom:140.924460px;}
.ya1{bottom:141.304770px;}
.y89{bottom:147.487500px;}
.yd1{bottom:160.431000px;}
.y107{bottom:178.528500px;}
.y88{bottom:181.043400px;}
.ybf{bottom:181.196610px;}
.ya0{bottom:181.577160px;}
.yd0{bottom:185.787360px;}
.y106{bottom:203.885010px;}
.y87{bottom:206.400090px;}
.y9f{bottom:206.933850px;}
.ycf{bottom:211.144050px;}
.ybe{bottom:221.469000px;}
.y1a{bottom:228.015150px;}
.y105{bottom:229.241700px;}
.yee{bottom:230.136600px;}
.y9e{bottom:232.290540px;}
.y19{bottom:246.015150px;}
.y86{bottom:246.672480px;}
.ybd{bottom:246.824940px;}
.yce{bottom:251.416110px;}
.y104{bottom:254.598060px;}
.y9d{bottom:257.647230px;}
.y85{bottom:272.029170px;}
.ycd{bottom:276.772800px;}
.y103{bottom:279.954750px;}
.y18{bottom:282.015150px;}
.ybc{bottom:287.097330px;}
.yed{bottom:287.395860px;}
.y9c{bottom:297.919620px;}
.y17{bottom:300.015150px;}
.y84{bottom:312.301560px;}
.ybb{bottom:312.454020px;}
.yec{bottom:312.752550px;}
.y63{bottom:314.542500px;}
.y102{bottom:315.925978px;}
.ycc{bottom:317.044860px;}
.y9b{bottom:323.276310px;}
.y101{bottom:329.992439px;}
.y16{bottom:336.015150px;}
.y83{bottom:337.658250px;}
.yba{bottom:337.810710px;}
.yeb{bottom:338.109150px;}
.ycb{bottom:342.401550px;}
.y100{bottom:344.058900px;}
.y62{bottom:348.102600px;}
.y9a{bottom:348.633000px;}
.y15{bottom:354.015150px;}
.y82{bottom:363.014940px;}
.yb9{bottom:363.167400px;}
.yea{bottom:363.462240px;}
.y14{bottom:372.015150px;}
.y61{bottom:373.455930px;}
.yca{bottom:382.673610px;}
.y99{bottom:384.600089px;}
.y81{bottom:388.371630px;}
.ye9{bottom:388.818930px;}
.y13{bottom:390.015150px;}
.yfa{bottom:396.578400px;}
.y98{bottom:398.666550px;}
.y67{bottom:401.053050px;}
.yb8{bottom:403.439550px;}
.yc9{bottom:408.030300px;}
.y36{bottom:409.256610px;}
.y60{bottom:413.728320px;}
.ye8{bottom:414.175620px;}
.y12{bottom:426.015150px;}
.yb7{bottom:428.796150px;}
.yf9{bottom:430.138500px;}
.y35{bottom:434.613060px;}
.y5f{bottom:439.085010px;}
.ye7{bottom:439.532310px;}
.y11{bottom:444.015150px;}
.yc8{bottom:448.302030px;}
.yb6{bottom:454.152750px;}
.yf8{bottom:455.495100px;}
.y5e{bottom:464.441700px;}
.yc7{bottom:473.658720px;}
.y66{bottom:474.885210px;}
.y34{bottom:474.885450px;}
.yb5{bottom:479.509350px;}
.ye6{bottom:479.804700px;}
.y10{bottom:480.015150px;}
.y93{bottom:481.597500px;}
.y80{bottom:489.798390px;}
.y7e{bottom:492.187650px;}
.yf7{bottom:495.767160px;}
.yf{bottom:498.015150px;}
.yc6{bottom:499.015410px;}
.y33{bottom:500.241810px;}
.y119{bottom:502.479300px;}
.y5d{bottom:504.714090px;}
.yb4{bottom:504.865800px;}
.ye5{bottom:505.161390px;}
.y65{bottom:515.157600px;}
.ye{bottom:516.015150px;}
.yf6{bottom:521.123850px;}
.y7d{bottom:525.746250px;}
.y5c{bottom:530.070780px;}
.yb3{bottom:530.222400px;}
.ye4{bottom:530.518080px;}
.yd{bottom:534.015150px;}
.y118{bottom:536.038800px;}
.yc5{bottom:539.287800px;}
.y92{bottom:540.513030px;}
.y32{bottom:540.514200px;}
.yc{bottom:552.015150px;}
.y5b{bottom:555.427470px;}
.yb2{bottom:555.576810px;}
.ye3{bottom:555.874770px;}
.y4c{bottom:560.368500px;}
.yf5{bottom:561.395910px;}
.y64{bottom:565.868460px;}
.y91{bottom:565.869720px;}
.y31{bottom:565.870560px;}
.y7c{bottom:566.018640px;}
.yc4{bottom:575.251050px;}
.y117{bottom:576.311190px;}
.y5a{bottom:580.784160px;}
.ye2{bottom:581.231460px;}
.yf4{bottom:586.752600px;}
.yb{bottom:588.015150px;}
.y90{bottom:591.226410px;}
.y7b{bottom:591.375330px;}
.yb1{bottom:595.849200px;}
.y116{bottom:601.667880px;}
.ya{bottom:606.015150px;}
.y59{bottom:606.140850px;}
.y2f{bottom:606.142950px;}
.ye1{bottom:606.588150px;}
.y6b{bottom:608.380350px;}
.y7f{bottom:612.540150px;}
.y4b{bottom:617.625960px;}
.yb0{bottom:621.205890px;}
.y115{bottom:627.024570px;}
.yf3{bottom:627.024660px;}
.y2e{bottom:631.497540px;}
.y8f{bottom:631.498800px;}
.y7a{bottom:631.647720px;}
.y97{bottom:633.736800px;}
.y6a{bottom:641.940450px;}
.y9{bottom:642.015150px;}
.y4a{bottom:642.982650px;}
.yaf{bottom:646.562580px;}
.ye0{bottom:646.860540px;}
.y114{bottom:652.381260px;}
.yf2{bottom:652.381350px;}
.y2d{bottom:656.854230px;}
.y8e{bottom:656.855490px;}
.yff{bottom:656.855640px;}
.y30{bottom:656.856330px;}
.y79{bottom:657.004410px;}
.y8{bottom:660.015150px;}
.y69{bottom:667.296810px;}
.y96{bottom:667.296960px;}
.y49{bottom:668.339340px;}
.yae{bottom:671.919270px;}
.ydf{bottom:672.217230px;}
.y2c{bottom:682.210920px;}
.y8d{bottom:682.212180px;}
.yfe{bottom:682.212330px;}
.y4f{bottom:682.353178px;}
.y78{bottom:682.361100px;}
.yf1{bottom:692.653410px;}
.y95{bottom:692.653650px;}
.y48{bottom:693.696030px;}
.y7{bottom:696.015150px;}
.y4e{bottom:696.419639px;}
.y58{bottom:697.126620px;}
.yad{bottom:697.275960px;}
.yde{bottom:697.573920px;}
.y2b{bottom:707.567610px;}
.yfd{bottom:707.569020px;}
.y68{bottom:707.569200px;}
.y4d{bottom:710.486100px;}
.y6{bottom:714.015150px;}
.y94{bottom:718.008600px;}
.y113{bottom:718.009770px;}
.yf0{bottom:718.010100px;}
.y47{bottom:719.052720px;}
.y57{bottom:722.483310px;}
.y8c{bottom:722.484570px;}
.yac{bottom:722.632650px;}
.y77{bottom:722.633490px;}
.ydd{bottom:722.930610px;}
.y5{bottom:732.015150px;}
.y2a{bottom:732.924300px;}
.yfc{bottom:732.925710px;}
.y46{bottom:744.409410px;}
.y56{bottom:747.840000px;}
.y8b{bottom:747.841260px;}
.yab{bottom:747.989340px;}
.y76{bottom:747.990180px;}
.yef{bottom:757.718850px;}
.y29{bottom:758.280990px;}
.y112{bottom:758.282160px;}
.yfb{bottom:758.282400px;}
.ydc{bottom:763.203000px;}
.y45{bottom:769.766100px;}
.y55{bottom:773.196690px;}
.y8a{bottom:773.197950px;}
.y75{bottom:773.346870px;}
.y1b{bottom:783.465450px;}
.y28{bottom:783.637680px;}
.y111{bottom:783.638850px;}
.yaa{bottom:788.261730px;}
.ydb{bottom:788.559690px;}
.y44{bottom:795.122790px;}
.y54{bottom:798.553380px;}
.y74{bottom:798.703560px;}
.y27{bottom:808.994370px;}
.ya9{bottom:813.618420px;}
.yda{bottom:813.916380px;}
.y43{bottom:820.479480px;}
.y53{bottom:823.910070px;}
.y110{bottom:823.911150px;}
.y73{bottom:824.060250px;}
.ya8{bottom:838.975110px;}
.yd9{bottom:839.273070px;}
.y42{bottom:845.836170px;}
.y26{bottom:849.266760px;}
.y10f{bottom:849.267600px;}
.y72{bottom:849.416100px;}
.y1d{bottom:857.011139px;}
.yc3{bottom:864.182460px;}
.ya7{bottom:864.331800px;}
.yd8{bottom:864.629760px;}
.y1{bottom:868.525500px;}
.y1c{bottom:871.077600px;}
.y41{bottom:871.192860px;}
.y52{bottom:874.623450px;}
.y3{bottom:874.772700px;}
.y71{bottom:874.772790px;}
.y25{bottom:889.539150px;}
.ya6{bottom:889.688490px;}
.y40{bottom:896.549550px;}
.y51{bottom:899.980140px;}
.yd7{bottom:904.902150px;}
.y24{bottom:914.895840px;}
.y70{bottom:915.045180px;}
.y3f{bottom:921.906240px;}
.y50{bottom:925.336830px;}
.yd6{bottom:930.258840px;}
.y23{bottom:940.252530px;}
.y6f{bottom:940.401870px;}
.y3e{bottom:947.262930px;}
.yd5{bottom:955.615530px;}
.y22{bottom:965.609220px;}
.y6e{bottom:965.758560px;}
.y3d{bottom:972.619620px;}
.y10e{bottom:977.972850px;}
.yd4{bottom:980.972220px;}
.y21{bottom:990.965910px;}
.y6d{bottom:991.115250px;}
.y3c{bottom:997.976310px;}
.y10d{bottom:1011.533010px;}
.y20{bottom:1016.322600px;}
.yd3{bottom:1021.244610px;}
.y3b{bottom:1023.333000px;}
.y6c{bottom:1035.795795px;}
.y10c{bottom:1036.889370px;}
.ya5{bottom:1043.601600px;}
.yd2{bottom:1046.601300px;}
.y3a{bottom:1058.252175px;}
.y1f{bottom:1061.003250px;}
.y10b{bottom:1077.161760px;}
.ya4{bottom:1077.161850px;}
.y39{bottom:1081.520550px;}
.y1e{bottom:1102.518450px;}
.hd{height:15.971985px;}
.h7{height:30.379003px;}
.he{height:34.500000px;}
.h4{height:40.218750px;}
.h8{height:40.435530px;}
.h12{height:41.426026px;}
.h5{height:42.780000px;}
.ha{height:42.824373px;}
.hc{height:42.824733px;}
.hb{height:42.825333px;}
.h13{height:42.825693px;}
.h14{height:42.827373px;}
.h10{height:42.830373px;}
.h11{height:42.841173px;}
.h3{height:47.759766px;}
.hf{height:48.522393px;}
.h9{height:52.566027px;}
.h6{height:126.000000px;}
.h1{height:249.636000px;}
.h2{height:428.980440px;}
.h0{height:1188.000000px;}
.w2{width:6.672004px;}
.w3{width:13.343989px;}
.w1{width:827.280000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:45.360000px;}
.x3{left:60.750000px;}
.x4{left:62.887500px;}
.x9{left:75.454950px;}
.xb{left:86.149507px;}
.x8{left:90.370650px;}
.x5{left:102.222000px;}
.xa{left:105.286350px;}
.x6{left:111.654000px;}
.x15{left:113.986950px;}
.xe{left:117.500550px;}
.x2{left:178.168650px;}
.xd{left:229.583100px;}
.x18{left:290.923194px;}
.x12{left:294.333450px;}
.x17{left:298.393950px;}
.x14{left:360.127950px;}
.x19{left:378.778414px;}
.x13{left:421.664454px;}
.xf{left:522.923700px;}
.x16{left:572.642550px;}
.x10{left:597.501900px;}
.x7{left:696.939450px;}
.x11{left:796.654495px;}
.xc{left:803.328049px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:1.007638pt;}
.ls7{letter-spacing:1.034152pt;}
.ls1{letter-spacing:1.050062pt;}
.ls2{letter-spacing:1.060672pt;}
.ls8{letter-spacing:1.063980pt;}
.ls9{letter-spacing:1.081133pt;}
.ls5{letter-spacing:1.081880pt;}
.ls6{letter-spacing:1.088954pt;}
.ls3{letter-spacing:1.103095pt;}
.ws1{word-spacing:-53.333333pt;}
.wsb{word-spacing:-18.270019pt;}
.ws9{word-spacing:-16.991880pt;}
.ws4{word-spacing:-14.319072pt;}
.ws3{word-spacing:-14.266038pt;}
.ws6{word-spacing:-1.060672pt;}
.ws5{word-spacing:-1.050062pt;}
.ws0{word-spacing:-0.544737pt;}
.ws7{word-spacing:-0.053034pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:0.053034pt;}
.wsa{word-spacing:0.068943pt;}
._9{margin-left:-2383.323989pt;}
._d{margin-left:-1593.500579pt;}
._c{margin-left:-1002.069872pt;}
._a{margin-left:-723.696506pt;}
._b{margin-left:-627.705690pt;}
._8{margin-left:-7.149333pt;}
._7{margin-left:-5.389333pt;}
._2{margin-left:-3.901333pt;}
._5{margin-left:-2.400000pt;}
._3{margin-left:-1.066667pt;}
._1{width:0.962667pt;}
._4{width:2.218667pt;}
._6{width:5.493333pt;}
._0{width:878.053333pt;}
.fs6{font-size:38.891200pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:50.666667pt;}
.fs7{font-size:53.033600pt;}
.fs4{font-size:53.333333pt;}
.fs9{font-size:63.640000pt;}
.fs8{font-size:68.943467pt;}
.fs5{font-size:160.000000pt;}
.fs1{font-size:448.606933pt;}
.fs0{font-size:544.737067pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:3.466667pt;}
.y37{bottom:35.045268pt;}
.y2{bottom:38.504800pt;}
.y4{bottom:56.069867pt;}
.ya3{bottom:67.268320pt;}
.yc2{bottom:72.895867pt;}
.y10a{bottom:77.815760pt;}
.y109{bottom:100.355040pt;}
.yc1{bottom:102.726987pt;}
.ya2{bottom:103.066000pt;}
.y108{bottom:122.894320pt;}
.yc0{bottom:125.266187pt;}
.ya1{bottom:125.604240pt;}
.y89{bottom:131.100000pt;}
.yd1{bottom:142.605333pt;}
.y107{bottom:158.692000pt;}
.y88{bottom:160.927467pt;}
.ybf{bottom:161.063653pt;}
.ya0{bottom:161.401920pt;}
.yd0{bottom:165.144320pt;}
.y106{bottom:181.231120pt;}
.y87{bottom:183.466747pt;}
.y9f{bottom:183.941200pt;}
.ycf{bottom:187.683600pt;}
.ybe{bottom:196.861333pt;}
.y1a{bottom:202.680133pt;}
.y105{bottom:203.770400pt;}
.yee{bottom:204.565867pt;}
.y9e{bottom:206.480480pt;}
.y19{bottom:218.680133pt;}
.y86{bottom:219.264427pt;}
.ybd{bottom:219.399947pt;}
.yce{bottom:223.480987pt;}
.y104{bottom:226.309387pt;}
.y9d{bottom:229.019760pt;}
.y85{bottom:241.803707pt;}
.ycd{bottom:246.020267pt;}
.y103{bottom:248.848667pt;}
.y18{bottom:250.680133pt;}
.ybc{bottom:255.197627pt;}
.yed{bottom:255.462987pt;}
.y9c{bottom:264.817440pt;}
.y17{bottom:266.680133pt;}
.y84{bottom:277.601387pt;}
.ybb{bottom:277.736907pt;}
.yec{bottom:278.002267pt;}
.y63{bottom:279.593333pt;}
.y102{bottom:280.823092pt;}
.ycc{bottom:281.817653pt;}
.y9b{bottom:287.356720pt;}
.y101{bottom:293.326613pt;}
.y16{bottom:298.680133pt;}
.y83{bottom:300.140667pt;}
.yba{bottom:300.276187pt;}
.yeb{bottom:300.541467pt;}
.ycb{bottom:304.356933pt;}
.y100{bottom:305.830133pt;}
.y62{bottom:309.424533pt;}
.y9a{bottom:309.896000pt;}
.y15{bottom:314.680133pt;}
.y82{bottom:322.679947pt;}
.yb9{bottom:322.815467pt;}
.yea{bottom:323.077547pt;}
.y14{bottom:330.680133pt;}
.y61{bottom:331.960827pt;}
.yca{bottom:340.154320pt;}
.y99{bottom:341.866746pt;}
.y81{bottom:345.219227pt;}
.ye9{bottom:345.616827pt;}
.y13{bottom:346.680133pt;}
.yfa{bottom:352.514133pt;}
.y98{bottom:354.370267pt;}
.y67{bottom:356.491600pt;}
.yb8{bottom:358.612933pt;}
.yc9{bottom:362.693600pt;}
.y36{bottom:363.783653pt;}
.y60{bottom:367.758507pt;}
.ye8{bottom:368.156107pt;}
.y12{bottom:378.680133pt;}
.yb7{bottom:381.152133pt;}
.yf9{bottom:382.345333pt;}
.y35{bottom:386.322720pt;}
.y5f{bottom:390.297787pt;}
.ye7{bottom:390.695387pt;}
.y11{bottom:394.680133pt;}
.yc8{bottom:398.490693pt;}
.yb6{bottom:403.691333pt;}
.yf8{bottom:404.884533pt;}
.y5e{bottom:412.837067pt;}
.yc7{bottom:421.029973pt;}
.y66{bottom:422.120187pt;}
.y34{bottom:422.120400pt;}
.yb5{bottom:426.230533pt;}
.ye6{bottom:426.493067pt;}
.y10{bottom:426.680133pt;}
.y93{bottom:428.086667pt;}
.y80{bottom:435.376347pt;}
.y7e{bottom:437.500133pt;}
.yf7{bottom:440.681920pt;}
.yf{bottom:442.680133pt;}
.yc6{bottom:443.569253pt;}
.y33{bottom:444.659387pt;}
.y119{bottom:446.648267pt;}
.y5d{bottom:448.634747pt;}
.yb4{bottom:448.769600pt;}
.ye5{bottom:449.032347pt;}
.y65{bottom:457.917867pt;}
.ye{bottom:458.680133pt;}
.yf6{bottom:463.221200pt;}
.y7d{bottom:467.330000pt;}
.y5c{bottom:471.174027pt;}
.yb3{bottom:471.308800pt;}
.ye4{bottom:471.571627pt;}
.yd{bottom:474.680133pt;}
.y118{bottom:476.478933pt;}
.yc5{bottom:479.366933pt;}
.y92{bottom:480.456027pt;}
.y32{bottom:480.457067pt;}
.yc{bottom:490.680133pt;}
.y5b{bottom:493.713307pt;}
.yb2{bottom:493.846053pt;}
.ye3{bottom:494.110907pt;}
.y4c{bottom:498.105333pt;}
.yf5{bottom:499.018587pt;}
.y64{bottom:502.994187pt;}
.y91{bottom:502.995307pt;}
.y31{bottom:502.996053pt;}
.y7c{bottom:503.127680pt;}
.yc4{bottom:511.334267pt;}
.y117{bottom:512.276613pt;}
.y5a{bottom:516.252587pt;}
.ye2{bottom:516.650187pt;}
.yf4{bottom:521.557867pt;}
.yb{bottom:522.680133pt;}
.y90{bottom:525.534587pt;}
.y7b{bottom:525.666960pt;}
.yb1{bottom:529.643733pt;}
.y116{bottom:534.815893pt;}
.ya{bottom:538.680133pt;}
.y59{bottom:538.791867pt;}
.y2f{bottom:538.793733pt;}
.ye1{bottom:539.189467pt;}
.y6b{bottom:540.782533pt;}
.y7f{bottom:544.480133pt;}
.y4b{bottom:549.000853pt;}
.yb0{bottom:552.183013pt;}
.y115{bottom:557.355173pt;}
.yf3{bottom:557.355253pt;}
.y2e{bottom:561.331147pt;}
.y8f{bottom:561.332267pt;}
.y7a{bottom:561.464640pt;}
.y97{bottom:563.321600pt;}
.y6a{bottom:570.613733pt;}
.y9{bottom:570.680133pt;}
.y4a{bottom:571.540133pt;}
.yaf{bottom:574.722293pt;}
.ye0{bottom:574.987147pt;}
.y114{bottom:579.894453pt;}
.yf2{bottom:579.894533pt;}
.y2d{bottom:583.870427pt;}
.y8e{bottom:583.871547pt;}
.yff{bottom:583.871680pt;}
.y30{bottom:583.872293pt;}
.y79{bottom:584.003920pt;}
.y8{bottom:586.680133pt;}
.y69{bottom:593.152720pt;}
.y96{bottom:593.152853pt;}
.y49{bottom:594.079413pt;}
.yae{bottom:597.261573pt;}
.ydf{bottom:597.526427pt;}
.y2c{bottom:606.409707pt;}
.y8d{bottom:606.410827pt;}
.yfe{bottom:606.410960pt;}
.y4f{bottom:606.536158pt;}
.y78{bottom:606.543200pt;}
.yf1{bottom:615.691920pt;}
.y95{bottom:615.692133pt;}
.y48{bottom:616.618693pt;}
.y7{bottom:618.680133pt;}
.y4e{bottom:619.039679pt;}
.y58{bottom:619.668107pt;}
.yad{bottom:619.800853pt;}
.yde{bottom:620.065707pt;}
.y2b{bottom:628.948987pt;}
.yfd{bottom:628.950240pt;}
.y68{bottom:628.950400pt;}
.y4d{bottom:631.543200pt;}
.y6{bottom:634.680133pt;}
.y94{bottom:638.229867pt;}
.y113{bottom:638.230907pt;}
.yf0{bottom:638.231200pt;}
.y47{bottom:639.157973pt;}
.y57{bottom:642.207387pt;}
.y8c{bottom:642.208507pt;}
.yac{bottom:642.340133pt;}
.y77{bottom:642.340880pt;}
.ydd{bottom:642.604987pt;}
.y5{bottom:650.680133pt;}
.y2a{bottom:651.488267pt;}
.yfc{bottom:651.489520pt;}
.y46{bottom:661.697253pt;}
.y56{bottom:664.746667pt;}
.y8b{bottom:664.747787pt;}
.yab{bottom:664.879413pt;}
.y76{bottom:664.880160pt;}
.yef{bottom:673.527867pt;}
.y29{bottom:674.027547pt;}
.y112{bottom:674.028587pt;}
.yfb{bottom:674.028800pt;}
.ydc{bottom:678.402667pt;}
.y45{bottom:684.236533pt;}
.y55{bottom:687.285947pt;}
.y8a{bottom:687.287067pt;}
.y75{bottom:687.419440pt;}
.y1b{bottom:696.413733pt;}
.y28{bottom:696.566827pt;}
.y111{bottom:696.567867pt;}
.yaa{bottom:700.677093pt;}
.ydb{bottom:700.941947pt;}
.y44{bottom:706.775813pt;}
.y54{bottom:709.825227pt;}
.y74{bottom:709.958720pt;}
.y27{bottom:719.106107pt;}
.ya9{bottom:723.216373pt;}
.yda{bottom:723.481227pt;}
.y43{bottom:729.315093pt;}
.y53{bottom:732.364507pt;}
.y110{bottom:732.365467pt;}
.y73{bottom:732.498000pt;}
.ya8{bottom:745.755653pt;}
.yd9{bottom:746.020507pt;}
.y42{bottom:751.854373pt;}
.y26{bottom:754.903787pt;}
.y10f{bottom:754.904533pt;}
.y72{bottom:755.036533pt;}
.y1d{bottom:761.787679pt;}
.yc3{bottom:768.162187pt;}
.ya7{bottom:768.294933pt;}
.yd8{bottom:768.559787pt;}
.y1{bottom:772.022667pt;}
.y1c{bottom:774.291200pt;}
.y41{bottom:774.393653pt;}
.y52{bottom:777.443067pt;}
.y3{bottom:777.575733pt;}
.y71{bottom:777.575813pt;}
.y25{bottom:790.701467pt;}
.ya6{bottom:790.834213pt;}
.y40{bottom:796.932933pt;}
.y51{bottom:799.982347pt;}
.yd7{bottom:804.357467pt;}
.y24{bottom:813.240747pt;}
.y70{bottom:813.373493pt;}
.y3f{bottom:819.472213pt;}
.y50{bottom:822.521627pt;}
.yd6{bottom:826.896747pt;}
.y23{bottom:835.780027pt;}
.y6f{bottom:835.912773pt;}
.y3e{bottom:842.011493pt;}
.yd5{bottom:849.436027pt;}
.y22{bottom:858.319307pt;}
.y6e{bottom:858.452053pt;}
.y3d{bottom:864.550773pt;}
.y10e{bottom:869.309200pt;}
.yd4{bottom:871.975307pt;}
.y21{bottom:880.858587pt;}
.y6d{bottom:880.991333pt;}
.y3c{bottom:887.090053pt;}
.y10d{bottom:899.140453pt;}
.y20{bottom:903.397867pt;}
.yd3{bottom:907.772987pt;}
.y3b{bottom:909.629333pt;}
.y6c{bottom:920.707373pt;}
.y10c{bottom:921.679440pt;}
.ya5{bottom:927.645867pt;}
.yd2{bottom:930.312267pt;}
.y3a{bottom:940.668600pt;}
.y1f{bottom:943.114000pt;}
.y10b{bottom:957.477120pt;}
.ya4{bottom:957.477200pt;}
.y39{bottom:961.351600pt;}
.y1e{bottom:980.016400pt;}
.hd{height:14.197320pt;}
.h7{height:27.003558pt;}
.he{height:30.666667pt;}
.h4{height:35.750000pt;}
.h8{height:35.942694pt;}
.h12{height:36.823134pt;}
.h5{height:38.026667pt;}
.ha{height:38.066109pt;}
.hc{height:38.066429pt;}
.hb{height:38.066963pt;}
.h13{height:38.067283pt;}
.h14{height:38.068776pt;}
.h10{height:38.071443pt;}
.h11{height:38.081043pt;}
.h3{height:42.453125pt;}
.hf{height:43.131016pt;}
.h9{height:46.725357pt;}
.h6{height:112.000000pt;}
.h1{height:221.898667pt;}
.h2{height:381.315947pt;}
.h0{height:1056.000000pt;}
.w2{width:5.930671pt;}
.w3{width:11.861324pt;}
.w1{width:735.360000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:40.320000pt;}
.x3{left:54.000000pt;}
.x4{left:55.900000pt;}
.x9{left:67.071067pt;}
.xb{left:76.577339pt;}
.x8{left:80.329467pt;}
.x5{left:90.864000pt;}
.xa{left:93.587867pt;}
.x6{left:99.248000pt;}
.x15{left:101.321733pt;}
.xe{left:104.444933pt;}
.x2{left:158.372133pt;}
.xd{left:204.073867pt;}
.x18{left:258.598394pt;}
.x12{left:261.629733pt;}
.x17{left:265.239067pt;}
.x14{left:320.113733pt;}
.x19{left:336.691924pt;}
.x13{left:374.812848pt;}
.xf{left:464.821067pt;}
.x16{left:509.015600pt;}
.x10{left:531.112800pt;}
.x7{left:619.501733pt;}
.x11{left:708.137329pt;}
.xc{left:714.069377pt;}
}




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