
    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_25200479c20ddf44eff1e430.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936523;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_2973a5bc15c70b75720276da.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_3a96588d54651367d4ecc521.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895000;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_ae84a66812905f3ad2883f46.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918945;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_ab8737be360138c88fca8370.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.918945;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;}
.m12{transform:matrix(-0.216191,0.125545,-0.125545,-0.216191,0,0);-ms-transform:matrix(-0.216191,0.125545,-0.125545,-0.216191,0,0);-webkit-transform:matrix(-0.216191,0.125545,-0.125545,-0.216191,0,0);}
.m3{transform:matrix(-0.180547,-0.172924,0.172924,-0.180547,0,0);-ms-transform:matrix(-0.180547,-0.172924,0.172924,-0.180547,0,0);-webkit-transform:matrix(-0.180547,-0.172924,0.172924,-0.180547,0,0);}
.m11{transform:matrix(-0.171205,0.182178,-0.182178,-0.171205,0,0);-ms-transform:matrix(-0.171205,0.182178,-0.182178,-0.171205,0,0);-webkit-transform:matrix(-0.171205,0.182178,-0.182178,-0.171205,0,0);}
.m10{transform:matrix(-0.115362,0.221792,-0.221792,-0.115362,0,0);-ms-transform:matrix(-0.115362,0.221792,-0.221792,-0.115362,0,0);-webkit-transform:matrix(-0.115362,0.221792,-0.221792,-0.115362,0,0);}
.m4{transform:matrix(-0.104110,-0.227291,0.227291,-0.104110,0,0);-ms-transform:matrix(-0.104110,-0.227291,0.227291,-0.104110,0,0);-webkit-transform:matrix(-0.104110,-0.227291,0.227291,-0.104110,0,0);}
.mf{transform:matrix(-0.028794,0.248336,-0.248336,-0.028794,0,0);-ms-transform:matrix(-0.028794,0.248336,-0.248336,-0.028794,0,0);-webkit-transform:matrix(-0.028794,0.248336,-0.248336,-0.028794,0,0);}
.m5{transform:matrix(-0.028400,-0.248382,0.248382,-0.028400,0,0);-ms-transform:matrix(-0.028400,-0.248382,0.248382,-0.028400,0,0);-webkit-transform:matrix(-0.028400,-0.248382,0.248382,-0.028400,0,0);}
.m0{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.052028,-0.244526,0.244526,0.052028,0,0);-ms-transform:matrix(0.052028,-0.244526,0.244526,0.052028,0,0);-webkit-transform:matrix(0.052028,-0.244526,0.244526,0.052028,0,0);}
.me{transform:matrix(0.059767,0.242751,-0.242751,0.059767,0,0);-ms-transform:matrix(0.059767,0.242751,-0.242751,0.059767,0,0);-webkit-transform:matrix(0.059767,0.242751,-0.242751,0.059767,0,0);}
.md{transform:matrix(0.138934,0.207840,-0.207840,0.138934,0,0);-ms-transform:matrix(0.138934,0.207840,-0.207840,0.138934,0,0);-webkit-transform:matrix(0.138934,0.207840,-0.207840,0.138934,0,0);}
.m7{transform:matrix(0.139696,-0.207328,0.207328,0.139696,0,0);-ms-transform:matrix(0.139696,-0.207328,0.207328,0.139696,0,0);-webkit-transform:matrix(0.139696,-0.207328,0.207328,0.139696,0,0);}
.m2{transform:matrix(0.175834,-0.177715,0.177715,0.175834,0,0);-ms-transform:matrix(0.175834,-0.177715,0.177715,0.175834,0,0);-webkit-transform:matrix(0.175834,-0.177715,0.177715,0.175834,0,0);}
.m8{transform:matrix(0.190645,-0.161723,0.161723,0.190645,0,0);-ms-transform:matrix(0.190645,-0.161723,0.161723,0.190645,0,0);-webkit-transform:matrix(0.190645,-0.161723,0.161723,0.190645,0,0);}
.mc{transform:matrix(0.202978,0.145945,-0.145945,0.202978,0,0);-ms-transform:matrix(0.202978,0.145945,-0.145945,0.202978,0,0);-webkit-transform:matrix(0.202978,0.145945,-0.145945,0.202978,0,0);}
.m9{transform:matrix(0.228796,-0.100760,0.100760,0.228796,0,0);-ms-transform:matrix(0.228796,-0.100760,0.100760,0.228796,0,0);-webkit-transform:matrix(0.228796,-0.100760,0.100760,0.228796,0,0);}
.mb{transform:matrix(0.244802,0.050714,-0.050714,0.244802,0,0);-ms-transform:matrix(0.244802,0.050714,-0.050714,0.244802,0,0);-webkit-transform:matrix(0.244802,0.050714,-0.050714,0.244802,0,0);}
.ma{transform:matrix(0.248387,-0.028352,0.028352,0.248387,0,0);-ms-transform:matrix(0.248387,-0.028352,0.028352,0.248387,0,0);-webkit-transform:matrix(0.248387,-0.028352,0.028352,0.248387,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:131.102796px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-47.096300px;}
.ws3{word-spacing:-28.355240px;}
.ws1{word-spacing:-19.440783px;}
.ws2{word-spacing:-0.098259px;}
.ws5{word-spacing:0.000000px;}
.ws4{word-spacing:547.618876px;}
._0{margin-left:-9.408031px;}
._4{margin-left:-7.552361px;}
._2{margin-left:-6.492370px;}
._1{margin-left:-3.814067px;}
._3{margin-left:-1.259517px;}
.fc8{color:transparent;}
.fc7{color:rgb(152,27,30);}
.fc6{color:rgb(41,131,59);}
.fc1{color:rgb(2,61,107);}
.fc5{color:rgb(77,77,77);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(91,91,91);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:50.183400px;}
.fs1a{font-size:55.528176px;}
.fsd{font-size:57.318108px;}
.fs4{font-size:57.764694px;}
.fs7{font-size:59.273892px;}
.fs9{font-size:61.168122px;}
.fs1b{font-size:65.352966px;}
.fs8{font-size:69.973152px;}
.fs16{font-size:75.623914px;}
.fs5{font-size:88.420476px;}
.fsc{font-size:98.259378px;}
.fse{font-size:98.259414px;}
.fs11{font-size:102.058932px;}
.fs15{font-size:104.536002px;}
.fsa{font-size:116.621820px;}
.fs19{font-size:127.135386px;}
.fs14{font-size:149.280582px;}
.fs12{font-size:151.407384px;}
.fsf{font-size:152.562288px;}
.fs3{font-size:161.038074px;}
.fs17{font-size:161.038542px;}
.fs13{font-size:166.513764px;}
.fs1f{font-size:167.746480px;}
.fs1e{font-size:167.746481px;}
.fs1d{font-size:167.746483px;}
.fs20{font-size:167.746484px;}
.fs1c{font-size:167.746485px;}
.fs2{font-size:169.513572px;}
.fs18{font-size:169.513590px;}
.fs10{font-size:179.585034px;}
.fsb{font-size:254.270952px;}
.fs0{font-size:254.271120px;}
.fs1{font-size:423.785196px;}
.y0{bottom:0.000000px;}
.y6{bottom:241.483212px;}
.y2{bottom:393.339526px;}
.y1{bottom:394.522677px;}
.y18{bottom:436.427013px;}
.y1c{bottom:436.520346px;}
.y16{bottom:437.856907px;}
.y1a{bottom:437.946502px;}
.y17{bottom:453.859927px;}
.y1b{bottom:453.953260px;}
.y15{bottom:455.289822px;}
.y19{bottom:455.379417px;}
.ye{bottom:480.945907px;}
.y1e{bottom:490.091569px;}
.yd{bottom:497.974125px;}
.yb{bottom:505.367169px;}
.yc{bottom:515.002344px;}
.y1d{bottom:526.535888px;}
.y9{bottom:594.675673px;}
.y8{bottom:596.257530px;}
.y12{bottom:666.728159px;}
.y11{bottom:686.670507px;}
.y14{bottom:706.437923px;}
.y10{bottom:706.612856px;}
.y13{bottom:726.380271px;}
.yf{bottom:726.555204px;}
.ya{bottom:736.147262px;}
.y36{bottom:780.487451px;}
.y37{bottom:781.093184px;}
.y7{bottom:833.985369px;}
.y3b{bottom:986.234296px;}
.y38{bottom:1001.798708px;}
.y3a{bottom:1117.682696px;}
.y39{bottom:1238.763006px;}
.y3c{bottom:1383.999485px;}
.y33{bottom:1484.550633px;}
.y30{bottom:1486.011919px;}
.y50{bottom:1511.157175px;}
.y32{bottom:1519.928885px;}
.y2f{bottom:1521.390171px;}
.y52{bottom:1742.979989px;}
.y51{bottom:1755.854523px;}
.y31{bottom:1853.657841px;}
.y4f{bottom:1883.135208px;}
.y35{bottom:1908.101378px;}
.y34{bottom:1937.928633px;}
.y53{bottom:2052.283971px;}
.y62{bottom:2055.941555px;}
.y61{bottom:2068.598933px;}
.y54{bottom:2075.410092px;}
.y3d{bottom:2092.925273px;}
.y60{bottom:2093.017593px;}
.y55{bottom:2104.295667px;}
.y24{bottom:2112.648141px;}
.y5f{bottom:2122.610250px;}
.y26{bottom:2123.786484px;}
.y56{bottom:2126.396640px;}
.y5e{bottom:2151.706457px;}
.y57{bottom:2157.936846px;}
.y4e{bottom:2176.617491px;}
.y5d{bottom:2176.741547px;}
.y58{bottom:2180.608965px;}
.y59{bottom:2191.889397px;}
.y5c{bottom:2196.285486px;}
.y5a{bottom:2203.082378px;}
.y5b{bottom:2205.884837px;}
.y4d{bottom:2231.202696px;}
.y25{bottom:2253.540099px;}
.y4c{bottom:2270.932536px;}
.y4b{bottom:2310.662376px;}
.y27{bottom:2339.342436px;}
.y28{bottom:2364.033092px;}
.y4a{bottom:2365.414352px;}
.y49{bottom:2405.144192px;}
.y43{bottom:2416.361531px;}
.y48{bottom:2444.874032px;}
.y42{bottom:2448.686249px;}
.y47{bottom:2484.603872px;}
.y41{bottom:2488.416089px;}
.y23{bottom:2495.176092px;}
.y46{bottom:2524.333712px;}
.y40{bottom:2528.145929px;}
.y45{bottom:2564.063552px;}
.y3f{bottom:2567.875769px;}
.y2b{bottom:2576.697829px;}
.y2e{bottom:2576.697905px;}
.y44{bottom:2603.793392px;}
.y3e{bottom:2607.605609px;}
.y2d{bottom:2608.928100px;}
.y2a{bottom:2609.792098px;}
.y2c{bottom:2641.158294px;}
.y29{bottom:2642.886368px;}
.y20{bottom:2723.319446px;}
.y22{bottom:2723.743090px;}
.y21{bottom:2786.706849px;}
.y1f{bottom:2786.706906px;}
.y4{bottom:3054.311009px;}
.y5{bottom:3155.963316px;}
.y3{bottom:3278.422650px;}
.h8{height:36.363362px;}
.h1c{height:40.236237px;}
.h6{height:41.856839px;}
.hf{height:42.540783px;}
.h9{height:42.950418px;}
.hb{height:44.322995px;}
.h1d{height:47.355372px;}
.ha{height:50.703202px;}
.h18{height:56.127123px;}
.h7{height:64.070306px;}
.he{height:71.238049px;}
.h10{height:71.238075px;}
.h13{height:73.952859px;}
.h17{height:75.747767px;}
.hc{height:84.505264px;}
.h1b{height:92.123493px;}
.h16{height:108.170109px;}
.h14{height:109.711210px;}
.h11{height:110.548064px;}
.h5{height:116.689698px;}
.h19{height:116.690037px;}
.h21{height:121.550672px;}
.h20{height:121.550673px;}
.h1f{height:121.550674px;}
.h1e{height:121.550676px;}
.h4{height:122.831123px;}
.h1a{height:122.831137px;}
.h12{height:130.128999px;}
.hd{height:184.247116px;}
.h2{height:184.247237px;}
.h15{height:239.272905px;}
.h3{height:307.078726px;}
.h0{height:3575.905512px;}
.h1{height:3576.000000px;}
.w0{width:2525.669292px;}
.w1{width:2526.000000px;}
.x0{left:0.000000px;}
.x4{left:57.641875px;}
.x3{left:59.372107px;}
.x5{left:61.919283px;}
.x26{left:103.616362px;}
.x1{left:134.676639px;}
.x27{left:167.252267px;}
.x2d{left:326.254746px;}
.x28{left:334.476930px;}
.x2c{left:488.051822px;}
.x2b{left:548.036286px;}
.x29{left:671.419232px;}
.x25{left:697.373416px;}
.x2e{left:703.661278px;}
.x2a{left:708.647322px;}
.x23{left:728.147665px;}
.x20{left:789.526669px;}
.x22{left:866.349871px;}
.x24{left:867.641938px;}
.x21{left:897.273870px;}
.x2f{left:1055.212119px;}
.x3c{left:1189.746540px;}
.x3b{left:1192.315539px;}
.x3d{left:1197.687909px;}
.x3a{left:1204.141472px;}
.x3e{left:1214.382510px;}
.x6{left:1216.396921px;}
.x39{left:1226.928612px;}
.x1f{left:1229.217175px;}
.x3f{left:1255.879911px;}
.xb{left:1256.946838px;}
.x40{left:1275.769488px;}
.x33{left:1295.037682px;}
.x41{left:1312.178048px;}
.x47{left:1330.060933px;}
.x42{left:1337.607925px;}
.x46{left:1341.395516px;}
.x8{left:1351.379803px;}
.x43{left:1353.420806px;}
.x45{left:1355.421953px;}
.x44{left:1359.738724px;}
.x9{left:1410.519129px;}
.xa{left:1437.560804px;}
.x7{left:1496.282025px;}
.x1e{left:1580.355456px;}
.xd{left:1715.174517px;}
.xe{left:1726.364063px;}
.xc{left:1729.281036px;}
.x31{left:1738.388247px;}
.x1d{left:1744.516173px;}
.x30{left:1804.979397px;}
.x34{left:1818.642120px;}
.x10{left:1838.553208px;}
.xf{left:1841.474447px;}
.x1c{left:1855.466538px;}
.x12{left:1906.555163px;}
.x13{left:1918.701383px;}
.x11{left:1932.807901px;}
.x15{left:2006.160668px;}
.x14{left:2008.091088px;}
.x35{left:2047.417934px;}
.x1a{left:2054.711598px;}
.x32{left:2059.057536px;}
.x36{left:2090.087637px;}
.x17{left:2101.852977px;}
.x16{left:2103.492973px;}
.x37{left:2174.202135px;}
.x38{left:2178.725459px;}
.x19{left:2196.523048px;}
.x1b{left:2222.978549px;}
.x18{left:2225.218705px;}
.x2{left:2429.742816px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:116.535819pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-41.863378pt;}
.ws3{word-spacing:-25.204658pt;}
.ws1{word-spacing:-17.280696pt;}
.ws2{word-spacing:-0.087342pt;}
.ws5{word-spacing:0.000000pt;}
.ws4{word-spacing:486.772335pt;}
._0{margin-left:-8.362695pt;}
._4{margin-left:-6.713210pt;}
._2{margin-left:-5.770996pt;}
._1{margin-left:-3.390282pt;}
._3{margin-left:-1.119570pt;}
.fs6{font-size:44.607467pt;}
.fs1a{font-size:49.358379pt;}
.fsd{font-size:50.949429pt;}
.fs4{font-size:51.346395pt;}
.fs7{font-size:52.687904pt;}
.fs9{font-size:54.371664pt;}
.fs1b{font-size:58.091525pt;}
.fs8{font-size:62.198357pt;}
.fs16{font-size:67.221256pt;}
.fs5{font-size:78.595979pt;}
.fsc{font-size:87.341669pt;}
.fse{font-size:87.341701pt;}
.fs11{font-size:90.719051pt;}
.fs15{font-size:92.920891pt;}
.fsa{font-size:103.663840pt;}
.fs19{font-size:113.009232pt;}
.fs14{font-size:132.693851pt;}
.fs12{font-size:134.584341pt;}
.fsf{font-size:135.610923pt;}
.fs3{font-size:143.144955pt;}
.fs17{font-size:143.145371pt;}
.fs13{font-size:148.012235pt;}
.fs1f{font-size:149.107982pt;}
.fs1e{font-size:149.107983pt;}
.fs1d{font-size:149.107985pt;}
.fs20{font-size:149.107986pt;}
.fs1c{font-size:149.107987pt;}
.fs2{font-size:150.678731pt;}
.fs18{font-size:150.678747pt;}
.fs10{font-size:159.631141pt;}
.fsb{font-size:226.018624pt;}
.fs0{font-size:226.018773pt;}
.fs1{font-size:376.697952pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:214.651744pt;}
.y2{bottom:349.635135pt;}
.y1{bottom:350.686824pt;}
.y18{bottom:387.935122pt;}
.y1c{bottom:388.018085pt;}
.y16{bottom:389.206140pt;}
.y1a{bottom:389.285780pt;}
.y17{bottom:403.431047pt;}
.y1b{bottom:403.514009pt;}
.y15{bottom:404.702064pt;}
.y19{bottom:404.781704pt;}
.ye{bottom:427.507473pt;}
.y1e{bottom:435.636950pt;}
.yd{bottom:442.643667pt;}
.yb{bottom:449.215261pt;}
.yc{bottom:457.779861pt;}
.y1d{bottom:468.031900pt;}
.y9{bottom:528.600599pt;}
.y8{bottom:530.006693pt;}
.y12{bottom:592.647252pt;}
.y11{bottom:610.373784pt;}
.y14{bottom:627.944820pt;}
.y10{bottom:628.100316pt;}
.y13{bottom:645.671352pt;}
.yf{bottom:645.826848pt;}
.ya{bottom:654.353121pt;}
.y36{bottom:693.766623pt;}
.y37{bottom:694.305053pt;}
.y7{bottom:741.320328pt;}
.y3b{bottom:876.652708pt;}
.y38{bottom:890.487740pt;}
.y3a{bottom:993.495729pt;}
.y39{bottom:1101.122672pt;}
.y3c{bottom:1230.221764pt;}
.y33{bottom:1319.600562pt;}
.y30{bottom:1320.899484pt;}
.y50{bottom:1343.250823pt;}
.y32{bottom:1351.047897pt;}
.y2f{bottom:1352.346819pt;}
.y52{bottom:1549.315546pt;}
.y51{bottom:1560.759576pt;}
.y31{bottom:1647.695859pt;}
.y4f{bottom:1673.897963pt;}
.y35{bottom:1696.090114pt;}
.y34{bottom:1722.603229pt;}
.y53{bottom:1824.252419pt;}
.y62{bottom:1827.503604pt;}
.y61{bottom:1838.754607pt;}
.y54{bottom:1844.808971pt;}
.y3d{bottom:1860.378020pt;}
.y60{bottom:1860.460083pt;}
.y55{bottom:1870.485037pt;}
.y24{bottom:1877.909459pt;}
.y5f{bottom:1886.764667pt;}
.y26{bottom:1887.810208pt;}
.y56{bottom:1890.130347pt;}
.y5e{bottom:1912.627961pt;}
.y57{bottom:1918.166085pt;}
.y4e{bottom:1934.771103pt;}
.y5d{bottom:1934.881375pt;}
.y58{bottom:1938.319080pt;}
.y59{bottom:1948.346131pt;}
.y5c{bottom:1952.253765pt;}
.y5a{bottom:1958.295447pt;}
.y5b{bottom:1960.786521pt;}
.y4d{bottom:1983.291285pt;}
.y25{bottom:2003.146755pt;}
.y4c{bottom:2018.606699pt;}
.y4b{bottom:2053.922112pt;}
.y27{bottom:2079.415499pt;}
.y28{bottom:2101.362748pt;}
.y4a{bottom:2102.590535pt;}
.y49{bottom:2137.905948pt;}
.y43{bottom:2147.876916pt;}
.y48{bottom:2173.221362pt;}
.y42{bottom:2176.609999pt;}
.y47{bottom:2208.536775pt;}
.y41{bottom:2211.925412pt;}
.y23{bottom:2217.934304pt;}
.y46{bottom:2243.852188pt;}
.y40{bottom:2247.240825pt;}
.y45{bottom:2279.167601pt;}
.y3f{bottom:2282.556239pt;}
.y2b{bottom:2290.398070pt;}
.y2e{bottom:2290.398138pt;}
.y44{bottom:2314.483015pt;}
.y3e{bottom:2317.871652pt;}
.y2d{bottom:2319.047200pt;}
.y2a{bottom:2319.815198pt;}
.y2c{bottom:2347.696262pt;}
.y29{bottom:2349.232327pt;}
.y20{bottom:2420.728397pt;}
.y22{bottom:2421.104969pt;}
.y21{bottom:2477.072755pt;}
.y1f{bottom:2477.072805pt;}
.y4{bottom:2714.943119pt;}
.y5{bottom:2805.300725pt;}
.y3{bottom:2914.153467pt;}
.h8{height:32.322989pt;}
.h1c{height:35.765544pt;}
.h6{height:37.206079pt;}
.hf{height:37.814030pt;}
.h9{height:38.178149pt;}
.hb{height:39.398217pt;}
.h1d{height:42.093664pt;}
.ha{height:45.069513pt;}
.h18{height:49.890776pt;}
.h7{height:56.951383pt;}
.he{height:63.322710pt;}
.h10{height:63.322733pt;}
.h13{height:65.735875pt;}
.h17{height:67.331349pt;}
.hc{height:75.115790pt;}
.h1b{height:81.887549pt;}
.h16{height:96.151208pt;}
.h14{height:97.521075pt;}
.h11{height:98.264946pt;}
.h5{height:103.724176pt;}
.h19{height:103.724478pt;}
.h21{height:108.045042pt;}
.h20{height:108.045043pt;}
.h1f{height:108.045044pt;}
.h1e{height:108.045045pt;}
.h4{height:109.183221pt;}
.h1a{height:109.183232pt;}
.h12{height:115.670222pt;}
.hd{height:163.775214pt;}
.h2{height:163.775322pt;}
.h15{height:212.687027pt;}
.h3{height:272.958868pt;}
.h0{height:3178.582677pt;}
.h1{height:3178.666667pt;}
.w0{width:2245.039371pt;}
.w1{width:2245.333333pt;}
.x0{left:0.000000pt;}
.x4{left:51.237222pt;}
.x3{left:52.775207pt;}
.x5{left:55.039363pt;}
.x26{left:92.103433pt;}
.x1{left:119.712568pt;}
.x27{left:148.668681pt;}
.x2d{left:290.004219pt;}
.x28{left:297.312827pt;}
.x2c{left:433.823842pt;}
.x2b{left:487.143365pt;}
.x29{left:596.817095pt;}
.x25{left:619.887481pt;}
.x2e{left:625.476692pt;}
.x2a{left:629.908731pt;}
.x23{left:647.242369pt;}
.x20{left:701.801484pt;}
.x22{left:770.088775pt;}
.x24{left:771.237279pt;}
.x21{left:797.576773pt;}
.x2f{left:937.966328pt;}
.x3c{left:1057.552480pt;}
.x3b{left:1059.836035pt;}
.x3d{left:1064.611475pt;}
.x3a{left:1070.347975pt;}
.x3e{left:1079.451120pt;}
.x6{left:1081.241708pt;}
.x39{left:1090.603211pt;}
.x1f{left:1092.637489pt;}
.x3f{left:1116.337699pt;}
.xb{left:1117.286079pt;}
.x40{left:1134.017323pt;}
.x33{left:1151.144607pt;}
.x41{left:1166.380487pt;}
.x47{left:1182.276385pt;}
.x42{left:1188.984823pt;}
.x46{left:1192.351569pt;}
.x8{left:1201.226492pt;}
.x43{left:1203.040716pt;}
.x45{left:1204.819513pt;}
.x44{left:1208.656644pt;}
.x9{left:1253.794781pt;}
.xa{left:1277.831825pt;}
.x7{left:1330.028467pt;}
.x1e{left:1404.760405pt;}
.xd{left:1524.599570pt;}
.xe{left:1534.545834pt;}
.xc{left:1537.138699pt;}
.x31{left:1545.233997pt;}
.x1d{left:1550.681043pt;}
.x30{left:1604.426131pt;}
.x34{left:1616.570773pt;}
.x10{left:1634.269518pt;}
.xf{left:1636.866175pt;}
.x1c{left:1649.303589pt;}
.x12{left:1694.715701pt;}
.x13{left:1705.512340pt;}
.x11{left:1718.051467pt;}
.x15{left:1783.253927pt;}
.x14{left:1784.969856pt;}
.x35{left:1819.927052pt;}
.x1a{left:1826.410309pt;}
.x32{left:1830.273365pt;}
.x36{left:1857.855677pt;}
.x17{left:1868.313757pt;}
.x16{left:1869.771531pt;}
.x37{left:1932.624120pt;}
.x38{left:1936.644852pt;}
.x19{left:1952.464932pt;}
.x1b{left:1975.980932pt;}
.x18{left:1977.972183pt;}
.x2{left:2159.771392pt;}
}




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