
    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_7b1f7ff1e0c07c87e6badd60.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_6a81e359d7f8b153ce15d5ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_715b9d42094c92802aab00a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_30348d70e12c46d18bbe7925.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.804000;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_d2d03bc25c0ec7f08f5917f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_a961f74060a2d4dd6abc5c5b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.429000;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.964877px;}
.ls5{letter-spacing:2.983492px;}
.ls1{letter-spacing:2.986766px;}
.ls8{letter-spacing:2.987108px;}
.ls2{letter-spacing:2.987675px;}
.ls7{letter-spacing:2.988017px;}
.ls4{letter-spacing:2.988780px;}
.ls3{letter-spacing:35.863409px;}
.ls6{letter-spacing:35.869409px;}
.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;}
}
.ws26{word-spacing:-14.943900px;}
.ws13{word-spacing:-14.920027px;}
.ws52{word-spacing:-11.955150px;}
.ws33{word-spacing:-1.075961px;}
.ws38{word-spacing:-0.836858px;}
.ws24{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws21{word-spacing:-0.021992px;}
.ws51{word-spacing:-0.003180px;}
.ws3a{word-spacing:-0.000450px;}
.ws42{word-spacing:0.000000px;}
.ws3b{word-spacing:0.008900px;}
.ws35{word-spacing:0.011330px;}
.ws49{word-spacing:0.119551px;}
.ws2c{word-spacing:0.896634px;}
.ws5f{word-spacing:0.956410px;}
.ws36{word-spacing:1.075961px;}
.ws59{word-spacing:1.195512px;}
.ws18{word-spacing:1.494390px;}
.ws1b{word-spacing:1.733492px;}
.ws8{word-spacing:2.205734px;}
.ws4e{word-spacing:2.570351px;}
.ws60{word-spacing:2.749678px;}
.ws3e{word-spacing:2.929004px;}
.ws2d{word-spacing:3.168107px;}
.wsf{word-spacing:3.550694px;}
.ws2b{word-spacing:3.885414px;}
.ws43{word-spacing:4.004965px;}
.ws32{word-spacing:4.483170px;}
.ws4d{word-spacing:4.662497px;}
.ws4c{word-spacing:4.722272px;}
.ws2e{word-spacing:5.021150px;}
.ws58{word-spacing:5.140702px;}
.ws1{word-spacing:5.379840px;}
.ws53{word-spacing:5.618906px;}
.ws44{word-spacing:5.738458px;}
.ws2f{word-spacing:5.798233px;}
.ws4a{word-spacing:5.923910px;}
.ws4f{word-spacing:5.924522px;}
.ws22{word-spacing:5.929754px;}
.ws50{word-spacing:5.941364px;}
.ws3{word-spacing:5.977560px;}
.ws14{word-spacing:6.156887px;}
.ws45{word-spacing:6.216662px;}
.ws2{word-spacing:6.575340px;}
.wsb{word-spacing:6.671002px;}
.ws11{word-spacing:6.724800px;}
.ws1e{word-spacing:6.993745px;}
.ws5e{word-spacing:7.591501px;}
.ws31{word-spacing:8.189257px;}
.ws39{word-spacing:8.368584px;}
.ws16{word-spacing:8.488135px;}
.ws1a{word-spacing:8.667462px;}
.ws3c{word-spacing:9.085891px;}
.ws10{word-spacing:9.576115px;}
.ws5d{word-spacing:9.743423px;}
.ws62{word-spacing:9.922750px;}
.ws29{word-spacing:9.982525px;}
.ws4b{word-spacing:10.580281px;}
.ws55{word-spacing:10.640057px;}
.ws15{word-spacing:10.819384px;}
.wsc{word-spacing:11.190067px;}
.wsd{word-spacing:11.297664px;}
.ws1f{word-spacing:11.835569px;}
.ws34{word-spacing:11.955120px;}
.ws5b{word-spacing:12.014896px;}
.ws46{word-spacing:12.134447px;}
.ws20{word-spacing:12.493100px;}
.ws5a{word-spacing:12.552876px;}
.ws19{word-spacing:13.090856px;}
.ws54{word-spacing:13.150632px;}
.ws30{word-spacing:13.389734px;}
.ws1d{word-spacing:13.628837px;}
.ws17{word-spacing:14.226593px;}
.ws0{word-spacing:14.346180px;}
.ws40{word-spacing:15.123227px;}
.ws61{word-spacing:16.199188px;}
.wse{word-spacing:16.300915px;}
.wsa{word-spacing:16.462310px;}
.ws3f{word-spacing:16.796944px;}
.ws41{word-spacing:16.856719px;}
.ws5c{word-spacing:16.916495px;}
.ws56{word-spacing:16.976270px;}
.ws57{word-spacing:17.633802px;}
.ws12{word-spacing:17.932680px;}
.ws7{word-spacing:17.968666px;}
.ws47{word-spacing:18.590212px;}
.ws9{word-spacing:20.174400px;}
.ws25{word-spacing:20.383480px;}
.ws1c{word-spacing:20.682358px;}
.ws48{word-spacing:21.698543px;}
.ws5{word-spacing:22.380134px;}
.ws3d{word-spacing:22.535401px;}
.ws6{word-spacing:23.456102px;}
.ws28{word-spacing:24.885824px;}
.ws37{word-spacing:35.805584px;}
.ws23{word-spacing:43.456861px;}
.ws27{word-spacing:127.800233px;}
.ws2a{word-spacing:177.951961px;}
._8{margin-left:-6.629347px;}
._1{margin-left:-5.021163px;}
._3{margin-left:-3.873485px;}
._2{margin-left:-2.743718px;}
._0{margin-left:-1.434618px;}
._a{width:1.051650px;}
._4{width:2.988780px;}
._7{width:13.090856px;}
._9{width:16.856719px;}
._5{width:29.887800px;}
._b{width:30.903985px;}
._6{width:35.865360px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs1{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y30{bottom:113.332500px;}
.y2f{bottom:131.265000px;}
.y55{bottom:149.197500px;}
.y2e{bottom:149.199000px;}
.y87{bottom:153.576000px;}
.y2d{bottom:167.131500px;}
.y86{bottom:179.617500px;}
.y54{bottom:188.379000px;}
.y2c{bottom:189.847500px;}
.y85{bottom:197.550000px;}
.y53{bottom:206.311500px;}
.y2b{bottom:207.780000px;}
.y84{bottom:215.482500px;}
.y2a{bottom:225.712500px;}
.y52{bottom:229.492500px;}
.y83{bottom:233.415000px;}
.y29{bottom:243.646500px;}
.y82{bottom:251.347500px;}
.y51{bottom:258.828000px;}
.y28{bottom:261.579000px;}
.y81{bottom:269.281500px;}
.y50{bottom:276.760500px;}
.y27{bottom:284.295000px;}
.y80{bottom:287.214000px;}
.y4f{bottom:294.693000px;}
.y7f{bottom:305.146500px;}
.y26{bottom:309.912000px;}
.y4e{bottom:312.625500px;}
.y7e{bottom:323.079000px;}
.y4d{bottom:336.193500px;}
.y25{bottom:345.159000px;}
.y7d{bottom:345.390000px;}
.y24{bottom:363.091500px;}
.y4c{bottom:365.529000px;}
.y7c{bottom:371.430000px;}
.y23{bottom:381.024000px;}
.y4b{bottom:383.461500px;}
.y7b{bottom:389.364000px;}
.y4a{bottom:401.394000px;}
.y7a{bottom:407.296500px;}
.y22{bottom:408.766500px;}
.y49{bottom:419.326500px;}
.y79{bottom:425.229000px;}
.y48{bottom:440.574000px;}
.y78{bottom:443.161500px;}
.y21{bottom:444.013500px;}
.y47{bottom:458.508000px;}
.y20{bottom:461.946000px;}
.y77{bottom:463.020000px;}
.y46{bottom:476.440500px;}
.y1f{bottom:479.880000px;}
.y76{bottom:480.954000px;}
.y45{bottom:497.688000px;}
.y1e{bottom:497.812500px;}
.y75{bottom:498.886500px;}
.y1d{bottom:515.745000px;}
.y74{bottom:516.819000px;}
.y44{bottom:524.742000px;}
.y1c{bottom:533.677500px;}
.y73{bottom:534.751500px;}
.y1b{bottom:551.610000px;}
.y43{bottom:551.950500px;}
.y72{bottom:554.610000px;}
.y1a{bottom:569.542500px;}
.y42{bottom:569.883000px;}
.y71{bottom:572.214000px;}
.y19{bottom:588.325500px;}
.y70{bottom:590.146500px;}
.y41{bottom:593.451000px;}
.y18{bottom:606.259500px;}
.y6f{bottom:608.079000px;}
.y40{bottom:622.785000px;}
.y17{bottom:624.192000px;}
.y6e{bottom:626.011500px;}
.y16{bottom:642.124500px;}
.y3f{bottom:644.034000px;}
.y6d{bottom:648.322500px;}
.y15{bottom:660.057000px;}
.y3e{bottom:661.966500px;}
.y6c{bottom:674.364000px;}
.y14{bottom:677.989500px;}
.y3d{bottom:679.899000px;}
.y6b{bottom:692.296500px;}
.y13{bottom:695.923500px;}
.y3c{bottom:697.831500px;}
.y6a{bottom:710.229000px;}
.y3b{bottom:715.765500px;}
.y12{bottom:723.664500px;}
.y69{bottom:730.087500px;}
.y3a{bottom:733.698000px;}
.y68{bottom:748.020000px;}
.y39{bottom:751.630500px;}
.y11{bottom:758.911500px;}
.y67{bottom:765.954000px;}
.y38{bottom:769.563000px;}
.y10{bottom:773.856000px;}
.y66{bottom:783.886500px;}
.yf{bottom:788.800500px;}
.y37{bottom:790.810500px;}
.y65{bottom:801.819000px;}
.ye{bottom:803.743500px;}
.y36{bottom:808.744500px;}
.yd{bottom:818.688000px;}
.y64{bottom:819.751500px;}
.y35{bottom:831.925500px;}
.yc{bottom:833.632500px;}
.y63{bottom:837.684000px;}
.yb{bottom:848.575500px;}
.y62{bottom:857.544000px;}
.y34{bottom:861.259500px;}
.ya{bottom:863.520000px;}
.y9{bottom:878.464500px;}
.y33{bottom:879.192000px;}
.y61{bottom:879.853500px;}
.y8{bottom:893.407500px;}
.y32{bottom:897.126000px;}
.y60{bottom:905.895000px;}
.y7{bottom:908.352000px;}
.y31{bottom:915.058500px;}
.y6{bottom:923.295000px;}
.y5f{bottom:923.827500px;}
.y5{bottom:938.239500px;}
.y5e{bottom:941.760000px;}
.y5d{bottom:959.692500px;}
.y5c{bottom:977.626500px;}
.y5b{bottom:999.936000px;}
.y4{bottom:1000.420500px;}
.y3{bottom:1019.134500px;}
.y5a{bottom:1025.977500px;}
.y59{bottom:1043.910000px;}
.y58{bottom:1061.842500px;}
.y2{bottom:1066.209000px;}
.y1{bottom:1081.152000px;}
.y57{bottom:1081.701000px;}
.y56{bottom:1099.635000px;}
.h9{height:36.941321px;}
.h2{height:37.013299px;}
.h6{height:37.228493px;}
.h5{height:37.605082px;}
.h7{height:40.826735px;}
.h4{height:41.125613px;}
.h8{height:41.364715px;}
.h3{height:45.238339px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:73.446000px;}
.x5{left:88.390500px;}
.x9{left:103.479000px;}
.x8{left:128.016000px;}
.x10{left:136.018500px;}
.x12{left:172.548000px;}
.x11{left:201.433500px;}
.x7{left:203.428500px;}
.x1{left:265.990500px;}
.x2{left:296.262000px;}
.x4{left:332.410500px;}
.x3{left:423.148500px;}
.xa{left:467.967000px;}
.xb{left:482.910000px;}
.xe{left:487.089000px;}
.xf{left:498.000000px;}
.xc{left:504.325500px;}
.xd{left:549.898500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.635446pt;}
.ls5{letter-spacing:2.651993pt;}
.ls1{letter-spacing:2.654903pt;}
.ls8{letter-spacing:2.655207pt;}
.ls2{letter-spacing:2.655711pt;}
.ls7{letter-spacing:2.656015pt;}
.ls4{letter-spacing:2.656693pt;}
.ls3{letter-spacing:31.878586pt;}
.ls6{letter-spacing:31.883919pt;}
.ws26{word-spacing:-13.283467pt;}
.ws13{word-spacing:-13.262246pt;}
.ws52{word-spacing:-10.626800pt;}
.ws33{word-spacing:-0.956410pt;}
.ws38{word-spacing:-0.743874pt;}
.ws24{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws21{word-spacing:-0.019548pt;}
.ws51{word-spacing:-0.002827pt;}
.ws3a{word-spacing:-0.000400pt;}
.ws42{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.007911pt;}
.ws35{word-spacing:0.010071pt;}
.ws49{word-spacing:0.106268pt;}
.ws2c{word-spacing:0.797008pt;}
.ws5f{word-spacing:0.850142pt;}
.ws36{word-spacing:0.956410pt;}
.ws59{word-spacing:1.062677pt;}
.ws18{word-spacing:1.328347pt;}
.ws1b{word-spacing:1.540882pt;}
.ws8{word-spacing:1.960653pt;}
.ws4e{word-spacing:2.284756pt;}
.ws60{word-spacing:2.444158pt;}
.ws3e{word-spacing:2.603559pt;}
.ws2d{word-spacing:2.816095pt;}
.wsf{word-spacing:3.156173pt;}
.ws2b{word-spacing:3.453701pt;}
.ws43{word-spacing:3.559969pt;}
.ws32{word-spacing:3.985040pt;}
.ws4d{word-spacing:4.144442pt;}
.ws4c{word-spacing:4.197575pt;}
.ws2e{word-spacing:4.463245pt;}
.ws58{word-spacing:4.569513pt;}
.ws1{word-spacing:4.782080pt;}
.ws53{word-spacing:4.994583pt;}
.ws44{word-spacing:5.100851pt;}
.ws2f{word-spacing:5.153985pt;}
.ws4a{word-spacing:5.265698pt;}
.ws4f{word-spacing:5.266242pt;}
.ws22{word-spacing:5.270893pt;}
.ws50{word-spacing:5.281212pt;}
.ws3{word-spacing:5.313387pt;}
.ws14{word-spacing:5.472788pt;}
.ws45{word-spacing:5.525922pt;}
.ws2{word-spacing:5.844747pt;}
.wsb{word-spacing:5.929779pt;}
.ws11{word-spacing:5.977600pt;}
.ws1e{word-spacing:6.216662pt;}
.ws5e{word-spacing:6.748001pt;}
.ws31{word-spacing:7.279340pt;}
.ws39{word-spacing:7.438741pt;}
.ws16{word-spacing:7.545009pt;}
.ws1a{word-spacing:7.704411pt;}
.ws3c{word-spacing:8.076348pt;}
.ws10{word-spacing:8.512102pt;}
.ws5d{word-spacing:8.660820pt;}
.ws62{word-spacing:8.820222pt;}
.ws29{word-spacing:8.873356pt;}
.ws4b{word-spacing:9.404694pt;}
.ws55{word-spacing:9.457828pt;}
.ws15{word-spacing:9.617230pt;}
.wsc{word-spacing:9.946726pt;}
.wsd{word-spacing:10.042368pt;}
.ws1f{word-spacing:10.520506pt;}
.ws34{word-spacing:10.626773pt;}
.ws5b{word-spacing:10.679907pt;}
.ws46{word-spacing:10.786175pt;}
.ws20{word-spacing:11.104978pt;}
.ws5a{word-spacing:11.158112pt;}
.ws19{word-spacing:11.636317pt;}
.ws54{word-spacing:11.689451pt;}
.ws30{word-spacing:11.901986pt;}
.ws1d{word-spacing:12.114522pt;}
.ws17{word-spacing:12.645860pt;}
.ws0{word-spacing:12.752160pt;}
.ws40{word-spacing:13.442868pt;}
.ws61{word-spacing:14.399278pt;}
.wse{word-spacing:14.489702pt;}
.wsa{word-spacing:14.633165pt;}
.ws3f{word-spacing:14.930617pt;}
.ws41{word-spacing:14.983750pt;}
.ws5c{word-spacing:15.036884pt;}
.ws56{word-spacing:15.090018pt;}
.ws57{word-spacing:15.674491pt;}
.ws12{word-spacing:15.940160pt;}
.ws7{word-spacing:15.972147pt;}
.ws47{word-spacing:16.524633pt;}
.ws9{word-spacing:17.932800pt;}
.ws25{word-spacing:18.118649pt;}
.ws1c{word-spacing:18.384318pt;}
.ws48{word-spacing:19.287594pt;}
.ws5{word-spacing:19.893453pt;}
.ws3d{word-spacing:20.031468pt;}
.ws6{word-spacing:20.849869pt;}
.ws28{word-spacing:22.120733pt;}
.ws37{word-spacing:31.827186pt;}
.ws23{word-spacing:38.628321pt;}
.ws27{word-spacing:113.600207pt;}
.ws2a{word-spacing:158.179521pt;}
._8{margin-left:-5.892753pt;}
._1{margin-left:-4.463256pt;}
._3{margin-left:-3.443098pt;}
._2{margin-left:-2.438861pt;}
._0{margin-left:-1.275216pt;}
._a{width:0.934800pt;}
._4{width:2.656693pt;}
._7{width:11.636317pt;}
._9{width:14.983750pt;}
._5{width:26.566933pt;}
._b{width:27.470209pt;}
._6{width:31.880320pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs1{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:100.740000pt;}
.y2f{bottom:116.680000pt;}
.y55{bottom:132.620000pt;}
.y2e{bottom:132.621333pt;}
.y87{bottom:136.512000pt;}
.y2d{bottom:148.561333pt;}
.y86{bottom:159.660000pt;}
.y54{bottom:167.448000pt;}
.y2c{bottom:168.753333pt;}
.y85{bottom:175.600000pt;}
.y53{bottom:183.388000pt;}
.y2b{bottom:184.693333pt;}
.y84{bottom:191.540000pt;}
.y2a{bottom:200.633333pt;}
.y52{bottom:203.993333pt;}
.y83{bottom:207.480000pt;}
.y29{bottom:216.574667pt;}
.y82{bottom:223.420000pt;}
.y51{bottom:230.069333pt;}
.y28{bottom:232.514667pt;}
.y81{bottom:239.361333pt;}
.y50{bottom:246.009333pt;}
.y27{bottom:252.706667pt;}
.y80{bottom:255.301333pt;}
.y4f{bottom:261.949333pt;}
.y7f{bottom:271.241333pt;}
.y26{bottom:275.477333pt;}
.y4e{bottom:277.889333pt;}
.y7e{bottom:287.181333pt;}
.y4d{bottom:298.838667pt;}
.y25{bottom:306.808000pt;}
.y7d{bottom:307.013333pt;}
.y24{bottom:322.748000pt;}
.y4c{bottom:324.914667pt;}
.y7c{bottom:330.160000pt;}
.y23{bottom:338.688000pt;}
.y4b{bottom:340.854667pt;}
.y7b{bottom:346.101333pt;}
.y4a{bottom:356.794667pt;}
.y7a{bottom:362.041333pt;}
.y22{bottom:363.348000pt;}
.y49{bottom:372.734667pt;}
.y79{bottom:377.981333pt;}
.y48{bottom:391.621333pt;}
.y78{bottom:393.921333pt;}
.y21{bottom:394.678667pt;}
.y47{bottom:407.562667pt;}
.y20{bottom:410.618667pt;}
.y77{bottom:411.573333pt;}
.y46{bottom:423.502667pt;}
.y1f{bottom:426.560000pt;}
.y76{bottom:427.514667pt;}
.y45{bottom:442.389333pt;}
.y1e{bottom:442.500000pt;}
.y75{bottom:443.454667pt;}
.y1d{bottom:458.440000pt;}
.y74{bottom:459.394667pt;}
.y44{bottom:466.437333pt;}
.y1c{bottom:474.380000pt;}
.y73{bottom:475.334667pt;}
.y1b{bottom:490.320000pt;}
.y43{bottom:490.622667pt;}
.y72{bottom:492.986667pt;}
.y1a{bottom:506.260000pt;}
.y42{bottom:506.562667pt;}
.y71{bottom:508.634667pt;}
.y19{bottom:522.956000pt;}
.y70{bottom:524.574667pt;}
.y41{bottom:527.512000pt;}
.y18{bottom:538.897333pt;}
.y6f{bottom:540.514667pt;}
.y40{bottom:553.586667pt;}
.y17{bottom:554.837333pt;}
.y6e{bottom:556.454667pt;}
.y16{bottom:570.777333pt;}
.y3f{bottom:572.474667pt;}
.y6d{bottom:576.286667pt;}
.y15{bottom:586.717333pt;}
.y3e{bottom:588.414667pt;}
.y6c{bottom:599.434667pt;}
.y14{bottom:602.657333pt;}
.y3d{bottom:604.354667pt;}
.y6b{bottom:615.374667pt;}
.y13{bottom:618.598667pt;}
.y3c{bottom:620.294667pt;}
.y6a{bottom:631.314667pt;}
.y3b{bottom:636.236000pt;}
.y12{bottom:643.257333pt;}
.y69{bottom:648.966667pt;}
.y3a{bottom:652.176000pt;}
.y68{bottom:664.906667pt;}
.y39{bottom:668.116000pt;}
.y11{bottom:674.588000pt;}
.y67{bottom:680.848000pt;}
.y38{bottom:684.056000pt;}
.y10{bottom:687.872000pt;}
.y66{bottom:696.788000pt;}
.yf{bottom:701.156000pt;}
.y37{bottom:702.942667pt;}
.y65{bottom:712.728000pt;}
.ye{bottom:714.438667pt;}
.y36{bottom:718.884000pt;}
.yd{bottom:727.722667pt;}
.y64{bottom:728.668000pt;}
.y35{bottom:739.489333pt;}
.yc{bottom:741.006667pt;}
.y63{bottom:744.608000pt;}
.yb{bottom:754.289333pt;}
.y62{bottom:762.261333pt;}
.y34{bottom:765.564000pt;}
.ya{bottom:767.573333pt;}
.y9{bottom:780.857333pt;}
.y33{bottom:781.504000pt;}
.y61{bottom:782.092000pt;}
.y8{bottom:794.140000pt;}
.y32{bottom:797.445333pt;}
.y60{bottom:805.240000pt;}
.y7{bottom:807.424000pt;}
.y31{bottom:813.385333pt;}
.y6{bottom:820.706667pt;}
.y5f{bottom:821.180000pt;}
.y5{bottom:833.990667pt;}
.y5e{bottom:837.120000pt;}
.y5d{bottom:853.060000pt;}
.y5c{bottom:869.001333pt;}
.y5b{bottom:888.832000pt;}
.y4{bottom:889.262667pt;}
.y3{bottom:905.897333pt;}
.y5a{bottom:911.980000pt;}
.y59{bottom:927.920000pt;}
.y58{bottom:943.860000pt;}
.y2{bottom:947.741333pt;}
.y1{bottom:961.024000pt;}
.y57{bottom:961.512000pt;}
.y56{bottom:977.453333pt;}
.h9{height:32.836730pt;}
.h2{height:32.900710pt;}
.h6{height:33.091994pt;}
.h5{height:33.426739pt;}
.h7{height:36.290431pt;}
.h4{height:36.556100pt;}
.h8{height:36.768636pt;}
.h3{height:40.211857pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:65.285333pt;}
.x5{left:78.569333pt;}
.x9{left:91.981333pt;}
.x8{left:113.792000pt;}
.x10{left:120.905333pt;}
.x12{left:153.376000pt;}
.x11{left:179.052000pt;}
.x7{left:180.825333pt;}
.x1{left:236.436000pt;}
.x2{left:263.344000pt;}
.x4{left:295.476000pt;}
.x3{left:376.132000pt;}
.xa{left:415.970667pt;}
.xb{left:429.253333pt;}
.xe{left:432.968000pt;}
.xf{left:442.666667pt;}
.xc{left:448.289333pt;}
.xd{left:488.798667pt;}
}




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