
    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_2f81928501b921382ea44684.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_2e43702d8c81407b1d187682.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088000;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_0817e55d0bb736ffb3aa4c77.woff')format("woff");}.ff3{font-family:ff3;line-height:1.074500;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_3d76ca4e1fb7f6fa09f9db8a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_730c2da76c7ce56781d0f617.woff')format("woff");}.ff5{font-family:ff5;line-height:0.895020;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_9b2010dc0a3a8dda527d468d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.171387;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8d7b394e278d36438a93f20a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.997000;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_577cb73ff803588bc0d09fa1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.997000;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_7acb76438738feaa87793384.woff')format("woff");}.ffa{font-family:ffa;line-height:0.997000;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0c4ebff70cb38726c9e43ac6.woff')format("woff");}.ffe{font-family:ffe;line-height:0.987000;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;}
.fff{font-family:sans-serif;visibility:hidden;}
.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);}
.v4{vertical-align:-15.162479px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.224160px;}
.v5{vertical-align:9.000000px;}
.v3{vertical-align:12.236831px;}
.v2{vertical-align:54.631726px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003249px;}
.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:-124.671461px;}
.ws6{word-spacing:-16.595999px;}
.ws3{word-spacing:-16.450784px;}
.ws4{word-spacing:-15.263999px;}
.ws5{word-spacing:-15.206084px;}
.ws2{word-spacing:-15.168599px;}
.ws7{word-spacing:-12.446992px;}
.ws1{word-spacing:-11.448000px;}
.ws8{word-spacing:-11.374542px;}
.ws9{word-spacing:0.000000px;}
._b{margin-left:-10.224313px;}
._3{margin-left:-7.934197px;}
._4{margin-left:-5.019848px;}
._2{margin-left:-3.357628px;}
._0{margin-left:-1.977610px;}
._1{width:1.424911px;}
._8{width:272.035366px;}
._9{width:381.326460px;}
._a{width:710.436937px;}
._7{width:747.374363px;}
._5{width:769.123924px;}
._6{width:1029.346703px;}
.fc5{color:transparent;}
.fc3{color:rgb(26,77,125);}
.fc4{color:rgb(254,254,254);}
.fc2{color:rgb(1,1,1);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:48.000145px;}
.fs12{font-size:49.347256px;}
.fs17{font-size:53.989617px;}
.fs18{font-size:53.999961px;}
.fs10{font-size:53.999965px;}
.fs2{font-size:53.999998px;}
.fs1{font-size:59.984997px;}
.fsa{font-size:65.969996px;}
.fs8{font-size:71.369996px;}
.fs7{font-size:71.549995px;}
.fsd{font-size:71.999997px;}
.fsc{font-size:77.984997px;}
.fs19{font-size:78.930001px;}
.fs16{font-size:79.957361px;}
.fse{font-size:101.969996px;}
.fs3{font-size:119.969995px;}
.fs4{font-size:120.000363px;}
.fs15{font-size:140.576813px;}
.fs6{font-size:143.549994px;}
.fs9{font-size:143.954994px;}
.fsb{font-size:143.999994px;}
.fs11{font-size:161.706762px;}
.fs13{font-size:169.775648px;}
.fsf{font-size:171.794668px;}
.fs14{font-size:182.196523px;}
.fs0{font-size:197.577592px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.000008px;}
.y5d{bottom:3.067225px;}
.y6f{bottom:3.343839px;}
.y67{bottom:3.468710px;}
.y58{bottom:3.471885px;}
.y75{bottom:3.471913px;}
.y6c{bottom:3.625156px;}
.y62{bottom:3.700742px;}
.y1b{bottom:4.056501px;}
.y69{bottom:8.032931px;}
.y5a{bottom:9.249171px;}
.y5f{bottom:9.774660px;}
.y54{bottom:10.014984px;}
.y64{bottom:10.500962px;}
.y2{bottom:11.594793px;}
.y52{bottom:13.875011px;}
.y48{bottom:19.124999px;}
.y5c{bottom:19.840202px;}
.yc{bottom:20.247551px;}
.y1a{bottom:21.056552px;}
.y4f{bottom:21.374999px;}
.y66{bottom:21.468699px;}
.y57{bottom:21.471874px;}
.y74{bottom:21.471900px;}
.y6b{bottom:21.625144px;}
.y61{bottom:21.700730px;}
.y6e{bottom:24.038325px;}
.y3a{bottom:24.749999px;}
.y3e{bottom:26.999912px;}
.y42{bottom:26.999999px;}
.y45{bottom:28.124999px;}
.y4a{bottom:29.249999px;}
.y3c{bottom:37.124912px;}
.y40{bottom:37.124998px;}
.y19{bottom:38.056603px;}
.y56{bottom:39.471862px;}
.y73{bottom:39.471887px;}
.yb{bottom:40.497550px;}
.y28{bottom:40.499998px;}
.y51{bottom:40.875010px;}
.y47{bottom:41.624998px;}
.y4e{bottom:43.874998px;}
.y3d{bottom:49.499912px;}
.y41{bottom:49.499998px;}
.y44{bottom:52.874998px;}
.y18{bottom:55.056655px;}
.y72{bottom:57.471874px;}
.ya{bottom:60.747549px;}
.y46{bottom:64.124997px;}
.y27{bottom:65.249997px;}
.y17{bottom:72.056706px;}
.y71{bottom:75.471861px;}
.y9{bottom:80.997549px;}
.y16{bottom:89.056758px;}
.y26{bottom:89.999996px;}
.y7{bottom:103.971776px;}
.y15{bottom:106.056809px;}
.y25{bottom:114.749995px;}
.y6{bottom:121.971775px;}
.y14{bottom:123.056861px;}
.y24{bottom:139.499994px;}
.y5{bottom:139.971774px;}
.y13{bottom:140.056912px;}
.y12{bottom:163.056982px;}
.y23{bottom:164.249993px;}
.y4{bottom:167.496689px;}
.y22{bottom:188.999992px;}
.y10{bottom:203.775292px;}
.y21{bottom:213.749991px;}
.yf{bottom:224.025291px;}
.y20{bottom:238.499990px;}
.ye{bottom:244.275290px;}
.y2c{bottom:263.249989px;}
.yd{bottom:264.525289px;}
.y2b{bottom:287.999988px;}
.y8{bottom:293.775468px;}
.y2a{bottom:312.749987px;}
.y11{bottom:326.699994px;}
.y55{bottom:555.659985px;}
.y65{bottom:566.459984px;}
.y60{bottom:566.819984px;}
.y6a{bottom:568.619984px;}
.y5b{bottom:569.339984px;}
.y70{bottom:570.059984px;}
.y63{bottom:611.819982px;}
.y53{bottom:613.619982px;}
.y5e{bottom:614.339982px;}
.y59{bottom:617.219982px;}
.y68{bottom:619.739982px;}
.y6d{bottom:673.739980px;}
.y77{bottom:677.692052px;}
.y76{bottom:697.942051px;}
.y4d{bottom:754.302648px;}
.y4c{bottom:831.201489px;}
.y4b{bottom:920.391485px;}
.y49{bottom:1009.266482px;}
.y43{bottom:1081.266479px;}
.y3f{bottom:1176.081655px;}
.y3b{bottom:1264.641629px;}
.y39{bottom:1351.581539px;}
.y50{bottom:1429.701644px;}
.y36{bottom:1541.842424px;}
.y35{bottom:1605.348725px;}
.y34{bottom:1669.148894px;}
.y33{bottom:1735.614756px;}
.y32{bottom:1800.955545px;}
.y31{bottom:1854.730471px;}
.y30{bottom:1879.480470px;}
.y2f{bottom:1933.890291px;}
.y38{bottom:2001.436621px;}
.y37{bottom:2028.436619px;}
.y29{bottom:2108.135353px;}
.y1f{bottom:2181.191576px;}
.y2e{bottom:2460.785348px;}
.y2d{bottom:2490.035347px;}
.y1e{bottom:2567.131262px;}
.y1d{bottom:2657.938375px;}
.y1{bottom:2663.099897px;}
.y1c{bottom:2707.438373px;}
.h2d{height:31.679999px;}
.h31{height:34.199999px;}
.h2e{height:40.760833px;}
.h34{height:41.039998px;}
.h36{height:43.199998px;}
.h38{height:44.595423px;}
.h2a{height:44.603971px;}
.h3d{height:44.603998px;}
.hc{height:44.695448px;}
.h2b{height:47.159998px;}
.h3b{height:48.788965px;}
.h7{height:48.788998px;}
.h6{height:49.517998px;}
.h2f{height:49.679998px;}
.h27{height:50.399998px;}
.h3a{height:51.299963px;}
.h29{height:52.199998px;}
.h32{height:53.279998px;}
.h9{height:54.196445px;}
.h5{height:55.006242px;}
.h2{height:58.679998px;}
.h1e{height:59.471998px;}
.h15{height:59.603892px;}
.h1f{height:61.874997px;}
.h12{height:64.482791px;}
.h10{height:64.645421px;}
.h21{height:65.051997px;}
.h3c{height:65.196181px;}
.he{height:65.611346px;}
.h18{height:66.023997px;}
.h37{height:66.044780px;}
.hf{height:67.972495px;}
.h1b{height:68.920557px;}
.h24{height:69.749997px;}
.h17{height:71.512242px;}
.h26{height:73.124997px;}
.h1c{height:74.051997px;}
.h25{height:74.249997px;}
.h1a{height:77.288829px;}
.h1d{height:84.227216px;}
.h20{height:84.374910px;}
.h22{height:86.624996px;}
.hb{height:87.011982px;}
.h39{height:88.199996px;}
.h23{height:92.249996px;}
.h8{height:110.012485px;}
.h14{height:118.906825px;}
.h16{height:118.943995px;}
.h19{height:119.683723px;}
.hd{height:131.635345px;}
.h35{height:133.547972px;}
.h2c{height:153.621424px;}
.h30{height:161.286865px;}
.h3{height:163.199091px;}
.h28{height:163.204935px;}
.h33{height:173.086697px;}
.ha{height:195.119992px;}
.h11{height:265.499989px;}
.h13{height:339.749986px;}
.h4{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.w12{width:37.079998px;}
.wc{width:42.839998px;}
.we{width:44.999998px;}
.wa{width:45.359998px;}
.w10{width:47.879998px;}
.wd{width:69.119997px;}
.w13{width:80.279997px;}
.wf{width:99.359996px;}
.wb{width:103.679996px;}
.w11{width:142.199994px;}
.w1{width:159.839993px;}
.w14{width:207.359991px;}
.w15{width:218.519991px;}
.w6{width:267.749989px;}
.w7{width:290.249966px;}
.w9{width:323.999987px;}
.w8{width:379.124941px;}
.w4{width:413.999983px;}
.w5{width:469.124980px;}
.w3{width:942.479961px;}
.w2{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x1c{left:1.024466px;}
.x27{left:2.939449px;}
.x16{left:10.125000px;}
.x2a{left:13.559976px;}
.x2b{left:16.688880px;}
.x4{left:23.847038px;}
.x2{left:25.733956px;}
.x3{left:27.196951px;}
.x1e{left:34.548884px;}
.x11{left:35.903288px;}
.xa{left:37.775389px;}
.x10{left:39.320473px;}
.x12{left:42.970576px;}
.x9{left:44.964117px;}
.x13{left:47.237356px;}
.x14{left:50.874139px;}
.x1d{left:52.199998px;}
.x1a{left:54.316404px;}
.x1{left:65.159997px;}
.x15{left:75.993279px;}
.x1b{left:80.999997px;}
.xe{left:87.666114px;}
.x19{left:161.648431px;}
.x20{left:180.719992px;}
.x1f{left:191.159992px;}
.xf{left:200.271578px;}
.x28{left:214.559991px;}
.x22{left:263.879989px;}
.x21{left:293.399988px;}
.x17{left:297.955734px;}
.x5{left:355.589040px;}
.x24{left:376.559984px;}
.x23{left:421.559982px;}
.xb{left:480.282255px;}
.xc{left:497.578074px;}
.x26{left:536.039978px;}
.x25{left:554.039977px;}
.x18{left:590.000822px;}
.xd{left:646.253849px;}
.x2c{left:654.046229px;}
.x29{left:686.519971px;}
.x2d{left:702.843102px;}
.x6{left:740.977251px;}
.x7{left:843.686231px;}
.x8{left:861.563184px;}
@media print{
.v4{vertical-align:-13.477759pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.865920pt;}
.v5{vertical-align:8.000000pt;}
.v3{vertical-align:10.877184pt;}
.v2{vertical-align:48.561534pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002888pt;}
.ws0{word-spacing:-110.819076pt;}
.ws6{word-spacing:-14.751999pt;}
.ws3{word-spacing:-14.622919pt;}
.ws4{word-spacing:-13.567999pt;}
.ws5{word-spacing:-13.516519pt;}
.ws2{word-spacing:-13.483199pt;}
.ws7{word-spacing:-11.063993pt;}
.ws1{word-spacing:-10.176000pt;}
.ws8{word-spacing:-10.110704pt;}
.ws9{word-spacing:0.000000pt;}
._b{margin-left:-9.088278pt;}
._3{margin-left:-7.052619pt;}
._4{margin-left:-4.462087pt;}
._2{margin-left:-2.984558pt;}
._0{margin-left:-1.757876pt;}
._1{width:1.266587pt;}
._8{width:241.809214pt;}
._9{width:338.956853pt;}
._a{width:631.499499pt;}
._7{width:664.332767pt;}
._5{width:683.665710pt;}
._6{width:914.974847pt;}
.fs5{font-size:42.666796pt;}
.fs12{font-size:43.864227pt;}
.fs17{font-size:47.990770pt;}
.fs18{font-size:47.999966pt;}
.fs10{font-size:47.999969pt;}
.fs2{font-size:47.999998pt;}
.fs1{font-size:53.319997pt;}
.fsa{font-size:58.639997pt;}
.fs8{font-size:63.439996pt;}
.fs7{font-size:63.599996pt;}
.fsd{font-size:63.999997pt;}
.fsc{font-size:69.319997pt;}
.fs19{font-size:70.160001pt;}
.fs16{font-size:71.073210pt;}
.fse{font-size:90.639996pt;}
.fs3{font-size:106.639996pt;}
.fs4{font-size:106.666989pt;}
.fs15{font-size:124.957167pt;}
.fs6{font-size:127.599995pt;}
.fs9{font-size:127.959995pt;}
.fsb{font-size:127.999995pt;}
.fs11{font-size:143.739344pt;}
.fs13{font-size:150.911687pt;}
.fsf{font-size:152.706372pt;}
.fs14{font-size:161.952465pt;}
.fs0{font-size:175.624526pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.000007pt;}
.y5d{bottom:2.726422pt;}
.y6f{bottom:2.972302pt;}
.y67{bottom:3.083298pt;}
.y58{bottom:3.086120pt;}
.y75{bottom:3.086145pt;}
.y6c{bottom:3.222361pt;}
.y62{bottom:3.289548pt;}
.y1b{bottom:3.605778pt;}
.y69{bottom:7.140383pt;}
.y5a{bottom:8.221485pt;}
.y5f{bottom:8.688587pt;}
.y54{bottom:8.902208pt;}
.y64{bottom:9.334189pt;}
.y2{bottom:10.306483pt;}
.y52{bottom:12.333343pt;}
.y48{bottom:16.999999pt;}
.y5c{bottom:17.635735pt;}
.yc{bottom:17.997823pt;}
.y1a{bottom:18.716935pt;}
.y4f{bottom:18.999999pt;}
.y66{bottom:19.083288pt;}
.y57{bottom:19.086110pt;}
.y74{bottom:19.086133pt;}
.y6b{bottom:19.222350pt;}
.y61{bottom:19.289538pt;}
.y6e{bottom:21.367400pt;}
.y3a{bottom:21.999999pt;}
.y3e{bottom:23.999922pt;}
.y42{bottom:23.999999pt;}
.y45{bottom:24.999999pt;}
.y4a{bottom:25.999999pt;}
.y3c{bottom:32.999922pt;}
.y40{bottom:32.999999pt;}
.y19{bottom:33.828092pt;}
.y56{bottom:35.086100pt;}
.y73{bottom:35.086122pt;}
.yb{bottom:35.997823pt;}
.y28{bottom:35.999998pt;}
.y51{bottom:36.333342pt;}
.y47{bottom:36.999998pt;}
.y4e{bottom:38.999998pt;}
.y3d{bottom:43.999921pt;}
.y41{bottom:43.999998pt;}
.y44{bottom:46.999998pt;}
.y18{bottom:48.939249pt;}
.y72{bottom:51.086110pt;}
.ya{bottom:53.997822pt;}
.y46{bottom:56.999998pt;}
.y27{bottom:57.999998pt;}
.y17{bottom:64.050406pt;}
.y71{bottom:67.086099pt;}
.y9{bottom:71.997821pt;}
.y16{bottom:79.161563pt;}
.y26{bottom:79.999997pt;}
.y7{bottom:92.419356pt;}
.y15{bottom:94.272719pt;}
.y25{bottom:101.999996pt;}
.y6{bottom:108.419355pt;}
.y14{bottom:109.383876pt;}
.y24{bottom:123.999995pt;}
.y5{bottom:124.419355pt;}
.y13{bottom:124.495033pt;}
.y12{bottom:144.939539pt;}
.y23{bottom:145.999994pt;}
.y4{bottom:148.885946pt;}
.y22{bottom:167.999993pt;}
.y10{bottom:181.133592pt;}
.y21{bottom:189.999992pt;}
.yf{bottom:199.133592pt;}
.y20{bottom:211.999991pt;}
.ye{bottom:217.133591pt;}
.y2c{bottom:233.999990pt;}
.yd{bottom:235.133590pt;}
.y2b{bottom:255.999989pt;}
.y8{bottom:261.133749pt;}
.y2a{bottom:277.999988pt;}
.y11{bottom:290.399995pt;}
.y55{bottom:493.919986pt;}
.y65{bottom:503.519986pt;}
.y60{bottom:503.839986pt;}
.y6a{bottom:505.439986pt;}
.y5b{bottom:506.079986pt;}
.y70{bottom:506.719986pt;}
.y63{bottom:543.839984pt;}
.y53{bottom:545.439984pt;}
.y5e{bottom:546.079984pt;}
.y59{bottom:548.639984pt;}
.y68{bottom:550.879984pt;}
.y6d{bottom:598.879982pt;}
.y77{bottom:602.392935pt;}
.y76{bottom:620.392934pt;}
.y4d{bottom:670.491243pt;}
.y4c{bottom:738.845768pt;}
.y4b{bottom:818.125765pt;}
.y49{bottom:897.125761pt;}
.y43{bottom:961.125759pt;}
.y3f{bottom:1045.405915pt;}
.y3b{bottom:1124.125893pt;}
.y39{bottom:1201.405813pt;}
.y50{bottom:1270.845906pt;}
.y36{bottom:1370.526599pt;}
.y35{bottom:1426.976645pt;}
.y34{bottom:1483.687906pt;}
.y33{bottom:1542.768672pt;}
.y32{bottom:1600.849373pt;}
.y31{bottom:1648.649307pt;}
.y30{bottom:1670.649306pt;}
.y2f{bottom:1719.013592pt;}
.y38{bottom:1779.054774pt;}
.y37{bottom:1803.054773pt;}
.y29{bottom:1873.898092pt;}
.y1f{bottom:1938.836956pt;}
.y2e{bottom:2187.364754pt;}
.y2d{bottom:2213.364753pt;}
.y1e{bottom:2281.894455pt;}
.y1d{bottom:2362.611889pt;}
.y1{bottom:2367.199908pt;}
.y1c{bottom:2406.611887pt;}
.h2d{height:28.159999pt;}
.h31{height:30.399999pt;}
.h2e{height:36.231852pt;}
.h34{height:36.479998pt;}
.h36{height:38.399998pt;}
.h38{height:39.640376pt;}
.h2a{height:39.647974pt;}
.h3d{height:39.647998pt;}
.hc{height:39.729287pt;}
.h2b{height:41.919998pt;}
.h3b{height:43.367969pt;}
.h7{height:43.367998pt;}
.h6{height:44.015998pt;}
.h2f{height:44.159998pt;}
.h27{height:44.799998pt;}
.h3a{height:45.599967pt;}
.h29{height:46.399998pt;}
.h32{height:47.359998pt;}
.h9{height:48.174618pt;}
.h5{height:48.894438pt;}
.h2{height:52.159998pt;}
.h1e{height:52.863998pt;}
.h15{height:52.981237pt;}
.h1f{height:54.999998pt;}
.h12{height:57.318037pt;}
.h10{height:57.462596pt;}
.h21{height:57.823998pt;}
.h3c{height:57.952161pt;}
.he{height:58.321196pt;}
.h18{height:58.687998pt;}
.h37{height:58.706471pt;}
.hf{height:60.419996pt;}
.h1b{height:61.262717pt;}
.h24{height:61.999997pt;}
.h17{height:63.566437pt;}
.h26{height:64.999997pt;}
.h1c{height:65.823997pt;}
.h25{height:65.999997pt;}
.h1a{height:68.701181pt;}
.h1d{height:74.868637pt;}
.h20{height:74.999920pt;}
.h22{height:76.999997pt;}
.hb{height:77.343984pt;}
.h39{height:78.399997pt;}
.h23{height:81.999997pt;}
.h8{height:97.788876pt;}
.h14{height:105.694956pt;}
.h16{height:105.727996pt;}
.h19{height:106.385532pt;}
.hd{height:117.009195pt;}
.h35{height:118.709309pt;}
.h2c{height:136.552376pt;}
.h30{height:143.366103pt;}
.h3{height:145.065859pt;}
.h28{height:145.071053pt;}
.h33{height:153.854842pt;}
.ha{height:173.439993pt;}
.h11{height:235.999990pt;}
.h13{height:301.999987pt;}
.h4{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.w12{width:32.959999pt;}
.wc{width:38.079998pt;}
.we{width:39.999998pt;}
.wa{width:40.319998pt;}
.w10{width:42.559998pt;}
.wd{width:61.439997pt;}
.w13{width:71.359997pt;}
.wf{width:88.319996pt;}
.wb{width:92.159996pt;}
.w11{width:126.399995pt;}
.w1{width:142.079994pt;}
.w14{width:184.319992pt;}
.w15{width:194.239992pt;}
.w6{width:237.999990pt;}
.w7{width:257.999970pt;}
.w9{width:287.999988pt;}
.w8{width:336.999948pt;}
.w4{width:367.999985pt;}
.w5{width:416.999983pt;}
.w3{width:837.759965pt;}
.w2{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:0.910637pt;}
.x27{left:2.612843pt;}
.x16{left:9.000000pt;}
.x2a{left:12.053312pt;}
.x2b{left:14.834560pt;}
.x4{left:21.197367pt;}
.x2{left:22.874628pt;}
.x3{left:24.175067pt;}
.x1e{left:30.710119pt;}
.x11{left:31.914034pt;}
.xa{left:33.578124pt;}
.x10{left:34.951532pt;}
.x12{left:38.196068pt;}
.x9{left:39.968104pt;}
.x13{left:41.988761pt;}
.x14{left:45.221457pt;}
.x1d{left:46.399998pt;}
.x1a{left:48.281248pt;}
.x1{left:57.919998pt;}
.x15{left:67.549581pt;}
.x1b{left:71.999997pt;}
.xe{left:77.925435pt;}
.x19{left:143.687494pt;}
.x20{left:160.639993pt;}
.x1f{left:169.919993pt;}
.xf{left:178.019181pt;}
.x28{left:190.719992pt;}
.x22{left:234.559990pt;}
.x21{left:260.799989pt;}
.x17{left:264.849541pt;}
.x5{left:316.079146pt;}
.x24{left:334.719986pt;}
.x23{left:374.719984pt;}
.xb{left:426.917560pt;}
.xc{left:442.291621pt;}
.x26{left:476.479980pt;}
.x25{left:492.479979pt;}
.x18{left:524.445175pt;}
.xd{left:574.447866pt;}
.x2c{left:581.374426pt;}
.x29{left:610.239975pt;}
.x2d{left:624.749424pt;}
.x6{left:658.646446pt;}
.x7{left:749.943317pt;}
.x8{left:765.833941pt;}
}




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