
    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_240dfc3037c16a0a9abba7f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973000;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_7e8a049d1f0f85817a0e735e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.953000;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_9c4ac74fed8abe4cf1e6928c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_3818677f65f94d51b5b3cfd1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970000;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_74719c8dcbc3a3db2d816e48.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973000;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_44a2cec14e079e5ac077496a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,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.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-3.243000px;}
.lsb{letter-spacing:-2.277000px;}
.lse{letter-spacing:-2.001000px;}
.ls2{letter-spacing:-1.728000px;}
.lsc{letter-spacing:-1.587000px;}
.ls14{letter-spacing:-1.566000px;}
.ls1b{letter-spacing:-1.512000px;}
.ls6{letter-spacing:-1.311000px;}
.ls9{letter-spacing:-1.173000px;}
.lsf{letter-spacing:-1.104000px;}
.ls19{letter-spacing:-1.026000px;}
.ls16{letter-spacing:-0.918000px;}
.ls4{letter-spacing:-0.897000px;}
.ls18{letter-spacing:-0.702000px;}
.lsa{letter-spacing:-0.690000px;}
.ls15{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.486000px;}
.ls5{letter-spacing:-0.483000px;}
.ls1a{letter-spacing:-0.378000px;}
.lsd{letter-spacing:-0.276000px;}
.ls7{letter-spacing:-0.207000px;}
.ls12{letter-spacing:-0.198000px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.270000px;}
.ls8{letter-spacing:0.414000px;}
.ls0{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.690000px;}
.ls11{letter-spacing:1.449000px;}
.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;}
}
.wsc8{word-spacing:-17.250000px;}
.wsae{word-spacing:-16.491000px;}
.ws21{word-spacing:-16.353000px;}
.ws22{word-spacing:-16.215000px;}
.ws23{word-spacing:-15.801000px;}
.ws62{word-spacing:-15.525000px;}
.ws60{word-spacing:-15.318000px;}
.ws61{word-spacing:-15.111000px;}
.ws88{word-spacing:-14.904000px;}
.ws87{word-spacing:-14.697000px;}
.ws47{word-spacing:-14.628000px;}
.ws1{word-spacing:-14.490000px;}
.ws46{word-spacing:-14.437200px;}
.wsdd{word-spacing:-14.124000px;}
.ws7a{word-spacing:-13.800000px;}
.ws5f{word-spacing:-13.524000px;}
.ws105{word-spacing:-12.906000px;}
.ws89{word-spacing:-12.558000px;}
.ws101{word-spacing:-12.366000px;}
.wse0{word-spacing:-12.258000px;}
.ws103{word-spacing:-11.988000px;}
.wsde{word-spacing:-11.880000px;}
.wse2{word-spacing:-11.718000px;}
.wse3{word-spacing:-11.556000px;}
.wse1{word-spacing:-11.448000px;}
.ws102{word-spacing:-11.340000px;}
.ws104{word-spacing:-10.854000px;}
.wsdf{word-spacing:-10.800000px;}
.ws0{word-spacing:-10.530000px;}
.ws2{word-spacing:-9.534000px;}
.wsac{word-spacing:-7.383000px;}
.wsb0{word-spacing:-7.107000px;}
.wsaf{word-spacing:-6.831000px;}
.wsab{word-spacing:-6.693000px;}
.ws15{word-spacing:-3.519000px;}
.ws95{word-spacing:-3.450000px;}
.wsad{word-spacing:-3.381000px;}
.ws2f{word-spacing:-3.243000px;}
.ws30{word-spacing:-3.174000px;}
.wsd9{word-spacing:-3.105000px;}
.wse4{word-spacing:-3.024000px;}
.ws6e{word-spacing:-2.967000px;}
.ws12{word-spacing:-2.898000px;}
.ws77{word-spacing:-2.760000px;}
.ws5b{word-spacing:-2.691000px;}
.wsb1{word-spacing:-2.553000px;}
.wsd1{word-spacing:-2.484000px;}
.wsfd{word-spacing:-2.430000px;}
.ws6f{word-spacing:-2.415000px;}
.wsef{word-spacing:-2.376000px;}
.wsdc{word-spacing:-2.277000px;}
.ws10b{word-spacing:-2.214000px;}
.ws7c{word-spacing:-2.208000px;}
.ws35{word-spacing:-2.139000px;}
.wsd7{word-spacing:-2.070000px;}
.wsd5{word-spacing:-2.001000px;}
.wsaa{word-spacing:-1.932000px;}
.ws10f{word-spacing:-1.890000px;}
.ws44{word-spacing:-1.863000px;}
.wscc{word-spacing:-1.794000px;}
.wsc3{word-spacing:-1.725000px;}
.ws45{word-spacing:-1.656000px;}
.ws2d{word-spacing:-1.587000px;}
.wsb2{word-spacing:-1.449000px;}
.wsdb{word-spacing:-1.380000px;}
.wsa7{word-spacing:-1.311000px;}
.ws8c{word-spacing:-1.242000px;}
.ws2a{word-spacing:-1.173000px;}
.wseb{word-spacing:-1.134000px;}
.ws8{word-spacing:-1.104000px;}
.wsec{word-spacing:-0.972000px;}
.wsf{word-spacing:-0.897000px;}
.ws74{word-spacing:-0.828000px;}
.wse5{word-spacing:-0.810000px;}
.wsb3{word-spacing:-0.759000px;}
.ws107{word-spacing:-0.756000px;}
.ws18{word-spacing:-0.690000px;}
.ws5e{word-spacing:-0.621000px;}
.ws83{word-spacing:-0.552000px;}
.ws10c{word-spacing:-0.486000px;}
.ws81{word-spacing:-0.483000px;}
.ws80{word-spacing:-0.414000px;}
.ws33{word-spacing:-0.345000px;}
.ws3{word-spacing:-0.270000px;}
.wsc2{word-spacing:-0.207000px;}
.ws8e{word-spacing:-0.138000px;}
.ws8d{word-spacing:-0.069000px;}
.ws4{word-spacing:0.000000px;}
.ws75{word-spacing:0.069000px;}
.ws40{word-spacing:0.138000px;}
.ws114{word-spacing:0.162000px;}
.ws8b{word-spacing:0.207000px;}
.ws115{word-spacing:0.216000px;}
.wsf0{word-spacing:0.270000px;}
.ws32{word-spacing:0.276000px;}
.ws2b{word-spacing:0.345000px;}
.wse{word-spacing:0.414000px;}
.ws37{word-spacing:0.483000px;}
.ws106{word-spacing:0.540000px;}
.wsbd{word-spacing:0.621000px;}
.ws84{word-spacing:0.690000px;}
.ws11b{word-spacing:0.702000px;}
.ws6c{word-spacing:0.759000px;}
.wsfa{word-spacing:0.810000px;}
.wsb5{word-spacing:0.828000px;}
.wsa{word-spacing:0.897000px;}
.ws27{word-spacing:0.966000px;}
.ws108{word-spacing:1.026000px;}
.ws6a{word-spacing:1.035000px;}
.wsf8{word-spacing:1.080000px;}
.wsb7{word-spacing:1.104000px;}
.wsf9{word-spacing:1.134000px;}
.ws52{word-spacing:1.173000px;}
.ws49{word-spacing:1.242000px;}
.ws109{word-spacing:1.296000px;}
.ws69{word-spacing:1.311000px;}
.ws10d{word-spacing:1.404000px;}
.wsd{word-spacing:1.449000px;}
.ws10e{word-spacing:1.458000px;}
.ws100{word-spacing:1.512000px;}
.wsb9{word-spacing:1.518000px;}
.ws72{word-spacing:1.587000px;}
.ws5d{word-spacing:1.656000px;}
.wsc5{word-spacing:1.725000px;}
.ws5a{word-spacing:1.794000px;}
.ws26{word-spacing:1.932000px;}
.ws9f{word-spacing:2.070000px;}
.ws48{word-spacing:2.139000px;}
.ws58{word-spacing:2.208000px;}
.ws11e{word-spacing:2.268000px;}
.ws3f{word-spacing:2.277000px;}
.ws51{word-spacing:2.346000px;}
.wsf5{word-spacing:2.376000px;}
.wsd4{word-spacing:2.415000px;}
.wscb{word-spacing:2.484000px;}
.wsd3{word-spacing:2.622000px;}
.wsee{word-spacing:2.646000px;}
.ws39{word-spacing:2.691000px;}
.wsed{word-spacing:2.700000px;}
.wsc1{word-spacing:2.760000px;}
.ws9a{word-spacing:2.829000px;}
.wsd2{word-spacing:2.898000px;}
.ws9{word-spacing:2.967000px;}
.ws5{word-spacing:3.036000px;}
.ws1b{word-spacing:3.105000px;}
.wsf6{word-spacing:3.132000px;}
.wscf{word-spacing:3.174000px;}
.ws4f{word-spacing:3.243000px;}
.ws1d{word-spacing:3.312000px;}
.ws1e{word-spacing:3.381000px;}
.ws7b{word-spacing:3.450000px;}
.ws10a{word-spacing:3.510000px;}
.ws41{word-spacing:3.519000px;}
.ws4c{word-spacing:3.588000px;}
.ws9b{word-spacing:3.657000px;}
.ws116{word-spacing:3.672000px;}
.wsa0{word-spacing:3.726000px;}
.wsc4{word-spacing:3.795000px;}
.ws117{word-spacing:3.834000px;}
.wsbe{word-spacing:3.864000px;}
.ws42{word-spacing:3.933000px;}
.ws71{word-spacing:4.002000px;}
.ws8a{word-spacing:4.071000px;}
.ws11f{word-spacing:4.104000px;}
.ws7{word-spacing:4.140000px;}
.ws112{word-spacing:4.158000px;}
.ws1f{word-spacing:4.209000px;}
.ws29{word-spacing:4.278000px;}
.wsa1{word-spacing:4.347000px;}
.wsbb{word-spacing:4.485000px;}
.ws7d{word-spacing:4.554000px;}
.wsc9{word-spacing:4.623000px;}
.ws7f{word-spacing:4.692000px;}
.ws2c{word-spacing:4.761000px;}
.ws111{word-spacing:4.806000px;}
.wsbf{word-spacing:4.830000px;}
.wsfc{word-spacing:4.860000px;}
.ws78{word-spacing:4.968000px;}
.wsc{word-spacing:5.037000px;}
.wsa6{word-spacing:5.106000px;}
.ws4d{word-spacing:5.175000px;}
.ws76{word-spacing:5.244000px;}
.ws2e{word-spacing:5.313000px;}
.ws6d{word-spacing:5.382000px;}
.ws63{word-spacing:5.451000px;}
.wsfe{word-spacing:5.454000px;}
.wsff{word-spacing:5.508000px;}
.ws36{word-spacing:5.520000px;}
.wsb{word-spacing:5.589000px;}
.wse8{word-spacing:5.616000px;}
.wsb8{word-spacing:5.658000px;}
.ws113{word-spacing:5.724000px;}
.ws53{word-spacing:5.796000px;}
.ws65{word-spacing:5.934000px;}
.ws110{word-spacing:5.940000px;}
.wsca{word-spacing:6.072000px;}
.ws10{word-spacing:6.141000px;}
.ws57{word-spacing:6.210000px;}
.ws19{word-spacing:6.279000px;}
.ws3c{word-spacing:6.348000px;}
.ws3b{word-spacing:6.417000px;}
.ws1c{word-spacing:6.486000px;}
.ws96{word-spacing:6.555000px;}
.ws50{word-spacing:6.624000px;}
.ws43{word-spacing:6.693000px;}
.ws11c{word-spacing:6.804000px;}
.ws9d{word-spacing:6.831000px;}
.ws59{word-spacing:6.900000px;}
.ws7e{word-spacing:6.969000px;}
.wsa8{word-spacing:7.038000px;}
.ws79{word-spacing:7.107000px;}
.ws11a{word-spacing:7.128000px;}
.ws55{word-spacing:7.176000px;}
.ws16{word-spacing:7.245000px;}
.ws118{word-spacing:7.290000px;}
.ws68{word-spacing:7.314000px;}
.wsba{word-spacing:7.452000px;}
.wsa5{word-spacing:7.521000px;}
.ws4a{word-spacing:7.590000px;}
.ws31{word-spacing:7.659000px;}
.ws4b{word-spacing:7.728000px;}
.wsd8{word-spacing:7.797000px;}
.wsa4{word-spacing:7.866000px;}
.wse6{word-spacing:7.884000px;}
.wsc6{word-spacing:7.935000px;}
.wse7{word-spacing:7.938000px;}
.ws98{word-spacing:8.004000px;}
.ws9e{word-spacing:8.073000px;}
.ws1a{word-spacing:8.142000px;}
.wsa3{word-spacing:8.280000px;}
.wsfb{word-spacing:8.370000px;}
.wsd0{word-spacing:8.418000px;}
.ws93{word-spacing:8.556000px;}
.ws6{word-spacing:8.625000px;}
.wsa2{word-spacing:8.694000px;}
.ws70{word-spacing:8.763000px;}
.wsc7{word-spacing:8.832000px;}
.wse9{word-spacing:8.910000px;}
.wsb6{word-spacing:8.970000px;}
.wsea{word-spacing:9.018000px;}
.ws13{word-spacing:9.039000px;}
.ws97{word-spacing:9.108000px;}
.wsf3{word-spacing:9.126000px;}
.ws54{word-spacing:9.177000px;}
.wsf7{word-spacing:9.180000px;}
.wsda{word-spacing:9.315000px;}
.ws4e{word-spacing:9.384000px;}
.ws24{word-spacing:9.453000px;}
.ws25{word-spacing:9.522000px;}
.wsbc{word-spacing:9.591000px;}
.ws85{word-spacing:9.660000px;}
.wsf4{word-spacing:9.720000px;}
.ws94{word-spacing:9.729000px;}
.ws92{word-spacing:9.867000px;}
.ws28{word-spacing:9.936000px;}
.ws64{word-spacing:10.005000px;}
.ws56{word-spacing:10.212000px;}
.wsa9{word-spacing:10.281000px;}
.ws99{word-spacing:10.350000px;}
.ws119{word-spacing:10.476000px;}
.ws3e{word-spacing:10.488000px;}
.wsb4{word-spacing:10.557000px;}
.ws3d{word-spacing:10.626000px;}
.ws8f{word-spacing:11.040000px;}
.wsd6{word-spacing:11.109000px;}
.ws73{word-spacing:11.316000px;}
.ws82{word-spacing:11.661000px;}
.ws14{word-spacing:11.730000px;}
.ws3a{word-spacing:11.868000px;}
.ws6b{word-spacing:12.006000px;}
.ws9c{word-spacing:12.144000px;}
.ws17{word-spacing:12.213000px;}
.ws90{word-spacing:12.351000px;}
.ws38{word-spacing:12.903000px;}
.wscd{word-spacing:13.179000px;}
.wsce{word-spacing:13.524000px;}
.ws5c{word-spacing:13.800000px;}
.ws34{word-spacing:13.869000px;}
.wsf1{word-spacing:14.256000px;}
.ws86{word-spacing:14.766000px;}
.ws91{word-spacing:14.835000px;}
.wsf2{word-spacing:14.904000px;}
.ws67{word-spacing:15.594000px;}
.ws66{word-spacing:15.732000px;}
.wsc0{word-spacing:16.077000px;}
.ws11{word-spacing:17.181000px;}
.ws11d{word-spacing:808.123200px;}
.ws20{word-spacing:838.651200px;}
._e{margin-left:-1558.205400px;}
._13{margin-left:-22.994400px;}
._12{margin-left:-14.978400px;}
._14{margin-left:-12.785941px;}
._10{margin-left:-10.118400px;}
._2{margin-left:-8.160000px;}
._4{margin-left:-6.730800px;}
._3{margin-left:-5.454300px;}
._6{margin-left:-4.347000px;}
._a{margin-left:-3.267900px;}
._7{margin-left:-2.202000px;}
._0{margin-left:-1.188000px;}
._1{width:1.404000px;}
._8{width:2.693100px;}
._5{width:4.522500px;}
._9{width:6.458100px;}
._f{width:8.211000px;}
._b{width:9.439200px;}
._d{width:10.783200px;}
._c{width:14.147400px;}
._11{width:16.157400px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:42.000000px;}
.fs6{font-size:51.600000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:63.600000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:97.915050px;}
.y63{bottom:98.602800px;}
.y49{bottom:100.629300px;}
.y80{bottom:100.823400px;}
.y10c{bottom:106.104900px;}
.y6b{bottom:108.902550px;}
.y1e{bottom:110.189400px;}
.ye1{bottom:115.168050px;}
.y62{bottom:119.458050px;}
.y48{bottom:121.484550px;}
.y7f{bottom:121.678650px;}
.y10b{bottom:122.604900px;}
.y6a{bottom:129.757800px;}
.y1d{bottom:131.044650px;}
.ye0{bottom:132.421050px;}
.y10a{bottom:139.110900px;}
.y61{bottom:140.313300px;}
.y47{bottom:142.339800px;}
.yb4{bottom:142.450050px;}
.y7e{bottom:142.523550px;}
.y9e{bottom:142.528800px;}
.ydf{bottom:149.674050px;}
.y69{bottom:150.613050px;}
.y1c{bottom:151.899900px;}
.y109{bottom:155.607900px;}
.y60{bottom:161.168550px;}
.y46{bottom:163.195050px;}
.yb3{bottom:163.305300px;}
.y9d{bottom:163.352550px;}
.y7d{bottom:163.378800px;}
.yde{bottom:166.918050px;}
.y68{bottom:171.468300px;}
.y108{bottom:172.104900px;}
.y1b{bottom:172.755150px;}
.y5f{bottom:182.023800px;}
.y45{bottom:184.050300px;}
.yb2{bottom:184.160550px;}
.ydd{bottom:184.171050px;}
.y9c{bottom:184.207800px;}
.y7c{bottom:184.228800px;}
.y67{bottom:192.323550px;}
.y1a{bottom:193.610400px;}
.ydc{bottom:201.424050px;}
.y5e{bottom:202.879050px;}
.y107{bottom:203.604900px;}
.y44{bottom:204.905550px;}
.yb1{bottom:205.015800px;}
.y9b{bottom:205.063050px;}
.y7b{bottom:205.068300px;}
.y66{bottom:213.178800px;}
.y19{bottom:214.465650px;}
.ydb{bottom:218.563050px;}
.y5d{bottom:223.734300px;}
.y43{bottom:225.760800px;}
.yb0{bottom:225.871050px;}
.y9a{bottom:225.918300px;}
.y7a{bottom:225.923550px;}
.y18{bottom:235.320900px;}
.yda{bottom:235.816050px;}
.y5c{bottom:244.589550px;}
.y42{bottom:246.616050px;}
.yaf{bottom:246.726300px;}
.y99{bottom:246.773550px;}
.y79{bottom:246.778800px;}
.yd9{bottom:253.069050px;}
.y106{bottom:256.107900px;}
.y17{bottom:256.176150px;}
.y65{bottom:262.522800px;}
.y5b{bottom:265.444800px;}
.y41{bottom:267.471300px;}
.yae{bottom:267.581550px;}
.y78{bottom:267.623550px;}
.y98{bottom:267.628800px;}
.yd8{bottom:270.322050px;}
.y105{bottom:272.604900px;}
.y16{bottom:277.031400px;}
.y64{bottom:283.528800px;}
.y5a{bottom:286.300050px;}
.yd7{bottom:287.575050px;}
.y40{bottom:288.326550px;}
.yad{bottom:288.436800px;}
.y97{bottom:288.473400px;}
.y77{bottom:288.478800px;}
.y15{bottom:297.886650px;}
.y104{bottom:298.020900px;}
.yd6{bottom:304.828050px;}
.y59{bottom:307.155300px;}
.y3f{bottom:309.181800px;}
.yac{bottom:309.292050px;}
.y76{bottom:309.328650px;}
.y103{bottom:314.517900px;}
.y14{bottom:318.741900px;}
.yd5{bottom:322.081050px;}
.y58{bottom:328.010550px;}
.y3e{bottom:330.037050px;}
.yab{bottom:330.147300px;}
.y96{bottom:330.168300px;}
.y75{bottom:330.178800px;}
.yd4{bottom:339.334050px;}
.y13{bottom:339.597150px;}
.y102{bottom:340.019400px;}
.y57{bottom:348.865800px;}
.y3d{bottom:350.892300px;}
.y74{bottom:350.986650px;}
.yaa{bottom:351.002550px;}
.y95{bottom:351.023550px;}
.y101{bottom:356.516400px;}
.yd3{bottom:356.587050px;}
.y12{bottom:360.452400px;}
.y56{bottom:369.721050px;}
.y3c{bottom:371.747550px;}
.y73{bottom:371.841900px;}
.ya9{bottom:371.857800px;}
.y94{bottom:371.878800px;}
.yd2{bottom:373.840050px;}
.y11{bottom:381.307650px;}
.y55{bottom:390.576300px;}
.yd1{bottom:391.093050px;}
.y3b{bottom:392.602800px;}
.y72{bottom:392.697150px;}
.ya8{bottom:392.713050px;}
.y93{bottom:392.728800px;}
.y100{bottom:395.517900px;}
.y10{bottom:402.162900px;}
.yd0{bottom:408.346050px;}
.y54{bottom:411.431550px;}
.yff{bottom:412.770900px;}
.y3a{bottom:413.458050px;}
.y71{bottom:413.552400px;}
.ya7{bottom:413.568300px;}
.y92{bottom:413.573550px;}
.yf{bottom:423.018150px;}
.ycf{bottom:425.599050px;}
.yfe{bottom:430.023900px;}
.y53{bottom:432.286800px;}
.y39{bottom:434.313300px;}
.y70{bottom:434.407650px;}
.ya6{bottom:434.423550px;}
.y91{bottom:434.428800px;}
.yce{bottom:442.852050px;}
.ye{bottom:443.873400px;}
.yfd{bottom:447.276900px;}
.y52{bottom:453.142050px;}
.y38{bottom:455.168550px;}
.y6f{bottom:455.262900px;}
.y90{bottom:455.278800px;}
.ycd{bottom:460.105050px;}
.yfc{bottom:464.529900px;}
.yd{bottom:464.728650px;}
.y51{bottom:473.997300px;}
.y37{bottom:476.023800px;}
.y6e{bottom:476.118150px;}
.ycc{bottom:477.358050px;}
.yfb{bottom:481.782900px;}
.yc{bottom:485.583900px;}
.ycb{bottom:494.611050px;}
.y50{bottom:494.852550px;}
.y36{bottom:496.879050px;}
.y6d{bottom:496.973400px;}
.yfa{bottom:499.035900px;}
.yb{bottom:506.439150px;}
.yca{bottom:511.864050px;}
.y4f{bottom:515.707800px;}
.yf9{bottom:516.288900px;}
.y35{bottom:517.734300px;}
.y6c{bottom:517.828650px;}
.ya{bottom:527.294400px;}
.yc9{bottom:529.117050px;}
.yf8{bottom:533.541900px;}
.y4e{bottom:536.563050px;}
.y34{bottom:538.589550px;}
.y8f{bottom:538.668300px;}
.yc8{bottom:546.370050px;}
.y9{bottom:548.149650px;}
.yf7{bottom:550.794900px;}
.y4d{bottom:557.418300px;}
.y33{bottom:559.444800px;}
.y8e{bottom:559.523550px;}
.yc7{bottom:563.623050px;}
.yf6{bottom:568.047900px;}
.y8{bottom:569.004900px;}
.y4c{bottom:578.273550px;}
.y32{bottom:580.300050px;}
.y8d{bottom:580.378800px;}
.yc6{bottom:580.876050px;}
.yf5{bottom:585.300900px;}
.yc5{bottom:598.129050px;}
.y4b{bottom:599.128800px;}
.y31{bottom:601.155300px;}
.y8c{bottom:601.207800px;}
.ya5{bottom:601.228800px;}
.yf4{bottom:602.553900px;}
.y7{bottom:612.354900px;}
.yc4{bottom:615.382050px;}
.yf3{bottom:619.806900px;}
.y30{bottom:622.010550px;}
.y8b{bottom:622.063050px;}
.yc3{bottom:632.635050px;}
.yf2{bottom:637.059900px;}
.y4a{bottom:642.478800px;}
.y2f{bottom:642.865800px;}
.y8a{bottom:642.918300px;}
.yc2{bottom:649.888050px;}
.yf1{bottom:654.312900px;}
.y2e{bottom:663.721050px;}
.y89{bottom:663.773550px;}
.yc1{bottom:667.141050px;}
.yf0{bottom:671.565900px;}
.y6{bottom:678.378900px;}
.yc0{bottom:684.394050px;}
.y2d{bottom:684.576300px;}
.y88{bottom:684.628800px;}
.yef{bottom:688.818900px;}
.ybf{bottom:701.647050px;}
.y2c{bottom:705.431550px;}
.y87{bottom:705.463050px;}
.ya4{bottom:705.468150px;}
.yee{bottom:706.071900px;}
.y5{bottom:706.866900px;}
.ybe{bottom:718.900050px;}
.yed{bottom:723.324900px;}
.y2b{bottom:726.286800px;}
.y86{bottom:726.318300px;}
.ya3{bottom:726.323400px;}
.y4{bottom:735.354900px;}
.ybd{bottom:736.153050px;}
.yec{bottom:740.577900px;}
.y2a{bottom:747.142050px;}
.y85{bottom:747.173550px;}
.ya2{bottom:747.178650px;}
.ybc{bottom:753.406050px;}
.yeb{bottom:757.830900px;}
.y29{bottom:767.997300px;}
.ya1{bottom:768.023550px;}
.y84{bottom:768.028800px;}
.ybb{bottom:770.659050px;}
.yea{bottom:775.083900px;}
.yba{bottom:787.912050px;}
.y28{bottom:788.852550px;}
.y83{bottom:788.873550px;}
.ya0{bottom:788.878800px;}
.ye9{bottom:792.336900px;}
.yb9{bottom:805.165050px;}
.ye8{bottom:809.589900px;}
.y27{bottom:809.707800px;}
.y9f{bottom:809.723550px;}
.y82{bottom:809.728800px;}
.yb8{bottom:822.418050px;}
.y3{bottom:823.860900px;}
.ye7{bottom:826.842900px;}
.y110{bottom:829.854900px;}
.y26{bottom:830.563050px;}
.y81{bottom:830.578800px;}
.yb7{bottom:839.671050px;}
.y2{bottom:840.357900px;}
.ye6{bottom:844.095900px;}
.y10f{bottom:846.360900px;}
.y25{bottom:851.418300px;}
.y1{bottom:856.854900px;}
.yb6{bottom:856.924050px;}
.ye5{bottom:861.348900px;}
.y10e{bottom:862.857900px;}
.y24{bottom:872.273550px;}
.ye4{bottom:878.601900px;}
.y10d{bottom:879.354900px;}
.y23{bottom:893.128800px;}
.yb5{bottom:893.674050px;}
.ye3{bottom:895.854900px;}
.y21{bottom:915.061500px;}
.y20{bottom:927.808500px;}
.y22{bottom:930.472500px;}
.y1f{bottom:940.555500px;}
.h6{height:30.072000px;}
.h12{height:38.502000px;}
.h2{height:38.664000px;}
.h7{height:45.537600px;}
.h11{height:46.794000px;}
.h5{height:49.404000px;}
.he{height:49.424400px;}
.h9{height:49.425000px;}
.hb{height:49.425600px;}
.ha{height:49.445400px;}
.hf{height:49.446000px;}
.hd{height:49.446600px;}
.hc{height:49.467000px;}
.h10{height:49.509000px;}
.h8{height:49.572600px;}
.h4{height:51.048000px;}
.h3{height:68.064000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:93.979200px;}
.x8{left:119.055150px;}
.x1{left:122.005200px;}
.x4{left:123.017100px;}
.x2{left:158.495700px;}
.x7{left:162.645750px;}
.x6{left:178.697100px;}
.xd{left:199.959600px;}
.x5{left:228.017100px;}
.xe{left:299.806350px;}
.xf{left:320.390700px;}
.x10{left:328.707450px;}
.xb{left:494.538450px;}
.x9{left:503.956950px;}
.xa{left:538.134450px;}
.xc{left:614.027550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-2.882667pt;}
.lsb{letter-spacing:-2.024000pt;}
.lse{letter-spacing:-1.778667pt;}
.ls2{letter-spacing:-1.536000pt;}
.lsc{letter-spacing:-1.410667pt;}
.ls14{letter-spacing:-1.392000pt;}
.ls1b{letter-spacing:-1.344000pt;}
.ls6{letter-spacing:-1.165333pt;}
.ls9{letter-spacing:-1.042667pt;}
.lsf{letter-spacing:-0.981333pt;}
.ls19{letter-spacing:-0.912000pt;}
.ls16{letter-spacing:-0.816000pt;}
.ls4{letter-spacing:-0.797333pt;}
.ls18{letter-spacing:-0.624000pt;}
.lsa{letter-spacing:-0.613333pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.432000pt;}
.ls5{letter-spacing:-0.429333pt;}
.ls1a{letter-spacing:-0.336000pt;}
.lsd{letter-spacing:-0.245333pt;}
.ls7{letter-spacing:-0.184000pt;}
.ls12{letter-spacing:-0.176000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.240000pt;}
.ls8{letter-spacing:0.368000pt;}
.ls0{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.613333pt;}
.ls11{letter-spacing:1.288000pt;}
.wsc8{word-spacing:-15.333333pt;}
.wsae{word-spacing:-14.658667pt;}
.ws21{word-spacing:-14.536000pt;}
.ws22{word-spacing:-14.413333pt;}
.ws23{word-spacing:-14.045333pt;}
.ws62{word-spacing:-13.800000pt;}
.ws60{word-spacing:-13.616000pt;}
.ws61{word-spacing:-13.432000pt;}
.ws88{word-spacing:-13.248000pt;}
.ws87{word-spacing:-13.064000pt;}
.ws47{word-spacing:-13.002667pt;}
.ws1{word-spacing:-12.880000pt;}
.ws46{word-spacing:-12.833067pt;}
.wsdd{word-spacing:-12.554667pt;}
.ws7a{word-spacing:-12.266667pt;}
.ws5f{word-spacing:-12.021333pt;}
.ws105{word-spacing:-11.472000pt;}
.ws89{word-spacing:-11.162667pt;}
.ws101{word-spacing:-10.992000pt;}
.wse0{word-spacing:-10.896000pt;}
.ws103{word-spacing:-10.656000pt;}
.wsde{word-spacing:-10.560000pt;}
.wse2{word-spacing:-10.416000pt;}
.wse3{word-spacing:-10.272000pt;}
.wse1{word-spacing:-10.176000pt;}
.ws102{word-spacing:-10.080000pt;}
.ws104{word-spacing:-9.648000pt;}
.wsdf{word-spacing:-9.600000pt;}
.ws0{word-spacing:-9.360000pt;}
.ws2{word-spacing:-8.474667pt;}
.wsac{word-spacing:-6.562667pt;}
.wsb0{word-spacing:-6.317333pt;}
.wsaf{word-spacing:-6.072000pt;}
.wsab{word-spacing:-5.949333pt;}
.ws15{word-spacing:-3.128000pt;}
.ws95{word-spacing:-3.066667pt;}
.wsad{word-spacing:-3.005333pt;}
.ws2f{word-spacing:-2.882667pt;}
.ws30{word-spacing:-2.821333pt;}
.wsd9{word-spacing:-2.760000pt;}
.wse4{word-spacing:-2.688000pt;}
.ws6e{word-spacing:-2.637333pt;}
.ws12{word-spacing:-2.576000pt;}
.ws77{word-spacing:-2.453333pt;}
.ws5b{word-spacing:-2.392000pt;}
.wsb1{word-spacing:-2.269333pt;}
.wsd1{word-spacing:-2.208000pt;}
.wsfd{word-spacing:-2.160000pt;}
.ws6f{word-spacing:-2.146667pt;}
.wsef{word-spacing:-2.112000pt;}
.wsdc{word-spacing:-2.024000pt;}
.ws10b{word-spacing:-1.968000pt;}
.ws7c{word-spacing:-1.962667pt;}
.ws35{word-spacing:-1.901333pt;}
.wsd7{word-spacing:-1.840000pt;}
.wsd5{word-spacing:-1.778667pt;}
.wsaa{word-spacing:-1.717333pt;}
.ws10f{word-spacing:-1.680000pt;}
.ws44{word-spacing:-1.656000pt;}
.wscc{word-spacing:-1.594667pt;}
.wsc3{word-spacing:-1.533333pt;}
.ws45{word-spacing:-1.472000pt;}
.ws2d{word-spacing:-1.410667pt;}
.wsb2{word-spacing:-1.288000pt;}
.wsdb{word-spacing:-1.226667pt;}
.wsa7{word-spacing:-1.165333pt;}
.ws8c{word-spacing:-1.104000pt;}
.ws2a{word-spacing:-1.042667pt;}
.wseb{word-spacing:-1.008000pt;}
.ws8{word-spacing:-0.981333pt;}
.wsec{word-spacing:-0.864000pt;}
.wsf{word-spacing:-0.797333pt;}
.ws74{word-spacing:-0.736000pt;}
.wse5{word-spacing:-0.720000pt;}
.wsb3{word-spacing:-0.674667pt;}
.ws107{word-spacing:-0.672000pt;}
.ws18{word-spacing:-0.613333pt;}
.ws5e{word-spacing:-0.552000pt;}
.ws83{word-spacing:-0.490667pt;}
.ws10c{word-spacing:-0.432000pt;}
.ws81{word-spacing:-0.429333pt;}
.ws80{word-spacing:-0.368000pt;}
.ws33{word-spacing:-0.306667pt;}
.ws3{word-spacing:-0.240000pt;}
.wsc2{word-spacing:-0.184000pt;}
.ws8e{word-spacing:-0.122667pt;}
.ws8d{word-spacing:-0.061333pt;}
.ws4{word-spacing:0.000000pt;}
.ws75{word-spacing:0.061333pt;}
.ws40{word-spacing:0.122667pt;}
.ws114{word-spacing:0.144000pt;}
.ws8b{word-spacing:0.184000pt;}
.ws115{word-spacing:0.192000pt;}
.wsf0{word-spacing:0.240000pt;}
.ws32{word-spacing:0.245333pt;}
.ws2b{word-spacing:0.306667pt;}
.wse{word-spacing:0.368000pt;}
.ws37{word-spacing:0.429333pt;}
.ws106{word-spacing:0.480000pt;}
.wsbd{word-spacing:0.552000pt;}
.ws84{word-spacing:0.613333pt;}
.ws11b{word-spacing:0.624000pt;}
.ws6c{word-spacing:0.674667pt;}
.wsfa{word-spacing:0.720000pt;}
.wsb5{word-spacing:0.736000pt;}
.wsa{word-spacing:0.797333pt;}
.ws27{word-spacing:0.858667pt;}
.ws108{word-spacing:0.912000pt;}
.ws6a{word-spacing:0.920000pt;}
.wsf8{word-spacing:0.960000pt;}
.wsb7{word-spacing:0.981333pt;}
.wsf9{word-spacing:1.008000pt;}
.ws52{word-spacing:1.042667pt;}
.ws49{word-spacing:1.104000pt;}
.ws109{word-spacing:1.152000pt;}
.ws69{word-spacing:1.165333pt;}
.ws10d{word-spacing:1.248000pt;}
.wsd{word-spacing:1.288000pt;}
.ws10e{word-spacing:1.296000pt;}
.ws100{word-spacing:1.344000pt;}
.wsb9{word-spacing:1.349333pt;}
.ws72{word-spacing:1.410667pt;}
.ws5d{word-spacing:1.472000pt;}
.wsc5{word-spacing:1.533333pt;}
.ws5a{word-spacing:1.594667pt;}
.ws26{word-spacing:1.717333pt;}
.ws9f{word-spacing:1.840000pt;}
.ws48{word-spacing:1.901333pt;}
.ws58{word-spacing:1.962667pt;}
.ws11e{word-spacing:2.016000pt;}
.ws3f{word-spacing:2.024000pt;}
.ws51{word-spacing:2.085333pt;}
.wsf5{word-spacing:2.112000pt;}
.wsd4{word-spacing:2.146667pt;}
.wscb{word-spacing:2.208000pt;}
.wsd3{word-spacing:2.330667pt;}
.wsee{word-spacing:2.352000pt;}
.ws39{word-spacing:2.392000pt;}
.wsed{word-spacing:2.400000pt;}
.wsc1{word-spacing:2.453333pt;}
.ws9a{word-spacing:2.514667pt;}
.wsd2{word-spacing:2.576000pt;}
.ws9{word-spacing:2.637333pt;}
.ws5{word-spacing:2.698667pt;}
.ws1b{word-spacing:2.760000pt;}
.wsf6{word-spacing:2.784000pt;}
.wscf{word-spacing:2.821333pt;}
.ws4f{word-spacing:2.882667pt;}
.ws1d{word-spacing:2.944000pt;}
.ws1e{word-spacing:3.005333pt;}
.ws7b{word-spacing:3.066667pt;}
.ws10a{word-spacing:3.120000pt;}
.ws41{word-spacing:3.128000pt;}
.ws4c{word-spacing:3.189333pt;}
.ws9b{word-spacing:3.250667pt;}
.ws116{word-spacing:3.264000pt;}
.wsa0{word-spacing:3.312000pt;}
.wsc4{word-spacing:3.373333pt;}
.ws117{word-spacing:3.408000pt;}
.wsbe{word-spacing:3.434667pt;}
.ws42{word-spacing:3.496000pt;}
.ws71{word-spacing:3.557333pt;}
.ws8a{word-spacing:3.618667pt;}
.ws11f{word-spacing:3.648000pt;}
.ws7{word-spacing:3.680000pt;}
.ws112{word-spacing:3.696000pt;}
.ws1f{word-spacing:3.741333pt;}
.ws29{word-spacing:3.802667pt;}
.wsa1{word-spacing:3.864000pt;}
.wsbb{word-spacing:3.986667pt;}
.ws7d{word-spacing:4.048000pt;}
.wsc9{word-spacing:4.109333pt;}
.ws7f{word-spacing:4.170667pt;}
.ws2c{word-spacing:4.232000pt;}
.ws111{word-spacing:4.272000pt;}
.wsbf{word-spacing:4.293333pt;}
.wsfc{word-spacing:4.320000pt;}
.ws78{word-spacing:4.416000pt;}
.wsc{word-spacing:4.477333pt;}
.wsa6{word-spacing:4.538667pt;}
.ws4d{word-spacing:4.600000pt;}
.ws76{word-spacing:4.661333pt;}
.ws2e{word-spacing:4.722667pt;}
.ws6d{word-spacing:4.784000pt;}
.ws63{word-spacing:4.845333pt;}
.wsfe{word-spacing:4.848000pt;}
.wsff{word-spacing:4.896000pt;}
.ws36{word-spacing:4.906667pt;}
.wsb{word-spacing:4.968000pt;}
.wse8{word-spacing:4.992000pt;}
.wsb8{word-spacing:5.029333pt;}
.ws113{word-spacing:5.088000pt;}
.ws53{word-spacing:5.152000pt;}
.ws65{word-spacing:5.274667pt;}
.ws110{word-spacing:5.280000pt;}
.wsca{word-spacing:5.397333pt;}
.ws10{word-spacing:5.458667pt;}
.ws57{word-spacing:5.520000pt;}
.ws19{word-spacing:5.581333pt;}
.ws3c{word-spacing:5.642667pt;}
.ws3b{word-spacing:5.704000pt;}
.ws1c{word-spacing:5.765333pt;}
.ws96{word-spacing:5.826667pt;}
.ws50{word-spacing:5.888000pt;}
.ws43{word-spacing:5.949333pt;}
.ws11c{word-spacing:6.048000pt;}
.ws9d{word-spacing:6.072000pt;}
.ws59{word-spacing:6.133333pt;}
.ws7e{word-spacing:6.194667pt;}
.wsa8{word-spacing:6.256000pt;}
.ws79{word-spacing:6.317333pt;}
.ws11a{word-spacing:6.336000pt;}
.ws55{word-spacing:6.378667pt;}
.ws16{word-spacing:6.440000pt;}
.ws118{word-spacing:6.480000pt;}
.ws68{word-spacing:6.501333pt;}
.wsba{word-spacing:6.624000pt;}
.wsa5{word-spacing:6.685333pt;}
.ws4a{word-spacing:6.746667pt;}
.ws31{word-spacing:6.808000pt;}
.ws4b{word-spacing:6.869333pt;}
.wsd8{word-spacing:6.930667pt;}
.wsa4{word-spacing:6.992000pt;}
.wse6{word-spacing:7.008000pt;}
.wsc6{word-spacing:7.053333pt;}
.wse7{word-spacing:7.056000pt;}
.ws98{word-spacing:7.114667pt;}
.ws9e{word-spacing:7.176000pt;}
.ws1a{word-spacing:7.237333pt;}
.wsa3{word-spacing:7.360000pt;}
.wsfb{word-spacing:7.440000pt;}
.wsd0{word-spacing:7.482667pt;}
.ws93{word-spacing:7.605333pt;}
.ws6{word-spacing:7.666667pt;}
.wsa2{word-spacing:7.728000pt;}
.ws70{word-spacing:7.789333pt;}
.wsc7{word-spacing:7.850667pt;}
.wse9{word-spacing:7.920000pt;}
.wsb6{word-spacing:7.973333pt;}
.wsea{word-spacing:8.016000pt;}
.ws13{word-spacing:8.034667pt;}
.ws97{word-spacing:8.096000pt;}
.wsf3{word-spacing:8.112000pt;}
.ws54{word-spacing:8.157333pt;}
.wsf7{word-spacing:8.160000pt;}
.wsda{word-spacing:8.280000pt;}
.ws4e{word-spacing:8.341333pt;}
.ws24{word-spacing:8.402667pt;}
.ws25{word-spacing:8.464000pt;}
.wsbc{word-spacing:8.525333pt;}
.ws85{word-spacing:8.586667pt;}
.wsf4{word-spacing:8.640000pt;}
.ws94{word-spacing:8.648000pt;}
.ws92{word-spacing:8.770667pt;}
.ws28{word-spacing:8.832000pt;}
.ws64{word-spacing:8.893333pt;}
.ws56{word-spacing:9.077333pt;}
.wsa9{word-spacing:9.138667pt;}
.ws99{word-spacing:9.200000pt;}
.ws119{word-spacing:9.312000pt;}
.ws3e{word-spacing:9.322667pt;}
.wsb4{word-spacing:9.384000pt;}
.ws3d{word-spacing:9.445333pt;}
.ws8f{word-spacing:9.813333pt;}
.wsd6{word-spacing:9.874667pt;}
.ws73{word-spacing:10.058667pt;}
.ws82{word-spacing:10.365333pt;}
.ws14{word-spacing:10.426667pt;}
.ws3a{word-spacing:10.549333pt;}
.ws6b{word-spacing:10.672000pt;}
.ws9c{word-spacing:10.794667pt;}
.ws17{word-spacing:10.856000pt;}
.ws90{word-spacing:10.978667pt;}
.ws38{word-spacing:11.469333pt;}
.wscd{word-spacing:11.714667pt;}
.wsce{word-spacing:12.021333pt;}
.ws5c{word-spacing:12.266667pt;}
.ws34{word-spacing:12.328000pt;}
.wsf1{word-spacing:12.672000pt;}
.ws86{word-spacing:13.125333pt;}
.ws91{word-spacing:13.186667pt;}
.wsf2{word-spacing:13.248000pt;}
.ws67{word-spacing:13.861333pt;}
.ws66{word-spacing:13.984000pt;}
.wsc0{word-spacing:14.290667pt;}
.ws11{word-spacing:15.272000pt;}
.ws11d{word-spacing:718.331733pt;}
.ws20{word-spacing:745.467733pt;}
._e{margin-left:-1385.071467pt;}
._13{margin-left:-20.439467pt;}
._12{margin-left:-13.314133pt;}
._14{margin-left:-11.365281pt;}
._10{margin-left:-8.994133pt;}
._2{margin-left:-7.253333pt;}
._4{margin-left:-5.982933pt;}
._3{margin-left:-4.848267pt;}
._6{margin-left:-3.864000pt;}
._a{margin-left:-2.904800pt;}
._7{margin-left:-1.957333pt;}
._0{margin-left:-1.056000pt;}
._1{width:1.248000pt;}
._8{width:2.393867pt;}
._5{width:4.020000pt;}
._9{width:5.740533pt;}
._f{width:7.298667pt;}
._b{width:8.390400pt;}
._d{width:9.585067pt;}
._c{width:12.575467pt;}
._11{width:14.362133pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:45.866667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:56.533333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:87.035600pt;}
.y63{bottom:87.646933pt;}
.y49{bottom:89.448267pt;}
.y80{bottom:89.620800pt;}
.y10c{bottom:94.315467pt;}
.y6b{bottom:96.802267pt;}
.y1e{bottom:97.946133pt;}
.ye1{bottom:102.371600pt;}
.y62{bottom:106.184933pt;}
.y48{bottom:107.986267pt;}
.y7f{bottom:108.158800pt;}
.y10b{bottom:108.982133pt;}
.y6a{bottom:115.340267pt;}
.y1d{bottom:116.484133pt;}
.ye0{bottom:117.707600pt;}
.y10a{bottom:123.654133pt;}
.y61{bottom:124.722933pt;}
.y47{bottom:126.524267pt;}
.yb4{bottom:126.622267pt;}
.y7e{bottom:126.687600pt;}
.y9e{bottom:126.692267pt;}
.ydf{bottom:133.043600pt;}
.y69{bottom:133.878267pt;}
.y1c{bottom:135.022133pt;}
.y109{bottom:138.318133pt;}
.y60{bottom:143.260933pt;}
.y46{bottom:145.062267pt;}
.yb3{bottom:145.160267pt;}
.y9d{bottom:145.202267pt;}
.y7d{bottom:145.225600pt;}
.yde{bottom:148.371600pt;}
.y68{bottom:152.416267pt;}
.y108{bottom:152.982133pt;}
.y1b{bottom:153.560133pt;}
.y5f{bottom:161.798933pt;}
.y45{bottom:163.600267pt;}
.yb2{bottom:163.698267pt;}
.ydd{bottom:163.707600pt;}
.y9c{bottom:163.740267pt;}
.y7c{bottom:163.758933pt;}
.y67{bottom:170.954267pt;}
.y1a{bottom:172.098133pt;}
.ydc{bottom:179.043600pt;}
.y5e{bottom:180.336933pt;}
.y107{bottom:180.982133pt;}
.y44{bottom:182.138267pt;}
.yb1{bottom:182.236267pt;}
.y9b{bottom:182.278267pt;}
.y7b{bottom:182.282933pt;}
.y66{bottom:189.492267pt;}
.y19{bottom:190.636133pt;}
.ydb{bottom:194.278267pt;}
.y5d{bottom:198.874933pt;}
.y43{bottom:200.676267pt;}
.yb0{bottom:200.774267pt;}
.y9a{bottom:200.816267pt;}
.y7a{bottom:200.820933pt;}
.y18{bottom:209.174133pt;}
.yda{bottom:209.614267pt;}
.y5c{bottom:217.412933pt;}
.y42{bottom:219.214267pt;}
.yaf{bottom:219.312267pt;}
.y99{bottom:219.354267pt;}
.y79{bottom:219.358933pt;}
.yd9{bottom:224.950267pt;}
.y106{bottom:227.651467pt;}
.y17{bottom:227.712133pt;}
.y65{bottom:233.353600pt;}
.y5b{bottom:235.950933pt;}
.y41{bottom:237.752267pt;}
.yae{bottom:237.850267pt;}
.y78{bottom:237.887600pt;}
.y98{bottom:237.892267pt;}
.yd8{bottom:240.286267pt;}
.y105{bottom:242.315467pt;}
.y16{bottom:246.250133pt;}
.y64{bottom:252.025600pt;}
.y5a{bottom:254.488933pt;}
.yd7{bottom:255.622267pt;}
.y40{bottom:256.290267pt;}
.yad{bottom:256.388267pt;}
.y97{bottom:256.420800pt;}
.y77{bottom:256.425600pt;}
.y15{bottom:264.788133pt;}
.y104{bottom:264.907467pt;}
.yd6{bottom:270.958267pt;}
.y59{bottom:273.026933pt;}
.y3f{bottom:274.828267pt;}
.yac{bottom:274.926267pt;}
.y76{bottom:274.958800pt;}
.y103{bottom:279.571467pt;}
.y14{bottom:283.326133pt;}
.yd5{bottom:286.294267pt;}
.y58{bottom:291.564933pt;}
.y3e{bottom:293.366267pt;}
.yab{bottom:293.464267pt;}
.y96{bottom:293.482933pt;}
.y75{bottom:293.492267pt;}
.yd4{bottom:301.630267pt;}
.y13{bottom:301.864133pt;}
.y102{bottom:302.239467pt;}
.y57{bottom:310.102933pt;}
.y3d{bottom:311.904267pt;}
.y74{bottom:311.988133pt;}
.yaa{bottom:312.002267pt;}
.y95{bottom:312.020933pt;}
.y101{bottom:316.903467pt;}
.yd3{bottom:316.966267pt;}
.y12{bottom:320.402133pt;}
.y56{bottom:328.640933pt;}
.y3c{bottom:330.442267pt;}
.y73{bottom:330.526133pt;}
.ya9{bottom:330.540267pt;}
.y94{bottom:330.558933pt;}
.yd2{bottom:332.302267pt;}
.y11{bottom:338.940133pt;}
.y55{bottom:347.178933pt;}
.yd1{bottom:347.638267pt;}
.y3b{bottom:348.980267pt;}
.y72{bottom:349.064133pt;}
.ya8{bottom:349.078267pt;}
.y93{bottom:349.092267pt;}
.y100{bottom:351.571467pt;}
.y10{bottom:357.478133pt;}
.yd0{bottom:362.974267pt;}
.y54{bottom:365.716933pt;}
.yff{bottom:366.907467pt;}
.y3a{bottom:367.518267pt;}
.y71{bottom:367.602133pt;}
.ya7{bottom:367.616267pt;}
.y92{bottom:367.620933pt;}
.yf{bottom:376.016133pt;}
.ycf{bottom:378.310267pt;}
.yfe{bottom:382.243467pt;}
.y53{bottom:384.254933pt;}
.y39{bottom:386.056267pt;}
.y70{bottom:386.140133pt;}
.ya6{bottom:386.154267pt;}
.y91{bottom:386.158933pt;}
.yce{bottom:393.646267pt;}
.ye{bottom:394.554133pt;}
.yfd{bottom:397.579467pt;}
.y52{bottom:402.792933pt;}
.y38{bottom:404.594267pt;}
.y6f{bottom:404.678133pt;}
.y90{bottom:404.692267pt;}
.ycd{bottom:408.982267pt;}
.yfc{bottom:412.915467pt;}
.yd{bottom:413.092133pt;}
.y51{bottom:421.330933pt;}
.y37{bottom:423.132267pt;}
.y6e{bottom:423.216133pt;}
.ycc{bottom:424.318267pt;}
.yfb{bottom:428.251467pt;}
.yc{bottom:431.630133pt;}
.ycb{bottom:439.654267pt;}
.y50{bottom:439.868933pt;}
.y36{bottom:441.670267pt;}
.y6d{bottom:441.754133pt;}
.yfa{bottom:443.587467pt;}
.yb{bottom:450.168133pt;}
.yca{bottom:454.990267pt;}
.y4f{bottom:458.406933pt;}
.yf9{bottom:458.923467pt;}
.y35{bottom:460.208267pt;}
.y6c{bottom:460.292133pt;}
.ya{bottom:468.706133pt;}
.yc9{bottom:470.326267pt;}
.yf8{bottom:474.259467pt;}
.y4e{bottom:476.944933pt;}
.y34{bottom:478.746267pt;}
.y8f{bottom:478.816267pt;}
.yc8{bottom:485.662267pt;}
.y9{bottom:487.244133pt;}
.yf7{bottom:489.595467pt;}
.y4d{bottom:495.482933pt;}
.y33{bottom:497.284267pt;}
.y8e{bottom:497.354267pt;}
.yc7{bottom:500.998267pt;}
.yf6{bottom:504.931467pt;}
.y8{bottom:505.782133pt;}
.y4c{bottom:514.020933pt;}
.y32{bottom:515.822267pt;}
.y8d{bottom:515.892267pt;}
.yc6{bottom:516.334267pt;}
.yf5{bottom:520.267467pt;}
.yc5{bottom:531.670267pt;}
.y4b{bottom:532.558933pt;}
.y31{bottom:534.360267pt;}
.y8c{bottom:534.406933pt;}
.ya5{bottom:534.425600pt;}
.yf4{bottom:535.603467pt;}
.y7{bottom:544.315467pt;}
.yc4{bottom:547.006267pt;}
.yf3{bottom:550.939467pt;}
.y30{bottom:552.898267pt;}
.y8b{bottom:552.944933pt;}
.yc3{bottom:562.342267pt;}
.yf2{bottom:566.275467pt;}
.y4a{bottom:571.092267pt;}
.y2f{bottom:571.436267pt;}
.y8a{bottom:571.482933pt;}
.yc2{bottom:577.678267pt;}
.yf1{bottom:581.611467pt;}
.y2e{bottom:589.974267pt;}
.y89{bottom:590.020933pt;}
.yc1{bottom:593.014267pt;}
.yf0{bottom:596.947467pt;}
.y6{bottom:603.003467pt;}
.yc0{bottom:608.350267pt;}
.y2d{bottom:608.512267pt;}
.y88{bottom:608.558933pt;}
.yef{bottom:612.283467pt;}
.ybf{bottom:623.686267pt;}
.y2c{bottom:627.050267pt;}
.y87{bottom:627.078267pt;}
.ya4{bottom:627.082800pt;}
.yee{bottom:627.619467pt;}
.y5{bottom:628.326133pt;}
.ybe{bottom:639.022267pt;}
.yed{bottom:642.955467pt;}
.y2b{bottom:645.588267pt;}
.y86{bottom:645.616267pt;}
.ya3{bottom:645.620800pt;}
.y4{bottom:653.648800pt;}
.ybd{bottom:654.358267pt;}
.yec{bottom:658.291467pt;}
.y2a{bottom:664.126267pt;}
.y85{bottom:664.154267pt;}
.ya2{bottom:664.158800pt;}
.ybc{bottom:669.694267pt;}
.yeb{bottom:673.627467pt;}
.y29{bottom:682.664267pt;}
.ya1{bottom:682.687600pt;}
.y84{bottom:682.692267pt;}
.ybb{bottom:685.030267pt;}
.yea{bottom:688.963467pt;}
.yba{bottom:700.366267pt;}
.y28{bottom:701.202267pt;}
.y83{bottom:701.220933pt;}
.ya0{bottom:701.225600pt;}
.ye9{bottom:704.299467pt;}
.yb9{bottom:715.702267pt;}
.ye8{bottom:719.635467pt;}
.y27{bottom:719.740267pt;}
.y9f{bottom:719.754267pt;}
.y82{bottom:719.758933pt;}
.yb8{bottom:731.038267pt;}
.y3{bottom:732.320800pt;}
.ye7{bottom:734.971467pt;}
.y110{bottom:737.648800pt;}
.y26{bottom:738.278267pt;}
.y81{bottom:738.292267pt;}
.yb7{bottom:746.374267pt;}
.y2{bottom:746.984800pt;}
.ye6{bottom:750.307467pt;}
.y10f{bottom:752.320800pt;}
.y25{bottom:756.816267pt;}
.y1{bottom:761.648800pt;}
.yb6{bottom:761.710267pt;}
.ye5{bottom:765.643467pt;}
.y10e{bottom:766.984800pt;}
.y24{bottom:775.354267pt;}
.ye4{bottom:780.979467pt;}
.y10d{bottom:781.648800pt;}
.y23{bottom:793.892267pt;}
.yb5{bottom:794.376933pt;}
.ye3{bottom:796.315467pt;}
.y21{bottom:813.388000pt;}
.y20{bottom:824.718667pt;}
.y22{bottom:827.086667pt;}
.y1f{bottom:836.049333pt;}
.h6{height:26.730667pt;}
.h12{height:34.224000pt;}
.h2{height:34.368000pt;}
.h7{height:40.477867pt;}
.h11{height:41.594667pt;}
.h5{height:43.914667pt;}
.he{height:43.932800pt;}
.h9{height:43.933333pt;}
.hb{height:43.933867pt;}
.ha{height:43.951467pt;}
.hf{height:43.952000pt;}
.hd{height:43.952533pt;}
.hc{height:43.970667pt;}
.h10{height:44.008000pt;}
.h8{height:44.064533pt;}
.h4{height:45.376000pt;}
.h3{height:60.501333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:83.537067pt;}
.x8{left:105.826800pt;}
.x1{left:108.449067pt;}
.x4{left:109.348533pt;}
.x2{left:140.885067pt;}
.x7{left:144.574000pt;}
.x6{left:158.841867pt;}
.xd{left:177.741867pt;}
.x5{left:202.681867pt;}
.xe{left:266.494533pt;}
.xf{left:284.791733pt;}
.x10{left:292.184400pt;}
.xb{left:439.589733pt;}
.x9{left:447.961733pt;}
.xa{left:478.341733pt;}
.xc{left:545.802267pt;}
}




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