
    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_69fe71da7ebd0b509ddc082a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_94d792882f64d9f99544e338.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_0eed52eb7a4f6794857de7e7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932000;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_0e8fec280d8c42fc606e3be2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_04ab956e18a8f13706a3b3b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_bed1894cc782c36a30856c47.woff')format("woff");}.ff6{font-family:ff6;line-height:0.932000;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:-21.696000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.696000px;}
.v1{vertical-align:23.754000px;}
.lsd{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.838284px;}
.lsf{letter-spacing:2.983926px;}
.ls1{letter-spacing:2.985234px;}
.ls11{letter-spacing:2.986074px;}
.lsc{letter-spacing:2.986284px;}
.lsb{letter-spacing:2.987519px;}
.ls5{letter-spacing:2.988113px;}
.ls3{letter-spacing:2.988474px;}
.ls7{letter-spacing:2.988707px;}
.lse{letter-spacing:2.988900px;}
.lsa{letter-spacing:2.989895px;}
.ls0{letter-spacing:2.990172px;}
.ls2{letter-spacing:2.991396px;}
.ls4{letter-spacing:2.994474px;}
.ls8{letter-spacing:20.876400px;}
.ls9{letter-spacing:20.898606px;}
.ls6{letter-spacing:20.901042px;}
.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;}
}
.ws3{word-spacing:-14.944500px;}
.ws5{word-spacing:-11.955000px;}
.ws81{word-spacing:-1.076124px;}
.ws8{word-spacing:-0.777114px;}
.ws1d{word-spacing:-0.537942px;}
.ws78{word-spacing:-0.239112px;}
.ws4a{word-spacing:0.000000px;}
.ws8d{word-spacing:0.059718px;}
.ws8e{word-spacing:0.119676px;}
.ws7{word-spacing:0.299129px;}
.ws1f{word-spacing:0.717336px;}
.ws47{word-spacing:0.777353px;}
.ws4d{word-spacing:0.836892px;}
.ws1c{word-spacing:1.195560px;}
.ws15{word-spacing:1.315116px;}
.ws1e{word-spacing:1.434971px;}
.ws57{word-spacing:1.614006px;}
.ws84{word-spacing:1.673784px;}
.ws5d{word-spacing:1.793340px;}
.ws88{word-spacing:1.853118px;}
.ws9{word-spacing:2.091991px;}
.ws3e{word-spacing:2.570215px;}
.ws75{word-spacing:2.749788px;}
.ws6{word-spacing:2.929122px;}
.ws87{word-spacing:2.989020px;}
.wsc{word-spacing:3.108396px;}
.ws71{word-spacing:3.467124px;}
.ws3f{word-spacing:3.526902px;}
.ws3b{word-spacing:3.766074px;}
.ws19{word-spacing:3.825792px;}
.ws38{word-spacing:3.885570px;}
.ws82{word-spacing:3.945468px;}
.ws66{word-spacing:4.124682px;}
.ws27{word-spacing:4.184281px;}
.ws63{word-spacing:4.423572px;}
.ws2c{word-spacing:4.423692px;}
.ws76{word-spacing:4.602906px;}
.ws2d{word-spacing:4.662684px;}
.ws13{word-spacing:4.722462px;}
.ws56{word-spacing:4.782240px;}
.ws4b{word-spacing:4.842018px;}
.ws3c{word-spacing:4.901796px;}
.ws3d{word-spacing:4.961574px;}
.ws50{word-spacing:5.021352px;}
.ws5e{word-spacing:5.260464px;}
.ws61{word-spacing:5.320122px;}
.ws7b{word-spacing:5.559533px;}
.ws49{word-spacing:5.619550px;}
.ws69{word-spacing:5.798466px;}
.ws32{word-spacing:5.915652px;}
.ws4f{word-spacing:5.929632px;}
.ws33{word-spacing:5.953140px;}
.ws86{word-spacing:5.977740px;}
.ws14{word-spacing:5.977800px;}
.ws7d{word-spacing:6.097117px;}
.ws62{word-spacing:6.157134px;}
.ws89{word-spacing:6.277168px;}
.ws4c{word-spacing:6.395947px;}
.ws1{word-spacing:6.575400px;}
.ws30{word-spacing:6.695136px;}
.ws64{word-spacing:6.934188px;}
.ws7c{word-spacing:6.994026px;}
.ws1b{word-spacing:6.994205px;}
.ws6f{word-spacing:7.113582px;}
.ws21{word-spacing:7.173360px;}
.ws60{word-spacing:7.233018px;}
.ws41{word-spacing:7.292976px;}
.wsb{word-spacing:7.352694px;}
.ws5c{word-spacing:7.532028px;}
.ws68{word-spacing:7.591806px;}
.ws58{word-spacing:7.651584px;}
.ws17{word-spacing:7.711183px;}
.ws85{word-spacing:7.771200px;}
.ws29{word-spacing:7.830918px;}
.ws48{word-spacing:7.890636px;}
.ws70{word-spacing:8.010252px;}
.ws8f{word-spacing:8.070030px;}
.ws51{word-spacing:8.189407px;}
.ws52{word-spacing:8.368860px;}
.ws40{word-spacing:8.428698px;}
.ws2f{word-spacing:8.548254px;}
.ws8b{word-spacing:8.847144px;}
.ws72{word-spacing:8.966700px;}
.ws12{word-spacing:9.026478px;}
.ws36{word-spacing:9.086435px;}
.ws45{word-spacing:9.385146px;}
.wsd{word-spacing:9.743515px;}
.ws2e{word-spacing:9.803472px;}
.ws65{word-spacing:9.863370px;}
.ws59{word-spacing:9.982926px;}
.ws5b{word-spacing:10.102482px;}
.ws31{word-spacing:10.222038px;}
.ws79{word-spacing:10.401133px;}
.ws35{word-spacing:10.700262px;}
.ws54{word-spacing:10.759920px;}
.ws24{word-spacing:10.760040px;}
.wse{word-spacing:11.058930px;}
.ws8a{word-spacing:11.118768px;}
.ws44{word-spacing:11.357581px;}
.ws6d{word-spacing:11.417538px;}
.ws25{word-spacing:11.536975px;}
.ws2b{word-spacing:11.716488px;}
.ws4e{word-spacing:11.955600px;}
.ws10{word-spacing:12.254610px;}
.wsa{word-spacing:12.493602px;}
.ws5a{word-spacing:12.553380px;}
.ws74{word-spacing:12.673414px;}
.ws22{word-spacing:12.792492px;}
.ws7a{word-spacing:13.151040px;}
.ws6b{word-spacing:13.210938px;}
.ws1a{word-spacing:13.211058px;}
.ws90{word-spacing:13.270716px;}
.wsf{word-spacing:13.988052px;}
.ws37{word-spacing:14.107488px;}
.ws20{word-spacing:14.227164px;}
.ws0{word-spacing:14.346000px;}
.ws55{word-spacing:14.346720px;}
.ws67{word-spacing:14.406498px;}
.ws26{word-spacing:14.466276px;}
.ws53{word-spacing:14.884722px;}
.ws80{word-spacing:15.123894px;}
.ws3a{word-spacing:15.721614px;}
.ws2a{word-spacing:15.900948px;}
.ws7e{word-spacing:16.439129px;}
.ws73{word-spacing:16.498549px;}
.ws83{word-spacing:16.617985px;}
.ws34{word-spacing:17.156286px;}
.ws43{word-spacing:17.395398px;}
.ws5f{word-spacing:17.455176px;}
.ws11{word-spacing:17.574732px;}
.ws18{word-spacing:17.694288px;}
.ws4{word-spacing:17.933400px;}
.ws77{word-spacing:18.052956px;}
.ws6c{word-spacing:18.232290px;}
.ws16{word-spacing:18.292008px;}
.ws8c{word-spacing:18.770292px;}
.ws28{word-spacing:19.248516px;}
.ws23{word-spacing:19.367893px;}
.ws6e{word-spacing:19.906074px;}
.ws6a{word-spacing:20.503734px;}
.ws2{word-spacing:20.862522px;}
.ws39{word-spacing:22.715640px;}
.ws93{word-spacing:23.612310px;}
.ws46{word-spacing:24.210090px;}
.ws91{word-spacing:24.568758px;}
.ws7f{word-spacing:27.139212px;}
.ws92{word-spacing:32.280120px;}
.ws42{word-spacing:32.459454px;}
._1{margin-left:-6.127110px;}
._2{margin-left:-4.402968px;}
._5{margin-left:-2.450958px;}
._0{margin-left:-1.434600px;}
._4{width:1.130700px;}
._3{width:2.988900px;}
._e{width:5.868635px;}
._d{width:10.221966px;}
._a{width:21.819388px;}
._6{width:22.954752px;}
._9{width:24.389424px;}
._7{width:25.764677px;}
._b{width:29.889000px;}
._8{width:31.084859px;}
._c{width:59.778000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.844000px;}
.fs2{font-size:47.820000px;}
.fs4{font-size:59.778000px;}
.fs1{font-size:65.754000px;}
.fs0{font-size:143.460000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:113.332500px;}
.yb1{bottom:115.266000px;}
.y2e{bottom:131.265000px;}
.yb0{bottom:133.198500px;}
.y4f{bottom:149.197500px;}
.y2d{bottom:149.199000px;}
.yaf{bottom:151.131000px;}
.y2c{bottom:167.131500px;}
.yae{bottom:169.063500px;}
.y2b{bottom:185.064000px;}
.yad{bottom:186.996000px;}
.y2a{bottom:202.996500px;}
.yac{bottom:204.928500px;}
.y29{bottom:220.929000px;}
.yab{bottom:222.862500px;}
.y7e{bottom:224.590500px;}
.y4e{bottom:238.861500px;}
.y28{bottom:238.863000px;}
.yaa{bottom:240.795000px;}
.y7d{bottom:242.524500px;}
.y4d{bottom:256.965000px;}
.y27{bottom:258.448500px;}
.ya9{bottom:258.727500px;}
.y7c{bottom:260.457000px;}
.y4c{bottom:274.897500px;}
.y26{bottom:276.381000px;}
.ya8{bottom:276.660000px;}
.y7b{bottom:278.389500px;}
.y4b{bottom:292.830000px;}
.y25{bottom:294.313500px;}
.ya7{bottom:294.592500px;}
.y7a{bottom:296.322000px;}
.y4a{bottom:310.762500px;}
.y24{bottom:312.246000px;}
.ya6{bottom:312.526500px;}
.y79{bottom:317.916000px;}
.y49{bottom:328.695000px;}
.y23{bottom:330.178500px;}
.ya5{bottom:330.459000px;}
.y78{bottom:335.850000px;}
.y48{bottom:346.798500px;}
.y22{bottom:348.112500px;}
.ya4{bottom:348.391500px;}
.y77{bottom:360.402000px;}
.y47{bottom:364.731000px;}
.y21{bottom:366.045000px;}
.ya3{bottom:371.031000px;}
.y46{bottom:382.663500px;}
.y20{bottom:383.977500px;}
.y76{bottom:391.131000px;}
.ya2{bottom:396.201000px;}
.y45{bottom:400.596000px;}
.y1f{bottom:401.910000px;}
.y75{bottom:409.063500px;}
.ya1{bottom:414.133500px;}
.y44{bottom:418.528500px;}
.y1e{bottom:419.842500px;}
.y74{bottom:426.996000px;}
.ya0{bottom:432.066000px;}
.y43{bottom:436.461000px;}
.y1d{bottom:437.776500px;}
.y73{bottom:444.930000px;}
.y9f{bottom:450.000000px;}
.y42{bottom:454.395000px;}
.y1c{bottom:455.709000px;}
.y72{bottom:462.862500px;}
.y9e{bottom:467.932500px;}
.y41{bottom:472.497000px;}
.y1b{bottom:473.641500px;}
.y71{bottom:480.795000px;}
.y9d{bottom:490.096500px;}
.y40{bottom:490.429500px;}
.y1a{bottom:491.574000px;}
.y70{bottom:498.727500px;}
.y3f{bottom:508.362000px;}
.y19{bottom:509.506500px;}
.y9c{bottom:515.266500px;}
.y6f{bottom:516.660000px;}
.y3e{bottom:526.294500px;}
.y18{bottom:529.092000px;}
.y9b{bottom:533.199000px;}
.y6e{bottom:534.592500px;}
.y3d{bottom:544.228500px;}
.y17{bottom:547.026000px;}
.y9a{bottom:551.133000px;}
.y6d{bottom:552.526500px;}
.y3c{bottom:562.161000px;}
.y16{bottom:564.958500px;}
.y99{bottom:569.065500px;}
.y6c{bottom:570.459000px;}
.y3b{bottom:580.093500px;}
.y15{bottom:582.891000px;}
.y98{bottom:586.998000px;}
.y6b{bottom:588.391500px;}
.y14{bottom:600.823500px;}
.y3a{bottom:603.751500px;}
.y97{bottom:604.930500px;}
.y6a{bottom:606.324000px;}
.y13{bottom:618.756000px;}
.y96{bottom:622.863000px;}
.y69{bottom:624.576000px;}
.y39{bottom:633.213000px;}
.y12{bottom:636.690000px;}
.y95{bottom:640.795500px;}
.y68{bottom:642.508500px;}
.y38{bottom:651.145500px;}
.y11{bottom:654.622500px;}
.y94{bottom:658.729500px;}
.y67{bottom:660.441000px;}
.y37{bottom:669.078000px;}
.y10{bottom:672.555000px;}
.y93{bottom:676.662000px;}
.y66{bottom:678.373500px;}
.y36{bottom:687.012000px;}
.yf{bottom:690.487500px;}
.y92{bottom:694.594500px;}
.y65{bottom:696.307500px;}
.y35{bottom:704.944500px;}
.ye{bottom:708.420000px;}
.y91{bottom:712.527000px;}
.y64{bottom:714.240000px;}
.y34{bottom:722.877000px;}
.yd{bottom:726.352500px;}
.y63{bottom:732.172500px;}
.y90{bottom:734.692500px;}
.y33{bottom:740.809500px;}
.yc{bottom:744.286500px;}
.y62{bottom:750.105000px;}
.y32{bottom:758.742000px;}
.y8f{bottom:759.862500px;}
.yb{bottom:762.219000px;}
.y61{bottom:768.037500px;}
.y31{bottom:776.845500px;}
.y8e{bottom:777.795000px;}
.ya{bottom:780.151500px;}
.y60{bottom:789.633000px;}
.y30{bottom:794.778000px;}
.y8d{bottom:795.727500px;}
.y5f{bottom:807.565500px;}
.y9{bottom:812.710500px;}
.y8c{bottom:813.660000px;}
.y5e{bottom:829.159500px;}
.y8b{bottom:831.592500px;}
.y5d{bottom:847.092000px;}
.y8a{bottom:849.525000px;}
.y5c{bottom:865.024500px;}
.y89{bottom:867.459000px;}
.y8{bottom:880.104000px;}
.y5b{bottom:882.958500px;}
.y88{bottom:885.391500px;}
.y7{bottom:898.597500px;}
.y5a{bottom:900.891000px;}
.y87{bottom:902.848500px;}
.y6{bottom:917.091000px;}
.y59{bottom:918.823500px;}
.y86{bottom:920.781000px;}
.y5{bottom:930.382500px;}
.y58{bottom:936.756000px;}
.y85{bottom:938.715000px;}
.y4{bottom:950.392500px;}
.y57{bottom:954.688500px;}
.y84{bottom:956.647500px;}
.y56{bottom:972.621000px;}
.y83{bottom:974.580000px;}
.y82{bottom:992.512500px;}
.y55{bottom:997.174500px;}
.y3{bottom:997.465500px;}
.y81{bottom:1010.445000px;}
.y54{bottom:1015.107000px;}
.y80{bottom:1028.377500px;}
.y2{bottom:1039.309500px;}
.y53{bottom:1045.836000px;}
.y52{bottom:1063.768500px;}
.y1{bottom:1081.152000px;}
.y51{bottom:1081.701000px;}
.y7f{bottom:1099.633500px;}
.y50{bottom:1099.635000px;}
.h4{height:29.458176px;}
.h5{height:29.960304px;}
.h8{height:40.828374px;}
.h6{height:41.127264px;}
.h7{height:41.427264px;}
.h3{height:57.419280px;}
.h2{height:57.993120px;}
.h1{height:98.700480px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:73.446000px;}
.xf{left:79.516500px;}
.x11{left:83.413500px;}
.xa{left:88.390500px;}
.x6{left:90.532500px;}
.x13{left:103.333500px;}
.x3{left:129.309000px;}
.x5{left:152.619000px;}
.x1{left:163.417500px;}
.x4{left:173.206500px;}
.x12{left:175.903500px;}
.x10{left:204.207000px;}
.x9{left:207.120000px;}
.x7{left:228.043500px;}
.x2{left:318.247500px;}
.x8{left:332.862000px;}
.xc{left:467.967000px;}
.xd{left:482.910000px;}
.xe{left:498.933000px;}
.x17{left:500.335500px;}
.x15{left:591.090000px;}
.x14{left:602.641500px;}
.x16{left:614.418000px;}
.x18{left:684.702000px;}
.x19{left:827.548500px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.285333pt;}
.v1{vertical-align:21.114667pt;}
.lsd{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.745141pt;}
.lsf{letter-spacing:2.652379pt;}
.ls1{letter-spacing:2.653541pt;}
.ls11{letter-spacing:2.654288pt;}
.lsc{letter-spacing:2.654475pt;}
.lsb{letter-spacing:2.655572pt;}
.ls5{letter-spacing:2.656100pt;}
.ls3{letter-spacing:2.656421pt;}
.ls7{letter-spacing:2.656628pt;}
.lse{letter-spacing:2.656800pt;}
.lsa{letter-spacing:2.657684pt;}
.ls0{letter-spacing:2.657931pt;}
.ls2{letter-spacing:2.659019pt;}
.ls4{letter-spacing:2.661755pt;}
.ls8{letter-spacing:18.556800pt;}
.ls9{letter-spacing:18.576539pt;}
.ls6{letter-spacing:18.578704pt;}
.ws3{word-spacing:-13.284000pt;}
.ws5{word-spacing:-10.626667pt;}
.ws81{word-spacing:-0.956554pt;}
.ws8{word-spacing:-0.690768pt;}
.ws1d{word-spacing:-0.478171pt;}
.ws78{word-spacing:-0.212544pt;}
.ws4a{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.053083pt;}
.ws8e{word-spacing:0.106378pt;}
.ws7{word-spacing:0.265893pt;}
.ws1f{word-spacing:0.637632pt;}
.ws47{word-spacing:0.690981pt;}
.ws4d{word-spacing:0.743904pt;}
.ws1c{word-spacing:1.062720pt;}
.ws15{word-spacing:1.168992pt;}
.ws1e{word-spacing:1.275530pt;}
.ws57{word-spacing:1.434672pt;}
.ws84{word-spacing:1.487808pt;}
.ws5d{word-spacing:1.594080pt;}
.ws88{word-spacing:1.647216pt;}
.ws9{word-spacing:1.859547pt;}
.ws3e{word-spacing:2.284635pt;}
.ws75{word-spacing:2.444256pt;}
.ws6{word-spacing:2.603664pt;}
.ws87{word-spacing:2.656906pt;}
.wsc{word-spacing:2.763019pt;}
.ws71{word-spacing:3.081888pt;}
.ws3f{word-spacing:3.135024pt;}
.ws3b{word-spacing:3.347621pt;}
.ws19{word-spacing:3.400704pt;}
.ws38{word-spacing:3.453840pt;}
.ws82{word-spacing:3.507082pt;}
.ws66{word-spacing:3.666384pt;}
.ws27{word-spacing:3.719361pt;}
.ws63{word-spacing:3.932064pt;}
.ws2c{word-spacing:3.932170pt;}
.ws76{word-spacing:4.091472pt;}
.ws2d{word-spacing:4.144608pt;}
.ws13{word-spacing:4.197744pt;}
.ws56{word-spacing:4.250880pt;}
.ws4b{word-spacing:4.304016pt;}
.ws3c{word-spacing:4.357152pt;}
.ws3d{word-spacing:4.410288pt;}
.ws50{word-spacing:4.463424pt;}
.ws5e{word-spacing:4.675968pt;}
.ws61{word-spacing:4.728998pt;}
.ws7b{word-spacing:4.941807pt;}
.ws49{word-spacing:4.995156pt;}
.ws69{word-spacing:5.154192pt;}
.ws32{word-spacing:5.258357pt;}
.ws4f{word-spacing:5.270784pt;}
.ws33{word-spacing:5.291680pt;}
.ws86{word-spacing:5.313547pt;}
.ws14{word-spacing:5.313600pt;}
.ws7d{word-spacing:5.419659pt;}
.ws62{word-spacing:5.473008pt;}
.ws89{word-spacing:5.579705pt;}
.ws4c{word-spacing:5.685286pt;}
.ws1{word-spacing:5.844800pt;}
.ws30{word-spacing:5.951232pt;}
.ws64{word-spacing:6.163723pt;}
.ws7c{word-spacing:6.216912pt;}
.ws1b{word-spacing:6.217071pt;}
.ws6f{word-spacing:6.323184pt;}
.ws21{word-spacing:6.376320pt;}
.ws60{word-spacing:6.429350pt;}
.ws41{word-spacing:6.482645pt;}
.wsb{word-spacing:6.535728pt;}
.ws5c{word-spacing:6.695136pt;}
.ws68{word-spacing:6.748272pt;}
.ws58{word-spacing:6.801408pt;}
.ws17{word-spacing:6.854385pt;}
.ws85{word-spacing:6.907733pt;}
.ws29{word-spacing:6.960816pt;}
.ws48{word-spacing:7.013899pt;}
.ws70{word-spacing:7.120224pt;}
.ws8f{word-spacing:7.173360pt;}
.ws51{word-spacing:7.279473pt;}
.ws52{word-spacing:7.438987pt;}
.ws40{word-spacing:7.492176pt;}
.ws2f{word-spacing:7.598448pt;}
.ws8b{word-spacing:7.864128pt;}
.ws72{word-spacing:7.970400pt;}
.ws12{word-spacing:8.023536pt;}
.ws36{word-spacing:8.076831pt;}
.ws45{word-spacing:8.342352pt;}
.wsd{word-spacing:8.660902pt;}
.ws2e{word-spacing:8.714198pt;}
.ws65{word-spacing:8.767440pt;}
.ws59{word-spacing:8.873712pt;}
.ws5b{word-spacing:8.979984pt;}
.ws31{word-spacing:9.086256pt;}
.ws79{word-spacing:9.245451pt;}
.ws35{word-spacing:9.511344pt;}
.ws54{word-spacing:9.564374pt;}
.ws24{word-spacing:9.564480pt;}
.wse{word-spacing:9.830160pt;}
.ws8a{word-spacing:9.883349pt;}
.ws44{word-spacing:10.095627pt;}
.ws6d{word-spacing:10.148923pt;}
.ws25{word-spacing:10.255089pt;}
.ws2b{word-spacing:10.414656pt;}
.ws4e{word-spacing:10.627200pt;}
.ws10{word-spacing:10.892986pt;}
.wsa{word-spacing:11.105424pt;}
.ws5a{word-spacing:11.158560pt;}
.ws74{word-spacing:11.265257pt;}
.ws22{word-spacing:11.371104pt;}
.ws7a{word-spacing:11.689814pt;}
.ws6b{word-spacing:11.743056pt;}
.ws1a{word-spacing:11.743162pt;}
.ws90{word-spacing:11.796192pt;}
.wsf{word-spacing:12.433824pt;}
.ws37{word-spacing:12.539990pt;}
.ws20{word-spacing:12.646368pt;}
.ws0{word-spacing:12.752000pt;}
.ws55{word-spacing:12.752640pt;}
.ws67{word-spacing:12.805776pt;}
.ws26{word-spacing:12.858912pt;}
.ws53{word-spacing:13.230864pt;}
.ws80{word-spacing:13.443461pt;}
.ws3a{word-spacing:13.974768pt;}
.ws2a{word-spacing:14.134176pt;}
.ws7e{word-spacing:14.612559pt;}
.ws73{word-spacing:14.665377pt;}
.ws83{word-spacing:14.771542pt;}
.ws34{word-spacing:15.250032pt;}
.ws43{word-spacing:15.462576pt;}
.ws5f{word-spacing:15.515712pt;}
.ws11{word-spacing:15.621984pt;}
.ws18{word-spacing:15.728256pt;}
.ws4{word-spacing:15.940800pt;}
.ws77{word-spacing:16.047072pt;}
.ws6c{word-spacing:16.206480pt;}
.ws16{word-spacing:16.259563pt;}
.ws8c{word-spacing:16.684704pt;}
.ws28{word-spacing:17.109792pt;}
.ws23{word-spacing:17.215905pt;}
.ws6e{word-spacing:17.694288pt;}
.ws6a{word-spacing:18.225542pt;}
.ws2{word-spacing:18.544464pt;}
.ws39{word-spacing:20.191680pt;}
.ws93{word-spacing:20.988720pt;}
.ws46{word-spacing:21.520080pt;}
.ws91{word-spacing:21.838896pt;}
.ws7f{word-spacing:24.123744pt;}
.ws92{word-spacing:28.693440pt;}
.ws42{word-spacing:28.852848pt;}
._1{margin-left:-5.446320pt;}
._2{margin-left:-3.913749pt;}
._5{margin-left:-2.178629pt;}
._0{margin-left:-1.275200pt;}
._4{width:1.005067pt;}
._3{width:2.656800pt;}
._e{width:5.216564pt;}
._d{width:9.086192pt;}
._a{width:19.395012pt;}
._6{width:20.404224pt;}
._9{width:21.679488pt;}
._7{width:22.901935pt;}
._b{width:26.568000pt;}
._8{width:27.630986pt;}
._c{width:53.136000pt;}
.fs3{font-size:37.194667pt;}
.fs2{font-size:42.506667pt;}
.fs4{font-size:53.136000pt;}
.fs1{font-size:58.448000pt;}
.fs0{font-size:127.520000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:100.740000pt;}
.yb1{bottom:102.458667pt;}
.y2e{bottom:116.680000pt;}
.yb0{bottom:118.398667pt;}
.y4f{bottom:132.620000pt;}
.y2d{bottom:132.621333pt;}
.yaf{bottom:134.338667pt;}
.y2c{bottom:148.561333pt;}
.yae{bottom:150.278667pt;}
.y2b{bottom:164.501333pt;}
.yad{bottom:166.218667pt;}
.y2a{bottom:180.441333pt;}
.yac{bottom:182.158667pt;}
.y29{bottom:196.381333pt;}
.yab{bottom:198.100000pt;}
.y7e{bottom:199.636000pt;}
.y4e{bottom:212.321333pt;}
.y28{bottom:212.322667pt;}
.yaa{bottom:214.040000pt;}
.y7d{bottom:215.577333pt;}
.y4d{bottom:228.413333pt;}
.y27{bottom:229.732000pt;}
.ya9{bottom:229.980000pt;}
.y7c{bottom:231.517333pt;}
.y4c{bottom:244.353333pt;}
.y26{bottom:245.672000pt;}
.ya8{bottom:245.920000pt;}
.y7b{bottom:247.457333pt;}
.y4b{bottom:260.293333pt;}
.y25{bottom:261.612000pt;}
.ya7{bottom:261.860000pt;}
.y7a{bottom:263.397333pt;}
.y4a{bottom:276.233333pt;}
.y24{bottom:277.552000pt;}
.ya6{bottom:277.801333pt;}
.y79{bottom:282.592000pt;}
.y49{bottom:292.173333pt;}
.y23{bottom:293.492000pt;}
.ya5{bottom:293.741333pt;}
.y78{bottom:298.533333pt;}
.y48{bottom:308.265333pt;}
.y22{bottom:309.433333pt;}
.ya4{bottom:309.681333pt;}
.y77{bottom:320.357333pt;}
.y47{bottom:324.205333pt;}
.y21{bottom:325.373333pt;}
.ya3{bottom:329.805333pt;}
.y46{bottom:340.145333pt;}
.y20{bottom:341.313333pt;}
.y76{bottom:347.672000pt;}
.ya2{bottom:352.178667pt;}
.y45{bottom:356.085333pt;}
.y1f{bottom:357.253333pt;}
.y75{bottom:363.612000pt;}
.ya1{bottom:368.118667pt;}
.y44{bottom:372.025333pt;}
.y1e{bottom:373.193333pt;}
.y74{bottom:379.552000pt;}
.ya0{bottom:384.058667pt;}
.y43{bottom:387.965333pt;}
.y1d{bottom:389.134667pt;}
.y73{bottom:395.493333pt;}
.y9f{bottom:400.000000pt;}
.y42{bottom:403.906667pt;}
.y1c{bottom:405.074667pt;}
.y72{bottom:411.433333pt;}
.y9e{bottom:415.940000pt;}
.y41{bottom:419.997333pt;}
.y1b{bottom:421.014667pt;}
.y71{bottom:427.373333pt;}
.y9d{bottom:435.641333pt;}
.y40{bottom:435.937333pt;}
.y1a{bottom:436.954667pt;}
.y70{bottom:443.313333pt;}
.y3f{bottom:451.877333pt;}
.y19{bottom:452.894667pt;}
.y9c{bottom:458.014667pt;}
.y6f{bottom:459.253333pt;}
.y3e{bottom:467.817333pt;}
.y18{bottom:470.304000pt;}
.y9b{bottom:473.954667pt;}
.y6e{bottom:475.193333pt;}
.y3d{bottom:483.758667pt;}
.y17{bottom:486.245333pt;}
.y9a{bottom:489.896000pt;}
.y6d{bottom:491.134667pt;}
.y3c{bottom:499.698667pt;}
.y16{bottom:502.185333pt;}
.y99{bottom:505.836000pt;}
.y6c{bottom:507.074667pt;}
.y3b{bottom:515.638667pt;}
.y15{bottom:518.125333pt;}
.y98{bottom:521.776000pt;}
.y6b{bottom:523.014667pt;}
.y14{bottom:534.065333pt;}
.y3a{bottom:536.668000pt;}
.y97{bottom:537.716000pt;}
.y6a{bottom:538.954667pt;}
.y13{bottom:550.005333pt;}
.y96{bottom:553.656000pt;}
.y69{bottom:555.178667pt;}
.y39{bottom:562.856000pt;}
.y12{bottom:565.946667pt;}
.y95{bottom:569.596000pt;}
.y68{bottom:571.118667pt;}
.y38{bottom:578.796000pt;}
.y11{bottom:581.886667pt;}
.y94{bottom:585.537333pt;}
.y67{bottom:587.058667pt;}
.y37{bottom:594.736000pt;}
.y10{bottom:597.826667pt;}
.y93{bottom:601.477333pt;}
.y66{bottom:602.998667pt;}
.y36{bottom:610.677333pt;}
.yf{bottom:613.766667pt;}
.y92{bottom:617.417333pt;}
.y65{bottom:618.940000pt;}
.y35{bottom:626.617333pt;}
.ye{bottom:629.706667pt;}
.y91{bottom:633.357333pt;}
.y64{bottom:634.880000pt;}
.y34{bottom:642.557333pt;}
.yd{bottom:645.646667pt;}
.y63{bottom:650.820000pt;}
.y90{bottom:653.060000pt;}
.y33{bottom:658.497333pt;}
.yc{bottom:661.588000pt;}
.y62{bottom:666.760000pt;}
.y32{bottom:674.437333pt;}
.y8f{bottom:675.433333pt;}
.yb{bottom:677.528000pt;}
.y61{bottom:682.700000pt;}
.y31{bottom:690.529333pt;}
.y8e{bottom:691.373333pt;}
.ya{bottom:693.468000pt;}
.y60{bottom:701.896000pt;}
.y30{bottom:706.469333pt;}
.y8d{bottom:707.313333pt;}
.y5f{bottom:717.836000pt;}
.y9{bottom:722.409333pt;}
.y8c{bottom:723.253333pt;}
.y5e{bottom:737.030667pt;}
.y8b{bottom:739.193333pt;}
.y5d{bottom:752.970667pt;}
.y8a{bottom:755.133333pt;}
.y5c{bottom:768.910667pt;}
.y89{bottom:771.074667pt;}
.y8{bottom:782.314667pt;}
.y5b{bottom:784.852000pt;}
.y88{bottom:787.014667pt;}
.y7{bottom:798.753333pt;}
.y5a{bottom:800.792000pt;}
.y87{bottom:802.532000pt;}
.y6{bottom:815.192000pt;}
.y59{bottom:816.732000pt;}
.y86{bottom:818.472000pt;}
.y5{bottom:827.006667pt;}
.y58{bottom:832.672000pt;}
.y85{bottom:834.413333pt;}
.y4{bottom:844.793333pt;}
.y57{bottom:848.612000pt;}
.y84{bottom:850.353333pt;}
.y56{bottom:864.552000pt;}
.y83{bottom:866.293333pt;}
.y82{bottom:882.233333pt;}
.y55{bottom:886.377333pt;}
.y3{bottom:886.636000pt;}
.y81{bottom:898.173333pt;}
.y54{bottom:902.317333pt;}
.y80{bottom:914.113333pt;}
.y2{bottom:923.830667pt;}
.y53{bottom:929.632000pt;}
.y52{bottom:945.572000pt;}
.y1{bottom:961.024000pt;}
.y51{bottom:961.512000pt;}
.y7f{bottom:977.452000pt;}
.y50{bottom:977.453333pt;}
.h4{height:26.185045pt;}
.h5{height:26.631381pt;}
.h8{height:36.291888pt;}
.h6{height:36.557568pt;}
.h7{height:36.824235pt;}
.h3{height:51.039360pt;}
.h2{height:51.549440pt;}
.h1{height:87.733760pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:65.285333pt;}
.xf{left:70.681333pt;}
.x11{left:74.145333pt;}
.xa{left:78.569333pt;}
.x6{left:80.473333pt;}
.x13{left:91.852000pt;}
.x3{left:114.941333pt;}
.x5{left:135.661333pt;}
.x1{left:145.260000pt;}
.x4{left:153.961333pt;}
.x12{left:156.358667pt;}
.x10{left:181.517333pt;}
.x9{left:184.106667pt;}
.x7{left:202.705333pt;}
.x2{left:282.886667pt;}
.x8{left:295.877333pt;}
.xc{left:415.970667pt;}
.xd{left:429.253333pt;}
.xe{left:443.496000pt;}
.x17{left:444.742667pt;}
.x15{left:525.413333pt;}
.x14{left:535.681333pt;}
.x16{left:546.149333pt;}
.x18{left:608.624000pt;}
.x19{left:735.598667pt;}
}




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