
    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_add51bddd1b28171cc13ec92.woff')format("woff");}.ff1{font-family:ff1;line-height:1.097168;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_4b2997249619aa43a4fcbe79.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_a1243ab7154617928cb9371e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_ec8a99ed5321b72ddf2769f5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_f65f89c0ced351ede2e2feca.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_cc81cbcfbd4e4a6a7253b353.woff')format("woff");}.ff6{font-family:ff6;line-height:0.923340;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_3d7047f63d87ee946dd69dee.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_79416f1f5fb9a1ca98f6ffec.woff')format("woff");}.ff9{font-family:ff9;line-height:1.150391;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_b4337b58b240396e92d2707f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.131348;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_799a96398595582f1a6756b3.woff')format("woff");}.ffb{font-family:ffb;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6831ff74c35984b64932e6f9.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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);}
.v2{vertical-align:-98.460000px;}
.v1{vertical-align:-97.380000px;}
.v3{vertical-align:-95.940000px;}
.v13{vertical-align:-15.600000px;}
.v9{vertical-align:-13.200000px;}
.v10{vertical-align:-12.000000px;}
.v7{vertical-align:-10.800000px;}
.v4{vertical-align:-8.400000px;}
.vb{vertical-align:-7.200000px;}
.ve{vertical-align:-6.000000px;}
.v6{vertical-align:-2.400000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.400000px;}
.vd{vertical-align:6.000000px;}
.vc{vertical-align:7.200000px;}
.v5{vertical-align:8.400000px;}
.v8{vertical-align:10.800000px;}
.vf{vertical-align:12.000000px;}
.v12{vertical-align:15.600000px;}
.v11{vertical-align:16.800000px;}
.ls28{letter-spacing:-2.400000px;}
.ls27{letter-spacing:-1.956000px;}
.ls21{letter-spacing:-1.800000px;}
.ls26{letter-spacing:-1.224000px;}
.ls11{letter-spacing:-0.600000px;}
.ls13{letter-spacing:-0.528000px;}
.ls12{letter-spacing:-0.516000px;}
.ls32{letter-spacing:-0.372000px;}
.lsf{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.024000px;}
.ls18{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.084000px;}
.ls19{letter-spacing:0.204000px;}
.ls0{letter-spacing:0.264000px;}
.ls10{letter-spacing:0.276000px;}
.ls5{letter-spacing:0.552000px;}
.ls4{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.828000px;}
.lsa{letter-spacing:0.876000px;}
.ls3{letter-spacing:1.008000px;}
.ls2e{letter-spacing:1.200000px;}
.lsb{letter-spacing:1.212000px;}
.ls8{letter-spacing:1.272000px;}
.ls1b{letter-spacing:1.332000px;}
.lse{letter-spacing:1.452000px;}
.ls1c{letter-spacing:1.800000px;}
.ls2f{letter-spacing:3.600000px;}
.ls20{letter-spacing:4.260000px;}
.ls23{letter-spacing:4.320000px;}
.ls2d{letter-spacing:4.764000px;}
.ls1e{letter-spacing:6.600000px;}
.ls31{letter-spacing:12.540000px;}
.ls1f{letter-spacing:13.920000px;}
.ls1d{letter-spacing:15.000000px;}
.ls7{letter-spacing:21.000000px;}
.lsd{letter-spacing:21.600000px;}
.lsc{letter-spacing:22.800000px;}
.ls22{letter-spacing:23.400000px;}
.ls1a{letter-spacing:26.400000px;}
.ls15{letter-spacing:27.000000px;}
.ls16{letter-spacing:34.200000px;}
.ls25{letter-spacing:36.000000px;}
.ls6{letter-spacing:46.140000px;}
.ls14{letter-spacing:55.860000px;}
.ls17{letter-spacing:61.740000px;}
.ls24{letter-spacing:89.400000px;}
.ls2a{letter-spacing:231.180000px;}
.ls29{letter-spacing:325.950000px;}
.ls2c{letter-spacing:1089.300000px;}
.ls2b{letter-spacing:1858.800000px;}
.ls30{letter-spacing:2511.750000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.276000px;}
.ws0{word-spacing:-21.000000px;}
.ws8{word-spacing:-20.628000px;}
.ws5{word-spacing:-19.776000px;}
.ws6{word-spacing:-19.044000px;}
.ws7{word-spacing:-18.600000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.472000px;}
.ws4{word-spacing:0.000000px;}
._4d{margin-left:-2913.930000px;}
._4e{margin-left:-2912.040000px;}
._53{margin-left:-2908.722000px;}
._46{margin-left:-2892.282000px;}
._51{margin-left:-2865.756000px;}
._4c{margin-left:-2657.778000px;}
._58{margin-left:-2099.808000px;}
._57{margin-left:-2084.370000px;}
._34{margin-left:-1894.542000px;}
._41{margin-left:-1819.158000px;}
._50{margin-left:-1555.050000px;}
._4a{margin-left:-1504.050000px;}
._48{margin-left:-1407.396000px;}
._4f{margin-left:-1377.996000px;}
._49{margin-left:-1272.486000px;}
._37{margin-left:-1239.858000px;}
._38{margin-left:-1019.538000px;}
._44{margin-left:-865.950000px;}
._52{margin-left:-764.280000px;}
._42{margin-left:-645.342000px;}
._54{margin-left:-616.830000px;}
._36{margin-left:-576.108000px;}
._35{margin-left:-549.516000px;}
._56{margin-left:-509.838000px;}
._4b{margin-left:-506.880000px;}
._3e{margin-left:-294.570000px;}
._39{margin-left:-244.428000px;}
._3d{margin-left:-171.456000px;}
._3c{margin-left:-154.380000px;}
._43{margin-left:-76.920000px;}
._55{margin-left:-59.400000px;}
._3a{margin-left:-51.000000px;}
._3b{margin-left:-48.372000px;}
._40{margin-left:-13.176000px;}
._45{margin-left:-11.718000px;}
._3f{margin-left:-6.000000px;}
._31{margin-left:-4.200000px;}
._3{margin-left:-2.490000px;}
._1{margin-left:-1.344000px;}
._0{width:1.146000px;}
._2{width:2.178000px;}
._c{width:3.666000px;}
._2b{width:4.734000px;}
._1d{width:6.048000px;}
._28{width:7.086000px;}
._7{width:8.316000px;}
._11{width:9.552000px;}
._29{width:10.584000px;}
._a{width:11.592000px;}
._b{width:12.978000px;}
._30{width:14.172000px;}
._2a{width:15.498000px;}
._23{width:16.902000px;}
._f{width:18.786000px;}
._10{width:19.950000px;}
._1c{width:22.782000px;}
._e{width:24.474000px;}
._d{width:26.406000px;}
._2c{width:27.600000px;}
._15{width:28.974000px;}
._14{width:30.156000px;}
._18{width:31.752000px;}
._4{width:32.928000px;}
._20{width:34.614000px;}
._22{width:36.048000px;}
._21{width:37.212000px;}
._9{width:38.280000px;}
._8{width:39.564000px;}
._19{width:43.116000px;}
._17{width:44.256000px;}
._16{width:45.276000px;}
._32{width:46.794000px;}
._1a{width:47.796000px;}
._1b{width:49.140000px;}
._24{width:53.592000px;}
._6{width:55.524000px;}
._5{width:56.784000px;}
._33{width:57.786000px;}
._2d{width:59.136000px;}
._2e{width:60.480000px;}
._1e{width:62.076000px;}
._1f{width:63.186000px;}
._2f{width:64.650000px;}
._25{width:71.736000px;}
._13{width:76.704000px;}
._12{width:78.066000px;}
._26{width:111.216000px;}
._27{width:112.260000px;}
._47{width:2420.076000px;}
._59{width:2552.550000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:53.137500px;}
.y1{bottom:59.137500px;}
.y3a{bottom:89.137500px;}
.y57{bottom:96.037500px;}
.y39{bottom:97.537500px;}
.y38{bottom:109.837500px;}
.y37{bottom:118.237500px;}
.y56{bottom:120.037500px;}
.y36{bottom:130.537500px;}
.y35{bottom:138.937500px;}
.y55{bottom:144.337500px;}
.y34{bottom:151.245000px;}
.y4a{bottom:159.630000px;}
.y54{bottom:168.375000px;}
.y33{bottom:171.975000px;}
.y32{bottom:180.375000px;}
.y31{bottom:192.675000px;}
.y30{bottom:201.075000px;}
.y2f{bottom:213.375000px;}
.y42{bottom:216.675000px;}
.y2e{bottom:221.775000px;}
.y45{bottom:226.575000px;}
.y2d{bottom:234.075000px;}
.y41{bottom:240.975000px;}
.y2c{bottom:242.475000px;}
.y2b{bottom:254.775000px;}
.y40{bottom:264.975000px;}
.y2a{bottom:289.275000px;}
.y28{bottom:313.275000px;}
.y29{bottom:323.175000px;}
.y26{bottom:337.620000px;}
.y27{bottom:347.505000px;}
.y53{bottom:361.005000px;}
.y24{bottom:361.620000px;}
.y25{bottom:371.505000px;}
.y23{bottom:385.905000px;}
.y22{bottom:409.905000px;}
.y21{bottom:434.205000px;}
.y20{bottom:458.205000px;}
.y44{bottom:468.120000px;}
.y1f{bottom:482.505000px;}
.y1e{bottom:506.550000px;}
.y1d{bottom:530.850000px;}
.y49{bottom:554.250000px;}
.y1c{bottom:554.850000px;}
.y1b{bottom:579.150000px;}
.y1a{bottom:603.150000px;}
.y19{bottom:627.450000px;}
.y18{bottom:651.450000px;}
.y17{bottom:675.780000px;}
.y43{bottom:685.695000px;}
.y16{bottom:699.780000px;}
.y15{bottom:723.480000px;}
.y3f{bottom:724.080000px;}
.y52{bottom:747.480000px;}
.y14{bottom:748.080000px;}
.y13{bottom:772.380000px;}
.y12{bottom:796.380000px;}
.y11{bottom:820.695000px;}
.y48{bottom:830.580000px;}
.y51{bottom:844.125000px;}
.y10{bottom:844.725000px;}
.y47{bottom:854.625000px;}
.y50{bottom:868.425000px;}
.yf{bottom:869.025000px;}
.y4f{bottom:892.425000px;}
.ye{bottom:893.025000px;}
.y4e{bottom:916.725000px;}
.yd{bottom:917.325000px;}
.y4d{bottom:940.725000px;}
.yc{bottom:941.325000px;}
.yb{bottom:965.025000px;}
.y3e{bottom:965.625000px;}
.ya{bottom:989.625000px;}
.y9{bottom:1013.955000px;}
.y46{bottom:1023.855000px;}
.y4c{bottom:1037.355000px;}
.y8{bottom:1037.955000px;}
.y7{bottom:1062.255000px;}
.y4b{bottom:1085.655000px;}
.y6{bottom:1086.255000px;}
.y5{bottom:1109.955000px;}
.y3c{bottom:1110.570000px;}
.y3d{bottom:1120.455000px;}
.y4{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y3b{bottom:1158.870000px;}
.h9{height:47.109375px;}
.h7{height:52.998047px;}
.h3{height:61.670545px;}
.h8{height:65.645508px;}
.ha{height:70.664062px;}
.h5{height:74.033203px;}
.hc{height:77.068359px;}
.hb{height:78.832031px;}
.h2{height:82.441406px;}
.h4{height:84.656250px;}
.h10{height:85.468359px;}
.he{height:86.338763px;}
.hd{height:87.445312px;}
.hf{height:87.868359px;}
.h12{height:92.668359px;}
.h11{height:93.868359px;}
.h6{height:1262.681100px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.081250px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:80.137500px;}
.x2{left:84.937500px;}
.x1b{left:90.937500px;}
.x1c{left:96.937500px;}
.x2a{left:108.337500px;}
.x3{left:123.937500px;}
.xa{left:127.537500px;}
.x30{left:148.237500px;}
.x22{left:163.511250px;}
.x2d{left:168.030000px;}
.x10{left:171.626250px;}
.x23{left:177.330000px;}
.x11{left:178.530000px;}
.x24{left:214.256250px;}
.x25{left:228.075000px;}
.x36{left:276.975000px;}
.x6{left:298.275000px;}
.x1a{left:301.020000px;}
.x7{left:311.520000px;}
.x9{left:316.620000px;}
.x33{left:319.020000px;}
.x20{left:321.701250px;}
.x21{left:335.520000px;}
.x8{left:338.520000px;}
.x2c{left:341.820000px;}
.x1f{left:348.101250px;}
.x5{left:356.520000px;}
.xd{left:362.820000px;}
.x12{left:368.801250px;}
.x27{left:371.820000px;}
.x13{left:375.720000px;}
.x28{left:384.120000px;}
.x29{left:400.905000px;}
.x2b{left:403.620000px;}
.x2e{left:415.905000px;}
.x1{left:435.750000px;}
.x4{left:446.250000px;}
.x2f{left:461.850000px;}
.x35{left:471.750000px;}
.x1d{left:483.731250px;}
.x1e{left:497.550000px;}
.x14{left:515.531250px;}
.x15{left:522.450000px;}
.x37{left:643.695000px;}
.x26{left:647.576250px;}
.x16{left:660.506250px;}
.x17{left:667.425000px;}
.xe{left:697.106250px;}
.xf{left:704.025000px;}
.x34{left:709.725000px;}
.x31{left:747.225000px;}
.x18{left:794.051250px;}
.xb{left:795.851250px;}
.xc{left:802.755000px;}
.x19{left:807.870000px;}
@media print{
.v2{vertical-align:-87.520000pt;}
.v1{vertical-align:-86.560000pt;}
.v3{vertical-align:-85.280000pt;}
.v13{vertical-align:-13.866667pt;}
.v9{vertical-align:-11.733333pt;}
.v10{vertical-align:-10.666667pt;}
.v7{vertical-align:-9.600000pt;}
.v4{vertical-align:-7.466667pt;}
.vb{vertical-align:-6.400000pt;}
.ve{vertical-align:-5.333333pt;}
.v6{vertical-align:-2.133333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:2.133333pt;}
.vd{vertical-align:5.333333pt;}
.vc{vertical-align:6.400000pt;}
.v5{vertical-align:7.466667pt;}
.v8{vertical-align:9.600000pt;}
.vf{vertical-align:10.666667pt;}
.v12{vertical-align:13.866667pt;}
.v11{vertical-align:14.933333pt;}
.ls28{letter-spacing:-2.133333pt;}
.ls27{letter-spacing:-1.738667pt;}
.ls21{letter-spacing:-1.600000pt;}
.ls26{letter-spacing:-1.088000pt;}
.ls11{letter-spacing:-0.533333pt;}
.ls13{letter-spacing:-0.469333pt;}
.ls12{letter-spacing:-0.458667pt;}
.ls32{letter-spacing:-0.330667pt;}
.lsf{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.021333pt;}
.ls18{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.074667pt;}
.ls19{letter-spacing:0.181333pt;}
.ls0{letter-spacing:0.234667pt;}
.ls10{letter-spacing:0.245333pt;}
.ls5{letter-spacing:0.490667pt;}
.ls4{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.736000pt;}
.lsa{letter-spacing:0.778667pt;}
.ls3{letter-spacing:0.896000pt;}
.ls2e{letter-spacing:1.066667pt;}
.lsb{letter-spacing:1.077333pt;}
.ls8{letter-spacing:1.130667pt;}
.ls1b{letter-spacing:1.184000pt;}
.lse{letter-spacing:1.290667pt;}
.ls1c{letter-spacing:1.600000pt;}
.ls2f{letter-spacing:3.200000pt;}
.ls20{letter-spacing:3.786667pt;}
.ls23{letter-spacing:3.840000pt;}
.ls2d{letter-spacing:4.234667pt;}
.ls1e{letter-spacing:5.866667pt;}
.ls31{letter-spacing:11.146667pt;}
.ls1f{letter-spacing:12.373333pt;}
.ls1d{letter-spacing:13.333333pt;}
.ls7{letter-spacing:18.666667pt;}
.lsd{letter-spacing:19.200000pt;}
.lsc{letter-spacing:20.266667pt;}
.ls22{letter-spacing:20.800000pt;}
.ls1a{letter-spacing:23.466667pt;}
.ls15{letter-spacing:24.000000pt;}
.ls16{letter-spacing:30.400000pt;}
.ls25{letter-spacing:32.000000pt;}
.ls6{letter-spacing:41.013333pt;}
.ls14{letter-spacing:49.653333pt;}
.ls17{letter-spacing:54.880000pt;}
.ls24{letter-spacing:79.466667pt;}
.ls2a{letter-spacing:205.493333pt;}
.ls29{letter-spacing:289.733333pt;}
.ls2c{letter-spacing:968.266667pt;}
.ls2b{letter-spacing:1652.266667pt;}
.ls30{letter-spacing:2232.666667pt;}
.ws1{word-spacing:-18.912000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws8{word-spacing:-18.336000pt;}
.ws5{word-spacing:-17.578667pt;}
.ws6{word-spacing:-16.928000pt;}
.ws7{word-spacing:-16.533333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.530667pt;}
.ws4{word-spacing:0.000000pt;}
._4d{margin-left:-2590.160000pt;}
._4e{margin-left:-2588.480000pt;}
._53{margin-left:-2585.530667pt;}
._46{margin-left:-2570.917333pt;}
._51{margin-left:-2547.338667pt;}
._4c{margin-left:-2362.469333pt;}
._58{margin-left:-1866.496000pt;}
._57{margin-left:-1852.773333pt;}
._34{margin-left:-1684.037333pt;}
._41{margin-left:-1617.029333pt;}
._50{margin-left:-1382.266667pt;}
._4a{margin-left:-1336.933333pt;}
._48{margin-left:-1251.018667pt;}
._4f{margin-left:-1224.885333pt;}
._49{margin-left:-1131.098667pt;}
._37{margin-left:-1102.096000pt;}
._38{margin-left:-906.256000pt;}
._44{margin-left:-769.733333pt;}
._52{margin-left:-679.360000pt;}
._42{margin-left:-573.637333pt;}
._54{margin-left:-548.293333pt;}
._36{margin-left:-512.096000pt;}
._35{margin-left:-488.458667pt;}
._56{margin-left:-453.189333pt;}
._4b{margin-left:-450.560000pt;}
._3e{margin-left:-261.840000pt;}
._39{margin-left:-217.269333pt;}
._3d{margin-left:-152.405333pt;}
._3c{margin-left:-137.226667pt;}
._43{margin-left:-68.373333pt;}
._55{margin-left:-52.800000pt;}
._3a{margin-left:-45.333333pt;}
._3b{margin-left:-42.997333pt;}
._40{margin-left:-11.712000pt;}
._45{margin-left:-10.416000pt;}
._3f{margin-left:-5.333333pt;}
._31{margin-left:-3.733333pt;}
._3{margin-left:-2.213333pt;}
._1{margin-left:-1.194667pt;}
._0{width:1.018667pt;}
._2{width:1.936000pt;}
._c{width:3.258667pt;}
._2b{width:4.208000pt;}
._1d{width:5.376000pt;}
._28{width:6.298667pt;}
._7{width:7.392000pt;}
._11{width:8.490667pt;}
._29{width:9.408000pt;}
._a{width:10.304000pt;}
._b{width:11.536000pt;}
._30{width:12.597333pt;}
._2a{width:13.776000pt;}
._23{width:15.024000pt;}
._f{width:16.698667pt;}
._10{width:17.733333pt;}
._1c{width:20.250667pt;}
._e{width:21.754667pt;}
._d{width:23.472000pt;}
._2c{width:24.533333pt;}
._15{width:25.754667pt;}
._14{width:26.805333pt;}
._18{width:28.224000pt;}
._4{width:29.269333pt;}
._20{width:30.768000pt;}
._22{width:32.042667pt;}
._21{width:33.077333pt;}
._9{width:34.026667pt;}
._8{width:35.168000pt;}
._19{width:38.325333pt;}
._17{width:39.338667pt;}
._16{width:40.245333pt;}
._32{width:41.594667pt;}
._1a{width:42.485333pt;}
._1b{width:43.680000pt;}
._24{width:47.637333pt;}
._6{width:49.354667pt;}
._5{width:50.474667pt;}
._33{width:51.365333pt;}
._2d{width:52.565333pt;}
._2e{width:53.760000pt;}
._1e{width:55.178667pt;}
._1f{width:56.165333pt;}
._2f{width:57.466667pt;}
._25{width:63.765333pt;}
._13{width:68.181333pt;}
._12{width:69.392000pt;}
._26{width:98.858667pt;}
._27{width:99.786667pt;}
._47{width:2151.178667pt;}
._59{width:2268.933333pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:47.233333pt;}
.y1{bottom:52.566667pt;}
.y3a{bottom:79.233333pt;}
.y57{bottom:85.366667pt;}
.y39{bottom:86.700000pt;}
.y38{bottom:97.633333pt;}
.y37{bottom:105.100000pt;}
.y56{bottom:106.700000pt;}
.y36{bottom:116.033333pt;}
.y35{bottom:123.500000pt;}
.y55{bottom:128.300000pt;}
.y34{bottom:134.440000pt;}
.y4a{bottom:141.893333pt;}
.y54{bottom:149.666667pt;}
.y33{bottom:152.866667pt;}
.y32{bottom:160.333333pt;}
.y31{bottom:171.266667pt;}
.y30{bottom:178.733333pt;}
.y2f{bottom:189.666667pt;}
.y42{bottom:192.600000pt;}
.y2e{bottom:197.133333pt;}
.y45{bottom:201.400000pt;}
.y2d{bottom:208.066667pt;}
.y41{bottom:214.200000pt;}
.y2c{bottom:215.533333pt;}
.y2b{bottom:226.466667pt;}
.y40{bottom:235.533333pt;}
.y2a{bottom:257.133333pt;}
.y28{bottom:278.466667pt;}
.y29{bottom:287.266667pt;}
.y26{bottom:300.106667pt;}
.y27{bottom:308.893333pt;}
.y53{bottom:320.893333pt;}
.y24{bottom:321.440000pt;}
.y25{bottom:330.226667pt;}
.y23{bottom:343.026667pt;}
.y22{bottom:364.360000pt;}
.y21{bottom:385.960000pt;}
.y20{bottom:407.293333pt;}
.y44{bottom:416.106667pt;}
.y1f{bottom:428.893333pt;}
.y1e{bottom:450.266667pt;}
.y1d{bottom:471.866667pt;}
.y49{bottom:492.666667pt;}
.y1c{bottom:493.200000pt;}
.y1b{bottom:514.800000pt;}
.y1a{bottom:536.133333pt;}
.y19{bottom:557.733333pt;}
.y18{bottom:579.066667pt;}
.y17{bottom:600.693333pt;}
.y43{bottom:609.506667pt;}
.y16{bottom:622.026667pt;}
.y15{bottom:643.093333pt;}
.y3f{bottom:643.626667pt;}
.y52{bottom:664.426667pt;}
.y14{bottom:664.960000pt;}
.y13{bottom:686.560000pt;}
.y12{bottom:707.893333pt;}
.y11{bottom:729.506667pt;}
.y48{bottom:738.293333pt;}
.y51{bottom:750.333333pt;}
.y10{bottom:750.866667pt;}
.y47{bottom:759.666667pt;}
.y50{bottom:771.933333pt;}
.yf{bottom:772.466667pt;}
.y4f{bottom:793.266667pt;}
.ye{bottom:793.800000pt;}
.y4e{bottom:814.866667pt;}
.yd{bottom:815.400000pt;}
.y4d{bottom:836.200000pt;}
.yc{bottom:836.733333pt;}
.yb{bottom:857.800000pt;}
.y3e{bottom:858.333333pt;}
.ya{bottom:879.666667pt;}
.y9{bottom:901.293333pt;}
.y46{bottom:910.093333pt;}
.y4c{bottom:922.093333pt;}
.y8{bottom:922.626667pt;}
.y7{bottom:944.226667pt;}
.y4b{bottom:965.026667pt;}
.y6{bottom:965.560000pt;}
.y5{bottom:986.626667pt;}
.y3c{bottom:987.173333pt;}
.y3d{bottom:995.960000pt;}
.y4{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y3b{bottom:1030.106667pt;}
.h9{height:41.875000pt;}
.h7{height:47.109375pt;}
.h3{height:54.818262pt;}
.h8{height:58.351562pt;}
.ha{height:62.812500pt;}
.h5{height:65.807292pt;}
.hc{height:68.505208pt;}
.hb{height:70.072917pt;}
.h2{height:73.281250pt;}
.h4{height:75.250000pt;}
.h10{height:75.971875pt;}
.he{height:76.745567pt;}
.hd{height:77.729167pt;}
.hf{height:78.105208pt;}
.h12{height:82.371875pt;}
.h11{height:83.438542pt;}
.h6{height:1122.383200pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.850000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:71.233333pt;}
.x2{left:75.500000pt;}
.x1b{left:80.833333pt;}
.x1c{left:86.166667pt;}
.x2a{left:96.300000pt;}
.x3{left:110.166667pt;}
.xa{left:113.366667pt;}
.x30{left:131.766667pt;}
.x22{left:145.343333pt;}
.x2d{left:149.360000pt;}
.x10{left:152.556667pt;}
.x23{left:157.626667pt;}
.x11{left:158.693333pt;}
.x24{left:190.450000pt;}
.x25{left:202.733333pt;}
.x36{left:246.200000pt;}
.x6{left:265.133333pt;}
.x1a{left:267.573333pt;}
.x7{left:276.906667pt;}
.x9{left:281.440000pt;}
.x33{left:283.573333pt;}
.x20{left:285.956667pt;}
.x21{left:298.240000pt;}
.x8{left:300.906667pt;}
.x2c{left:303.840000pt;}
.x1f{left:309.423333pt;}
.x5{left:316.906667pt;}
.xd{left:322.506667pt;}
.x12{left:327.823333pt;}
.x27{left:330.506667pt;}
.x13{left:333.973333pt;}
.x28{left:341.440000pt;}
.x29{left:356.360000pt;}
.x2b{left:358.773333pt;}
.x2e{left:369.693333pt;}
.x1{left:387.333333pt;}
.x4{left:396.666667pt;}
.x2f{left:410.533333pt;}
.x35{left:419.333333pt;}
.x1d{left:429.983333pt;}
.x1e{left:442.266667pt;}
.x14{left:458.250000pt;}
.x15{left:464.400000pt;}
.x37{left:572.173333pt;}
.x26{left:575.623333pt;}
.x16{left:587.116667pt;}
.x17{left:593.266667pt;}
.xe{left:619.650000pt;}
.xf{left:625.800000pt;}
.x34{left:630.866667pt;}
.x31{left:664.200000pt;}
.x18{left:705.823333pt;}
.xb{left:707.423333pt;}
.xc{left:713.560000pt;}
.x19{left:718.106667pt;}
}




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