
    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_053cd1379fbf04d4d466b797.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.991699;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_6efa00a6c6fef42ff952ec58.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_b66e37369ec4bd038db98736.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.725586;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_ae2cc686a25ed598d8ddf2cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991699;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_d928a39ed847824c9b6f5553.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_afd7f928632c1b185ecd4311.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_95a52eba4a163ea32405a69c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.241699;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_238a41ab9c57e6e949d36ecf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_6672ee0c874511a212abae60.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_d56cca07a2b329e60acfc0ae.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.891113;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);}
.v2{vertical-align:-77.039982px;}
.vd{vertical-align:-23.760130px;}
.v3{vertical-align:-13.679901px;}
.v9{vertical-align:-10.079959px;}
.v1{vertical-align:-5.759996px;}
.ve{vertical-align:-2.160050px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:2.160050px;}
.v4{vertical-align:13.679901px;}
.v12{vertical-align:20.159910px;}
.vc{vertical-align:23.759861px;}
.va{vertical-align:33.120000px;}
.v6{vertical-align:36.720018px;}
.v10{vertical-align:38.160050px;}
.v7{vertical-align:44.639919px;}
.v5{vertical-align:50.400059px;}
.v8{vertical-align:52.559968px;}
.vb{vertical-align:72.000000px;}
.v11{vertical-align:95.039977px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.001930px;}
.ls22{letter-spacing:0.001935px;}
.ls19{letter-spacing:0.001998px;}
.ls26{letter-spacing:0.002002px;}
.ls25{letter-spacing:0.003150px;}
.ls1a{letter-spacing:0.003154px;}
.ls24{letter-spacing:0.003186px;}
.ls13{letter-spacing:0.360940px;}
.ls1{letter-spacing:0.721562px;}
.ls29{letter-spacing:1.395180px;}
.ls11{letter-spacing:2.073248px;}
.ls16{letter-spacing:2.107378px;}
.ls10{letter-spacing:2.107445px;}
.ls2b{letter-spacing:2.526319px;}
.ls20{letter-spacing:3.079899px;}
.ls21{letter-spacing:3.255268px;}
.lsa{letter-spacing:3.975282px;}
.ls23{letter-spacing:11.893234px;}
.ls3{letter-spacing:16.759805px;}
.ls1b{letter-spacing:16.759944px;}
.ls2c{letter-spacing:16.933247px;}
.ls9{letter-spacing:17.479818px;}
.lsd{letter-spacing:17.479890px;}
.lsf{letter-spacing:18.203327px;}
.ls8{letter-spacing:18.203395px;}
.ls1d{letter-spacing:18.203399px;}
.ls15{letter-spacing:18.203431px;}
.ls5{letter-spacing:18.203462px;}
.ls1f{letter-spacing:18.203467px;}
.ls27{letter-spacing:20.359886px;}
.ls1e{letter-spacing:21.255124px;}
.ls7{letter-spacing:21.255129px;}
.ls1c{letter-spacing:21.255192px;}
.lsc{letter-spacing:21.255197px;}
.ls2{letter-spacing:21.975142px;}
.ls4{letter-spacing:21.975147px;}
.ls2d{letter-spacing:32.053252px;}
.ls28{letter-spacing:66.443471px;}
.ls2a{letter-spacing:92.363516px;}
.ls12{letter-spacing:103.879876px;}
.ls6{letter-spacing:155.612768px;}
.lsb{letter-spacing:160.652746px;}
.ls17{letter-spacing:196.039926px;}
.ls18{letter-spacing:245.719827px;}
.lse{letter-spacing:291.692723px;}
.ls2e{letter-spacing:847.441593px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3{word-spacing:-66.233700px;}
.ws12{word-spacing:-52.523324px;}
.wsb{word-spacing:-52.125922px;}
.wsa{word-spacing:-51.993454px;}
.ws14{word-spacing:-51.740932px;}
.ws11{word-spacing:-51.633541px;}
.wsf{word-spacing:-51.633406px;}
.ws7{word-spacing:-51.630314px;}
.ws9{word-spacing:-51.630179px;}
.ws5{word-spacing:-51.463585px;}
.ws13{word-spacing:-51.452519px;}
.ws8{word-spacing:-48.235500px;}
.ws4{word-spacing:-48.030301px;}
.wse{word-spacing:-48.030238px;}
.ws10{word-spacing:-31.444178px;}
.ws6{word-spacing:-30.724300px;}
.wsc{word-spacing:-28.031076px;}
.ws0{word-spacing:-16.558425px;}
.wsd{word-spacing:-13.648196px;}
.ws2{word-spacing:-10.439033px;}
.ws1{word-spacing:0.000000px;}
._2b{margin-left:-3.530652px;}
._3{margin-left:-2.227626px;}
._0{margin-left:-1.051195px;}
._2{width:1.156754px;}
._1b{width:2.549997px;}
._b{width:3.771699px;}
._c{width:5.390278px;}
._d{width:6.818204px;}
._5{width:8.212979px;}
._4{width:9.658022px;}
._11{width:11.235016px;}
._19{width:12.414155px;}
._18{width:14.030419px;}
._1c{width:15.220304px;}
._16{width:17.797720px;}
._9{width:18.939216px;}
._8{width:20.111760px;}
._a{width:21.137347px;}
._10{width:23.009108px;}
._14{width:24.010535px;}
._17{width:25.352023px;}
._23{width:27.318516px;}
._29{width:28.753525px;}
._2e{width:30.395576px;}
._1f{width:32.311955px;}
._27{width:34.184099px;}
._1a{width:35.587445px;}
._f{width:36.672765px;}
._e{width:37.941561px;}
._35{width:39.009710px;}
._22{width:40.042153px;}
._20{width:42.212341px;}
._21{width:43.942179px;}
._7{width:46.023877px;}
._12{width:47.846597px;}
._34{width:51.067218px;}
._6{width:54.144239px;}
._32{width:57.249202px;}
._24{width:58.550591px;}
._25{width:59.798941px;}
._30{width:62.716070px;}
._2f{width:63.739580px;}
._26{width:70.045236px;}
._15{width:71.376902px;}
._2c{width:72.985915px;}
._2d{width:74.429862px;}
._33{width:76.136149px;}
._31{width:77.660121px;}
._36{width:86.178426px;}
._1e{width:88.169222px;}
._1d{width:89.455598px;}
._2a{width:99.935269px;}
._39{width:130.452569px;}
._38{width:131.584759px;}
._37{width:142.720817px;}
._28{width:164.755322px;}
._1{width:897.117746px;}
._13{width:941.037723px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,102,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.876400px;}
.fs5{font-size:41.756130px;}
.fs1{font-size:48.235500px;}
.fs2{font-size:53.995050px;}
.fs0{font-size:59.754600px;}
.fs3{font-size:66.233700px;}
.fs4{font-size:84.232350px;}
.y0{bottom:0.000000px;}
.y6{bottom:55.980010px;}
.y5{bottom:71.100013px;}
.y4{bottom:85.860008px;}
.y7a{bottom:105.300041px;}
.y63{bottom:113.759994px;}
.y2b{bottom:114.480010px;}
.y41{bottom:116.999999px;}
.y92{bottom:117.899986px;}
.y79{bottom:124.200027px;}
.y62{bottom:132.659980px;}
.y2a{bottom:133.379997px;}
.y40{bottom:135.899986px;}
.y91{bottom:136.800041px;}
.y78{bottom:143.279983px;}
.y61{bottom:151.560035px;}
.y29{bottom:152.460022px;}
.y3f{bottom:154.800041px;}
.y90{bottom:155.879997px;}
.y77{bottom:162.180037px;}
.y60{bottom:170.639991px;}
.y28{bottom:171.360008px;}
.y3e{bottom:173.879997px;}
.y8f{bottom:174.779983px;}
.y76{bottom:181.080024px;}
.y5f{bottom:189.539978px;}
.y27{bottom:190.259994px;}
.y3d{bottom:192.779983px;}
.y8e{bottom:193.680037px;}
.y75{bottom:200.159980px;}
.y3c{bottom:207.899986px;}
.y5e{bottom:208.620003px;}
.y26{bottom:209.340018px;}
.y8d{bottom:212.759994px;}
.y3b{bottom:219.060035px;}
.y5d{bottom:227.519988px;}
.y25{bottom:228.240005px;}
.y8c{bottom:231.659980px;}
.y74{bottom:238.139991px;}
.y5c{bottom:246.420043px;}
.y24{bottom:247.320030px;}
.y3a{bottom:249.300041px;}
.y8b{bottom:250.740005px;}
.y73{bottom:257.039978px;}
.y5b{bottom:265.499999px;}
.y23{bottom:266.220016px;}
.y39{bottom:268.379997px;}
.y8a{bottom:269.639991px;}
.y72{bottom:275.940033px;}
.y5a{bottom:284.399986px;}
.y22{bottom:285.300041px;}
.y38{bottom:287.279983px;}
.y89{bottom:288.720016px;}
.y71{bottom:295.019988px;}
.y59{bottom:299.700027px;}
.y37{bottom:302.399986px;}
.y21{bottom:304.200027px;}
.y58{bottom:307.980010px;}
.y88{bottom:312.480010px;}
.y36{bottom:313.560035px;}
.y70{bottom:313.920043px;}
.y20{bottom:323.100013px;}
.y57{bottom:332.280017px;}
.y6f{bottom:332.999999px;}
.y87{bottom:336.060000px;}
.y1f{bottom:338.580024px;}
.y93{bottom:341.999999px;}
.y2d{bottom:342.180004px;}
.y35{bottom:343.800006px;}
.y56{bottom:351.180004px;}
.y6e{bottom:351.900021px;}
.y86{bottom:354.960022px;}
.y1e{bottom:361.080024px;}
.y34{bottom:362.879997px;}
.y55{bottom:370.259994px;}
.y6d{bottom:370.980010px;}
.y85{bottom:373.860008px;}
.y1d{bottom:380.160015px;}
.y33{bottom:381.780017px;}
.y54{bottom:389.160015px;}
.y6c{bottom:389.879997px;}
.y84{bottom:392.939998px;}
.y32{bottom:396.900021px;}
.y1c{bottom:399.060000px;}
.y31{bottom:408.060000px;}
.y53{bottom:408.240005px;}
.y6b{bottom:408.420009px;}
.y83{bottom:411.840018px;}
.y1b{bottom:417.960022px;}
.y6a{bottom:419.580024px;}
.y52{bottom:427.140025px;}
.y82{bottom:430.920009px;}
.y30{bottom:436.680004px;}
.y1a{bottom:437.040012px;}
.y51{bottom:446.040012px;}
.y81{bottom:449.460022px;}
.y69{bottom:450.360008px;}
.y2f{bottom:455.580024px;}
.y19{bottom:455.939998px;}
.y50{bottom:465.120003px;}
.y68{bottom:469.259994px;}
.y80{bottom:473.220016px;}
.y2e{bottom:474.660015px;}
.y18{bottom:475.020023px;}
.y4f{bottom:484.020023px;}
.y67{bottom:489.600013px;}
.y7f{bottom:490.319996px;}
.y17{bottom:493.920009px;}
.y4e{bottom:503.100013px;}
.y7e{bottom:507.960022px;}
.y66{bottom:512.280017px;}
.y16{bottom:512.819996px;}
.y7d{bottom:516.240005px;}
.y4d{bottom:521.999999px;}
.y65{bottom:531.180004px;}
.y15{bottom:531.900021px;}
.y7c{bottom:538.200027px;}
.y4c{bottom:540.900021px;}
.y7b{bottom:546.480010px;}
.y64{bottom:550.080024px;}
.y14{bottom:550.800006px;}
.y4b{bottom:559.980010px;}
.y13{bottom:569.879997px;}
.y4a{bottom:578.879997px;}
.y12{bottom:588.780017px;}
.y49{bottom:597.960022px;}
.y11{bottom:607.680004px;}
.y48{bottom:616.860008px;}
.y2c{bottom:623.160015px;}
.y10{bottom:626.760012px;}
.y47{bottom:635.760012px;}
.yf{bottom:645.660015px;}
.y46{bottom:654.840018px;}
.ye{bottom:664.740005px;}
.y45{bottom:673.740005px;}
.yd{bottom:683.640008px;}
.y44{bottom:692.820013px;}
.yc{bottom:702.540012px;}
.y43{bottom:708.120003px;}
.y42{bottom:716.400003px;}
.yb{bottom:721.620003px;}
.ya{bottom:740.520006px;}
.y9{bottom:759.600013px;}
.y8{bottom:778.500008px;}
.y7{bottom:797.580007px;}
.y3{bottom:815.940007px;}
.y2{bottom:833.400012px;}
.y1{bottom:848.340010px;}
.h3{height:37.895957px;}
.h4{height:40.651598px;}
.h6{height:46.441208px;}
.h2{height:46.945875px;}
.h1a{height:48.219945px;}
.h12{height:53.038084px;}
.h19{height:53.038219px;}
.h14{height:53.038354px;}
.h13{height:53.038359px;}
.h1d{height:54.591057px;}
.h5{height:57.275333px;}
.h16{height:63.808149px;}
.h15{height:70.949077px;}
.h7{height:70.988787px;}
.h11{height:79.561140px;}
.he{height:79.561208px;}
.hd{height:85.349063px;}
.hf{height:85.349131px;}
.h9{height:91.081127px;}
.h1c{height:91.081131px;}
.h18{height:91.081266px;}
.hb{height:91.081406px;}
.hc{height:114.207929px;}
.ha{height:114.208068px;}
.h8{height:114.208208px;}
.h10{height:118.469063px;}
.h17{height:121.348991px;}
.h1b{height:158.848127px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.279985px;}
.x0{left:0.000000px;}
.x6{left:63.899999px;}
.xe{left:74.700002px;}
.x18{left:79.739997px;}
.x22{left:85.140000px;}
.x11{left:97.200002px;}
.x4{left:106.739997px;}
.x14{left:112.140000px;}
.x7{left:117.000000px;}
.x8{left:119.700002px;}
.x9{left:126.000000px;}
.x19{left:169.199993px;}
.xf{left:196.199993px;}
.x23{left:209.879998px;}
.x16{left:218.159998px;}
.x21{left:226.800007px;}
.x13{left:240.300007px;}
.x2{left:251.639992px;}
.x1d{left:257.580008px;}
.x1c{left:265.139992px;}
.xb{left:276.840002px;}
.x1b{left:293.939999px;}
.x5{left:297.180005px;}
.x1a{left:303.300007px;}
.x20{left:310.680005px;}
.x3{left:314.639992px;}
.x26{left:326.519989px;}
.x15{left:329.759994px;}
.x25{left:333.899987px;}
.xc{left:391.319996px;}
.x24{left:392.939999px;}
.x1f{left:400.860008px;}
.x12{left:406.259994px;}
.x1e{left:419.759994px;}
.xa{left:433.980011px;}
.x10{left:452.699993px;}
.xd{left:516.060001px;}
.x17{left:527.579990px;}
.x1{left:565.560001px;}
.x27{left:571.319996px;}
@media print{
.v2{vertical-align:-68.479984pt;}
.vd{vertical-align:-21.120116pt;}
.v3{vertical-align:-12.159912pt;}
.v9{vertical-align:-8.959964pt;}
.v1{vertical-align:-5.119996pt;}
.ve{vertical-align:-1.920044pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:1.920044pt;}
.v4{vertical-align:12.159912pt;}
.v12{vertical-align:17.919920pt;}
.vc{vertical-align:21.119876pt;}
.va{vertical-align:29.440000pt;}
.v6{vertical-align:32.640016pt;}
.v10{vertical-align:33.920044pt;}
.v7{vertical-align:39.679928pt;}
.v5{vertical-align:44.800052pt;}
.v8{vertical-align:46.719972pt;}
.vb{vertical-align:64.000000pt;}
.v11{vertical-align:84.479980pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.001716pt;}
.ls22{letter-spacing:0.001720pt;}
.ls19{letter-spacing:0.001776pt;}
.ls26{letter-spacing:0.001780pt;}
.ls25{letter-spacing:0.002800pt;}
.ls1a{letter-spacing:0.002804pt;}
.ls24{letter-spacing:0.002832pt;}
.ls13{letter-spacing:0.320836pt;}
.ls1{letter-spacing:0.641388pt;}
.ls29{letter-spacing:1.240160pt;}
.ls11{letter-spacing:1.842887pt;}
.ls16{letter-spacing:1.873225pt;}
.ls10{letter-spacing:1.873285pt;}
.ls2b{letter-spacing:2.245617pt;}
.ls20{letter-spacing:2.737688pt;}
.ls21{letter-spacing:2.893572pt;}
.lsa{letter-spacing:3.533584pt;}
.ls23{letter-spacing:10.571763pt;}
.ls3{letter-spacing:14.897604pt;}
.ls1b{letter-spacing:14.897728pt;}
.ls2c{letter-spacing:15.051775pt;}
.ls9{letter-spacing:15.537616pt;}
.lsd{letter-spacing:15.537680pt;}
.lsf{letter-spacing:16.180735pt;}
.ls8{letter-spacing:16.180795pt;}
.ls1d{letter-spacing:16.180799pt;}
.ls15{letter-spacing:16.180827pt;}
.ls5{letter-spacing:16.180855pt;}
.ls1f{letter-spacing:16.180859pt;}
.ls27{letter-spacing:18.097676pt;}
.ls1e{letter-spacing:18.893444pt;}
.ls7{letter-spacing:18.893448pt;}
.ls1c{letter-spacing:18.893504pt;}
.lsc{letter-spacing:18.893508pt;}
.ls2{letter-spacing:19.533460pt;}
.ls4{letter-spacing:19.533464pt;}
.ls2d{letter-spacing:28.491779pt;}
.ls28{letter-spacing:59.060863pt;}
.ls2a{letter-spacing:82.100903pt;}
.ls12{letter-spacing:92.337668pt;}
.ls6{letter-spacing:138.322461pt;}
.lsb{letter-spacing:142.802441pt;}
.ls17{letter-spacing:174.257712pt;}
.ls18{letter-spacing:218.417624pt;}
.lse{letter-spacing:259.282421pt;}
.ls2e{letter-spacing:753.281416pt;}
.ws3{word-spacing:-58.874400pt;}
.ws12{word-spacing:-46.687399pt;}
.wsb{word-spacing:-46.334153pt;}
.wsa{word-spacing:-46.216404pt;}
.ws14{word-spacing:-45.991939pt;}
.ws11{word-spacing:-45.896481pt;}
.wsf{word-spacing:-45.896361pt;}
.ws7{word-spacing:-45.893613pt;}
.ws9{word-spacing:-45.893493pt;}
.ws5{word-spacing:-45.745409pt;}
.ws13{word-spacing:-45.735573pt;}
.ws8{word-spacing:-42.876000pt;}
.ws4{word-spacing:-42.693601pt;}
.wse{word-spacing:-42.693545pt;}
.ws10{word-spacing:-27.950381pt;}
.ws6{word-spacing:-27.310489pt;}
.wsc{word-spacing:-24.916512pt;}
.ws0{word-spacing:-14.718600pt;}
.wsd{word-spacing:-12.131730pt;}
.ws2{word-spacing:-9.279140pt;}
.ws1{word-spacing:0.000000pt;}
._2b{margin-left:-3.138357pt;}
._3{margin-left:-1.980112pt;}
._0{margin-left:-0.934395pt;}
._2{width:1.028226pt;}
._1b{width:2.266664pt;}
._b{width:3.352621pt;}
._c{width:4.791358pt;}
._d{width:6.060626pt;}
._5{width:7.300426pt;}
._4{width:8.584909pt;}
._11{width:9.986680pt;}
._19{width:11.034804pt;}
._18{width:12.471484pt;}
._1c{width:13.529159pt;}
._16{width:15.820196pt;}
._9{width:16.834859pt;}
._8{width:17.877120pt;}
._a{width:18.788753pt;}
._10{width:20.452541pt;}
._14{width:21.342697pt;}
._17{width:22.535132pt;}
._23{width:24.283125pt;}
._29{width:25.558689pt;}
._2e{width:27.018290pt;}
._1f{width:28.721738pt;}
._27{width:30.385866pt;}
._1a{width:31.633285pt;}
._f{width:32.598013pt;}
._e{width:33.725832pt;}
._35{width:34.675297pt;}
._22{width:35.593024pt;}
._20{width:37.522081pt;}
._21{width:39.059715pt;}
._7{width:40.910113pt;}
._12{width:42.530309pt;}
._34{width:45.393082pt;}
._6{width:48.128212pt;}
._32{width:50.888180pt;}
._24{width:52.044970pt;}
._25{width:53.154614pt;}
._30{width:55.747617pt;}
._2f{width:56.657405pt;}
._26{width:62.262432pt;}
._15{width:63.446135pt;}
._2c{width:64.876369pt;}
._2d{width:66.159877pt;}
._33{width:67.676577pt;}
._31{width:69.031218pt;}
._36{width:76.603045pt;}
._1e{width:78.372641pt;}
._1d{width:79.516087pt;}
._2a{width:88.831351pt;}
._39{width:115.957839pt;}
._38{width:116.964230pt;}
._37{width:126.862949pt;}
._28{width:146.449175pt;}
._1{width:797.437996pt;}
._13{width:836.477976pt;}
.fs6{font-size:34.556800pt;}
.fs5{font-size:37.116560pt;}
.fs1{font-size:42.876000pt;}
.fs2{font-size:47.995600pt;}
.fs0{font-size:53.115200pt;}
.fs3{font-size:58.874400pt;}
.fs4{font-size:74.873200pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:49.760009pt;}
.y5{bottom:63.200011pt;}
.y4{bottom:76.320007pt;}
.y7a{bottom:93.600036pt;}
.y63{bottom:101.119994pt;}
.y2b{bottom:101.760009pt;}
.y41{bottom:103.999999pt;}
.y92{bottom:104.799987pt;}
.y79{bottom:110.400024pt;}
.y62{bottom:117.919982pt;}
.y2a{bottom:118.559997pt;}
.y40{bottom:120.799987pt;}
.y91{bottom:121.600036pt;}
.y78{bottom:127.359985pt;}
.y61{bottom:134.720031pt;}
.y29{bottom:135.520019pt;}
.y3f{bottom:137.600036pt;}
.y90{bottom:138.559997pt;}
.y77{bottom:144.160033pt;}
.y60{bottom:151.679992pt;}
.y28{bottom:152.320007pt;}
.y3e{bottom:154.559997pt;}
.y8f{bottom:155.359985pt;}
.y76{bottom:160.960021pt;}
.y5f{bottom:168.479980pt;}
.y27{bottom:169.119994pt;}
.y3d{bottom:171.359985pt;}
.y8e{bottom:172.160033pt;}
.y75{bottom:177.919982pt;}
.y3c{bottom:184.799987pt;}
.y5e{bottom:185.440002pt;}
.y26{bottom:186.080016pt;}
.y8d{bottom:189.119994pt;}
.y3b{bottom:194.720031pt;}
.y5d{bottom:202.239989pt;}
.y25{bottom:202.880004pt;}
.y8c{bottom:205.919982pt;}
.y74{bottom:211.679992pt;}
.y5c{bottom:219.040038pt;}
.y24{bottom:219.840026pt;}
.y3a{bottom:221.600036pt;}
.y8b{bottom:222.880004pt;}
.y73{bottom:228.479980pt;}
.y5b{bottom:235.999999pt;}
.y23{bottom:236.640014pt;}
.y39{bottom:238.559997pt;}
.y8a{bottom:239.679992pt;}
.y72{bottom:245.280029pt;}
.y5a{bottom:252.799987pt;}
.y22{bottom:253.600036pt;}
.y38{bottom:255.359985pt;}
.y89{bottom:256.640014pt;}
.y71{bottom:262.239989pt;}
.y59{bottom:266.400024pt;}
.y37{bottom:268.799987pt;}
.y21{bottom:270.400024pt;}
.y58{bottom:273.760009pt;}
.y88{bottom:277.760009pt;}
.y36{bottom:278.720031pt;}
.y70{bottom:279.040038pt;}
.y20{bottom:287.200011pt;}
.y57{bottom:295.360015pt;}
.y6f{bottom:295.999999pt;}
.y87{bottom:298.720000pt;}
.y1f{bottom:300.960021pt;}
.y93{bottom:303.999999pt;}
.y2d{bottom:304.160003pt;}
.y35{bottom:305.600005pt;}
.y56{bottom:312.160003pt;}
.y6e{bottom:312.800018pt;}
.y86{bottom:315.520019pt;}
.y1e{bottom:320.960021pt;}
.y34{bottom:322.559997pt;}
.y55{bottom:329.119994pt;}
.y6d{bottom:329.760009pt;}
.y85{bottom:332.320007pt;}
.y1d{bottom:337.920013pt;}
.y33{bottom:339.360015pt;}
.y54{bottom:345.920013pt;}
.y6c{bottom:346.559997pt;}
.y84{bottom:349.279998pt;}
.y32{bottom:352.800018pt;}
.y1c{bottom:354.720000pt;}
.y31{bottom:362.720000pt;}
.y53{bottom:362.880004pt;}
.y6b{bottom:363.040008pt;}
.y83{bottom:366.080016pt;}
.y1b{bottom:371.520019pt;}
.y6a{bottom:372.960021pt;}
.y52{bottom:379.680022pt;}
.y82{bottom:383.040008pt;}
.y30{bottom:388.160003pt;}
.y1a{bottom:388.480010pt;}
.y51{bottom:396.480010pt;}
.y81{bottom:399.520019pt;}
.y69{bottom:400.320007pt;}
.y2f{bottom:404.960021pt;}
.y19{bottom:405.279998pt;}
.y50{bottom:413.440002pt;}
.y68{bottom:417.119994pt;}
.y80{bottom:420.640014pt;}
.y2e{bottom:421.920013pt;}
.y18{bottom:422.240020pt;}
.y4f{bottom:430.240020pt;}
.y67{bottom:435.200011pt;}
.y7f{bottom:435.839996pt;}
.y17{bottom:439.040008pt;}
.y4e{bottom:447.200011pt;}
.y7e{bottom:451.520019pt;}
.y66{bottom:455.360015pt;}
.y16{bottom:455.839996pt;}
.y7d{bottom:458.880004pt;}
.y4d{bottom:463.999999pt;}
.y65{bottom:472.160003pt;}
.y15{bottom:472.800018pt;}
.y7c{bottom:478.400024pt;}
.y4c{bottom:480.800018pt;}
.y7b{bottom:485.760009pt;}
.y64{bottom:488.960021pt;}
.y14{bottom:489.600005pt;}
.y4b{bottom:497.760009pt;}
.y13{bottom:506.559997pt;}
.y4a{bottom:514.559997pt;}
.y12{bottom:523.360015pt;}
.y49{bottom:531.520019pt;}
.y11{bottom:540.160003pt;}
.y48{bottom:548.320007pt;}
.y2c{bottom:553.920013pt;}
.y10{bottom:557.120010pt;}
.y47{bottom:565.120010pt;}
.yf{bottom:573.920013pt;}
.y46{bottom:582.080016pt;}
.ye{bottom:590.880004pt;}
.y45{bottom:598.880004pt;}
.yd{bottom:607.680007pt;}
.y44{bottom:615.840011pt;}
.yc{bottom:624.480010pt;}
.y43{bottom:629.440002pt;}
.y42{bottom:636.800002pt;}
.yb{bottom:641.440002pt;}
.ya{bottom:658.240005pt;}
.y9{bottom:675.200011pt;}
.y8{bottom:692.000007pt;}
.y7{bottom:708.960006pt;}
.y3{bottom:725.280006pt;}
.y2{bottom:740.800010pt;}
.y1{bottom:754.080009pt;}
.h3{height:33.685295pt;}
.h4{height:36.134754pt;}
.h6{height:41.281073pt;}
.h2{height:41.729666pt;}
.h1a{height:42.862173pt;}
.h12{height:47.144964pt;}
.h19{height:47.145084pt;}
.h14{height:47.145204pt;}
.h13{height:47.145208pt;}
.h1d{height:48.525384pt;}
.h5{height:50.911407pt;}
.h16{height:56.718355pt;}
.h15{height:63.065846pt;}
.h7{height:63.101144pt;}
.h11{height:70.721013pt;}
.he{height:70.721073pt;}
.hd{height:75.865834pt;}
.hf{height:75.865894pt;}
.h9{height:80.961001pt;}
.h1c{height:80.961005pt;}
.h18{height:80.961125pt;}
.hb{height:80.961249pt;}
.hc{height:101.518159pt;}
.ha{height:101.518283pt;}
.h8{height:101.518407pt;}
.h10{height:105.305834pt;}
.h17{height:107.865770pt;}
.h1b{height:141.198335pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.359987pt;}
.x0{left:0.000000pt;}
.x6{left:56.799999pt;}
.xe{left:66.400002pt;}
.x18{left:70.879997pt;}
.x22{left:75.680000pt;}
.x11{left:86.400002pt;}
.x4{left:94.879997pt;}
.x14{left:99.680000pt;}
.x7{left:104.000000pt;}
.x8{left:106.400002pt;}
.x9{left:112.000000pt;}
.x19{left:150.399994pt;}
.xf{left:174.399994pt;}
.x23{left:186.559998pt;}
.x16{left:193.919998pt;}
.x21{left:201.600006pt;}
.x13{left:213.600006pt;}
.x2{left:223.679993pt;}
.x1d{left:228.960007pt;}
.x1c{left:235.679993pt;}
.xb{left:246.080002pt;}
.x1b{left:261.279999pt;}
.x5{left:264.160004pt;}
.x1a{left:269.600006pt;}
.x20{left:276.160004pt;}
.x3{left:279.679993pt;}
.x26{left:290.239990pt;}
.x15{left:293.119995pt;}
.x25{left:296.799988pt;}
.xc{left:347.839996pt;}
.x24{left:349.279999pt;}
.x1f{left:356.320007pt;}
.x12{left:361.119995pt;}
.x1e{left:373.119995pt;}
.xa{left:385.760010pt;}
.x10{left:402.399994pt;}
.xd{left:458.720001pt;}
.x17{left:468.959991pt;}
.x1{left:502.720001pt;}
.x27{left:507.839996pt;}
}




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