
    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_dc5069d7736e6893267f6760.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_d54e74055d5b74b3056b5523.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_2bd45652a3c7edeb03e7a122.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862793;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_4cac2c647f7407fc7cbf5362.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.019531;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_236ecfc59f736914ebc8a296.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.015625;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_c487713bf97181db73f9a0d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.599991px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.096328px;}
.ls1{letter-spacing:0.106523px;}
.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;}
}
.wsc{word-spacing:-191.753203px;}
.wse{word-spacing:-160.127936px;}
.wsd{word-spacing:-146.717221px;}
.ws3{word-spacing:-120.095952px;}
.ws7{word-spacing:-107.999957px;}
.ws4{word-spacing:-100.079960px;}
.ws6{word-spacing:-90.071964px;}
.ws5{word-spacing:-73.458691px;}
.ws2{word-spacing:-54.185738px;}
.ws0{word-spacing:-51.582219px;}
.wsf{word-spacing:-46.637261px;}
.ws9{word-spacing:-33.533230px;}
.wsb{word-spacing:-33.426707px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:1171.572699px;}
.ws8{word-spacing:1235.652658px;}
._e{margin-left:-3563.523965px;}
._13{margin-left:-3167.658608px;}
._17{margin-left:-2700.268773px;}
._12{margin-left:-2681.272318px;}
._10{margin-left:-2501.128390px;}
._11{margin-left:-2069.299047px;}
._15{margin-left:-2026.719989px;}
._f{margin-left:-1494.611402px;}
._18{margin-left:-1280.159488px;}
._19{margin-left:-1080.359568px;}
._16{margin-left:-926.019996px;}
._14{margin-left:-33.093185px;}
._6{margin-left:-19.405550px;}
._9{margin-left:-13.080940px;}
._a{margin-left:-8.291068px;}
._b{margin-left:-7.261887px;}
._3{margin-left:-5.554679px;}
._0{margin-left:-4.271837px;}
._4{margin-left:-3.222765px;}
._1{margin-left:-2.094608px;}
._5{margin-left:-1.060125px;}
._2{width:1.180366px;}
._8{width:2.217638px;}
._7{width:49.939662px;}
._d{width:213.481598px;}
._c{width:277.401179px;}
.fc3{color:rgb(255,218,28);}
.fc2{color:transparent;}
.fc6{color:rgb(217,217,217);}
.fc5{color:rgb(127,127,127);}
.fc4{color:rgb(250,208,4);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:107.999957px;}
.fs9{font-size:120.239952px;}
.fs1{font-size:143.999942px;}
.fse{font-size:167.759933px;}
.fs0{font-size:228.239909px;}
.fs3{font-size:239.759904px;}
.fs7{font-size:264.239894px;}
.fs2{font-size:287.999885px;}
.fs6{font-size:323.999870px;}
.fs5{font-size:359.999856px;}
.fs4{font-size:431.999827px;}
.fsc{font-size:527.759789px;}
.fsd{font-size:575.999770px;}
.fsb{font-size:689.759724px;}
.fsa{font-size:827.999669px;}
.y17{bottom:-58.319798px;}
.y1e{bottom:-54.899800px;}
.y48{bottom:-51.299801px;}
.y61{bottom:-46.439803px;}
.y6{bottom:-20.159813px;}
.y5b{bottom:-8.999818px;}
.y52{bottom:-8.819818px;}
.y0{bottom:0.000000px;}
.y50{bottom:3.600177px;}
.y32{bottom:4.500177px;}
.y38{bottom:6.660177px;}
.y4d{bottom:14.040167px;}
.y5d{bottom:14.040182px;}
.y4a{bottom:14.040199px;}
.y19{bottom:14.040202px;}
.y8{bottom:15.300187px;}
.y58{bottom:17.100182px;}
.y20{bottom:17.100200px;}
.y64{bottom:30.600197px;}
.y54{bottom:43.920177px;}
.y45{bottom:140.280301px;}
.y2b{bottom:161.880292px;}
.yc{bottom:175.740287px;}
.y12{bottom:175.920287px;}
.y44{bottom:176.280286px;}
.y3f{bottom:177.360286px;}
.y60{bottom:184.200283px;}
.y22{bottom:196.980278px;}
.y43{bottom:212.280272px;}
.y4f{bottom:212.460272px;}
.y3e{bottom:213.360272px;}
.yb{bottom:218.940269px;}
.y28{bottom:224.880267px;}
.y29{bottom:228.660266px;}
.y11{bottom:247.920258px;}
.y42{bottom:248.280258px;}
.y3d{bottom:249.360257px;}
.ya{bottom:262.140252px;}
.y41{bottom:284.280243px;}
.y3c{bottom:285.360243px;}
.y5e{bottom:285.720243px;}
.y2c{bottom:288.420242px;}
.y4e{bottom:291.660240px;}
.y5f{bottom:292.200240px;}
.y21{bottom:294.180239px;}
.y9{bottom:305.340235px;}
.y56{bottom:306.600234px;}
.y1a{bottom:308.760233px;}
.y4b{bottom:315.780231px;}
.y10{bottom:319.920229px;}
.y40{bottom:320.280229px;}
.y3b{bottom:321.360228px;}
.y3a{bottom:365.460211px;}
.y63{bottom:369.240000px;}
.y18{bottom:373.920000px;}
.y1f{bottom:374.280000px;}
.y55{bottom:378.600206px;}
.y49{bottom:380.940000px;}
.y2a{bottom:388.680202px;}
.y53{bottom:405.960000px;}
.y27{bottom:407.760194px;}
.y7{bottom:410.820000px;}
.y39{bottom:414.780191px;}
.y57{bottom:420.360000px;}
.y5c{bottom:423.240000px;}
.y37{bottom:444.120000px;}
.y5{bottom:446.280000px;}
.y4c{bottom:460.140000px;}
.yf{bottom:467.160170px;}
.y47{bottom:474.180167px;}
.y62{bottom:479.040165px;}
.y36{bottom:486.600162px;}
.y31{bottom:486.780162px;}
.y1d{bottom:488.580162px;}
.y4{bottom:494.520159px;}
.y5a{bottom:516.480150px;}
.y35{bottom:522.600148px;}
.y30{bottom:522.780148px;}
.y51{bottom:534.660143px;}
.y26{bottom:536.460142px;}
.y16{bottom:546.360138px;}
.ye{bottom:553.560136px;}
.y34{bottom:558.600134px;}
.y2f{bottom:558.780133px;}
.y3{bottom:562.920132px;}
.y1c{bottom:585.780123px;}
.y14{bottom:585.960123px;}
.y33{bottom:594.600119px;}
.y2e{bottom:594.780119px;}
.y25{bottom:596.040119px;}
.y24{bottom:597.300118px;}
.y59{bottom:604.860115px;}
.y2{bottom:631.320104px;}
.y23{bottom:634.560103px;}
.yd{bottom:639.960101px;}
.y46{bottom:641.760100px;}
.y2d{bottom:643.740100px;}
.y13{bottom:667.680090px;}
.y1b{bottom:682.980084px;}
.y1{bottom:699.720077px;}
.y15{bottom:702.600076px;}
.hb{height:1.440000px;}
.h14{height:2.160000px;}
.h16{height:8.460000px;}
.he{height:18.360000px;}
.h21{height:23.040000px;}
.h1e{height:25.920000px;}
.h13{height:31.500000px;}
.h2{height:34.200000px;}
.h3{height:35.460000px;}
.h1c{height:40.320000px;}
.h20{height:50.760000px;}
.h1b{height:64.440000px;}
.h17{height:65.340000px;}
.hf{height:72.000000px;}
.hc{height:72.360000px;}
.h18{height:73.800000px;}
.h26{height:77.040000px;}
.h23{height:83.880000px;}
.h10{height:88.382777px;}
.h4{height:100.124960px;}
.h11{height:108.052691px;}
.h12{height:125.406512px;}
.h15{height:147.006504px;}
.h1{height:158.698062px;}
.h6{height:166.708058px;}
.h1d{height:174.551766px;}
.h25{height:174.968368px;}
.h19{height:190.980000px;}
.h5{height:200.249920px;}
.h9{height:221.800693px;}
.ha{height:275.593952px;}
.hd{height:337.921740px;}
.h8{height:375.468600px;}
.h7{height:450.562320px;}
.h22{height:550.436967px;}
.h24{height:600.749760px;}
.h1f{height:719.397837px;}
.h1a{height:863.577780px;}
.h0{height:892.500000px;}
.w3{width:17.820000px;}
.w2{width:105.120000px;}
.we{width:115.199640px;}
.w5{width:177.300000px;}
.w4{width:190.260000px;}
.w1{width:195.300000px;}
.w11{width:231.479640px;}
.w10{width:234.000000px;}
.wf{width:315.000000px;}
.w12{width:416.339640px;}
.wa{width:449.639640px;}
.w8{width:517.320000px;}
.wd{width:642.780000px;}
.w7{width:818.640000px;}
.w6{width:976.499640px;}
.wb{width:1009.619640px;}
.w9{width:1016.999640px;}
.wc{width:1067.039640px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x4c{left:102.225859px;}
.x41{left:104.385960px;}
.x45{left:111.585960px;}
.x16{left:114.825854px;}
.x1f{left:118.605853px;}
.x14{left:127.785849px;}
.x20{left:131.925960px;}
.x3f{left:135.705960px;}
.x37{left:147.226441px;}
.x2c{left:149.026440px;}
.x1e{left:150.466440px;}
.x12{left:152.806439px;}
.x10{left:154.606438px;}
.x2b{left:159.106436px;}
.x36{left:164.326434px;}
.x4b{left:168.465960px;}
.x3e{left:173.326431px;}
.x15{left:176.565829px;}
.x43{left:177.826429px;}
.x35{left:179.986428px;}
.x17{left:183.405827px;}
.xf{left:197.986421px;}
.x2d{left:201.046420px;}
.x3{left:204.466418px;}
.x34{left:207.526417px;}
.x1b{left:220.125812px;}
.x18{left:225.705810px;}
.x1c{left:231.105600px;}
.x19{left:253.066399px;}
.x13{left:254.146398px;}
.x1a{left:260.445796px;}
.x2a{left:271.426391px;}
.x5{left:273.225600px;}
.x4{left:279.526388px;}
.x33{left:287.266385px;}
.x32{left:289.606384px;}
.x1{left:290.866384px;}
.x4a{left:298.786380px;}
.x42{left:309.945600px;}
.x25{left:343.606363px;}
.x11{left:355.486358px;}
.x22{left:383.206347px;}
.xd{left:391.666343px;}
.x1d{left:410.926336px;}
.x44{left:440.446324px;}
.x40{left:449.446320px;}
.x21{left:466.006314px;}
.x2{left:467.986313px;}
.x6{left:480.945600px;}
.x26{left:517.306293px;}
.x46{left:519.646292px;}
.x48{left:535.846286px;}
.x27{left:549.706280px;}
.x7{left:598.845600px;}
.xb{left:604.066258px;}
.x8{left:616.665600px;}
.x30{left:660.046236px;}
.xc{left:663.106235px;}
.x3b{left:664.366234px;}
.x47{left:667.066233px;}
.x2f{left:671.926231px;}
.x3a{left:675.886230px;}
.x31{left:684.346226px;}
.x39{left:691.006224px;}
.x38{left:727.186209px;}
.x2e{left:736.366205px;}
.xe{left:742.486203px;}
.x3c{left:751.306199px;}
.x24{left:765.346194px;}
.x29{left:782.086187px;}
.x3d{left:785.866186px;}
.x49{left:790.006184px;}
.x28{left:794.326182px;}
.x23{left:797.746181px;}
.x9{left:819.705600px;}
.xa{left:997.005600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.199992pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.085625pt;}
.ls1{letter-spacing:0.094688pt;}
.wsc{word-spacing:-170.447292pt;}
.wse{word-spacing:-142.335943pt;}
.wsd{word-spacing:-130.415308pt;}
.ws3{word-spacing:-106.751957pt;}
.ws7{word-spacing:-95.999962pt;}
.ws4{word-spacing:-88.959964pt;}
.ws6{word-spacing:-80.063968pt;}
.ws5{word-spacing:-65.296614pt;}
.ws2{word-spacing:-48.165101pt;}
.ws0{word-spacing:-45.850862pt;}
.wsf{word-spacing:-41.455343pt;}
.ws9{word-spacing:-29.807316pt;}
.wsb{word-spacing:-29.712628pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:1041.397955pt;}
.ws8{word-spacing:1098.357919pt;}
._e{margin-left:-3167.576858pt;}
._13{margin-left:-2815.696540pt;}
._17{margin-left:-2400.238909pt;}
._12{margin-left:-2383.353172pt;}
._10{margin-left:-2223.225236pt;}
._11{margin-left:-1839.376931pt;}
._15{margin-left:-1801.528879pt;}
._f{margin-left:-1328.543469pt;}
._18{margin-left:-1137.919545pt;}
._19{margin-left:-960.319616pt;}
._16{margin-left:-823.128885pt;}
._14{margin-left:-29.416164pt;}
._6{margin-left:-17.249378pt;}
._9{margin-left:-11.627502pt;}
._a{margin-left:-7.369838pt;}
._b{margin-left:-6.455010pt;}
._3{margin-left:-4.937493pt;}
._0{margin-left:-3.797188pt;}
._4{margin-left:-2.864680pt;}
._1{margin-left:-1.861874pt;}
._5{margin-left:-0.942333pt;}
._2{width:1.049214pt;}
._8{width:1.971234pt;}
._7{width:44.390811pt;}
._d{width:189.761420pt;}
._c{width:246.578826pt;}
.fs8{font-size:95.999962pt;}
.fs9{font-size:106.879957pt;}
.fs1{font-size:127.999949pt;}
.fse{font-size:149.119940pt;}
.fs0{font-size:202.879919pt;}
.fs3{font-size:213.119915pt;}
.fs7{font-size:234.879906pt;}
.fs2{font-size:255.999898pt;}
.fs6{font-size:287.999885pt;}
.fs5{font-size:319.999872pt;}
.fs4{font-size:383.999846pt;}
.fsc{font-size:469.119812pt;}
.fsd{font-size:511.999795pt;}
.fsb{font-size:613.119755pt;}
.fsa{font-size:735.999706pt;}
.y17{bottom:-51.839821pt;}
.y1e{bottom:-48.799822pt;}
.y48{bottom:-45.599823pt;}
.y61{bottom:-41.279825pt;}
.y6{bottom:-17.919834pt;}
.y5b{bottom:-7.999838pt;}
.y52{bottom:-7.839838pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:3.200157pt;}
.y32{bottom:4.000157pt;}
.y38{bottom:5.920157pt;}
.y4d{bottom:12.480149pt;}
.y5d{bottom:12.480162pt;}
.y4a{bottom:12.480177pt;}
.y19{bottom:12.480179pt;}
.y8{bottom:13.600166pt;}
.y58{bottom:15.200162pt;}
.y20{bottom:15.200178pt;}
.y64{bottom:27.200175pt;}
.y54{bottom:39.040157pt;}
.y45{bottom:124.693601pt;}
.y2b{bottom:143.893593pt;}
.yc{bottom:156.213588pt;}
.y12{bottom:156.373588pt;}
.y44{bottom:156.693588pt;}
.y3f{bottom:157.653588pt;}
.y60{bottom:163.733585pt;}
.y22{bottom:175.093581pt;}
.y43{bottom:188.693575pt;}
.y4f{bottom:188.853575pt;}
.y3e{bottom:189.653575pt;}
.yb{bottom:194.613573pt;}
.y28{bottom:199.893571pt;}
.y29{bottom:203.253569pt;}
.y11{bottom:220.373563pt;}
.y42{bottom:220.693562pt;}
.y3d{bottom:221.653562pt;}
.ya{bottom:233.013557pt;}
.y41{bottom:252.693550pt;}
.y3c{bottom:253.653549pt;}
.y5e{bottom:253.973549pt;}
.y2c{bottom:256.373548pt;}
.y4e{bottom:259.253547pt;}
.y5f{bottom:259.733547pt;}
.y21{bottom:261.493546pt;}
.y9{bottom:271.413542pt;}
.y56{bottom:272.533542pt;}
.y1a{bottom:274.453541pt;}
.y4b{bottom:280.693538pt;}
.y10{bottom:284.373537pt;}
.y40{bottom:284.693537pt;}
.y3b{bottom:285.653536pt;}
.y3a{bottom:324.853521pt;}
.y63{bottom:328.213333pt;}
.y18{bottom:332.373333pt;}
.y1f{bottom:332.693333pt;}
.y55{bottom:336.533516pt;}
.y49{bottom:338.613333pt;}
.y2a{bottom:345.493512pt;}
.y53{bottom:360.853333pt;}
.y27{bottom:362.453506pt;}
.y7{bottom:365.173333pt;}
.y39{bottom:368.693503pt;}
.y57{bottom:373.653333pt;}
.y5c{bottom:376.213333pt;}
.y37{bottom:394.773333pt;}
.y5{bottom:396.693333pt;}
.y4c{bottom:409.013333pt;}
.yf{bottom:415.253485pt;}
.y47{bottom:421.493482pt;}
.y62{bottom:425.813480pt;}
.y36{bottom:432.533478pt;}
.y31{bottom:432.693478pt;}
.y1d{bottom:434.293477pt;}
.y4{bottom:439.573475pt;}
.y5a{bottom:459.093467pt;}
.y35{bottom:464.533465pt;}
.y30{bottom:464.693465pt;}
.y51{bottom:475.253461pt;}
.y26{bottom:476.853460pt;}
.y16{bottom:485.653456pt;}
.ye{bottom:492.053454pt;}
.y34{bottom:496.533452pt;}
.y2f{bottom:496.693452pt;}
.y3{bottom:500.373451pt;}
.y1c{bottom:520.693442pt;}
.y14{bottom:520.853442pt;}
.y33{bottom:528.533439pt;}
.y2e{bottom:528.693439pt;}
.y25{bottom:529.813439pt;}
.y24{bottom:530.933438pt;}
.y59{bottom:537.653436pt;}
.y2{bottom:561.173426pt;}
.y23{bottom:564.053425pt;}
.yd{bottom:568.853423pt;}
.y46{bottom:570.453422pt;}
.y2d{bottom:572.213422pt;}
.y13{bottom:593.493413pt;}
.y1b{bottom:607.093408pt;}
.y1{bottom:621.973402pt;}
.y15{bottom:624.533401pt;}
.hb{height:1.280000pt;}
.h14{height:1.920000pt;}
.h16{height:7.520000pt;}
.he{height:16.320000pt;}
.h21{height:20.480000pt;}
.h1e{height:23.040000pt;}
.h13{height:28.000000pt;}
.h2{height:30.400000pt;}
.h3{height:31.520000pt;}
.h1c{height:35.840000pt;}
.h20{height:45.120000pt;}
.h1b{height:57.280000pt;}
.h17{height:58.080000pt;}
.hf{height:64.000000pt;}
.hc{height:64.320000pt;}
.h18{height:65.600000pt;}
.h26{height:68.480000pt;}
.h23{height:74.560000pt;}
.h10{height:78.562469pt;}
.h4{height:88.999964pt;}
.h11{height:96.046837pt;}
.h12{height:111.472455pt;}
.h15{height:130.672448pt;}
.h1{height:141.064944pt;}
.h6{height:148.184941pt;}
.h1d{height:155.157125pt;}
.h25{height:155.527438pt;}
.h19{height:169.760000pt;}
.h5{height:177.999929pt;}
.h9{height:197.156171pt;}
.ha{height:244.972402pt;}
.hd{height:300.374880pt;}
.h8{height:333.749866pt;}
.h7{height:400.499840pt;}
.h22{height:489.277304pt;}
.h24{height:533.999786pt;}
.h1f{height:639.464744pt;}
.h1a{height:767.624693pt;}
.h0{height:793.333333pt;}
.w3{width:15.840000pt;}
.w2{width:93.440000pt;}
.we{width:102.399680pt;}
.w5{width:157.600000pt;}
.w4{width:169.120000pt;}
.w1{width:173.600000pt;}
.w11{width:205.759680pt;}
.w10{width:208.000000pt;}
.wf{width:280.000000pt;}
.w12{width:370.079680pt;}
.wa{width:399.679680pt;}
.w8{width:459.840000pt;}
.wd{width:571.360000pt;}
.w7{width:727.680000pt;}
.w6{width:867.999680pt;}
.wb{width:897.439680pt;}
.w9{width:903.999680pt;}
.wc{width:948.479680pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4c{left:90.867430pt;}
.x41{left:92.787520pt;}
.x45{left:99.187520pt;}
.x16{left:102.067426pt;}
.x1f{left:105.427424pt;}
.x14{left:113.587421pt;}
.x20{left:117.267520pt;}
.x3f{left:120.627520pt;}
.x37{left:130.867948pt;}
.x2c{left:132.467947pt;}
.x1e{left:133.747947pt;}
.x12{left:135.827946pt;}
.x10{left:137.427945pt;}
.x2b{left:141.427943pt;}
.x36{left:146.067942pt;}
.x4b{left:149.747520pt;}
.x3e{left:154.067938pt;}
.x15{left:156.947404pt;}
.x43{left:158.067937pt;}
.x35{left:159.987936pt;}
.x17{left:163.027401pt;}
.xf{left:175.987930pt;}
.x2d{left:178.707929pt;}
.x3{left:181.747927pt;}
.x34{left:184.467926pt;}
.x1b{left:195.667388pt;}
.x18{left:200.627386pt;}
.x1c{left:205.427200pt;}
.x19{left:224.947910pt;}
.x13{left:225.907910pt;}
.x1a{left:231.507374pt;}
.x2a{left:241.267903pt;}
.x5{left:242.867200pt;}
.x4{left:248.467901pt;}
.x33{left:255.347898pt;}
.x32{left:257.427897pt;}
.x1{left:258.547897pt;}
.x4a{left:265.587894pt;}
.x42{left:275.507200pt;}
.x25{left:305.427878pt;}
.x11{left:315.987874pt;}
.x22{left:340.627864pt;}
.xd{left:348.147861pt;}
.x1d{left:365.267854pt;}
.x44{left:391.507843pt;}
.x40{left:399.507840pt;}
.x21{left:414.227834pt;}
.x2{left:415.987834pt;}
.x6{left:427.507200pt;}
.x26{left:459.827816pt;}
.x46{left:461.907815pt;}
.x48{left:476.307809pt;}
.x27{left:488.627805pt;}
.x7{left:532.307200pt;}
.xb{left:536.947785pt;}
.x8{left:548.147200pt;}
.x30{left:586.707765pt;}
.xc{left:589.427764pt;}
.x3b{left:590.547764pt;}
.x47{left:592.947763pt;}
.x2f{left:597.267761pt;}
.x3a{left:600.787760pt;}
.x31{left:608.307757pt;}
.x39{left:614.227754pt;}
.x38{left:646.387741pt;}
.x2e{left:654.547738pt;}
.xe{left:659.987736pt;}
.x3c{left:667.827733pt;}
.x24{left:680.307728pt;}
.x29{left:695.187722pt;}
.x3d{left:698.547721pt;}
.x49{left:702.227719pt;}
.x28{left:706.067718pt;}
.x23{left:709.107716pt;}
.x9{left:728.627200pt;}
.xa{left:886.227200pt;}
}




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