
    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_6455326f8e0b090bcdbae3f0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.102000;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_6ef72a9d982c4b4452c08174.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.057129;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_f73d79ff62816e66fd25b2bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ff3a3e50dafa485e615c357c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_675cd34072b650b2517e765c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_487380df63895179012818fb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.825195;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_d4ebe2aa0797b1a247e75e33.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.004395;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_1afc1b80f4bbf6436db26938.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984375;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_0ae627db8a6cfea9bfbff3cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003418;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;}
.ls8{letter-spacing:-1.056000px;}
.ls1{letter-spacing:-0.594000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.010560px;}
.ls9{letter-spacing:0.508200px;}
.ls4{letter-spacing:0.594000px;}
.ls6{letter-spacing:0.654720px;}
.ls7{letter-spacing:1.617000px;}
.ls5{letter-spacing:4.250400px;}
.ls2{letter-spacing:199.500000px;}
.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;}
}
.ws0{word-spacing:-20.856000px;}
.ws4{word-spacing:-17.094000px;}
.wsa{word-spacing:-17.008200px;}
.ws5{word-spacing:-16.500000px;}
.ws8{word-spacing:-13.944000px;}
.ws6{word-spacing:-13.854720px;}
.ws2{word-spacing:-13.210560px;}
.ws3{word-spacing:-13.200000px;}
.ws7{word-spacing:-12.000000px;}
.ws9{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
._7{margin-left:-8.352000px;}
._e{margin-left:-7.326000px;}
._6{margin-left:-6.078600px;}
._8{margin-left:-4.857600px;}
._1{margin-left:-3.816000px;}
._3{margin-left:-2.736000px;}
._2{margin-left:-1.656000px;}
._4{width:1.368000px;}
._0{width:2.664000px;}
._11{width:3.880800px;}
._5{width:4.968000px;}
._9{width:6.163800px;}
._c{width:7.570800px;}
._b{width:9.053940px;}
._a{width:10.163400px;}
._15{width:11.272800px;}
._d{width:12.903000px;}
._10{width:14.480400px;}
._f{width:17.707800px;}
._14{width:19.635000px;}
._13{width:20.750400px;}
._16{width:21.885600px;}
._1c{width:22.908600px;}
._12{width:24.162600px;}
._17{width:25.178400px;}
._19{width:26.327400px;}
._1b{width:30.320400px;}
._18{width:31.455600px;}
._1a{width:33.423600px;}
.fc2{color:transparent;}
.fc1{color:rgb(33,37,41);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs3{font-size:52.800000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.ybc{bottom:1.576200px;}
.y5c{bottom:9.114075px;}
.yf{bottom:11.550030px;}
.y8b{bottom:16.576170px;}
.y2b{bottom:18.076170px;}
.yb1{bottom:19.500000px;}
.y5b{bottom:30.114030px;}
.y8a{bottom:37.576125px;}
.y2a{bottom:39.076125px;}
.yb0{bottom:47.999925px;}
.y5a{bottom:51.114030px;}
.ye{bottom:56.354505px;}
.y89{bottom:58.576125px;}
.yba{bottom:59.872650px;}
.y29{bottom:60.076125px;}
.y59{bottom:72.114030px;}
.yaf{bottom:75.076125px;}
.y88{bottom:79.576125px;}
.yb9{bottom:80.872650px;}
.y28{bottom:81.076125px;}
.y58{bottom:93.114030px;}
.yae{bottom:96.076125px;}
.y87{bottom:100.576125px;}
.yb8{bottom:101.872650px;}
.y27{bottom:102.076125px;}
.y57{bottom:114.114030px;}
.yad{bottom:117.076125px;}
.y86{bottom:121.576125px;}
.y2c{bottom:122.738070px;}
.yb7{bottom:122.872650px;}
.y26{bottom:123.076125px;}
.y10{bottom:127.275975px;}
.y1{bottom:127.559055px;}
.y56{bottom:135.114030px;}
.yac{bottom:138.076125px;}
.y85{bottom:142.576125px;}
.yb6{bottom:143.872650px;}
.y25{bottom:144.076125px;}
.y55{bottom:156.114030px;}
.yab{bottom:159.076125px;}
.y84{bottom:163.576125px;}
.yb5{bottom:164.872650px;}
.y24{bottom:165.076125px;}
.y54{bottom:177.114030px;}
.yaa{bottom:180.076125px;}
.y83{bottom:184.576125px;}
.yb4{bottom:185.872650px;}
.y23{bottom:186.076125px;}
.y53{bottom:198.114030px;}
.ya9{bottom:201.076125px;}
.y82{bottom:205.576125px;}
.y22{bottom:207.076125px;}
.y52{bottom:219.114030px;}
.y81{bottom:226.576125px;}
.y21{bottom:228.076125px;}
.y51{bottom:240.114030px;}
.ya8{bottom:243.076125px;}
.y80{bottom:247.576125px;}
.y20{bottom:249.076125px;}
.y50{bottom:261.114030px;}
.y7f{bottom:268.576125px;}
.y1f{bottom:270.076125px;}
.y4f{bottom:282.114030px;}
.ya7{bottom:285.076125px;}
.y7e{bottom:289.576125px;}
.y1e{bottom:291.076125px;}
.y4e{bottom:303.114030px;}
.ya6{bottom:306.076125px;}
.y7d{bottom:310.576125px;}
.y1d{bottom:312.076125px;}
.y4d{bottom:324.114030px;}
.ya5{bottom:326.660175px;}
.y7c{bottom:331.576125px;}
.y1c{bottom:333.076125px;}
.y4c{bottom:345.114030px;}
.ya4{bottom:346.160175px;}
.y7b{bottom:352.576125px;}
.ya3{bottom:365.660175px;}
.y4b{bottom:366.114030px;}
.y7a{bottom:373.576125px;}
.ya2{bottom:385.160175px;}
.y4a{bottom:387.114030px;}
.y79{bottom:394.576125px;}
.ya1{bottom:404.660175px;}
.yd{bottom:407.341845px;}
.y49{bottom:408.114030px;}
.y78{bottom:415.160175px;}
.ya0{bottom:424.576125px;}
.y48{bottom:429.114030px;}
.yc{bottom:429.765795px;}
.y77{bottom:434.660175px;}
.y9f{bottom:445.576125px;}
.y47{bottom:450.114030px;}
.y76{bottom:454.160175px;}
.yb{bottom:456.841845px;}
.y9e{bottom:466.576125px;}
.y46{bottom:471.114030px;}
.y75{bottom:473.660175px;}
.ya{bottom:477.841845px;}
.y9d{bottom:487.576125px;}
.y45{bottom:492.114030px;}
.y74{bottom:493.160175px;}
.y9{bottom:498.841845px;}
.y9c{bottom:508.576125px;}
.y73{bottom:512.660175px;}
.y44{bottom:513.114030px;}
.y8{bottom:519.841845px;}
.y9b{bottom:529.576125px;}
.y72{bottom:532.160175px;}
.y43{bottom:534.114030px;}
.y9a{bottom:550.576125px;}
.y71{bottom:551.660175px;}
.y42{bottom:555.114030px;}
.y99{bottom:571.576125px;}
.y41{bottom:576.114030px;}
.y1b{bottom:587.624925px;}
.y70{bottom:592.576125px;}
.y40{bottom:597.114030px;}
.y1a{bottom:607.124925px;}
.y6f{bottom:613.576125px;}
.y3f{bottom:618.114030px;}
.y19{bottom:626.624925px;}
.y6e{bottom:634.576125px;}
.y3e{bottom:639.114030px;}
.y18{bottom:646.124925px;}
.y7{bottom:649.365795px;}
.y98{bottom:653.660175px;}
.y6d{bottom:655.576125px;}
.y3d{bottom:660.114030px;}
.y17{bottom:665.624925px;}
.y6{bottom:670.365795px;}
.y97{bottom:673.160175px;}
.y6c{bottom:676.576125px;}
.y3c{bottom:681.114030px;}
.y16{bottom:685.124925px;}
.y5{bottom:691.365795px;}
.y96{bottom:692.660175px;}
.y6b{bottom:697.576125px;}
.y3b{bottom:702.114030px;}
.y15{bottom:704.624925px;}
.y95{bottom:712.160175px;}
.y4{bottom:712.365795px;}
.y6a{bottom:718.576125px;}
.yb2{bottom:719.999925px;}
.y3a{bottom:723.114030px;}
.y14{bottom:724.124925px;}
.y94{bottom:731.660175px;}
.y3{bottom:733.365795px;}
.y69{bottom:739.576125px;}
.y13{bottom:743.624925px;}
.y39{bottom:744.114030px;}
.y93{bottom:751.160175px;}
.y2{bottom:754.365795px;}
.y68{bottom:760.576125px;}
.y12{bottom:763.124925px;}
.y38{bottom:765.114030px;}
.y92{bottom:770.660175px;}
.y67{bottom:781.576125px;}
.y11{bottom:782.624925px;}
.y37{bottom:786.114030px;}
.y91{bottom:790.160175px;}
.y66{bottom:802.576125px;}
.y36{bottom:807.114030px;}
.y90{bottom:809.660175px;}
.y65{bottom:823.576125px;}
.y35{bottom:828.114030px;}
.y8f{bottom:829.160175px;}
.y64{bottom:844.576125px;}
.y8e{bottom:848.660175px;}
.y34{bottom:849.114030px;}
.y63{bottom:865.576125px;}
.y8d{bottom:868.160175px;}
.y33{bottom:870.114030px;}
.y62{bottom:886.576125px;}
.y8c{bottom:887.660175px;}
.y32{bottom:891.114030px;}
.yb3{bottom:893.229450px;}
.y61{bottom:907.576125px;}
.y31{bottom:912.114030px;}
.y60{bottom:928.576125px;}
.ybb{bottom:930.525900px;}
.y30{bottom:933.114030px;}
.y5f{bottom:949.576125px;}
.y2f{bottom:954.114030px;}
.y5e{bottom:970.576125px;}
.y2e{bottom:975.114030px;}
.y5d{bottom:991.576125px;}
.y2d{bottom:996.114030px;}
.h7{height:27.750015px;}
.hd{height:43.652344px;}
.h6{height:43.989258px;}
.ha{height:45.213867px;}
.hc{height:46.787109px;}
.he{height:47.791992px;}
.hf{height:48.017578px;}
.h4{height:51.465820px;}
.h8{height:56.232000px;}
.h3{height:61.344000px;}
.h5{height:63.984375px;}
.h12{height:165.000000px;}
.h11{height:239.796450px;}
.h10{height:1008.000000px;}
.h2{height:1012.254750px;}
.h9{height:1012.537950px;}
.hb{height:1017.075750px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.we{width:496.399500px;}
.wa{width:522.982500px;}
.w3{width:525.870000px;}
.wc{width:525.919500px;}
.w7{width:526.480500px;}
.w8{width:526.777500px;}
.w5{width:527.140500px;}
.w6{width:561.838350px;}
.wd{width:562.323750px;}
.wb{width:564.762600px;}
.w9{width:565.406250px;}
.w4{width:572.180400px;}
.w2{width:575.517600px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:4.125000px;}
.x19{left:6.000000px;}
.x1b{left:27.259950px;}
.x5{left:30.777300px;}
.x1e{left:37.500000px;}
.x6{left:58.470300px;}
.x1a{left:60.000000px;}
.x4{left:61.620300px;}
.x3{left:106.089300px;}
.x2{left:139.200300px;}
.x1d{left:158.267550px;}
.x1{left:164.078700px;}
.xf{left:165.540900px;}
.xd{left:183.525000px;}
.x1c{left:184.968750px;}
.x1f{left:191.229750px;}
.x7{left:204.486300px;}
.x12{left:237.435600px;}
.x11{left:276.413700px;}
.x10{left:278.685600px;}
.x9{left:284.869050px;}
.x17{left:289.167300px;}
.x13{left:291.898500px;}
.xa{left:296.551200px;}
.x15{left:337.644150px;}
.x8{left:359.602500px;}
.x14{left:369.411450px;}
.x16{left:417.541800px;}
.xb{left:431.508000px;}
.x18{left:462.876600px;}
.xc{left:558.762600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.938667pt;}
.ls1{letter-spacing:-0.528000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.009387pt;}
.ls9{letter-spacing:0.451733pt;}
.ls4{letter-spacing:0.528000pt;}
.ls6{letter-spacing:0.581973pt;}
.ls7{letter-spacing:1.437333pt;}
.ls5{letter-spacing:3.778133pt;}
.ls2{letter-spacing:177.333333pt;}
.ws0{word-spacing:-18.538667pt;}
.ws4{word-spacing:-15.194667pt;}
.wsa{word-spacing:-15.118400pt;}
.ws5{word-spacing:-14.666667pt;}
.ws8{word-spacing:-12.394667pt;}
.ws6{word-spacing:-12.315307pt;}
.ws2{word-spacing:-11.742720pt;}
.ws3{word-spacing:-11.733333pt;}
.ws7{word-spacing:-10.666667pt;}
.ws9{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
._7{margin-left:-7.424000pt;}
._e{margin-left:-6.512000pt;}
._6{margin-left:-5.403200pt;}
._8{margin-left:-4.317867pt;}
._1{margin-left:-3.392000pt;}
._3{margin-left:-2.432000pt;}
._2{margin-left:-1.472000pt;}
._4{width:1.216000pt;}
._0{width:2.368000pt;}
._11{width:3.449600pt;}
._5{width:4.416000pt;}
._9{width:5.478933pt;}
._c{width:6.729600pt;}
._b{width:8.047947pt;}
._a{width:9.034133pt;}
._15{width:10.020267pt;}
._d{width:11.469333pt;}
._10{width:12.871467pt;}
._f{width:15.740267pt;}
._14{width:17.453333pt;}
._13{width:18.444800pt;}
._16{width:19.453867pt;}
._1c{width:20.363200pt;}
._12{width:21.477867pt;}
._17{width:22.380800pt;}
._19{width:23.402133pt;}
._1b{width:26.951467pt;}
._18{width:27.960533pt;}
._1a{width:29.709867pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:46.933333pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.ybc{bottom:1.401067pt;}
.y5c{bottom:8.101400pt;}
.yf{bottom:10.266693pt;}
.y8b{bottom:14.734373pt;}
.y2b{bottom:16.067707pt;}
.yb1{bottom:17.333333pt;}
.y5b{bottom:26.768027pt;}
.y8a{bottom:33.401000pt;}
.y2a{bottom:34.734333pt;}
.yb0{bottom:42.666600pt;}
.y5a{bottom:45.434693pt;}
.ye{bottom:50.092893pt;}
.y89{bottom:52.067667pt;}
.yba{bottom:53.220133pt;}
.y29{bottom:53.401000pt;}
.y59{bottom:64.101360pt;}
.yaf{bottom:66.734333pt;}
.y88{bottom:70.734333pt;}
.yb9{bottom:71.886800pt;}
.y28{bottom:72.067667pt;}
.y58{bottom:82.768027pt;}
.yae{bottom:85.401000pt;}
.y87{bottom:89.401000pt;}
.yb8{bottom:90.553467pt;}
.y27{bottom:90.734333pt;}
.y57{bottom:101.434693pt;}
.yad{bottom:104.067667pt;}
.y86{bottom:108.067667pt;}
.y2c{bottom:109.100507pt;}
.yb7{bottom:109.220133pt;}
.y26{bottom:109.401000pt;}
.y10{bottom:113.134200pt;}
.y1{bottom:113.385827pt;}
.y56{bottom:120.101360pt;}
.yac{bottom:122.734333pt;}
.y85{bottom:126.734333pt;}
.yb6{bottom:127.886800pt;}
.y25{bottom:128.067667pt;}
.y55{bottom:138.768027pt;}
.yab{bottom:141.401000pt;}
.y84{bottom:145.401000pt;}
.yb5{bottom:146.553467pt;}
.y24{bottom:146.734333pt;}
.y54{bottom:157.434693pt;}
.yaa{bottom:160.067667pt;}
.y83{bottom:164.067667pt;}
.yb4{bottom:165.220133pt;}
.y23{bottom:165.401000pt;}
.y53{bottom:176.101360pt;}
.ya9{bottom:178.734333pt;}
.y82{bottom:182.734333pt;}
.y22{bottom:184.067667pt;}
.y52{bottom:194.768027pt;}
.y81{bottom:201.401000pt;}
.y21{bottom:202.734333pt;}
.y51{bottom:213.434693pt;}
.ya8{bottom:216.067667pt;}
.y80{bottom:220.067667pt;}
.y20{bottom:221.401000pt;}
.y50{bottom:232.101360pt;}
.y7f{bottom:238.734333pt;}
.y1f{bottom:240.067667pt;}
.y4f{bottom:250.768027pt;}
.ya7{bottom:253.401000pt;}
.y7e{bottom:257.401000pt;}
.y1e{bottom:258.734333pt;}
.y4e{bottom:269.434693pt;}
.ya6{bottom:272.067667pt;}
.y7d{bottom:276.067667pt;}
.y1d{bottom:277.401000pt;}
.y4d{bottom:288.101360pt;}
.ya5{bottom:290.364600pt;}
.y7c{bottom:294.734333pt;}
.y1c{bottom:296.067667pt;}
.y4c{bottom:306.768027pt;}
.ya4{bottom:307.697933pt;}
.y7b{bottom:313.401000pt;}
.ya3{bottom:325.031267pt;}
.y4b{bottom:325.434693pt;}
.y7a{bottom:332.067667pt;}
.ya2{bottom:342.364600pt;}
.y4a{bottom:344.101360pt;}
.y79{bottom:350.734333pt;}
.ya1{bottom:359.697933pt;}
.yd{bottom:362.081640pt;}
.y49{bottom:362.768027pt;}
.y78{bottom:369.031267pt;}
.ya0{bottom:377.401000pt;}
.y48{bottom:381.434693pt;}
.yc{bottom:382.014040pt;}
.y77{bottom:386.364600pt;}
.y9f{bottom:396.067667pt;}
.y47{bottom:400.101360pt;}
.y76{bottom:403.697933pt;}
.yb{bottom:406.081640pt;}
.y9e{bottom:414.734333pt;}
.y46{bottom:418.768027pt;}
.y75{bottom:421.031267pt;}
.ya{bottom:424.748307pt;}
.y9d{bottom:433.401000pt;}
.y45{bottom:437.434693pt;}
.y74{bottom:438.364600pt;}
.y9{bottom:443.414973pt;}
.y9c{bottom:452.067667pt;}
.y73{bottom:455.697933pt;}
.y44{bottom:456.101360pt;}
.y8{bottom:462.081640pt;}
.y9b{bottom:470.734333pt;}
.y72{bottom:473.031267pt;}
.y43{bottom:474.768027pt;}
.y9a{bottom:489.401000pt;}
.y71{bottom:490.364600pt;}
.y42{bottom:493.434693pt;}
.y99{bottom:508.067667pt;}
.y41{bottom:512.101360pt;}
.y1b{bottom:522.333267pt;}
.y70{bottom:526.734333pt;}
.y40{bottom:530.768027pt;}
.y1a{bottom:539.666600pt;}
.y6f{bottom:545.401000pt;}
.y3f{bottom:549.434693pt;}
.y19{bottom:556.999933pt;}
.y6e{bottom:564.067667pt;}
.y3e{bottom:568.101360pt;}
.y18{bottom:574.333267pt;}
.y7{bottom:577.214040pt;}
.y98{bottom:581.031267pt;}
.y6d{bottom:582.734333pt;}
.y3d{bottom:586.768027pt;}
.y17{bottom:591.666600pt;}
.y6{bottom:595.880707pt;}
.y97{bottom:598.364600pt;}
.y6c{bottom:601.401000pt;}
.y3c{bottom:605.434693pt;}
.y16{bottom:608.999933pt;}
.y5{bottom:614.547373pt;}
.y96{bottom:615.697933pt;}
.y6b{bottom:620.067667pt;}
.y3b{bottom:624.101360pt;}
.y15{bottom:626.333267pt;}
.y95{bottom:633.031267pt;}
.y4{bottom:633.214040pt;}
.y6a{bottom:638.734333pt;}
.yb2{bottom:639.999933pt;}
.y3a{bottom:642.768027pt;}
.y14{bottom:643.666600pt;}
.y94{bottom:650.364600pt;}
.y3{bottom:651.880707pt;}
.y69{bottom:657.401000pt;}
.y13{bottom:660.999933pt;}
.y39{bottom:661.434693pt;}
.y93{bottom:667.697933pt;}
.y2{bottom:670.547373pt;}
.y68{bottom:676.067667pt;}
.y12{bottom:678.333267pt;}
.y38{bottom:680.101360pt;}
.y92{bottom:685.031267pt;}
.y67{bottom:694.734333pt;}
.y11{bottom:695.666600pt;}
.y37{bottom:698.768027pt;}
.y91{bottom:702.364600pt;}
.y66{bottom:713.401000pt;}
.y36{bottom:717.434693pt;}
.y90{bottom:719.697933pt;}
.y65{bottom:732.067667pt;}
.y35{bottom:736.101360pt;}
.y8f{bottom:737.031267pt;}
.y64{bottom:750.734333pt;}
.y8e{bottom:754.364600pt;}
.y34{bottom:754.768027pt;}
.y63{bottom:769.401000pt;}
.y8d{bottom:771.697933pt;}
.y33{bottom:773.434693pt;}
.y62{bottom:788.067667pt;}
.y8c{bottom:789.031267pt;}
.y32{bottom:792.101360pt;}
.yb3{bottom:793.981733pt;}
.y61{bottom:806.734333pt;}
.y31{bottom:810.768027pt;}
.y60{bottom:825.401000pt;}
.ybb{bottom:827.134133pt;}
.y30{bottom:829.434693pt;}
.y5f{bottom:844.067667pt;}
.y2f{bottom:848.101360pt;}
.y5e{bottom:862.734333pt;}
.y2e{bottom:866.768027pt;}
.y5d{bottom:881.401000pt;}
.y2d{bottom:885.434693pt;}
.h7{height:24.666680pt;}
.hd{height:38.802083pt;}
.h6{height:39.101562pt;}
.ha{height:40.190104pt;}
.hc{height:41.588542pt;}
.he{height:42.481771pt;}
.hf{height:42.682292pt;}
.h4{height:45.747396pt;}
.h8{height:49.984000pt;}
.h3{height:54.528000pt;}
.h5{height:56.875000pt;}
.h12{height:146.666667pt;}
.h11{height:213.152400pt;}
.h10{height:896.000000pt;}
.h2{height:899.782000pt;}
.h9{height:900.033733pt;}
.hb{height:904.067333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.we{width:441.244000pt;}
.wa{width:464.873333pt;}
.w3{width:467.440000pt;}
.wc{width:467.484000pt;}
.w7{width:467.982667pt;}
.w8{width:468.246667pt;}
.w5{width:468.569333pt;}
.w6{width:499.411867pt;}
.wd{width:499.843333pt;}
.wb{width:502.011200pt;}
.w9{width:502.583333pt;}
.w4{width:508.604800pt;}
.w2{width:511.571200pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:3.666667pt;}
.x19{left:5.333333pt;}
.x1b{left:24.231067pt;}
.x5{left:27.357600pt;}
.x1e{left:33.333333pt;}
.x6{left:51.973600pt;}
.x1a{left:53.333333pt;}
.x4{left:54.773600pt;}
.x3{left:94.301600pt;}
.x2{left:123.733600pt;}
.x1d{left:140.682267pt;}
.x1{left:145.847733pt;}
.xf{left:147.147467pt;}
.xd{left:163.133333pt;}
.x1c{left:164.416667pt;}
.x1f{left:169.982000pt;}
.x7{left:181.765600pt;}
.x12{left:211.053867pt;}
.x11{left:245.701067pt;}
.x10{left:247.720533pt;}
.x9{left:253.216933pt;}
.x17{left:257.037600pt;}
.x13{left:259.465333pt;}
.xa{left:263.601067pt;}
.x15{left:300.128133pt;}
.x8{left:319.646667pt;}
.x14{left:328.365733pt;}
.x16{left:371.148267pt;}
.xb{left:383.562667pt;}
.x18{left:411.445867pt;}
.xc{left:496.677867pt;}
}




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