
    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_6e2d634024435aa1ea1577e6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_42f77891b73bb508070c1472.woff')format("woff");}.ff2{font-family:ff2;line-height:0.682617;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_be50706e6c38ce5944b1dc26.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_025617af9222eadc6ef70368.woff')format("woff");}.ff4{font-family:ff4;line-height:1.059000;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_2ba17449eed1e1c251dcb37c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_e04bbf3e2be6aeca0755fe8a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.819000;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_e19cec5f831fc4d69b1b5657.woff')format("woff");}.ff7{font-family:ff7;line-height:0.944336;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_44324546aad61d10dea61db1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.944336;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_706d2c6a5aa4c9d757ff1ebc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899902;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_8a4c4b65d1e83c7bbaed789b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.992676;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_ca40b08fb992efa523c04ecd.woff')format("woff");}.ffb{font-family:ffb;line-height:1.028000;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);}
.v3{vertical-align:-23.760000px;}
.v5{vertical-align:-19.800000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.800000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:180.000000px;}
.ls7{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000600px;}
.lsc{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.028200px;}
.lsf{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.648000px;}
.lse{letter-spacing:0.799800px;}
.ls11{letter-spacing:0.936000px;}
.ls6{letter-spacing:1.008000px;}
.ls12{letter-spacing:4.752000px;}
.lsa{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.591428px;}
.ls0{letter-spacing:10.740000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws4{word-spacing:-49.104000px;}
.wse{word-spacing:-49.032000px;}
.wsd{word-spacing:-48.888000px;}
.ws6{word-spacing:-48.816000px;}
.ws9{word-spacing:-48.600000px;}
.ws1{word-spacing:-48.528000px;}
.ws7{word-spacing:-40.440000px;}
.ws11{word-spacing:-32.352000px;}
.ws5{word-spacing:-20.232000px;}
.wsf{word-spacing:-16.860000px;}
.ws2{word-spacing:-13.757760px;}
.ws10{word-spacing:-12.336000px;}
.ws12{word-spacing:-11.464800px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:8.400000px;}
.wsc{word-spacing:56.880000px;}
.wsb{word-spacing:279.936000px;}
.wsa{word-spacing:288.144000px;}
._12{margin-left:-2007.396000px;}
._1e{margin-left:-1486.155600px;}
._1f{margin-left:-1359.049800px;}
._20{margin-left:-1345.572000px;}
._21{margin-left:-1174.912200px;}
._22{margin-left:-1148.788200px;}
._23{margin-left:-933.182400px;}
._24{margin-left:-919.764000px;}
._25{margin-left:-731.853600px;}
._26{margin-left:-705.748200px;}
._15{margin-left:-206.233200px;}
._16{margin-left:-162.178800px;}
._17{margin-left:-148.478400px;}
._19{margin-left:-119.309400px;}
._1a{margin-left:-20.208000px;}
._10{margin-left:-16.056000px;}
._6{margin-left:-14.134800px;}
._18{margin-left:-12.193800px;}
._5{margin-left:-11.160000px;}
._c{margin-left:-9.480000px;}
._14{margin-left:-8.374800px;}
._b{margin-left:-7.272000px;}
._0{margin-left:-5.940000px;}
._7{margin-left:-4.740000px;}
._4{margin-left:-3.120000px;}
._2{margin-left:-1.260000px;}
._1{width:1.860000px;}
._a{width:2.904000px;}
._d{width:3.984000px;}
._13{width:5.112000px;}
._8{width:6.696000px;}
._9{width:7.764000px;}
._11{width:9.792000px;}
._e{width:10.944000px;}
._f{width:13.896000px;}
._1d{width:164.100000px;}
._3{width:201.589200px;}
._1b{width:221.256000px;}
._1c{width:289.296000px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:40.800000px;}
.fs5{font-size:48.000000px;}
.fs4{font-size:48.960000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:423.828000px;}
.y0{bottom:0.000000px;}
.y1{bottom:103.500000px;}
.y2b{bottom:148.500000px;}
.y20{bottom:148.500150px;}
.y4c{bottom:150.150000px;}
.y59{bottom:153.175800px;}
.y90{bottom:159.750000px;}
.y70{bottom:167.250000px;}
.y2a{bottom:171.000000px;}
.y1f{bottom:171.000150px;}
.y4b{bottom:172.200000px;}
.y58{bottom:175.675800px;}
.y8f{bottom:178.500000px;}
.y6f{bottom:186.000000px;}
.y1e{bottom:193.500000px;}
.y4a{bottom:194.250000px;}
.y8e{bottom:197.250000px;}
.y57{bottom:198.175800px;}
.y6e{bottom:204.750000px;}
.y1d{bottom:216.000000px;}
.y49{bottom:216.300000px;}
.y56{bottom:220.675800px;}
.y6d{bottom:223.500000px;}
.y8d{bottom:234.750000px;}
.y48{bottom:238.350000px;}
.y1c{bottom:238.500000px;}
.y6c{bottom:242.250000px;}
.y55{bottom:243.175800px;}
.y8c{bottom:253.500000px;}
.y1b{bottom:261.000000px;}
.y54{bottom:265.675800px;}
.y8b{bottom:272.250000px;}
.y47{bottom:275.400000px;}
.y6b{bottom:279.750000px;}
.y1a{bottom:283.500000px;}
.y8a{bottom:291.000000px;}
.y46{bottom:297.450000px;}
.y6a{bottom:298.500000px;}
.y19{bottom:306.000000px;}
.y89{bottom:309.750000px;}
.y53{bottom:312.175800px;}
.y69{bottom:317.250000px;}
.y45{bottom:319.500000px;}
.y18{bottom:328.500000px;}
.y68{bottom:336.000000px;}
.y52{bottom:339.146550px;}
.y44{bottom:341.550000px;}
.y88{bottom:347.250000px;}
.y17{bottom:351.000000px;}
.y67{bottom:354.750000px;}
.y43{bottom:363.600000px;}
.y87{bottom:366.000000px;}
.y51{bottom:366.146550px;}
.y16{bottom:373.500000px;}
.y98{bottom:377.250000px;}
.y86{bottom:384.750000px;}
.y42{bottom:385.650000px;}
.y66{bottom:392.250000px;}
.y15{bottom:396.000000px;}
.y85{bottom:403.500000px;}
.y41{bottom:407.700000px;}
.y65{bottom:411.000000px;}
.y97{bottom:414.750000px;}
.y14{bottom:418.500000px;}
.y50{bottom:420.117150px;}
.y84{bottom:422.250000px;}
.y40{bottom:429.750000px;}
.y96{bottom:433.500000px;}
.y13{bottom:441.000000px;}
.y4f{bottom:447.087900px;}
.y64{bottom:456.000000px;}
.y83{bottom:459.750000px;}
.y12{bottom:463.500000px;}
.y95{bottom:471.000000px;}
.y3f{bottom:473.850000px;}
.y82{bottom:478.500000px;}
.y11{bottom:486.000000px;}
.y3e{bottom:495.900000px;}
.y81{bottom:497.250000px;}
.y63{bottom:501.000000px;}
.y4e{bottom:501.058650px;}
.y10{bottom:508.500000px;}
.y94{bottom:512.250000px;}
.y62{bottom:516.000000px;}
.y3d{bottom:517.950000px;}
.y4d{bottom:528.029250px;}
.yf{bottom:531.000000px;}
.y80{bottom:534.750000px;}
.y3c{bottom:540.000000px;}
.y61{bottom:546.000000px;}
.y93{bottom:549.750000px;}
.y29{bottom:553.500000px;}
.y60{bottom:561.000000px;}
.y3b{bottom:562.050000px;}
.y92{bottom:568.500000px;}
.ye{bottom:576.000000px;}
.y3a{bottom:584.100000px;}
.y91{bottom:587.250000px;}
.y5f{bottom:591.000000px;}
.yd{bottom:598.500000px;}
.y5e{bottom:606.000000px;}
.y39{bottom:606.150000px;}
.yc{bottom:621.000000px;}
.y7f{bottom:624.750000px;}
.y38{bottom:628.200000px;}
.y5d{bottom:636.000000px;}
.yb{bottom:643.500000px;}
.y5c{bottom:651.000000px;}
.y7e{bottom:662.250000px;}
.ya{bottom:666.000000px;}
.y37{bottom:672.300000px;}
.y5b{bottom:681.000000px;}
.y9{bottom:688.500000px;}
.y36{bottom:694.350000px;}
.y5a{bottom:696.000000px;}
.y7d{bottom:699.750000px;}
.y7{bottom:711.000000px;}
.y35{bottom:716.400000px;}
.y7c{bottom:718.500000px;}
.y8{bottom:733.500000px;}
.y7b{bottom:737.250000px;}
.y34{bottom:738.450000px;}
.y28{bottom:756.000000px;}
.y33{bottom:760.500000px;}
.y7a{bottom:774.750000px;}
.y27{bottom:778.500000px;}
.y32{bottom:782.550000px;}
.y79{bottom:793.500000px;}
.y6{bottom:801.000000px;}
.y31{bottom:804.600000px;}
.y78{bottom:812.250000px;}
.y5{bottom:823.500000px;}
.y30{bottom:826.650000px;}
.y77{bottom:831.000000px;}
.y26{bottom:846.000000px;}
.y76{bottom:849.750000px;}
.y25{bottom:868.500000px;}
.y2f{bottom:870.750000px;}
.y75{bottom:887.250000px;}
.y24{bottom:891.000000px;}
.y4{bottom:891.000150px;}
.y74{bottom:906.000000px;}
.y23{bottom:913.500000px;}
.y2e{bottom:914.850000px;}
.y3{bottom:921.000150px;}
.y73{bottom:924.750000px;}
.y22{bottom:936.000000px;}
.y2d{bottom:936.900000px;}
.y72{bottom:943.500000px;}
.y2{bottom:951.000150px;}
.y21{bottom:958.500000px;}
.y2c{bottom:958.950000px;}
.y71{bottom:962.250000px;}
.hc{height:39.072000px;}
.h8{height:39.990234px;}
.hd{height:46.312500px;}
.ha{height:47.988281px;}
.h4{height:50.580000px;}
.h9{height:51.222656px;}
.h1{height:57.890625px;}
.he{height:59.165625px;}
.h5{height:61.136719px;}
.h7{height:69.468750px;}
.hb{height:70.998750px;}
.h2{height:82.792969px;}
.h3{height:115.781250px;}
.h6{height:342.453024px;}
.h0{height:1080.000000px;}
.w0{width:783.000000px;}
.x0{left:0.000000px;}
.x5{left:99.000000px;}
.x6{left:114.000000px;}
.x7{left:129.000000px;}
.x2{left:144.000000px;}
.xa{left:152.100000px;}
.x4{left:159.000000px;}
.x8{left:166.500000px;}
.x3{left:167.733300px;}
.x9{left:174.000000px;}
.xc{left:211.500000px;}
.xb{left:287.100000px;}
.x1{left:453.653250px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v5{vertical-align:-17.600000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.600000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:160.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000533pt;}
.lsc{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.025067pt;}
.lsf{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.576000pt;}
.lse{letter-spacing:0.710933pt;}
.ls11{letter-spacing:0.832000pt;}
.ls6{letter-spacing:0.896000pt;}
.ls12{letter-spacing:4.224000pt;}
.lsa{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.414603pt;}
.ls0{letter-spacing:9.546667pt;}
.ws8{word-spacing:-64.000000pt;}
.ws4{word-spacing:-43.648000pt;}
.wse{word-spacing:-43.584000pt;}
.wsd{word-spacing:-43.456000pt;}
.ws6{word-spacing:-43.392000pt;}
.ws9{word-spacing:-43.200000pt;}
.ws1{word-spacing:-43.136000pt;}
.ws7{word-spacing:-35.946667pt;}
.ws11{word-spacing:-28.757333pt;}
.ws5{word-spacing:-17.984000pt;}
.wsf{word-spacing:-14.986667pt;}
.ws2{word-spacing:-12.229120pt;}
.ws10{word-spacing:-10.965333pt;}
.ws12{word-spacing:-10.190933pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:7.466667pt;}
.wsc{word-spacing:50.560000pt;}
.wsb{word-spacing:248.832000pt;}
.wsa{word-spacing:256.128000pt;}
._12{margin-left:-1784.352000pt;}
._1e{margin-left:-1321.027200pt;}
._1f{margin-left:-1208.044267pt;}
._20{margin-left:-1196.064000pt;}
._21{margin-left:-1044.366400pt;}
._22{margin-left:-1021.145067pt;}
._23{margin-left:-829.495467pt;}
._24{margin-left:-817.568000pt;}
._25{margin-left:-650.536533pt;}
._26{margin-left:-627.331733pt;}
._15{margin-left:-183.318400pt;}
._16{margin-left:-144.158933pt;}
._17{margin-left:-131.980800pt;}
._19{margin-left:-106.052800pt;}
._1a{margin-left:-17.962667pt;}
._10{margin-left:-14.272000pt;}
._6{margin-left:-12.564267pt;}
._18{margin-left:-10.838933pt;}
._5{margin-left:-9.920000pt;}
._c{margin-left:-8.426667pt;}
._14{margin-left:-7.444267pt;}
._b{margin-left:-6.464000pt;}
._0{margin-left:-5.280000pt;}
._7{margin-left:-4.213333pt;}
._4{margin-left:-2.773333pt;}
._2{margin-left:-1.120000pt;}
._1{width:1.653333pt;}
._a{width:2.581333pt;}
._d{width:3.541333pt;}
._13{width:4.544000pt;}
._8{width:5.952000pt;}
._9{width:6.901333pt;}
._11{width:8.704000pt;}
._e{width:9.728000pt;}
._f{width:12.352000pt;}
._1d{width:145.866667pt;}
._3{width:179.190400pt;}
._1b{width:196.672000pt;}
._1c{width:257.152000pt;}
.fs6{font-size:36.266667pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:43.520000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:376.736000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:92.000000pt;}
.y2b{bottom:132.000000pt;}
.y20{bottom:132.000133pt;}
.y4c{bottom:133.466667pt;}
.y59{bottom:136.156267pt;}
.y90{bottom:142.000000pt;}
.y70{bottom:148.666667pt;}
.y2a{bottom:152.000000pt;}
.y1f{bottom:152.000133pt;}
.y4b{bottom:153.066667pt;}
.y58{bottom:156.156267pt;}
.y8f{bottom:158.666667pt;}
.y6f{bottom:165.333333pt;}
.y1e{bottom:172.000000pt;}
.y4a{bottom:172.666667pt;}
.y8e{bottom:175.333333pt;}
.y57{bottom:176.156267pt;}
.y6e{bottom:182.000000pt;}
.y1d{bottom:192.000000pt;}
.y49{bottom:192.266667pt;}
.y56{bottom:196.156267pt;}
.y6d{bottom:198.666667pt;}
.y8d{bottom:208.666667pt;}
.y48{bottom:211.866667pt;}
.y1c{bottom:212.000000pt;}
.y6c{bottom:215.333333pt;}
.y55{bottom:216.156267pt;}
.y8c{bottom:225.333333pt;}
.y1b{bottom:232.000000pt;}
.y54{bottom:236.156267pt;}
.y8b{bottom:242.000000pt;}
.y47{bottom:244.800000pt;}
.y6b{bottom:248.666667pt;}
.y1a{bottom:252.000000pt;}
.y8a{bottom:258.666667pt;}
.y46{bottom:264.400000pt;}
.y6a{bottom:265.333333pt;}
.y19{bottom:272.000000pt;}
.y89{bottom:275.333333pt;}
.y53{bottom:277.489600pt;}
.y69{bottom:282.000000pt;}
.y45{bottom:284.000000pt;}
.y18{bottom:292.000000pt;}
.y68{bottom:298.666667pt;}
.y52{bottom:301.463600pt;}
.y44{bottom:303.600000pt;}
.y88{bottom:308.666667pt;}
.y17{bottom:312.000000pt;}
.y67{bottom:315.333333pt;}
.y43{bottom:323.200000pt;}
.y87{bottom:325.333333pt;}
.y51{bottom:325.463600pt;}
.y16{bottom:332.000000pt;}
.y98{bottom:335.333333pt;}
.y86{bottom:342.000000pt;}
.y42{bottom:342.800000pt;}
.y66{bottom:348.666667pt;}
.y15{bottom:352.000000pt;}
.y85{bottom:358.666667pt;}
.y41{bottom:362.400000pt;}
.y65{bottom:365.333333pt;}
.y97{bottom:368.666667pt;}
.y14{bottom:372.000000pt;}
.y50{bottom:373.437467pt;}
.y84{bottom:375.333333pt;}
.y40{bottom:382.000000pt;}
.y96{bottom:385.333333pt;}
.y13{bottom:392.000000pt;}
.y4f{bottom:397.411467pt;}
.y64{bottom:405.333333pt;}
.y83{bottom:408.666667pt;}
.y12{bottom:412.000000pt;}
.y95{bottom:418.666667pt;}
.y3f{bottom:421.200000pt;}
.y82{bottom:425.333333pt;}
.y11{bottom:432.000000pt;}
.y3e{bottom:440.800000pt;}
.y81{bottom:442.000000pt;}
.y63{bottom:445.333333pt;}
.y4e{bottom:445.385467pt;}
.y10{bottom:452.000000pt;}
.y94{bottom:455.333333pt;}
.y62{bottom:458.666667pt;}
.y3d{bottom:460.400000pt;}
.y4d{bottom:469.359333pt;}
.yf{bottom:472.000000pt;}
.y80{bottom:475.333333pt;}
.y3c{bottom:480.000000pt;}
.y61{bottom:485.333333pt;}
.y93{bottom:488.666667pt;}
.y29{bottom:492.000000pt;}
.y60{bottom:498.666667pt;}
.y3b{bottom:499.600000pt;}
.y92{bottom:505.333333pt;}
.ye{bottom:512.000000pt;}
.y3a{bottom:519.200000pt;}
.y91{bottom:522.000000pt;}
.y5f{bottom:525.333333pt;}
.yd{bottom:532.000000pt;}
.y5e{bottom:538.666667pt;}
.y39{bottom:538.800000pt;}
.yc{bottom:552.000000pt;}
.y7f{bottom:555.333333pt;}
.y38{bottom:558.400000pt;}
.y5d{bottom:565.333333pt;}
.yb{bottom:572.000000pt;}
.y5c{bottom:578.666667pt;}
.y7e{bottom:588.666667pt;}
.ya{bottom:592.000000pt;}
.y37{bottom:597.600000pt;}
.y5b{bottom:605.333333pt;}
.y9{bottom:612.000000pt;}
.y36{bottom:617.200000pt;}
.y5a{bottom:618.666667pt;}
.y7d{bottom:622.000000pt;}
.y7{bottom:632.000000pt;}
.y35{bottom:636.800000pt;}
.y7c{bottom:638.666667pt;}
.y8{bottom:652.000000pt;}
.y7b{bottom:655.333333pt;}
.y34{bottom:656.400000pt;}
.y28{bottom:672.000000pt;}
.y33{bottom:676.000000pt;}
.y7a{bottom:688.666667pt;}
.y27{bottom:692.000000pt;}
.y32{bottom:695.600000pt;}
.y79{bottom:705.333333pt;}
.y6{bottom:712.000000pt;}
.y31{bottom:715.200000pt;}
.y78{bottom:722.000000pt;}
.y5{bottom:732.000000pt;}
.y30{bottom:734.800000pt;}
.y77{bottom:738.666667pt;}
.y26{bottom:752.000000pt;}
.y76{bottom:755.333333pt;}
.y25{bottom:772.000000pt;}
.y2f{bottom:774.000000pt;}
.y75{bottom:788.666667pt;}
.y24{bottom:792.000000pt;}
.y4{bottom:792.000133pt;}
.y74{bottom:805.333333pt;}
.y23{bottom:812.000000pt;}
.y2e{bottom:813.200000pt;}
.y3{bottom:818.666800pt;}
.y73{bottom:822.000000pt;}
.y22{bottom:832.000000pt;}
.y2d{bottom:832.800000pt;}
.y72{bottom:838.666667pt;}
.y2{bottom:845.333467pt;}
.y21{bottom:852.000000pt;}
.y2c{bottom:852.400000pt;}
.y71{bottom:855.333333pt;}
.hc{height:34.730667pt;}
.h8{height:35.546875pt;}
.hd{height:41.166667pt;}
.ha{height:42.656250pt;}
.h4{height:44.960000pt;}
.h9{height:45.531250pt;}
.h1{height:51.458333pt;}
.he{height:52.591667pt;}
.h5{height:54.343750pt;}
.h7{height:61.750000pt;}
.hb{height:63.110000pt;}
.h2{height:73.593750pt;}
.h3{height:102.916667pt;}
.h6{height:304.402688pt;}
.h0{height:960.000000pt;}
.w0{width:696.000000pt;}
.x0{left:0.000000pt;}
.x5{left:88.000000pt;}
.x6{left:101.333333pt;}
.x7{left:114.666667pt;}
.x2{left:128.000000pt;}
.xa{left:135.200000pt;}
.x4{left:141.333333pt;}
.x8{left:148.000000pt;}
.x3{left:149.096267pt;}
.x9{left:154.666667pt;}
.xc{left:188.000000pt;}
.xb{left:255.200000pt;}
.x1{left:403.247333pt;}
}




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