
    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_0853c9505848bf7e02341531.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_6d1ee72f7b8377e45d6768e6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.969238;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_c0f1b625fea55df9d08b005d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.972168;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_00adcf3e7ee71857e3c0193a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e0f70ba696aeee0a4cee403e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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_2a218c11cee75b5efe8b63f0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7d457b28ef99d8f08b370fd0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.917969;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_61d1e9bbc1a0f17524cef5e6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.727539;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_69ffd2254a602dbeca5342fa.woff')format("woff");}.ff9{font-family:ff9;line-height:0.933105;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_85ec3dcd93f381080682b814.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d784e6213044f49ff6a8f65c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.731445;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_655af7c16f964c00c2c2a8d6.woff')format("woff");}.ffc{font-family:ffc;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;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.288009px;}
.lsa{letter-spacing:0.872130px;}
.ls9{letter-spacing:0.923432px;}
.ls0{letter-spacing:1.458000px;}
.ls8{letter-spacing:1.476000px;}
.ls5{letter-spacing:1.488045px;}
.ls4{letter-spacing:1.728000px;}
.ls7{letter-spacing:2.160066px;}
.ls3{letter-spacing:929.069000px;}
.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;}
}
.ws11{word-spacing:-54.000000px;}
.wse{word-spacing:-49.489509px;}
.ws2{word-spacing:-21.129671px;}
.ws3{word-spacing:-18.854533px;}
.ws4{word-spacing:-16.416000px;}
.wsb{word-spacing:-16.254000px;}
.ws8{word-spacing:-14.958000px;}
.ws12{word-spacing:-14.210587px;}
.wsa{word-spacing:-13.711500px;}
.wsd{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws6{word-spacing:-10.508889px;}
.ws1{word-spacing:-0.091802px;}
.ws9{word-spacing:-0.062640px;}
.ws7{word-spacing:0.000000px;}
.ws10{word-spacing:100.894501px;}
.wsf{word-spacing:100.930351px;}
.wsc{word-spacing:100.930366px;}
.ws5{word-spacing:199.512000px;}
._17{margin-left:-9.713530px;}
._5{margin-left:-8.629365px;}
._1c{margin-left:-7.473422px;}
._3{margin-left:-5.994000px;}
._a{margin-left:-3.450502px;}
._4{margin-left:-2.135826px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._6{width:3.855674px;}
._e{width:4.895643px;}
._d{width:6.620464px;}
._9{width:7.811279px;}
._b{width:8.815901px;}
._c{width:9.930547px;}
._16{width:11.098269px;}
._15{width:12.232230px;}
._14{width:13.409917px;}
._8{width:16.551286px;}
._7{width:19.439291px;}
._1a{width:22.403134px;}
._f{width:28.384378px;}
._1b{width:89.990827px;}
._18{width:115.434000px;}
._19{width:166.828841px;}
._11{width:238.140000px;}
._10{width:276.984000px;}
._12{width:318.204000px;}
._13{width:321.984000px;}
.fc3{color:rgb(10,84,44);}
.fc1{color:rgb(27,138,174);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs8{font-size:49.500000px;}
.fs9{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:62.639646px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y100{bottom:4.529235px;}
.yff{bottom:22.482362px;}
.yab{bottom:23.665677px;}
.yfe{bottom:40.441350px;}
.yaa{bottom:42.568026px;}
.y21{bottom:46.734370px;}
.yfd{bottom:58.394477px;}
.y20{bottom:59.015622px;}
.ya9{bottom:61.464510px;}
.y1f{bottom:71.302734px;}
.yfc{bottom:76.347605px;}
.ya8{bottom:80.366859px;}
.yb2{bottom:84.868500px;}
.y6b{bottom:88.974594px;}
.yda{bottom:89.396482px;}
.y9c{bottom:90.639000px;}
.y6c{bottom:90.903000px;}
.yfb{bottom:94.306593px;}
.yad{bottom:95.402338px;}
.y81{bottom:100.763672px;}
.y7f{bottom:103.013676px;}
.y44{bottom:105.837879px;}
.yd9{bottom:107.349609px;}
.y6a{bottom:107.876943px;}
.ya7{bottom:109.909823px;}
.y82{bottom:110.830500px;}
.yfa{bottom:112.259718px;}
.yac{bottom:114.304687px;}
.y95{bottom:115.599561px;}
.y80{bottom:117.562500px;}
.y7e{bottom:119.812509px;}
.y43{bottom:124.734369px;}
.yd8{bottom:125.308593px;}
.y69{bottom:126.779292px;}
.yf9{bottom:130.212813px;}
.y94{bottom:134.496051px;}
.y7d{bottom:141.117190px;}
.yd7{bottom:143.261688px;}
.y42{bottom:143.636691px;}
.y68{bottom:145.675782px;}
.yf8{bottom:148.171802px;}
.ya6{bottom:149.888345px;}
.y1c{bottom:153.240229px;}
.y93{bottom:153.398400px;}
.yd6{bottom:161.214815px;}
.y7c{bottom:162.416016px;}
.y41{bottom:162.533181px;}
.yf7{bottom:166.124929px;}
.ya5{bottom:168.790694px;}
.y1b{bottom:172.142578px;}
.y92{bottom:172.300749px;}
.y8b{bottom:174.866739px;}
.y67{bottom:175.218750px;}
.yd5{bottom:179.173804px;}
.y40{bottom:181.435530px;}
.y7a{bottom:182.988000px;}
.yf6{bottom:184.078056px;}
.y91{bottom:191.197239px;}
.yd4{bottom:197.126931px;}
.ya4{bottom:198.333662px;}
.y3f{bottom:200.337879px;}
.yf5{bottom:202.037044px;}
.y8a{bottom:204.409707px;}
.y1a{bottom:210.023437px;}
.y90{bottom:210.099588px;}
.y66{bottom:214.669922px;}
.yd3{bottom:215.080058px;}
.y3e{bottom:219.234369px;}
.yf4{bottom:219.990172px;}
.y8f{bottom:228.996078px;}
.y65{bottom:231.474609px;}
.yd2{bottom:233.039047px;}
.yf3{bottom:237.943299px;}
.y3d{bottom:238.136718px;}
.y7b{bottom:239.537391px;}
.y8e{bottom:247.898427px;}
.y64{bottom:248.273437px;}
.yd1{bottom:250.992174px;}
.yf2{bottom:255.902287px;}
.y19{bottom:261.509749px;}
.y63{bottom:265.072266px;}
.y8d{bottom:266.800776px;}
.y3c{bottom:268.792969px;}
.yd0{bottom:268.945301px;}
.ydb{bottom:270.627000px;}
.yf1{bottom:273.855414px;}
.y18{bottom:280.412098px;}
.y79{bottom:280.992234px;}
.y62{bottom:282.375000px;}
.y8c{bottom:285.697266px;}
.ycf{bottom:286.904289px;}
.yf0{bottom:291.808541px;}
.y61{bottom:299.173825px;}
.y17{bottom:299.308589px;}
.yce{bottom:304.857416px;}
.yef{bottom:309.767530px;}
.y60{bottom:315.972656px;}
.y16{bottom:318.210938px;}
.ycd{bottom:322.810544px;}
.y3b{bottom:324.398421px;}
.yee{bottom:327.720657px;}
.y5f{bottom:332.777345px;}
.ycc{bottom:340.769532px;}
.yb0{bottom:340.798830px;}
.y3a{bottom:343.300770px;}
.yed{bottom:345.673782px;}
.y5e{bottom:349.576172px;}
.y15{bottom:356.091796px;}
.yaf{bottom:357.597663px;}
.ycb{bottom:358.722657px;}
.y39{bottom:362.203119px;}
.yec{bottom:363.632762px;}
.y5d{bottom:366.375000px;}
.y9a{bottom:367.066400px;}
.yca{bottom:376.675778px;}
.yb1{bottom:377.777345px;}
.yae{bottom:378.902345px;}
.yeb{bottom:381.585889px;}
.y5c{bottom:383.677734px;}
.y99{bottom:383.871088px;}
.y38{bottom:394.599609px;}
.yc9{bottom:394.634766px;}
.y14{bottom:395.847657px;}
.yea{bottom:399.539016px;}
.y5b{bottom:400.476561px;}
.y98{bottom:400.669921px;}
.yc8{bottom:412.587891px;}
.y37{bottom:413.501943px;}
.y5a{bottom:417.281246px;}
.y97{bottom:417.468753px;}
.ye9{bottom:417.492134px;}
.yc7{bottom:430.541007px;}
.y36{bottom:432.398433px;}
.y59{bottom:434.080075px;}
.ye8{bottom:435.451123px;}
.y78{bottom:436.998000px;}
.y9b{bottom:437.642579px;}
.y96{bottom:438.767579px;}
.yc6{bottom:448.494134px;}
.y58{bottom:450.878907px;}
.y35{bottom:451.300776px;}
.ye7{bottom:453.404250px;}
.y13{bottom:464.947266px;}
.yc5{bottom:466.453123px;}
.y57{bottom:467.677734px;}
.y34{bottom:470.203104px;}
.ye6{bottom:471.357368px;}
.yc4{bottom:484.406250px;}
.y56{bottom:484.980468px;}
.y12{bottom:486.246082px;}
.y33{bottom:489.099594px;}
.ye5{bottom:489.316357px;}
.y55{bottom:501.785157px;}
.yc3{bottom:502.359375px;}
.y11{bottom:503.044909px;}
.ye4{bottom:507.269484px;}
.y32{bottom:508.001943px;}
.y54{bottom:519.111329px;}
.y10{bottom:519.843735px;}
.yc2{bottom:520.318355px;}
.ye3{bottom:525.222589px;}
.y31{bottom:526.898433px;}
.yc1{bottom:538.271482px;}
.yf{bottom:541.148427px;}
.ye2{bottom:543.181577px;}
.y53{bottom:549.480468px;}
.yc0{bottom:556.224609px;}
.y30{bottom:559.300782px;}
.ye1{bottom:561.134704px;}
.ye{bottom:562.447260px;}
.y52{bottom:566.285157px;}
.ybf{bottom:574.183593px;}
.y2f{bottom:578.203119px;}
.ye0{bottom:579.087831px;}
.y51{bottom:583.083984px;}
.yd{bottom:583.746093px;}
.ybe{bottom:592.136713px;}
.ydf{bottom:597.046820px;}
.y2e{bottom:597.099605px;}
.y50{bottom:599.882813px;}
.ybd{bottom:610.089840px;}
.yde{bottom:614.999947px;}
.y2d{bottom:616.001943px;}
.y4f{bottom:617.185546px;}
.ybc{bottom:628.048828px;}
.ydd{bottom:632.953074px;}
.y4e{bottom:633.984375px;}
.yc{bottom:634.001967px;}
.y2c{bottom:634.898433px;}
.yb{bottom:647.232431px;}
.ydc{bottom:650.912063px;}
.y4d{bottom:651.316408px;}
.y2b{bottom:653.800776px;}
.ya{bottom:660.457036px;}
.ybb{bottom:665.554688px;}
.y2a{bottom:672.703125px;}
.ya3{bottom:673.025051px;}
.y9{bottom:673.687500px;}
.y4c{bottom:681.310546px;}
.y29{bottom:691.599609px;}
.y8{bottom:694.646484px;}
.y89{bottom:696.597202px;}
.y1e{bottom:699.146481px;}
.ya2{bottom:702.568019px;}
.y28{bottom:710.501948px;}
.y4b{bottom:712.341796px;}
.y7{bottom:713.847657px;}
.y88{bottom:715.499552px;}
.y1d{bottom:718.347657px;}
.yba{bottom:721.165994px;}
.y27{bottom:729.398438px;}
.y87{bottom:734.401901px;}
.yb9{bottom:740.068342px;}
.ya1{bottom:742.552400px;}
.y4a{bottom:743.021484px;}
.y77{bottom:750.732378px;}
.y86{bottom:753.298390px;}
.y6{bottom:756.158206px;}
.yb8{bottom:758.964832px;}
.y26{bottom:760.054688px;}
.ya0{bottom:762.017240px;}
.y76{bottom:769.628868px;}
.y85{bottom:772.200739px;}
.y49{bottom:776.121093px;}
.yb7{bottom:777.867182px;}
.y9f{bottom:780.913730px;}
.y75{bottom:788.531217px;}
.y84{bottom:791.097230px;}
.y5{bottom:793.710931px;}
.yb6{bottom:796.763671px;}
.y9e{bottom:799.816079px;}
.y74{bottom:807.427707px;}
.y83{bottom:809.999578px;}
.y6e{bottom:811.024730px;}
.y25{bottom:815.666016px;}
.yb4{bottom:817.059230px;}
.y73{bottom:826.330056px;}
.yb5{bottom:827.419921px;}
.y9d{bottom:829.359047px;}
.y6d{bottom:829.927078px;}
.y4{bottom:831.269532px;}
.y48{bottom:831.732401px;}
.yb3{bottom:835.961579px;}
.y72{bottom:845.232405px;}
.y24{bottom:846.322266px;}
.y47{bottom:850.628891px;}
.y71{bottom:864.128895px;}
.y46{bottom:869.531239px;}
.y70{bottom:883.031244px;}
.y3{bottom:899.378907px;}
.y23{bottom:901.927730px;}
.y6f{bottom:901.927734px;}
.y22{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y45{bottom:974.730470px;}
.ha{height:26.244141px;}
.h6{height:27.557629px;}
.hb{height:28.048904px;}
.h1{height:30.617097px;}
.h7{height:30.617140px;}
.h1b{height:31.993163px;}
.h18{height:34.946378px;}
.h5{height:34.993255px;}
.he{height:35.617086px;}
.h10{height:36.085693px;}
.h1f{height:37.399182px;}
.h24{height:37.399243px;}
.h22{height:37.399263px;}
.h20{height:37.399301px;}
.h23{height:37.399307px;}
.h16{height:38.654297px;}
.h13{height:39.188695px;}
.h12{height:39.313477px;}
.h2{height:39.366211px;}
.hc{height:39.366295px;}
.hd{height:39.366319px;}
.h1a{height:39.366403px;}
.h11{height:40.341797px;}
.h1d{height:44.085938px;}
.h9{height:46.796220px;}
.hf{height:48.050236px;}
.h8{height:52.443023px;}
.h4{height:68.582368px;}
.h3{height:70.420196px;}
.h17{height:254.004000px;}
.h15{height:295.465500px;}
.h21{height:664.336500px;}
.h19{height:824.133000px;}
.h14{height:844.060500px;}
.h1c{height:844.324500px;}
.h1e{height:850.095000px;}
.h0{height:1020.000000px;}
.w2{width:382.500000px;}
.w3{width:450.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x10{left:9.563109px;}
.x18{left:11.584593px;}
.xe{left:22.500609px;}
.x19{left:45.000609px;}
.x3{left:78.662109px;}
.x8{left:90.474609px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.x9{left:101.162109px;}
.xa{left:107.537109px;}
.xc{left:108.662109px;}
.x17{left:123.662109px;}
.xd{left:126.914062px;}
.x1{left:140.308593px;}
.xb{left:146.162109px;}
.x7{left:151.787109px;}
.x14{left:160.787109px;}
.x6{left:186.662109px;}
.x2{left:277.664062px;}
.x12{left:383.537109px;}
.x11{left:402.662109px;}
.x15{left:574.533325px;}
.xf{left:583.536621px;}
.x13{left:588.041016px;}
.x16{left:611.660523px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.256008pt;}
.lsa{letter-spacing:0.775227pt;}
.ls9{letter-spacing:0.820828pt;}
.ls0{letter-spacing:1.296000pt;}
.ls8{letter-spacing:1.312000pt;}
.ls5{letter-spacing:1.322707pt;}
.ls4{letter-spacing:1.536000pt;}
.ls7{letter-spacing:1.920059pt;}
.ls3{letter-spacing:825.839111pt;}
.ws11{word-spacing:-48.000000pt;}
.wse{word-spacing:-43.990675pt;}
.ws2{word-spacing:-18.781930pt;}
.ws3{word-spacing:-16.759585pt;}
.ws4{word-spacing:-14.592000pt;}
.wsb{word-spacing:-14.448000pt;}
.ws8{word-spacing:-13.296000pt;}
.ws12{word-spacing:-12.631633pt;}
.wsa{word-spacing:-12.188000pt;}
.wsd{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws6{word-spacing:-9.341234pt;}
.ws1{word-spacing:-0.081602pt;}
.ws9{word-spacing:-0.055680pt;}
.ws7{word-spacing:0.000000pt;}
.ws10{word-spacing:89.684001pt;}
.wsf{word-spacing:89.715868pt;}
.wsc{word-spacing:89.715881pt;}
.ws5{word-spacing:177.344000pt;}
._17{margin-left:-8.634249pt;}
._5{margin-left:-7.670547pt;}
._1c{margin-left:-6.643042pt;}
._3{margin-left:-5.328000pt;}
._a{margin-left:-3.067113pt;}
._4{margin-left:-1.898512pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._6{width:3.427266pt;}
._e{width:4.351683pt;}
._d{width:5.884857pt;}
._9{width:6.943359pt;}
._b{width:7.836356pt;}
._c{width:8.827153pt;}
._16{width:9.865128pt;}
._15{width:10.873093pt;}
._14{width:11.919926pt;}
._8{width:14.712254pt;}
._7{width:17.279370pt;}
._1a{width:19.913897pt;}
._f{width:25.230558pt;}
._1b{width:79.991846pt;}
._18{width:102.608000pt;}
._19{width:148.292303pt;}
._11{width:211.680000pt;}
._10{width:246.208000pt;}
._12{width:282.848000pt;}
._13{width:286.208000pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs8{font-size:44.000000pt;}
.fs9{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:55.679685pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y100{bottom:4.025986pt;}
.yff{bottom:19.984322pt;}
.yab{bottom:21.036157pt;}
.yfe{bottom:35.947867pt;}
.yaa{bottom:37.838245pt;}
.y21{bottom:41.541662pt;}
.yfd{bottom:51.906202pt;}
.y20{bottom:52.458331pt;}
.ya9{bottom:54.635120pt;}
.y1f{bottom:63.380208pt;}
.yfc{bottom:67.864537pt;}
.ya8{bottom:71.437208pt;}
.yb2{bottom:75.438667pt;}
.y6b{bottom:79.088528pt;}
.yda{bottom:79.463539pt;}
.y9c{bottom:80.568000pt;}
.y6c{bottom:80.802667pt;}
.yfb{bottom:83.828083pt;}
.yad{bottom:84.802079pt;}
.y81{bottom:89.567708pt;}
.y7f{bottom:91.567712pt;}
.y44{bottom:94.078115pt;}
.yd9{bottom:95.421875pt;}
.y6a{bottom:95.890616pt;}
.ya7{bottom:97.697620pt;}
.y82{bottom:98.516000pt;}
.yfa{bottom:99.786416pt;}
.yac{bottom:101.604167pt;}
.y95{bottom:102.755165pt;}
.y80{bottom:104.500000pt;}
.y7e{bottom:106.500008pt;}
.y43{bottom:110.874995pt;}
.yd8{bottom:111.385416pt;}
.y69{bottom:112.692704pt;}
.yf9{bottom:115.744723pt;}
.y94{bottom:119.552045pt;}
.y7d{bottom:125.437503pt;}
.yd7{bottom:127.343723pt;}
.y42{bottom:127.677059pt;}
.y68{bottom:129.489584pt;}
.yf8{bottom:131.708268pt;}
.ya6{bottom:133.234084pt;}
.y1c{bottom:136.213537pt;}
.y93{bottom:136.354133pt;}
.yd6{bottom:143.302058pt;}
.y7c{bottom:144.369792pt;}
.y41{bottom:144.473939pt;}
.yf7{bottom:147.666603pt;}
.ya5{bottom:150.036172pt;}
.y1b{bottom:153.015625pt;}
.y92{bottom:153.156221pt;}
.y8b{bottom:155.437101pt;}
.y67{bottom:155.750000pt;}
.yd5{bottom:159.265603pt;}
.y40{bottom:161.276027pt;}
.y7a{bottom:162.656000pt;}
.yf6{bottom:163.624939pt;}
.y91{bottom:169.953101pt;}
.yd4{bottom:175.223939pt;}
.ya4{bottom:176.296588pt;}
.y3f{bottom:178.078115pt;}
.yf5{bottom:179.588484pt;}
.y8a{bottom:181.697517pt;}
.y1a{bottom:186.687500pt;}
.y90{bottom:186.755189pt;}
.y66{bottom:190.817708pt;}
.yd3{bottom:191.182274pt;}
.y3e{bottom:194.874995pt;}
.yf4{bottom:195.546819pt;}
.y8f{bottom:203.552069pt;}
.y65{bottom:205.755208pt;}
.yd2{bottom:207.145819pt;}
.yf3{bottom:211.505154pt;}
.y3d{bottom:211.677083pt;}
.y7b{bottom:212.922125pt;}
.y8e{bottom:220.354157pt;}
.y64{bottom:220.687500pt;}
.yd1{bottom:223.104154pt;}
.yf2{bottom:227.468700pt;}
.y19{bottom:232.453111pt;}
.y63{bottom:235.619792pt;}
.y8d{bottom:237.156245pt;}
.y3c{bottom:238.927084pt;}
.yd0{bottom:239.062490pt;}
.ydb{bottom:240.557333pt;}
.yf1{bottom:243.427035pt;}
.y18{bottom:249.255199pt;}
.y79{bottom:249.770875pt;}
.y62{bottom:251.000000pt;}
.y8c{bottom:253.953125pt;}
.ycf{bottom:255.026035pt;}
.yf0{bottom:259.385370pt;}
.y61{bottom:265.932289pt;}
.y17{bottom:266.052079pt;}
.yce{bottom:270.984370pt;}
.yef{bottom:275.348915pt;}
.y60{bottom:280.864583pt;}
.y16{bottom:282.854167pt;}
.ycd{bottom:286.942705pt;}
.y3b{bottom:288.354152pt;}
.yee{bottom:291.307251pt;}
.y5f{bottom:295.802084pt;}
.ycc{bottom:302.906251pt;}
.yb0{bottom:302.932294pt;}
.y3a{bottom:305.156240pt;}
.yed{bottom:307.265584pt;}
.y5e{bottom:310.734375pt;}
.y15{bottom:316.526041pt;}
.yaf{bottom:317.864589pt;}
.ycb{bottom:318.864584pt;}
.y39{bottom:321.958328pt;}
.yec{bottom:323.229121pt;}
.y5d{bottom:325.666667pt;}
.y9a{bottom:326.281244pt;}
.yca{bottom:334.822913pt;}
.yb1{bottom:335.802084pt;}
.yae{bottom:336.802084pt;}
.yeb{bottom:339.187457pt;}
.y5c{bottom:341.046875pt;}
.y99{bottom:341.218745pt;}
.y38{bottom:350.755208pt;}
.yc9{bottom:350.786459pt;}
.y14{bottom:351.864584pt;}
.yea{bottom:355.145792pt;}
.y5b{bottom:355.979166pt;}
.y98{bottom:356.151040pt;}
.yc8{bottom:366.744792pt;}
.y37{bottom:367.557283pt;}
.y5a{bottom:370.916663pt;}
.y97{bottom:371.083336pt;}
.ye9{bottom:371.104120pt;}
.yc7{bottom:382.703118pt;}
.y36{bottom:384.354163pt;}
.y59{bottom:385.848955pt;}
.ye8{bottom:387.067665pt;}
.y78{bottom:388.442667pt;}
.y9b{bottom:389.015625pt;}
.y96{bottom:390.015625pt;}
.yc6{bottom:398.661453pt;}
.y58{bottom:400.781251pt;}
.y35{bottom:401.156245pt;}
.ye7{bottom:403.026000pt;}
.y13{bottom:413.286459pt;}
.yc5{bottom:414.624998pt;}
.y57{bottom:415.713541pt;}
.y34{bottom:417.958315pt;}
.ye6{bottom:418.984328pt;}
.yc4{bottom:430.583333pt;}
.y56{bottom:431.093749pt;}
.y12{bottom:432.218740pt;}
.y33{bottom:434.755195pt;}
.ye5{bottom:434.947873pt;}
.y55{bottom:446.031251pt;}
.yc3{bottom:446.541667pt;}
.y11{bottom:447.151030pt;}
.ye4{bottom:450.906208pt;}
.y32{bottom:451.557283pt;}
.y54{bottom:461.432292pt;}
.y10{bottom:462.083320pt;}
.yc2{bottom:462.505204pt;}
.ye3{bottom:466.864523pt;}
.y31{bottom:468.354163pt;}
.yc1{bottom:478.463539pt;}
.yf{bottom:481.020824pt;}
.ye2{bottom:482.828068pt;}
.y53{bottom:488.427083pt;}
.yc0{bottom:494.421875pt;}
.y30{bottom:497.156251pt;}
.ye1{bottom:498.786404pt;}
.ye{bottom:499.953120pt;}
.y52{bottom:503.364584pt;}
.ybf{bottom:510.385416pt;}
.y2f{bottom:513.958328pt;}
.ye0{bottom:514.744739pt;}
.y51{bottom:518.296875pt;}
.yd{bottom:518.885416pt;}
.ybe{bottom:526.343745pt;}
.ydf{bottom:530.708284pt;}
.y2e{bottom:530.755204pt;}
.y50{bottom:533.229167pt;}
.ybd{bottom:542.302080pt;}
.yde{bottom:546.666620pt;}
.y2d{bottom:547.557283pt;}
.y4f{bottom:548.609375pt;}
.ybc{bottom:558.265625pt;}
.ydd{bottom:562.624955pt;}
.y4e{bottom:563.541667pt;}
.yc{bottom:563.557304pt;}
.y2c{bottom:564.354163pt;}
.yb{bottom:575.317717pt;}
.ydc{bottom:578.588500pt;}
.y4d{bottom:578.947919pt;}
.y2b{bottom:581.156245pt;}
.ya{bottom:587.072921pt;}
.ybb{bottom:591.604167pt;}
.y2a{bottom:597.958333pt;}
.ya3{bottom:598.244489pt;}
.y9{bottom:598.833333pt;}
.y4c{bottom:605.609375pt;}
.y29{bottom:614.755208pt;}
.y8{bottom:617.463541pt;}
.y89{bottom:619.197513pt;}
.y1e{bottom:621.463539pt;}
.ya2{bottom:624.504905pt;}
.y28{bottom:631.557287pt;}
.y4b{bottom:633.192708pt;}
.y7{bottom:634.531251pt;}
.y88{bottom:635.999601pt;}
.y1d{bottom:638.531251pt;}
.yba{bottom:641.036439pt;}
.y27{bottom:648.354167pt;}
.y87{bottom:652.801689pt;}
.yb9{bottom:657.838527pt;}
.ya1{bottom:660.046577pt;}
.y4a{bottom:660.463541pt;}
.y77{bottom:667.317669pt;}
.y86{bottom:669.598569pt;}
.y6{bottom:672.140627pt;}
.yb8{bottom:674.635407pt;}
.y26{bottom:675.604167pt;}
.ya0{bottom:677.348657pt;}
.y76{bottom:684.114549pt;}
.y85{bottom:686.400657pt;}
.y49{bottom:689.885416pt;}
.yb7{bottom:691.437495pt;}
.y9f{bottom:694.145537pt;}
.y75{bottom:700.916637pt;}
.y84{bottom:703.197537pt;}
.y5{bottom:705.520828pt;}
.yb6{bottom:708.234375pt;}
.y9e{bottom:710.947625pt;}
.y74{bottom:717.713517pt;}
.y83{bottom:719.999625pt;}
.y6e{bottom:720.910871pt;}
.y25{bottom:725.036459pt;}
.yb4{bottom:726.274871pt;}
.y73{bottom:734.515605pt;}
.yb5{bottom:735.484375pt;}
.y9d{bottom:737.208041pt;}
.y6d{bottom:737.712959pt;}
.y4{bottom:738.906251pt;}
.y48{bottom:739.317689pt;}
.yb3{bottom:743.076959pt;}
.y72{bottom:751.317693pt;}
.y24{bottom:752.286459pt;}
.y47{bottom:756.114569pt;}
.y71{bottom:768.114573pt;}
.y46{bottom:772.916657pt;}
.y70{bottom:784.916661pt;}
.y3{bottom:799.447917pt;}
.y23{bottom:801.713537pt;}
.y6f{bottom:801.713541pt;}
.y22{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y45{bottom:866.427084pt;}
.ha{height:23.328125pt;}
.h6{height:24.495670pt;}
.hb{height:24.932359pt;}
.h1{height:27.215197pt;}
.h7{height:27.215236pt;}
.h1b{height:28.438367pt;}
.h18{height:31.063447pt;}
.h5{height:31.105115pt;}
.he{height:31.659632pt;}
.h10{height:32.076172pt;}
.h1f{height:33.243717pt;}
.h24{height:33.243772pt;}
.h22{height:33.243790pt;}
.h20{height:33.243823pt;}
.h23{height:33.243828pt;}
.h16{height:34.359375pt;}
.h13{height:34.834396pt;}
.h12{height:34.945312pt;}
.h2{height:34.992188pt;}
.hc{height:34.992262pt;}
.hd{height:34.992283pt;}
.h1a{height:34.992358pt;}
.h11{height:35.859375pt;}
.h1d{height:39.187500pt;}
.h9{height:41.596640pt;}
.hf{height:42.711321pt;}
.h8{height:46.616020pt;}
.h4{height:60.962105pt;}
.h3{height:62.595730pt;}
.h17{height:225.781333pt;}
.h15{height:262.636000pt;}
.h21{height:590.521333pt;}
.h19{height:732.562667pt;}
.h14{height:750.276000pt;}
.h1c{height:750.510667pt;}
.h1e{height:755.640000pt;}
.h0{height:906.666667pt;}
.w2{width:340.000000pt;}
.w3{width:400.000000pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x10{left:8.500541pt;}
.x18{left:10.297416pt;}
.xe{left:20.000541pt;}
.x19{left:40.000541pt;}
.x3{left:69.921875pt;}
.x8{left:80.421875pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.x9{left:89.921875pt;}
.xa{left:95.588541pt;}
.xc{left:96.588542pt;}
.x17{left:109.921874pt;}
.xd{left:112.812500pt;}
.x1{left:124.718749pt;}
.xb{left:129.921875pt;}
.x7{left:134.921875pt;}
.x14{left:142.921875pt;}
.x6{left:165.921875pt;}
.x2{left:246.812500pt;}
.x12{left:340.921875pt;}
.x11{left:357.921875pt;}
.x15{left:510.696289pt;}
.xf{left:518.699219pt;}
.x13{left:522.703125pt;}
.x16{left:543.698243pt;}
}




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