
    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_c449e2c78cc7c7baf03e4d6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_a8fe32a12b976624b5db752b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916504;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_e2222176b3981992bd73f9d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_9ac71e23492c242ae9b20c37.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_89955c1872943892b4cbc823.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.709473;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_e56082b3ec75ca11ddd7c6d4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.885742;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d730ad73e12932603772d6fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.706543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f2c1a18dbbfdf8ab2d995c81.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002930;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_b6d1608c301ea6f3c2d15ebf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.862793;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_1ca5e8494712c7d764b5f8f3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250251,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls35{letter-spacing:-0.936000px;}
.ls2f{letter-spacing:-0.741449px;}
.ls25{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.644540px;}
.ls15{letter-spacing:-0.552463px;}
.ls17{letter-spacing:-0.506425px;}
.ls27{letter-spacing:-0.492393px;}
.ls19{letter-spacing:-0.460386px;}
.ls2b{letter-spacing:-0.432512px;}
.lsc{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.322270px;}
.ls2d{letter-spacing:-0.308937px;}
.ls0{letter-spacing:-0.288000px;}
.ls30{letter-spacing:-0.247150px;}
.ls10{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.191520px;}
.ls2c{letter-spacing:-0.185362px;}
.ls26{letter-spacing:-0.179052px;}
.ls5{letter-spacing:-0.144000px;}
.ls2e{letter-spacing:-0.123575px;}
.ls28{letter-spacing:-0.089526px;}
.ls6{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.276232px;}
.ls3{letter-spacing:0.383040px;}
.ls22{letter-spacing:0.447630px;}
.ls1f{letter-spacing:0.626682px;}
.ls20{letter-spacing:0.671445px;}
.ls1a{letter-spacing:0.690579px;}
.ls13{letter-spacing:0.720000px;}
.ls12{letter-spacing:1.440000px;}
.ls1b{letter-spacing:2.160000px;}
.lse{letter-spacing:2.880000px;}
.lsd{letter-spacing:3.600000px;}
.lsf{letter-spacing:4.320000px;}
.ls1c{letter-spacing:5.040000px;}
.ls8{letter-spacing:8.640000px;}
.ls1e{letter-spacing:9.360000px;}
.ls31{letter-spacing:10.080000px;}
.ls33{letter-spacing:10.800000px;}
.lsa{letter-spacing:11.520000px;}
.ls29{letter-spacing:12.960000px;}
.lsb{letter-spacing:13.680000px;}
.ls37{letter-spacing:16.560000px;}
.ls34{letter-spacing:17.280000px;}
.ls32{letter-spacing:18.000000px;}
.ls4{letter-spacing:23.040000px;}
.ls1d{letter-spacing:27.360000px;}
.ls2a{letter-spacing:134.758319px;}
.ls21{letter-spacing:176.410983px;}
.ls36{letter-spacing:198.000000px;}
.ls24{letter-spacing:221.173983px;}
.ls23{letter-spacing:224.262630px;}
.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;}
}
.ws6e{word-spacing:-214.280481px;}
.ws82{word-spacing:-148.722272px;}
.ws3{word-spacing:-24.323040px;}
.ws2{word-spacing:-23.940000px;}
.ws1{word-spacing:-23.748480px;}
.ws2f{word-spacing:-18.216000px;}
.ws30{word-spacing:-18.144000px;}
.ws4d{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws4e{word-spacing:-17.784000px;}
.ws56{word-spacing:-17.712000px;}
.ws90{word-spacing:-17.064000px;}
.ws3d{word-spacing:-15.696000px;}
.ws89{word-spacing:-13.222504px;}
.ws67{word-spacing:-10.787883px;}
.ws6a{word-spacing:-10.743120px;}
.ws59{word-spacing:-10.082453px;}
.ws68{word-spacing:-9.937386px;}
.ws58{word-spacing:-9.852260px;}
.ws69{word-spacing:-9.624045px;}
.ws51{word-spacing:-4.320000px;}
.ws77{word-spacing:-4.176000px;}
.ws52{word-spacing:-4.032000px;}
.ws10{word-spacing:-3.600000px;}
.ws74{word-spacing:-3.312000px;}
.ws4f{word-spacing:-3.024000px;}
.ws11{word-spacing:-2.880000px;}
.ws24{word-spacing:-2.736000px;}
.ws4a{word-spacing:-2.592000px;}
.ws1d{word-spacing:-2.160000px;}
.ws38{word-spacing:-1.872000px;}
.ws45{word-spacing:-1.584000px;}
.ws37{word-spacing:-1.440000px;}
.ws9{word-spacing:-1.152000px;}
.ws66{word-spacing:-1.012849px;}
.ws5b{word-spacing:-0.960354px;}
.ws5a{word-spacing:-0.959755px;}
.ws76{word-spacing:-0.792000px;}
.wsc{word-spacing:-0.720000px;}
.ws7a{word-spacing:-0.671445px;}
.ws7b{word-spacing:-0.626682px;}
.ws63{word-spacing:-0.598502px;}
.ws39{word-spacing:-0.432000px;}
.ws7{word-spacing:-0.383040px;}
.ws8e{word-spacing:-0.308937px;}
.ws8c{word-spacing:-0.247150px;}
.ws41{word-spacing:-0.216000px;}
.ws6{word-spacing:-0.191520px;}
.ws8f{word-spacing:-0.185362px;}
.ws23{word-spacing:-0.144000px;}
.ws8d{word-spacing:-0.123575px;}
.ws5f{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws78{word-spacing:0.044763px;}
.ws3f{word-spacing:0.072000px;}
.ws64{word-spacing:0.138116px;}
.ws40{word-spacing:0.144000px;}
.ws61{word-spacing:0.184154px;}
.ws53{word-spacing:0.216000px;}
.ws4{word-spacing:0.288000px;}
.ws65{word-spacing:0.322270px;}
.ws3e{word-spacing:0.360000px;}
.ws8b{word-spacing:0.432512px;}
.ws79{word-spacing:0.492393px;}
.ws60{word-spacing:0.552463px;}
.ws5e{word-spacing:0.576000px;}
.ws62{word-spacing:0.644540px;}
.ws2c{word-spacing:0.720000px;}
.ws7c{word-spacing:0.760971px;}
.ws57{word-spacing:1.008000px;}
.ws7d{word-spacing:1.163838px;}
.ws31{word-spacing:1.296000px;}
.ws9a{word-spacing:1.368000px;}
.wsd{word-spacing:1.440000px;}
.ws32{word-spacing:1.728000px;}
.ws8a{word-spacing:2.016000px;}
.wsa{word-spacing:2.160000px;}
.ws96{word-spacing:2.376000px;}
.ws81{word-spacing:2.448000px;}
.ws17{word-spacing:2.880000px;}
.ws2a{word-spacing:3.168000px;}
.ws70{word-spacing:3.357225px;}
.ws6d{word-spacing:3.361701px;}
.ws9c{word-spacing:3.456000px;}
.ws25{word-spacing:3.600000px;}
.wsf{word-spacing:3.888000px;}
.ws50{word-spacing:4.176000px;}
.wse{word-spacing:4.320000px;}
.ws21{word-spacing:4.464000px;}
.ws2d{word-spacing:4.608000px;}
.ws48{word-spacing:5.040000px;}
.ws55{word-spacing:5.328000px;}
.ws1f{word-spacing:5.760000px;}
.ws20{word-spacing:5.832000px;}
.ws5c{word-spacing:6.048000px;}
.ws2b{word-spacing:6.480000px;}
.ws54{word-spacing:7.200000px;}
.ws36{word-spacing:7.488000px;}
.ws80{word-spacing:7.920000px;}
.ws18{word-spacing:8.064000px;}
.ws43{word-spacing:8.208000px;}
.ws3a{word-spacing:8.640000px;}
.ws92{word-spacing:8.856000px;}
.ws3b{word-spacing:8.928000px;}
.ws3c{word-spacing:9.360000px;}
.ws49{word-spacing:9.648000px;}
.ws1c{word-spacing:10.080000px;}
.ws95{word-spacing:10.368000px;}
.ws99{word-spacing:10.656000px;}
.ws91{word-spacing:10.800000px;}
.ws22{word-spacing:10.944000px;}
.ws46{word-spacing:11.088000px;}
.ws13{word-spacing:11.520000px;}
.ws42{word-spacing:11.808000px;}
.ws7e{word-spacing:12.816000px;}
.ws33{word-spacing:12.960000px;}
.ws34{word-spacing:13.248000px;}
.ws44{word-spacing:13.680000px;}
.ws4c{word-spacing:13.968000px;}
.ws2e{word-spacing:14.400000px;}
.ws16{word-spacing:14.544000px;}
.ws7f{word-spacing:14.976000px;}
.ws26{word-spacing:15.120000px;}
.ws27{word-spacing:15.264000px;}
.ws12{word-spacing:15.840000px;}
.ws35{word-spacing:16.128000px;}
.wsb{word-spacing:16.560000px;}
.ws9b{word-spacing:16.848000px;}
.ws93{word-spacing:17.136000px;}
.ws5d{word-spacing:17.280000px;}
.ws94{word-spacing:17.568000px;}
.ws98{word-spacing:17.856000px;}
.ws97{word-spacing:18.288000px;}
.ws1e{word-spacing:19.440000px;}
.ws9d{word-spacing:22.320000px;}
.ws15{word-spacing:23.184000px;}
.ws47{word-spacing:25.200000px;}
.ws14{word-spacing:27.360000px;}
.ws75{word-spacing:27.648000px;}
.ws4b{word-spacing:31.536000px;}
.ws1b{word-spacing:32.400000px;}
.ws1a{word-spacing:32.544000px;}
.ws29{word-spacing:36.144000px;}
.ws28{word-spacing:37.584000px;}
.ws88{word-spacing:44.425141px;}
.ws19{word-spacing:46.224000px;}
.ws84{word-spacing:89.900667px;}
.ws87{word-spacing:90.703903px;}
.ws86{word-spacing:120.794367px;}
.ws83{word-spacing:121.597603px;}
.ws85{word-spacing:121.659391px;}
.ws73{word-spacing:165.444048px;}
.ws6b{word-spacing:190.144271px;}
.ws6f{word-spacing:190.153224px;}
.ws72{word-spacing:213.295695px;}
.ws6c{word-spacing:214.146192px;}
.ws71{word-spacing:319.831635px;}
._14{margin-left:-224.262630px;}
._1b{margin-left:-134.758319px;}
._19{margin-left:-31.017275px;}
._b{margin-left:-3.744000px;}
._8{margin-left:-2.304000px;}
._2{margin-left:-1.224000px;}
._0{width:1.296000px;}
._e{width:2.808000px;}
._d{width:4.824000px;}
._24{width:6.192000px;}
._9{width:7.272000px;}
._7{width:9.288000px;}
._4{width:13.248000px;}
._25{width:16.920000px;}
._1d{width:122.595414px;}
._1e{width:134.758319px;}
._17{width:153.971469px;}
._20{width:172.626854px;}
._3{width:174.024000px;}
._12{width:177.530058px;}
._c{width:198.000000px;}
._1a{width:199.318817px;}
._16{width:200.672529px;}
._5{width:204.912000px;}
._6{width:206.352000px;}
._11{width:221.173983px;}
._10{width:244.361217px;}
._f{width:247.011187px;}
._18{width:306.751886px;}
._13{width:329.451204px;}
._15{width:353.036828px;}
._1f{width:489.547712px;}
._1c{width:509.628617px;}
._22{width:633.201881px;}
._23{width:686.831809px;}
._21{width:737.188540px;}
._1{width:846.000000px;}
._a{width:2712.240000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:44.763000px;}
.fs2{font-size:46.038600px;}
.fs4{font-size:61.787400px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:3.236250px;}
.ya4{bottom:3.236550px;}
.ya8{bottom:3.237000px;}
.yaa{bottom:3.237150px;}
.yac{bottom:3.237300px;}
.yae{bottom:3.237450px;}
.yb1{bottom:3.237600px;}
.yd6{bottom:3.508958px;}
.y5c{bottom:3.960000px;}
.yfb{bottom:4.345200px;}
.yf9{bottom:4.824078px;}
.ya2{bottom:5.034900px;}
.yc6{bottom:10.815356px;}
.yfd{bottom:14.964900px;}
.yca{bottom:18.143388px;}
.yd5{bottom:18.168840px;}
.ya1{bottom:19.781550px;}
.y5e{bottom:25.020000px;}
.yf8{bottom:25.105792px;}
.yc1{bottom:25.471271px;}
.yc5{bottom:25.475238px;}
.ybe{bottom:32.799303px;}
.yc9{bottom:32.803270px;}
.yd4{bottom:32.828722px;}
.ybc{bottom:39.746850px;}
.yc0{bottom:40.131153px;}
.yc4{bottom:40.135121px;}
.yf7{bottom:45.372059px;}
.ybd{bottom:47.078700px;}
.yc8{bottom:47.463153px;}
.yd3{bottom:47.488605px;}
.ybf{bottom:54.410550px;}
.yc3{bottom:54.795003px;}
.y1{bottom:57.960000px;}
.yc7{bottom:61.742550px;}
.yd2{bottom:62.148488px;}
.yf6{bottom:65.638327px;}
.yc2{bottom:69.074400px;}
.yd1{bottom:76.808370px;}
.yf5{bottom:85.920041px;}
.yd0{bottom:91.468253px;}
.ycf{bottom:106.128135px;}
.yf4{bottom:106.201755px;}
.ya6{bottom:109.340850px;}
.yce{bottom:120.791835px;}
.y59{bottom:121.500000px;}
.y7d{bottom:122.220000px;}
.y90{bottom:122.400000px;}
.y9d{bottom:123.120000px;}
.ya5{bottom:124.447200px;}
.yf3{bottom:126.483469px;}
.yba{bottom:129.960000px;}
.y3f{bottom:131.760000px;}
.ycd{bottom:135.451718px;}
.yef{bottom:136.260000px;}
.yf2{bottom:146.765183px;}
.y8f{bottom:149.580000px;}
.ycc{bottom:150.111600px;}
.y58{bottom:152.460000px;}
.y7c{bottom:153.180000px;}
.y9c{bottom:154.080000px;}
.yb9{bottom:161.100000px;}
.ydf{bottom:161.280000px;}
.y3e{bottom:162.900000px;}
.yee{bottom:163.440000px;}
.y9f{bottom:163.651950px;}
.yf0{bottom:165.061500px;}
.yf1{bottom:167.031450px;}
.y57{bottom:183.600000px;}
.y7b{bottom:184.320000px;}
.y9b{bottom:185.220000px;}
.yb8{bottom:188.280000px;}
.ycb{bottom:188.683500px;}
.yde{bottom:192.420000px;}
.y3d{bottom:193.860000px;}
.y56{bottom:214.560000px;}
.y7a{bottom:215.280000px;}
.y9a{bottom:216.180000px;}
.ydd{bottom:223.380000px;}
.y3c{bottom:225.000000px;}
.y20{bottom:235.260000px;}
.y55{bottom:245.700000px;}
.y79{bottom:246.420000px;}
.y99{bottom:247.320000px;}
.ydc{bottom:254.520000px;}
.y3b{bottom:255.960000px;}
.y1f{bottom:257.557320px;}
.y82{bottom:259.560000px;}
.y54{bottom:276.660000px;}
.y78{bottom:277.380000px;}
.y98{bottom:278.280000px;}
.y1e{bottom:285.088320px;}
.ydb{bottom:285.480000px;}
.y3a{bottom:287.100000px;}
.y81{bottom:290.700000px;}
.y53{bottom:307.800000px;}
.y77{bottom:308.520000px;}
.y97{bottom:309.420000px;}
.y1d{bottom:312.619320px;}
.yda{bottom:316.440000px;}
.y39{bottom:318.060000px;}
.y80{bottom:321.660000px;}
.yfc{bottom:327.736500px;}
.y52{bottom:338.760000px;}
.y76{bottom:339.480000px;}
.y1c{bottom:340.341840px;}
.y96{bottom:340.380000px;}
.yd9{bottom:347.580000px;}
.yfa{bottom:348.010500px;}
.y38{bottom:349.200000px;}
.ybb{bottom:350.371500px;}
.y7f{bottom:352.800000px;}
.y1b{bottom:367.872840px;}
.y51{bottom:369.900000px;}
.y75{bottom:370.620000px;}
.y95{bottom:371.520000px;}
.yd8{bottom:378.540000px;}
.y7e{bottom:379.980000px;}
.y37{bottom:380.160000px;}
.yed{bottom:382.680000px;}
.y1a{bottom:395.403840px;}
.y50{bottom:400.860000px;}
.y74{bottom:401.580000px;}
.y94{bottom:402.480000px;}
.yd7{bottom:405.540000px;}
.y36{bottom:411.300000px;}
.yec{bottom:413.640000px;}
.y19{bottom:423.126360px;}
.y4f{bottom:432.000000px;}
.y73{bottom:432.720000px;}
.y93{bottom:433.620000px;}
.y35{bottom:442.260000px;}
.yeb{bottom:444.600000px;}
.y18{bottom:450.657360px;}
.yb7{bottom:452.700000px;}
.y4e{bottom:462.960000px;}
.y72{bottom:463.680000px;}
.y92{bottom:464.580000px;}
.y34{bottom:473.400000px;}
.yea{bottom:475.740000px;}
.y17{bottom:478.188360px;}
.yb6{bottom:483.660000px;}
.y91{bottom:491.940000px;}
.y9e{bottom:492.231000px;}
.yb2{bottom:492.591000px;}
.y4d{bottom:494.100000px;}
.y71{bottom:494.820000px;}
.y33{bottom:504.360000px;}
.y16{bottom:505.910880px;}
.ye9{bottom:506.700000px;}
.yb0{bottom:507.696000px;}
.yb5{bottom:514.800000px;}
.yaf{bottom:522.802500px;}
.y4c{bottom:525.060000px;}
.y70{bottom:525.780000px;}
.y15{bottom:533.441880px;}
.y32{bottom:535.500000px;}
.ye8{bottom:537.840000px;}
.yad{bottom:537.909000px;}
.yb4{bottom:545.760000px;}
.yab{bottom:553.015500px;}
.y4b{bottom:556.200000px;}
.y6f{bottom:556.920000px;}
.y8e{bottom:557.820000px;}
.y14{bottom:560.972880px;}
.y31{bottom:566.460000px;}
.ya9{bottom:568.122000px;}
.ye7{bottom:568.800000px;}
.y4a{bottom:576.900000px;}
.ya7{bottom:583.228500px;}
.y6e{bottom:587.880000px;}
.y13{bottom:588.695400px;}
.y8d{bottom:588.780000px;}
.y30{bottom:597.600000px;}
.ye6{bottom:599.940000px;}
.y49{bottom:607.860000px;}
.y12{bottom:616.226400px;}
.y6d{bottom:619.020000px;}
.y8c{bottom:619.740000px;}
.ya3{bottom:628.548000px;}
.y2f{bottom:628.560000px;}
.ye5{bottom:630.900000px;}
.y48{bottom:639.000000px;}
.ya0{bottom:643.654500px;}
.y11{bottom:643.757400px;}
.y6c{bottom:649.980000px;}
.y8b{bottom:650.880000px;}
.y2e{bottom:659.700000px;}
.ye4{bottom:662.040000px;}
.y47{bottom:669.960000px;}
.y10{bottom:671.479920px;}
.y6b{bottom:681.120000px;}
.y8a{bottom:681.840000px;}
.y2d{bottom:690.660000px;}
.ye3{bottom:693.000000px;}
.yf{bottom:699.010920px;}
.y46{bottom:701.100000px;}
.y6a{bottom:712.080000px;}
.y89{bottom:712.980000px;}
.y2c{bottom:721.800000px;}
.ye2{bottom:724.140000px;}
.ye{bottom:726.541920px;}
.y45{bottom:732.060000px;}
.y69{bottom:743.220000px;}
.y88{bottom:743.940000px;}
.y2b{bottom:752.760000px;}
.yd{bottom:754.072920px;}
.ye1{bottom:755.100000px;}
.y44{bottom:763.200000px;}
.y68{bottom:774.180000px;}
.y87{bottom:775.080000px;}
.yc{bottom:781.795440px;}
.ye0{bottom:782.100000px;}
.y2a{bottom:783.900000px;}
.y43{bottom:794.160000px;}
.y67{bottom:805.320000px;}
.y86{bottom:806.040000px;}
.yb{bottom:809.326440px;}
.y29{bottom:814.860000px;}
.y42{bottom:825.300000px;}
.y66{bottom:836.280000px;}
.ya{bottom:836.857440px;}
.y85{bottom:837.180000px;}
.y28{bottom:846.000000px;}
.y41{bottom:856.260000px;}
.y9{bottom:864.579960px;}
.y65{bottom:867.420000px;}
.y84{bottom:868.140000px;}
.y27{bottom:876.960000px;}
.y64{bottom:884.880000px;}
.y40{bottom:887.400000px;}
.y8{bottom:892.110960px;}
.y83{bottom:895.500000px;}
.y63{bottom:906.660000px;}
.y26{bottom:908.100000px;}
.y7{bottom:919.641960px;}
.y62{bottom:928.620000px;}
.y25{bottom:939.060000px;}
.y6{bottom:947.364480px;}
.y60{bottom:950.400000px;}
.y61{bottom:964.980000px;}
.y24{bottom:970.200000px;}
.y5{bottom:974.895480px;}
.y5f{bottom:993.420000px;}
.y23{bottom:1001.160000px;}
.y4{bottom:1002.426480px;}
.y5d{bottom:1015.200000px;}
.y3{bottom:1030.149000px;}
.y22{bottom:1032.300000px;}
.y5a{bottom:1040.760000px;}
.y2{bottom:1057.680000px;}
.y5b{bottom:1058.220000px;}
.y21{bottom:1063.260000px;}
.hc{height:14.746500px;}
.hf{height:14.748000px;}
.h16{height:19.791000px;}
.h6{height:21.060000px;}
.h13{height:30.643421px;}
.hd{height:31.516659px;}
.he{height:31.517259px;}
.hb{height:32.370000px;}
.h11{height:36.916361px;}
.ha{height:37.968357px;}
.h17{height:40.065000px;}
.h7{height:42.120000px;}
.h5{height:50.308594px;}
.h8{height:50.695312px;}
.h15{height:50.956503px;}
.h1{height:63.175781px;}
.h4{height:63.949219px;}
.h3{height:84.023789px;}
.h2{height:85.052461px;}
.h10{height:87.595500px;}
.h9{height:183.795000px;}
.h14{height:202.740000px;}
.h12{height:249.283500px;}
.h0{height:1188.000000px;}
.wb{width:61.431000px;}
.wa{width:61.432500px;}
.w2{width:64.800000px;}
.w4{width:64.980000px;}
.w3{width:64.981500px;}
.wc{width:66.453000px;}
.w9{width:66.840000px;}
.w7{width:72.727500px;}
.wf{width:284.763000px;}
.w1{width:325.800000px;}
.w5{width:339.120000px;}
.we{width:415.299000px;}
.w6{width:697.032000px;}
.wd{width:701.029500px;}
.w8{width:701.236500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x22{left:1.440150px;}
.x20{left:3.960300px;}
.xf{left:5.220000px;}
.x28{left:8.114700px;}
.x30{left:10.049489px;}
.x36{left:12.360061px;}
.x2a{left:14.294120px;}
.x2b{left:16.994345px;}
.x31{left:19.326608px;}
.x33{left:20.472381px;}
.x2f{left:22.799926px;}
.x21{left:25.202400px;}
.x39{left:48.343270px;}
.x25{left:54.900000px;}
.x26{left:97.380000px;}
.x3{left:108.709920px;}
.xe{left:123.300000px;}
.x14{left:126.360000px;}
.x5{left:128.316780px;}
.xc{left:131.220000px;}
.x16{left:136.800000px;}
.x6{left:156.398400px;}
.x9{left:162.000000px;}
.x27{left:170.202000px;}
.x1b{left:171.720000px;}
.x1d{left:175.500000px;}
.x3a{left:177.480000px;}
.x1a{left:180.180000px;}
.x2c{left:193.565100px;}
.x3c{left:202.860000px;}
.x29{left:237.429000px;}
.x7{left:256.300020px;}
.x1e{left:285.149400px;}
.x3d{left:316.672350px;}
.x2d{left:366.858000px;}
.x17{left:368.280000px;}
.x8{left:386.460000px;}
.xb{left:387.900000px;}
.x3e{left:393.730500px;}
.x24{left:397.980000px;}
.x4{left:399.580920px;}
.x23{left:401.220000px;}
.x1{left:405.720000px;}
.xa{left:407.520000px;}
.x2e{left:428.674500px;}
.x2{left:459.000000px;}
.xd{left:465.840000px;}
.x15{left:471.060000px;}
.x32{left:495.514500px;}
.x10{left:531.000000px;}
.x34{left:557.331000px;}
.x11{left:596.340000px;}
.x35{left:624.171000px;}
.x38{left:643.669500px;}
.x12{left:661.500000px;}
.x37{left:685.987500px;}
.x3b{left:706.500000px;}
.x13{left:726.840000px;}
.x1f{left:732.304500px;}
.x1c{left:805.860000px;}
.x18{left:810.000000px;}
.x19{left:864.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls35{letter-spacing:-0.832000pt;}
.ls2f{letter-spacing:-0.659066pt;}
.ls25{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.572925pt;}
.ls15{letter-spacing:-0.491078pt;}
.ls17{letter-spacing:-0.450155pt;}
.ls27{letter-spacing:-0.437683pt;}
.ls19{letter-spacing:-0.409232pt;}
.ls2b{letter-spacing:-0.384455pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.286462pt;}
.ls2d{letter-spacing:-0.274611pt;}
.ls0{letter-spacing:-0.256000pt;}
.ls30{letter-spacing:-0.219689pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.170240pt;}
.ls2c{letter-spacing:-0.164766pt;}
.ls26{letter-spacing:-0.159157pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls2e{letter-spacing:-0.109844pt;}
.ls28{letter-spacing:-0.079579pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.245539pt;}
.ls3{letter-spacing:0.340480pt;}
.ls22{letter-spacing:0.397893pt;}
.ls1f{letter-spacing:0.557051pt;}
.ls20{letter-spacing:0.596840pt;}
.ls1a{letter-spacing:0.613848pt;}
.ls13{letter-spacing:0.640000pt;}
.ls12{letter-spacing:1.280000pt;}
.ls1b{letter-spacing:1.920000pt;}
.lse{letter-spacing:2.560000pt;}
.lsd{letter-spacing:3.200000pt;}
.lsf{letter-spacing:3.840000pt;}
.ls1c{letter-spacing:4.480000pt;}
.ls8{letter-spacing:7.680000pt;}
.ls1e{letter-spacing:8.320000pt;}
.ls31{letter-spacing:8.960000pt;}
.ls33{letter-spacing:9.600000pt;}
.lsa{letter-spacing:10.240000pt;}
.ls29{letter-spacing:11.520000pt;}
.lsb{letter-spacing:12.160000pt;}
.ls37{letter-spacing:14.720000pt;}
.ls34{letter-spacing:15.360000pt;}
.ls32{letter-spacing:16.000000pt;}
.ls4{letter-spacing:20.480000pt;}
.ls1d{letter-spacing:24.320000pt;}
.ls2a{letter-spacing:119.785173pt;}
.ls21{letter-spacing:156.809763pt;}
.ls36{letter-spacing:176.000000pt;}
.ls24{letter-spacing:196.599096pt;}
.ls23{letter-spacing:199.344560pt;}
.ws6e{word-spacing:-190.471539pt;}
.ws82{word-spacing:-132.197575pt;}
.ws3{word-spacing:-21.620480pt;}
.ws2{word-spacing:-21.280000pt;}
.ws1{word-spacing:-21.109760pt;}
.ws2f{word-spacing:-16.192000pt;}
.ws30{word-spacing:-16.128000pt;}
.ws4d{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws4e{word-spacing:-15.808000pt;}
.ws56{word-spacing:-15.744000pt;}
.ws90{word-spacing:-15.168000pt;}
.ws3d{word-spacing:-13.952000pt;}
.ws89{word-spacing:-11.753337pt;}
.ws67{word-spacing:-9.589229pt;}
.ws6a{word-spacing:-9.549440pt;}
.ws59{word-spacing:-8.962181pt;}
.ws68{word-spacing:-8.833232pt;}
.ws58{word-spacing:-8.757565pt;}
.ws69{word-spacing:-8.554707pt;}
.ws51{word-spacing:-3.840000pt;}
.ws77{word-spacing:-3.712000pt;}
.ws52{word-spacing:-3.584000pt;}
.ws10{word-spacing:-3.200000pt;}
.ws74{word-spacing:-2.944000pt;}
.ws4f{word-spacing:-2.688000pt;}
.ws11{word-spacing:-2.560000pt;}
.ws24{word-spacing:-2.432000pt;}
.ws4a{word-spacing:-2.304000pt;}
.ws1d{word-spacing:-1.920000pt;}
.ws38{word-spacing:-1.664000pt;}
.ws45{word-spacing:-1.408000pt;}
.ws37{word-spacing:-1.280000pt;}
.ws9{word-spacing:-1.024000pt;}
.ws66{word-spacing:-0.900310pt;}
.ws5b{word-spacing:-0.853648pt;}
.ws5a{word-spacing:-0.853116pt;}
.ws76{word-spacing:-0.704000pt;}
.wsc{word-spacing:-0.640000pt;}
.ws7a{word-spacing:-0.596840pt;}
.ws7b{word-spacing:-0.557051pt;}
.ws63{word-spacing:-0.532002pt;}
.ws39{word-spacing:-0.384000pt;}
.ws7{word-spacing:-0.340480pt;}
.ws8e{word-spacing:-0.274611pt;}
.ws8c{word-spacing:-0.219689pt;}
.ws41{word-spacing:-0.192000pt;}
.ws6{word-spacing:-0.170240pt;}
.ws8f{word-spacing:-0.164766pt;}
.ws23{word-spacing:-0.128000pt;}
.ws8d{word-spacing:-0.109844pt;}
.ws5f{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws78{word-spacing:0.039789pt;}
.ws3f{word-spacing:0.064000pt;}
.ws64{word-spacing:0.122770pt;}
.ws40{word-spacing:0.128000pt;}
.ws61{word-spacing:0.163693pt;}
.ws53{word-spacing:0.192000pt;}
.ws4{word-spacing:0.256000pt;}
.ws65{word-spacing:0.286462pt;}
.ws3e{word-spacing:0.320000pt;}
.ws8b{word-spacing:0.384455pt;}
.ws79{word-spacing:0.437683pt;}
.ws60{word-spacing:0.491078pt;}
.ws5e{word-spacing:0.512000pt;}
.ws62{word-spacing:0.572925pt;}
.ws2c{word-spacing:0.640000pt;}
.ws7c{word-spacing:0.676419pt;}
.ws57{word-spacing:0.896000pt;}
.ws7d{word-spacing:1.034523pt;}
.ws31{word-spacing:1.152000pt;}
.ws9a{word-spacing:1.216000pt;}
.wsd{word-spacing:1.280000pt;}
.ws32{word-spacing:1.536000pt;}
.ws8a{word-spacing:1.792000pt;}
.wsa{word-spacing:1.920000pt;}
.ws96{word-spacing:2.112000pt;}
.ws81{word-spacing:2.176000pt;}
.ws17{word-spacing:2.560000pt;}
.ws2a{word-spacing:2.816000pt;}
.ws70{word-spacing:2.984200pt;}
.ws6d{word-spacing:2.988179pt;}
.ws9c{word-spacing:3.072000pt;}
.ws25{word-spacing:3.200000pt;}
.wsf{word-spacing:3.456000pt;}
.ws50{word-spacing:3.712000pt;}
.wse{word-spacing:3.840000pt;}
.ws21{word-spacing:3.968000pt;}
.ws2d{word-spacing:4.096000pt;}
.ws48{word-spacing:4.480000pt;}
.ws55{word-spacing:4.736000pt;}
.ws1f{word-spacing:5.120000pt;}
.ws20{word-spacing:5.184000pt;}
.ws5c{word-spacing:5.376000pt;}
.ws2b{word-spacing:5.760000pt;}
.ws54{word-spacing:6.400000pt;}
.ws36{word-spacing:6.656000pt;}
.ws80{word-spacing:7.040000pt;}
.ws18{word-spacing:7.168000pt;}
.ws43{word-spacing:7.296000pt;}
.ws3a{word-spacing:7.680000pt;}
.ws92{word-spacing:7.872000pt;}
.ws3b{word-spacing:7.936000pt;}
.ws3c{word-spacing:8.320000pt;}
.ws49{word-spacing:8.576000pt;}
.ws1c{word-spacing:8.960000pt;}
.ws95{word-spacing:9.216000pt;}
.ws99{word-spacing:9.472000pt;}
.ws91{word-spacing:9.600000pt;}
.ws22{word-spacing:9.728000pt;}
.ws46{word-spacing:9.856000pt;}
.ws13{word-spacing:10.240000pt;}
.ws42{word-spacing:10.496000pt;}
.ws7e{word-spacing:11.392000pt;}
.ws33{word-spacing:11.520000pt;}
.ws34{word-spacing:11.776000pt;}
.ws44{word-spacing:12.160000pt;}
.ws4c{word-spacing:12.416000pt;}
.ws2e{word-spacing:12.800000pt;}
.ws16{word-spacing:12.928000pt;}
.ws7f{word-spacing:13.312000pt;}
.ws26{word-spacing:13.440000pt;}
.ws27{word-spacing:13.568000pt;}
.ws12{word-spacing:14.080000pt;}
.ws35{word-spacing:14.336000pt;}
.wsb{word-spacing:14.720000pt;}
.ws9b{word-spacing:14.976000pt;}
.ws93{word-spacing:15.232000pt;}
.ws5d{word-spacing:15.360000pt;}
.ws94{word-spacing:15.616000pt;}
.ws98{word-spacing:15.872000pt;}
.ws97{word-spacing:16.256000pt;}
.ws1e{word-spacing:17.280000pt;}
.ws9d{word-spacing:19.840000pt;}
.ws15{word-spacing:20.608000pt;}
.ws47{word-spacing:22.400000pt;}
.ws14{word-spacing:24.320000pt;}
.ws75{word-spacing:24.576000pt;}
.ws4b{word-spacing:28.032000pt;}
.ws1b{word-spacing:28.800000pt;}
.ws1a{word-spacing:28.928000pt;}
.ws29{word-spacing:32.128000pt;}
.ws28{word-spacing:33.408000pt;}
.ws88{word-spacing:39.489014pt;}
.ws19{word-spacing:41.088000pt;}
.ws84{word-spacing:79.911704pt;}
.ws87{word-spacing:80.625692pt;}
.ws86{word-spacing:107.372771pt;}
.ws83{word-spacing:108.086758pt;}
.ws85{word-spacing:108.141681pt;}
.ws73{word-spacing:147.061376pt;}
.ws6b{word-spacing:169.017130pt;}
.ws6f{word-spacing:169.025088pt;}
.ws72{word-spacing:189.596173pt;}
.ws6c{word-spacing:190.352171pt;}
.ws71{word-spacing:284.294787pt;}
._14{margin-left:-199.344560pt;}
._1b{margin-left:-119.785173pt;}
._19{margin-left:-27.570911pt;}
._b{margin-left:-3.328000pt;}
._8{margin-left:-2.048000pt;}
._2{margin-left:-1.088000pt;}
._0{width:1.152000pt;}
._e{width:2.496000pt;}
._d{width:4.288000pt;}
._24{width:5.504000pt;}
._9{width:6.464000pt;}
._7{width:8.256000pt;}
._4{width:11.776000pt;}
._25{width:15.040000pt;}
._1d{width:108.973701pt;}
._1e{width:119.785173pt;}
._17{width:136.863528pt;}
._20{width:153.446092pt;}
._3{width:154.688000pt;}
._12{width:157.804496pt;}
._c{width:176.000000pt;}
._1a{width:177.172282pt;}
._16{width:178.375581pt;}
._5{width:182.144000pt;}
._6{width:183.424000pt;}
._11{width:196.599096pt;}
._10{width:217.209971pt;}
._f{width:219.565499pt;}
._18{width:272.668343pt;}
._13{width:292.845514pt;}
._15{width:313.810514pt;}
._1f{width:435.153522pt;}
._1c{width:453.003215pt;}
._22{width:562.846117pt;}
._23{width:610.517164pt;}
._21{width:655.278702pt;}
._1{width:752.000000pt;}
._a{width:2410.880000pt;}
.fs3{font-size:39.789333pt;}
.fs2{font-size:40.923200pt;}
.fs4{font-size:54.922133pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:2.876667pt;}
.ya4{bottom:2.876933pt;}
.ya8{bottom:2.877333pt;}
.yaa{bottom:2.877467pt;}
.yac{bottom:2.877600pt;}
.yae{bottom:2.877733pt;}
.yb1{bottom:2.877867pt;}
.yd6{bottom:3.119073pt;}
.y5c{bottom:3.520000pt;}
.yfb{bottom:3.862400pt;}
.yf9{bottom:4.288069pt;}
.ya2{bottom:4.475467pt;}
.yc6{bottom:9.613649pt;}
.yfd{bottom:13.302133pt;}
.yca{bottom:16.127456pt;}
.yd5{bottom:16.150080pt;}
.ya1{bottom:17.583600pt;}
.y5e{bottom:22.240000pt;}
.yf8{bottom:22.316260pt;}
.yc1{bottom:22.641129pt;}
.yc5{bottom:22.644656pt;}
.ybe{bottom:29.154936pt;}
.yc9{bottom:29.158463pt;}
.yd4{bottom:29.181087pt;}
.ybc{bottom:35.330533pt;}
.yc0{bottom:35.672136pt;}
.yc4{bottom:35.675663pt;}
.yf7{bottom:40.330719pt;}
.ybd{bottom:41.847733pt;}
.yc8{bottom:42.189469pt;}
.yd3{bottom:42.212093pt;}
.ybf{bottom:48.364933pt;}
.yc3{bottom:48.706669pt;}
.y1{bottom:51.520000pt;}
.yc7{bottom:54.882267pt;}
.yd2{bottom:55.243100pt;}
.yf6{bottom:58.345179pt;}
.yc2{bottom:61.399467pt;}
.yd1{bottom:68.274107pt;}
.yf5{bottom:76.373369pt;}
.yd0{bottom:81.305113pt;}
.ycf{bottom:94.336120pt;}
.yf4{bottom:94.401560pt;}
.ya6{bottom:97.191867pt;}
.yce{bottom:107.370520pt;}
.y59{bottom:108.000000pt;}
.y7d{bottom:108.640000pt;}
.y90{bottom:108.800000pt;}
.y9d{bottom:109.440000pt;}
.ya5{bottom:110.619733pt;}
.yf3{bottom:112.429750pt;}
.yba{bottom:115.520000pt;}
.y3f{bottom:117.120000pt;}
.ycd{bottom:120.401527pt;}
.yef{bottom:121.120000pt;}
.yf2{bottom:130.457940pt;}
.y8f{bottom:132.960000pt;}
.ycc{bottom:133.432533pt;}
.y58{bottom:135.520000pt;}
.y7c{bottom:136.160000pt;}
.y9c{bottom:136.960000pt;}
.yb9{bottom:143.200000pt;}
.ydf{bottom:143.360000pt;}
.y3e{bottom:144.800000pt;}
.yee{bottom:145.280000pt;}
.y9f{bottom:145.468400pt;}
.yf0{bottom:146.721333pt;}
.yf1{bottom:148.472400pt;}
.y57{bottom:163.200000pt;}
.y7b{bottom:163.840000pt;}
.y9b{bottom:164.640000pt;}
.yb8{bottom:167.360000pt;}
.ycb{bottom:167.718667pt;}
.yde{bottom:171.040000pt;}
.y3d{bottom:172.320000pt;}
.y56{bottom:190.720000pt;}
.y7a{bottom:191.360000pt;}
.y9a{bottom:192.160000pt;}
.ydd{bottom:198.560000pt;}
.y3c{bottom:200.000000pt;}
.y20{bottom:209.120000pt;}
.y55{bottom:218.400000pt;}
.y79{bottom:219.040000pt;}
.y99{bottom:219.840000pt;}
.ydc{bottom:226.240000pt;}
.y3b{bottom:227.520000pt;}
.y1f{bottom:228.939840pt;}
.y82{bottom:230.720000pt;}
.y54{bottom:245.920000pt;}
.y78{bottom:246.560000pt;}
.y98{bottom:247.360000pt;}
.y1e{bottom:253.411840pt;}
.ydb{bottom:253.760000pt;}
.y3a{bottom:255.200000pt;}
.y81{bottom:258.400000pt;}
.y53{bottom:273.600000pt;}
.y77{bottom:274.240000pt;}
.y97{bottom:275.040000pt;}
.y1d{bottom:277.883840pt;}
.yda{bottom:281.280000pt;}
.y39{bottom:282.720000pt;}
.y80{bottom:285.920000pt;}
.yfc{bottom:291.321333pt;}
.y52{bottom:301.120000pt;}
.y76{bottom:301.760000pt;}
.y1c{bottom:302.526080pt;}
.y96{bottom:302.560000pt;}
.yd9{bottom:308.960000pt;}
.yfa{bottom:309.342667pt;}
.y38{bottom:310.400000pt;}
.ybb{bottom:311.441333pt;}
.y7f{bottom:313.600000pt;}
.y1b{bottom:326.998080pt;}
.y51{bottom:328.800000pt;}
.y75{bottom:329.440000pt;}
.y95{bottom:330.240000pt;}
.yd8{bottom:336.480000pt;}
.y7e{bottom:337.760000pt;}
.y37{bottom:337.920000pt;}
.yed{bottom:340.160000pt;}
.y1a{bottom:351.470080pt;}
.y50{bottom:356.320000pt;}
.y74{bottom:356.960000pt;}
.y94{bottom:357.760000pt;}
.yd7{bottom:360.480000pt;}
.y36{bottom:365.600000pt;}
.yec{bottom:367.680000pt;}
.y19{bottom:376.112320pt;}
.y4f{bottom:384.000000pt;}
.y73{bottom:384.640000pt;}
.y93{bottom:385.440000pt;}
.y35{bottom:393.120000pt;}
.yeb{bottom:395.200000pt;}
.y18{bottom:400.584320pt;}
.yb7{bottom:402.400000pt;}
.y4e{bottom:411.520000pt;}
.y72{bottom:412.160000pt;}
.y92{bottom:412.960000pt;}
.y34{bottom:420.800000pt;}
.yea{bottom:422.880000pt;}
.y17{bottom:425.056320pt;}
.yb6{bottom:429.920000pt;}
.y91{bottom:437.280000pt;}
.y9e{bottom:437.538667pt;}
.yb2{bottom:437.858667pt;}
.y4d{bottom:439.200000pt;}
.y71{bottom:439.840000pt;}
.y33{bottom:448.320000pt;}
.y16{bottom:449.698560pt;}
.ye9{bottom:450.400000pt;}
.yb0{bottom:451.285333pt;}
.yb5{bottom:457.600000pt;}
.yaf{bottom:464.713333pt;}
.y4c{bottom:466.720000pt;}
.y70{bottom:467.360000pt;}
.y15{bottom:474.170560pt;}
.y32{bottom:476.000000pt;}
.ye8{bottom:478.080000pt;}
.yad{bottom:478.141333pt;}
.yb4{bottom:485.120000pt;}
.yab{bottom:491.569333pt;}
.y4b{bottom:494.400000pt;}
.y6f{bottom:495.040000pt;}
.y8e{bottom:495.840000pt;}
.y14{bottom:498.642560pt;}
.y31{bottom:503.520000pt;}
.ya9{bottom:504.997333pt;}
.ye7{bottom:505.600000pt;}
.y4a{bottom:512.800000pt;}
.ya7{bottom:518.425333pt;}
.y6e{bottom:522.560000pt;}
.y13{bottom:523.284800pt;}
.y8d{bottom:523.360000pt;}
.y30{bottom:531.200000pt;}
.ye6{bottom:533.280000pt;}
.y49{bottom:540.320000pt;}
.y12{bottom:547.756800pt;}
.y6d{bottom:550.240000pt;}
.y8c{bottom:550.880000pt;}
.ya3{bottom:558.709333pt;}
.y2f{bottom:558.720000pt;}
.ye5{bottom:560.800000pt;}
.y48{bottom:568.000000pt;}
.ya0{bottom:572.137333pt;}
.y11{bottom:572.228800pt;}
.y6c{bottom:577.760000pt;}
.y8b{bottom:578.560000pt;}
.y2e{bottom:586.400000pt;}
.ye4{bottom:588.480000pt;}
.y47{bottom:595.520000pt;}
.y10{bottom:596.871040pt;}
.y6b{bottom:605.440000pt;}
.y8a{bottom:606.080000pt;}
.y2d{bottom:613.920000pt;}
.ye3{bottom:616.000000pt;}
.yf{bottom:621.343040pt;}
.y46{bottom:623.200000pt;}
.y6a{bottom:632.960000pt;}
.y89{bottom:633.760000pt;}
.y2c{bottom:641.600000pt;}
.ye2{bottom:643.680000pt;}
.ye{bottom:645.815040pt;}
.y45{bottom:650.720000pt;}
.y69{bottom:660.640000pt;}
.y88{bottom:661.280000pt;}
.y2b{bottom:669.120000pt;}
.yd{bottom:670.287040pt;}
.ye1{bottom:671.200000pt;}
.y44{bottom:678.400000pt;}
.y68{bottom:688.160000pt;}
.y87{bottom:688.960000pt;}
.yc{bottom:694.929280pt;}
.ye0{bottom:695.200000pt;}
.y2a{bottom:696.800000pt;}
.y43{bottom:705.920000pt;}
.y67{bottom:715.840000pt;}
.y86{bottom:716.480000pt;}
.yb{bottom:719.401280pt;}
.y29{bottom:724.320000pt;}
.y42{bottom:733.600000pt;}
.y66{bottom:743.360000pt;}
.ya{bottom:743.873280pt;}
.y85{bottom:744.160000pt;}
.y28{bottom:752.000000pt;}
.y41{bottom:761.120000pt;}
.y9{bottom:768.515520pt;}
.y65{bottom:771.040000pt;}
.y84{bottom:771.680000pt;}
.y27{bottom:779.520000pt;}
.y64{bottom:786.560000pt;}
.y40{bottom:788.800000pt;}
.y8{bottom:792.987520pt;}
.y83{bottom:796.000000pt;}
.y63{bottom:805.920000pt;}
.y26{bottom:807.200000pt;}
.y7{bottom:817.459520pt;}
.y62{bottom:825.440000pt;}
.y25{bottom:834.720000pt;}
.y6{bottom:842.101760pt;}
.y60{bottom:844.800000pt;}
.y61{bottom:857.760000pt;}
.y24{bottom:862.400000pt;}
.y5{bottom:866.573760pt;}
.y5f{bottom:883.040000pt;}
.y23{bottom:889.920000pt;}
.y4{bottom:891.045760pt;}
.y5d{bottom:902.400000pt;}
.y3{bottom:915.688000pt;}
.y22{bottom:917.600000pt;}
.y5a{bottom:925.120000pt;}
.y2{bottom:940.160000pt;}
.y5b{bottom:940.640000pt;}
.y21{bottom:945.120000pt;}
.hc{height:13.108000pt;}
.hf{height:13.109333pt;}
.h16{height:17.592000pt;}
.h6{height:18.720000pt;}
.h13{height:27.238596pt;}
.hd{height:28.014808pt;}
.he{height:28.015341pt;}
.hb{height:28.773333pt;}
.h11{height:32.814543pt;}
.ha{height:33.749651pt;}
.h17{height:35.613333pt;}
.h7{height:37.440000pt;}
.h5{height:44.718750pt;}
.h8{height:45.062500pt;}
.h15{height:45.294670pt;}
.h1{height:56.156250pt;}
.h4{height:56.843750pt;}
.h3{height:74.687812pt;}
.h2{height:75.602187pt;}
.h10{height:77.862667pt;}
.h9{height:163.373333pt;}
.h14{height:180.213333pt;}
.h12{height:221.585333pt;}
.h0{height:1056.000000pt;}
.wb{width:54.605333pt;}
.wa{width:54.606667pt;}
.w2{width:57.600000pt;}
.w4{width:57.760000pt;}
.w3{width:57.761333pt;}
.wc{width:59.069333pt;}
.w9{width:59.413333pt;}
.w7{width:64.646667pt;}
.wf{width:253.122667pt;}
.w1{width:289.600000pt;}
.w5{width:301.440000pt;}
.we{width:369.154667pt;}
.w6{width:619.584000pt;}
.wd{width:623.137333pt;}
.w8{width:623.321333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x22{left:1.280133pt;}
.x20{left:3.520267pt;}
.xf{left:4.640000pt;}
.x28{left:7.213067pt;}
.x30{left:8.932879pt;}
.x36{left:10.986721pt;}
.x2a{left:12.705885pt;}
.x2b{left:15.106084pt;}
.x31{left:17.179207pt;}
.x33{left:18.197672pt;}
.x2f{left:20.266601pt;}
.x21{left:22.402133pt;}
.x39{left:42.971795pt;}
.x25{left:48.800000pt;}
.x26{left:86.560000pt;}
.x3{left:96.631040pt;}
.xe{left:109.600000pt;}
.x14{left:112.320000pt;}
.x5{left:114.059360pt;}
.xc{left:116.640000pt;}
.x16{left:121.600000pt;}
.x6{left:139.020800pt;}
.x9{left:144.000000pt;}
.x27{left:151.290667pt;}
.x1b{left:152.640000pt;}
.x1d{left:156.000000pt;}
.x3a{left:157.760000pt;}
.x1a{left:160.160000pt;}
.x2c{left:172.057867pt;}
.x3c{left:180.320000pt;}
.x29{left:211.048000pt;}
.x7{left:227.822240pt;}
.x1e{left:253.466133pt;}
.x3d{left:281.486533pt;}
.x2d{left:326.096000pt;}
.x17{left:327.360000pt;}
.x8{left:343.520000pt;}
.xb{left:344.800000pt;}
.x3e{left:349.982667pt;}
.x24{left:353.760000pt;}
.x4{left:355.183040pt;}
.x23{left:356.640000pt;}
.x1{left:360.640000pt;}
.xa{left:362.240000pt;}
.x2e{left:381.044000pt;}
.x2{left:408.000000pt;}
.xd{left:414.080000pt;}
.x15{left:418.720000pt;}
.x32{left:440.457333pt;}
.x10{left:472.000000pt;}
.x34{left:495.405333pt;}
.x11{left:530.080000pt;}
.x35{left:554.818667pt;}
.x38{left:572.150667pt;}
.x12{left:588.000000pt;}
.x37{left:609.766667pt;}
.x3b{left:628.000000pt;}
.x13{left:646.080000pt;}
.x1f{left:650.937333pt;}
.x1c{left:716.320000pt;}
.x18{left:720.000000pt;}
.x19{left:768.000000pt;}
}




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