
    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_84cb94577bde46d1b50527f3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_48385e14e2ecff630de5a882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.030273;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_4f76bb66cc0b0ed943a04d88.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.030273;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_77dbc7eb5c1931fbbee38ee4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.030273;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_6b0a17d1be21f0017f9f1499.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.099609;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_0cdd509622800bb5f7c970b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.099609;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_9a2440245b88938b1c65f06a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_8f9a1dcb5f521bd0c9914e09.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.100098;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_aae0b1d995c555e07c6b0984.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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:ffb;src:url('chunks/assets/font_1cc97456cfe4d4dfaaa53d14.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.783691;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:ffc;src:url('chunks/assets/font_6d43119d863a7a48e0fb9562.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.975098;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:ffd;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003906;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:ffe;src:url('chunks/assets/font_aca772baf3dcb7e1e202012b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.100098;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:fff;src:url('chunks/assets/font_6408a7b5a5df9b01b0b5991e.woff2')format("woff");}.fff{font-family:fff;line-height:1.100098;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:ff10;src:url('chunks/assets/font_d38c4eee3395b8bd46a68085.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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:ff11;src:url('chunks/assets/font_682e04242b041fba2eed7b2f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.914062;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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.251015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-81.360000px;}
.v5{vertical-align:-32.400000px;}
.v8{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:25.200000px;}
.v4{vertical-align:32.400000px;}
.v3{vertical-align:36.000000px;}
.v7{vertical-align:43.200000px;}
.v9{vertical-align:64.800000px;}
.v1{vertical-align:81.360000px;}
.ls4c{letter-spacing:-12.600000px;}
.ls49{letter-spacing:-2.664000px;}
.ls21{letter-spacing:-2.172000px;}
.ls2f{letter-spacing:-2.148000px;}
.ls14{letter-spacing:-2.058000px;}
.ls3b{letter-spacing:-1.914000px;}
.ls32{letter-spacing:-1.164000px;}
.ls17{letter-spacing:-0.702000px;}
.ls38{letter-spacing:-0.612000px;}
.ls35{letter-spacing:-0.490200px;}
.ls18{letter-spacing:-0.441600px;}
.ls2e{letter-spacing:-0.361200px;}
.ls39{letter-spacing:-0.325200px;}
.ls11{letter-spacing:-0.309600px;}
.ls16{letter-spacing:-0.298200px;}
.ls2{letter-spacing:-0.291600px;}
.ls45{letter-spacing:-0.288000px;}
.ls3a{letter-spacing:-0.282600px;}
.ls24{letter-spacing:-0.252000px;}
.ls22{letter-spacing:-0.250800px;}
.ls19{letter-spacing:-0.222000px;}
.ls3c{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.171600px;}
.lsa{letter-spacing:-0.144000px;}
.ls30{letter-spacing:-0.087000px;}
.ls4a{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.018000px;}
.ls1a{letter-spacing:-0.009360px;}
.ls25{letter-spacing:-0.009060px;}
.lsf{letter-spacing:-0.005748px;}
.ls20{letter-spacing:-0.005616px;}
.ls1e{letter-spacing:-0.000006px;}
.ls1{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.030360px;}
.ls42{letter-spacing:0.060600px;}
.ls7{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.078624px;}
.ls46{letter-spacing:0.087000px;}
.ls31{letter-spacing:0.099600px;}
.ls10{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.174600px;}
.ls1d{letter-spacing:0.189504px;}
.ls41{letter-spacing:0.205200px;}
.ls33{letter-spacing:0.218400px;}
.ls2d{letter-spacing:0.229800px;}
.ls15{letter-spacing:0.252000px;}
.ls34{letter-spacing:0.262800px;}
.ls43{letter-spacing:0.349200px;}
.ls47{letter-spacing:13.491360px;}
.lsc{letter-spacing:17.959104px;}
.lsb{letter-spacing:18.073440px;}
.ls13{letter-spacing:22.248000px;}
.ls8{letter-spacing:28.368000px;}
.ls44{letter-spacing:28.372752px;}
.ls48{letter-spacing:39.600000px;}
.ls4b{letter-spacing:40.320000px;}
.ls37{letter-spacing:47.160000px;}
.ls4{letter-spacing:61.833600px;}
.ls5{letter-spacing:61.884000px;}
.ls28{letter-spacing:65.865600px;}
.ls27{letter-spacing:65.916000px;}
.ls12{letter-spacing:66.036000px;}
.lsd{letter-spacing:68.473440px;}
.ls1b{letter-spacing:70.149600px;}
.ls1c{letter-spacing:70.200000px;}
.ls29{letter-spacing:78.781440px;}
.ls36{letter-spacing:93.276000px;}
.lse{letter-spacing:97.560000px;}
.ls3{letter-spacing:97.884000px;}
.ls40{letter-spacing:99.129600px;}
.ls3f{letter-spacing:99.180000px;}
.ls2c{letter-spacing:105.307104px;}
.ls2b{letter-spacing:111.067104px;}
.ls2a{letter-spacing:111.181440px;}
.ls26{letter-spacing:124.344000px;}
.ls3d{letter-spacing:153.180000px;}
.ls3e{letter-spacing:164.649600px;}
.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;}
}
.ws41{word-spacing:-82.342656px;}
.ws3c{word-spacing:-82.244160px;}
.ws7e{word-spacing:-73.872000px;}
.ws87{word-spacing:-72.000000px;}
.ws83{word-spacing:-49.248000px;}
.ws21{word-spacing:-39.743994px;}
.ws82{word-spacing:-39.600000px;}
.ws50{word-spacing:-33.444384px;}
.ws76{word-spacing:-33.186240px;}
.ws75{word-spacing:-33.150960px;}
.ws4e{word-spacing:-32.985216px;}
.ws17{word-spacing:-32.945760px;}
.ws1d{word-spacing:-32.936400px;}
.ws4d{word-spacing:-32.898216px;}
.ws81{word-spacing:-29.847744px;}
.wse{word-spacing:-29.844000px;}
.ws80{word-spacing:-29.808000px;}
.ws11{word-spacing:-29.700000px;}
.ws6{word-spacing:-29.631456px;}
.ws10{word-spacing:-29.592000px;}
.ws84{word-spacing:-26.928000px;}
.ws7{word-spacing:-23.244492px;}
.ws4{word-spacing:-23.081760px;}
.ws8{word-spacing:-22.940640px;}
.ws5{word-spacing:-19.800000px;}
.ws23{word-spacing:-19.767456px;}
.ws24{word-spacing:-19.761840px;}
.ws3{word-spacing:-19.728000px;}
.ws85{word-spacing:-18.036000px;}
.ws86{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.932160px;}
.ws22{word-spacing:-13.217760px;}
.ws56{word-spacing:-1.739520px;}
.ws30{word-spacing:-1.426464px;}
.ws2e{word-spacing:-1.368000px;}
.ws52{word-spacing:-1.336752px;}
.ws58{word-spacing:-1.317120px;}
.ws66{word-spacing:-1.277376px;}
.ws1c{word-spacing:-1.275840px;}
.ws35{word-spacing:-1.256400px;}
.ws5d{word-spacing:-1.224000px;}
.ws55{word-spacing:-1.218120px;}
.ws64{word-spacing:-1.181088px;}
.ws3d{word-spacing:-1.162080px;}
.ws74{word-spacing:-1.116000px;}
.ws4f{word-spacing:-1.098144px;}
.ws51{word-spacing:-1.039680px;}
.ws71{word-spacing:-0.972000px;}
.ws1e{word-spacing:-0.964080px;}
.ws42{word-spacing:-0.945792px;}
.ws37{word-spacing:-0.929760px;}
.ws54{word-spacing:-0.827520px;}
.ws1f{word-spacing:-0.807120px;}
.ws3e{word-spacing:-0.717840px;}
.wsc{word-spacing:-0.705120px;}
.ws62{word-spacing:-0.688176px;}
.ws44{word-spacing:-0.672192px;}
.ws5c{word-spacing:-0.664608px;}
.ws1a{word-spacing:-0.649440px;}
.ws36{word-spacing:-0.631440px;}
.ws57{word-spacing:-0.612768px;}
.wsd{word-spacing:-0.612000px;}
.ws3b{word-spacing:-0.536400px;}
.wsf{word-spacing:-0.504000px;}
.ws40{word-spacing:-0.498168px;}
.ws2f{word-spacing:-0.492000px;}
.wsa{word-spacing:-0.491040px;}
.ws2c{word-spacing:-0.468000px;}
.ws20{word-spacing:-0.356400px;}
.ws28{word-spacing:-0.339408px;}
.ws5f{word-spacing:-0.324000px;}
.ws31{word-spacing:-0.290784px;}
.ws73{word-spacing:-0.288000px;}
.ws70{word-spacing:-0.282960px;}
.ws72{word-spacing:-0.276000px;}
.ws12{word-spacing:-0.268560px;}
.ws25{word-spacing:-0.237168px;}
.ws2d{word-spacing:-0.180000px;}
.ws32{word-spacing:-0.141768px;}
.ws1b{word-spacing:-0.120384px;}
.ws3f{word-spacing:-0.068544px;}
.ws5e{word-spacing:-0.036000px;}
.ws1{word-spacing:0.000000px;}
.ws3a{word-spacing:0.002160px;}
.ws18{word-spacing:0.097200px;}
.ws29{word-spacing:0.181296px;}
.ws61{word-spacing:0.288000px;}
.ws27{word-spacing:0.298224px;}
.ws2b{word-spacing:0.360000px;}
.ws53{word-spacing:0.410184px;}
.ws19{word-spacing:0.437040px;}
.ws60{word-spacing:0.504000px;}
.ws67{word-spacing:0.578232px;}
.ws63{word-spacing:0.598032px;}
.ws7d{word-spacing:0.630720px;}
.ws39{word-spacing:0.679680px;}
.ws34{word-spacing:0.814080px;}
.ws6f{word-spacing:0.955680px;}
.ws33{word-spacing:1.103520px;}
.ws2{word-spacing:1.445040px;}
.ws38{word-spacing:3.473568px;}
.ws65{word-spacing:3.503088px;}
.wsb{word-spacing:4.092480px;}
.ws43{word-spacing:4.193568px;}
.ws26{word-spacing:4.223088px;}
.ws7c{word-spacing:5.883600px;}
.ws78{word-spacing:6.994800px;}
.ws7a{word-spacing:7.270560px;}
.ws77{word-spacing:7.352280px;}
.ws79{word-spacing:7.518960px;}
.ws45{word-spacing:7.703280px;}
.ws46{word-spacing:8.531280px;}
.ws49{word-spacing:8.608320px;}
.ws4b{word-spacing:9.070560px;}
.ws4c{word-spacing:9.077040px;}
.ws47{word-spacing:9.191280px;}
.ws13{word-spacing:9.299520px;}
.ws15{word-spacing:9.435600px;}
.ws48{word-spacing:9.754920px;}
.ws16{word-spacing:10.231920px;}
.ws2a{word-spacing:10.332000px;}
.ws14{word-spacing:10.474920px;}
.ws7f{word-spacing:11.160000px;}
.ws4a{word-spacing:11.244240px;}
.ws7b{word-spacing:11.292480px;}
.ws6b{word-spacing:14.416320px;}
.ws6e{word-spacing:14.718960px;}
.ws68{word-spacing:14.835840px;}
.ws69{word-spacing:15.172560px;}
.ws6d{word-spacing:15.376320px;}
.ws6c{word-spacing:16.277040px;}
.ws6a{word-spacing:18.180480px;}
.ws88{word-spacing:25.467840px;}
.ws9{word-spacing:31.445760px;}
.ws59{word-spacing:45.075840px;}
.ws5a{word-spacing:45.303600px;}
.ws5b{word-spacing:46.517040px;}
._c{margin-left:-17.275920px;}
._7{margin-left:-13.564080px;}
._f{margin-left:-12.136080px;}
._9{margin-left:-9.979200px;}
._3{margin-left:-8.863200px;}
._e{margin-left:-7.493280px;}
._5{margin-left:-5.945280px;}
._8{margin-left:-3.431040px;}
._0{margin-left:-2.340000px;}
._4{margin-left:-1.113360px;}
._1{width:1.248000px;}
._2{width:2.708640px;}
._6{width:3.841200px;}
._16{width:5.050080px;}
._d{width:18.171360px;}
._14{width:27.393360px;}
._15{width:28.524000px;}
._11{width:30.057360px;}
._19{width:31.310640px;}
._10{width:33.554160px;}
._a{width:34.605360px;}
._b{width:38.253600px;}
._13{width:41.079360px;}
._17{width:42.580560px;}
._12{width:43.601040px;}
._1a{width:49.515360px;}
._18{width:79.936560px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(35,129,196);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(40,128,194);}
.fs18{font-size:35.991403px;}
.fs19{font-size:48.240000px;}
.fs15{font-size:56.160000px;}
.fsf{font-size:72.000000px;}
.fs10{font-size:72.144000px;}
.fs4{font-size:79.920000px;}
.fs11{font-size:84.240000px;}
.fs12{font-size:84.384000px;}
.fs5{font-size:95.760000px;}
.fs1a{font-size:95.904000px;}
.fs13{font-size:108.000000px;}
.fs14{font-size:108.144000px;}
.fsa{font-size:112.320000px;}
.fs3{font-size:120.240000px;}
.fse{font-size:120.384000px;}
.fsc{font-size:131.760000px;}
.fsd{font-size:131.904000px;}
.fs17{font-size:144.000000px;}
.fs9{font-size:156.240000px;}
.fs2{font-size:167.760000px;}
.fs1{font-size:180.000000px;}
.fs7{font-size:203.760000px;}
.fs8{font-size:203.904000px;}
.fsb{font-size:216.000000px;}
.fs16{font-size:216.144000px;}
.fs6{font-size:239.760000px;}
.fs0{font-size:270.864000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:4.320000px;}
.yc0{bottom:9.540000px;}
.y4c{bottom:10.954199px;}
.y15{bottom:16.416000px;}
.y1e{bottom:16.704000px;}
.yc1{bottom:17.532000px;}
.y2e{bottom:21.672000px;}
.y85{bottom:22.356000px;}
.y4e{bottom:32.616000px;}
.y8d{bottom:33.552000px;}
.y14{bottom:38.016000px;}
.y1d{bottom:38.304000px;}
.y89{bottom:38.556000px;}
.ya5{bottom:39.315000px;}
.ybf{bottom:42.510000px;}
.y2d{bottom:43.272000px;}
.y9d{bottom:43.350000px;}
.y84{bottom:43.956000px;}
.y69{bottom:45.324000px;}
.ya6{bottom:45.330000px;}
.yb7{bottom:46.545000px;}
.ycb{bottom:48.456000px;}
.yb6{bottom:48.525000px;}
.y40{bottom:50.940000px;}
.ya4{bottom:52.305000px;}
.ybd{bottom:53.025000px;}
.y9e{bottom:53.310000px;}
.y9a{bottom:54.330000px;}
.ybe{bottom:55.515000px;}
.ya7{bottom:56.310000px;}
.yb4{bottom:56.520000px;}
.ya2{bottom:57.315000px;}
.ybb{bottom:59.505000px;}
.y4d{bottom:59.616000px;}
.ya8{bottom:60.300000px;}
.yaa{bottom:60.330000px;}
.y9b{bottom:62.310000px;}
.ya1{bottom:63.285000px;}
.yba{bottom:63.510000px;}
.yb8{bottom:63.570000px;}
.y9c{bottom:65.310000px;}
.ya9{bottom:65.340000px;}
.yb5{bottom:65.520000px;}
.y9f{bottom:66.270000px;}
.y68{bottom:66.924000px;}
.ybc{bottom:68.505000px;}
.yb9{bottom:69.510000px;}
.y3{bottom:87.912000px;}
.ya3{bottom:89.355000px;}
.yca{bottom:91.656000px;}
.yab{bottom:92.340000px;}
.y4b{bottom:93.192092px;}
.y83{bottom:96.840000px;}
.y8{bottom:98.136000px;}
.y88{bottom:100.296000px;}
.yc2{bottom:103.290000px;}
.y8e{bottom:111.960000px;}
.y8f{bottom:113.475000px;}
.y3f{bottom:113.940000px;}
.yad{bottom:116.670000px;}
.y7{bottom:126.936000px;}
.yc9{bottom:134.856000px;}
.y90{bottom:134.925000px;}
.y73{bottom:141.840000px;}
.y2{bottom:142.812000px;}
.y36{bottom:145.152000px;}
.yae{bottom:148.215000px;}
.y75{bottom:148.248000px;}
.y91{bottom:156.390000px;}
.y5e{bottom:170.490000px;}
.y3e{bottom:176.970000px;}
.yac{bottom:177.300000px;}
.y92{bottom:177.840000px;}
.yc8{bottom:178.095000px;}
.yaf{bottom:179.790000px;}
.y7b{bottom:183.240000px;}
.y74{bottom:184.245000px;}
.y72{bottom:189.210000px;}
.y93{bottom:199.290000px;}
.y78{bottom:200.910000px;}
.y67{bottom:205.380000px;}
.yb0{bottom:211.320000px;}
.y94{bottom:220.785000px;}
.y5d{bottom:231.690000px;}
.y7a{bottom:231.870000px;}
.y71{bottom:236.550000px;}
.y3d{bottom:239.970000px;}
.y95{bottom:242.250000px;}
.yb1{bottom:242.850000px;}
.y77{bottom:249.510000px;}
.y43{bottom:256.830000px;}
.y66{bottom:262.080000px;}
.y96{bottom:263.700000px;}
.yb2{bottom:274.425000px;}
.y1c{bottom:277.170000px;}
.y42{bottom:278.430000px;}
.y79{bottom:280.470000px;}
.y70{bottom:284.070000px;}
.y97{bottom:285.150000px;}
.yc{bottom:285.195000px;}
.y5c{bottom:292.890000px;}
.y3c{bottom:293.970000px;}
.y41{bottom:300.030000px;}
.y6{bottom:305.385000px;}
.yb3{bottom:305.970000px;}
.y98{bottom:306.615000px;}
.y1b{bottom:309.570000px;}
.y65{bottom:323.280000px;}
.y99{bottom:328.065000px;}
.y1a{bottom:341.970000px;}
.y5{bottom:343.005000px;}
.yb{bottom:346.755000px;}
.y34{bottom:350.385000px;}
.y35{bottom:351.510000px;}
.y5b{bottom:354.135000px;}
.y3b{bottom:356.970000px;}
.y22{bottom:357.270000px;}
.y19{bottom:374.370000px;}
.y4a{bottom:377.100000px;}
.y6f{bottom:378.795000px;}
.y4{bottom:380.445000px;}
.y64{bottom:382.890000px;}
.y21{bottom:389.670000px;}
.y52{bottom:396.570000px;}
.y33{bottom:398.985000px;}
.y18{bottom:406.770000px;}
.y11{bottom:412.485000px;}
.y5a{bottom:415.335000px;}
.y3a{bottom:418.575000px;}
.y56{bottom:420.585000px;}
.y49{bottom:421.230000px;}
.y20{bottom:422.070000px;}
.yc7{bottom:424.590000px;}
.y6e{bottom:426.315000px;}
.yc6{bottom:433.335000px;}
.y63{bottom:437.970000px;}
.y17{bottom:439.200000px;}
.y51{bottom:446.610000px;}
.y32{bottom:447.585000px;}
.y2c{bottom:451.470000px;}
.y1f{bottom:454.470000px;}
.ya{bottom:462.060000px;}
.y48{bottom:471.450000px;}
.y16{bottom:471.600000px;}
.y10{bottom:471.885000px;}
.y82{bottom:472.785000px;}
.y39{bottom:476.175000px;}
.y59{bottom:476.535000px;}
.y7e{bottom:481.170000px;}
.y6d{bottom:485.715000px;}
.y2b{bottom:489.315000px;}
.yc5{bottom:492.735000px;}
.y62{bottom:493.050000px;}
.y31{bottom:496.185000px;}
.y55{bottom:501.585000px;}
.y50{bottom:504.210000px;}
.y8c{bottom:505.290000px;}
.y7d{bottom:513.615000px;}
.y47{bottom:520.050000px;}
.y2a{bottom:527.115000px;}
.yf{bottom:531.330000px;}
.y81{bottom:532.185000px;}
.y87{bottom:533.190000px;}
.y4f{bottom:533.370000px;}
.y13{bottom:534.210000px;}
.y38{bottom:535.215000px;}
.y58{bottom:537.765000px;}
.y30{bottom:544.830000px;}
.y6c{bottom:545.145000px;}
.y7c{bottom:546.015000px;}
.y25{bottom:549.105000px;}
.y61{bottom:549.795000px;}
.y27{bottom:550.155000px;}
.y54{bottom:550.230000px;}
.yc4{bottom:552.165000px;}
.y1{bottom:554.430000px;}
.y9{bottom:558.000000px;}
.y8b{bottom:564.735000px;}
.y29{bottom:564.915000px;}
.y46{bottom:577.695000px;}
.y24{bottom:578.985000px;}
.y26{bottom:580.035000px;}
.ye{bottom:590.730000px;}
.y37{bottom:591.585000px;}
.y80{bottom:591.630000px;}
.y86{bottom:592.635000px;}
.y2f{bottom:593.430000px;}
.y53{bottom:598.830000px;}
.y57{bottom:598.965000px;}
.y28{bottom:602.715000px;}
.y6b{bottom:604.545000px;}
.y6a{bottom:605.190000px;}
.y12{bottom:606.210000px;}
.y60{bottom:610.995000px;}
.yc3{bottom:611.565000px;}
.y23{bottom:612.105000px;}
.y45{bottom:623.775000px;}
.y8a{bottom:624.135000px;}
.y7f{bottom:694.050000px;}
.y5f{bottom:696.885000px;}
.y76{bottom:701.535000px;}
.yd{bottom:702.150000px;}
.y44{bottom:704.670000px;}
.h1e{height:35.798089px;}
.h1f{height:41.715352px;}
.h26{height:50.273438px;}
.h27{height:50.373984px;}
.hf{height:62.261719px;}
.h10{height:62.386242px;}
.h11{height:72.846211px;}
.h12{height:72.970734px;}
.h16{height:73.791563px;}
.h17{height:73.803562px;}
.h5{height:82.808086px;}
.h29{height:82.979438px;}
.h18{height:89.005781px;}
.h1a{height:89.112375px;}
.h13{height:93.392578px;}
.h22{height:93.445312px;}
.h15{height:93.517102px;}
.h23{height:93.569906px;}
.h14{height:94.661719px;}
.h9{height:97.183125px;}
.h4{height:101.628633px;}
.h19{height:103.977070px;}
.hd{height:104.035781px;}
.he{height:104.101594px;}
.h20{height:104.160375px;}
.h21{height:105.110508px;}
.h3{height:105.383672px;}
.hb{height:113.938945px;}
.hc{height:114.063469px;}
.h1c{height:126.054844px;}
.h8{height:135.184219px;}
.h2{height:141.793242px;}
.h7{height:176.325187px;}
.ha{height:186.785156px;}
.h1b{height:186.909680px;}
.h24{height:189.323438px;}
.h6{height:207.331523px;}
.h1{height:237.629531px;}
.h1d{height:254.384897px;}
.h28{height:336.600000px;}
.h25{height:377.100000px;}
.h0{height:810.000000px;}
.w2{width:362.730000px;}
.w4{width:622.800000px;}
.w3{width:635.220000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x54{left:30.420000px;}
.x6b{left:43.170000px;}
.x55{left:51.120000px;}
.x59{left:54.645000px;}
.x58{left:63.645000px;}
.x3d{left:64.905000px;}
.x2d{left:70.343979px;}
.x57{left:72.645000px;}
.x3c{left:73.905000px;}
.x25{left:78.443979px;}
.x2e{left:79.631979px;}
.x3b{left:81.683979px;}
.x39{left:85.067979px;}
.x1{left:87.227979px;}
.x1f{left:88.523979px;}
.x3a{left:89.567979px;}
.x32{left:90.827979px;}
.x2c{left:93.563979px;}
.xa{left:98.423979px;}
.x34{left:100.763979px;}
.x38{left:101.951979px;}
.x14{left:103.247979px;}
.x23{left:105.767979px;}
.x9{left:109.799979px;}
.x30{left:113.327979px;}
.x3e{left:114.555000px;}
.x2{left:119.483979px;}
.x1a{left:128.519979px;}
.x31{left:132.191979px;}
.x3f{left:135.180000px;}
.x2f{left:137.411979px;}
.xe{left:143.783979px;}
.x35{left:145.691979px;}
.x27{left:155.159979px;}
.x5{left:162.104979px;}
.x26{left:176.250000px;}
.x5a{left:184.680000px;}
.x6{left:194.504979px;}
.x40{left:196.995000px;}
.x5b{left:208.005000px;}
.x41{left:217.620000px;}
.x17{left:230.324979px;}
.x5c{left:231.375000px;}
.x42{left:238.215000px;}
.x3{left:245.699979px;}
.x5d{left:254.700000px;}
.x43{left:258.840000px;}
.x5e{left:278.025000px;}
.x44{left:279.435000px;}
.x45{left:300.030000px;}
.x5f{left:301.350000px;}
.x16{left:306.824979px;}
.x46{left:320.655000px;}
.x60{left:324.720000px;}
.x47{left:341.250000px;}
.x61{left:348.045000px;}
.x24{left:349.379979px;}
.xd{left:358.889979px;}
.x48{left:361.875000px;}
.x8{left:364.649979px;}
.x62{left:371.370000px;}
.x49{left:382.470000px;}
.x63{left:394.710000px;}
.x6c{left:400.289979px;}
.x4a{left:403.095000px;}
.xf{left:410.549979px;}
.x4{left:413.744979px;}
.x64{left:418.035000px;}
.x4b{left:423.690000px;}
.x10{left:431.789979px;}
.x65{left:441.390000px;}
.x4c{left:444.270000px;}
.x4d{left:464.910000px;}
.x7{left:472.829979px;}
.x4e{left:485.490000px;}
.x66{left:488.055000px;}
.x4f{left:506.130000px;}
.x67{left:511.380000px;}
.x50{left:526.710000px;}
.x68{left:534.750000px;}
.x51{left:547.350000px;}
.x69{left:558.075000px;}
.x52{left:567.930000px;}
.x36{left:569.774979px;}
.x1d{left:578.369979px;}
.x6a{left:581.400000px;}
.x15{left:588.209979px;}
.x1e{left:589.319979px;}
.x53{left:609.150000px;}
.x20{left:669.059979px;}
.x22{left:696.089979px;}
.x21{left:723.089979px;}
.x2a{left:750.344979px;}
.x56{left:761.040000px;}
.x1b{left:768.809979px;}
.x2b{left:777.344979px;}
.xc{left:797.189979px;}
.x1c{left:802.649979px;}
.x11{left:813.029979px;}
.x33{left:828.569979px;}
.x28{left:881.819979px;}
.x18{left:1003.784979px;}
.x37{left:1022.114979px;}
.x29{left:1033.709979px;}
.x19{left:1037.624979px;}
.xb{left:1061.819979px;}
.x12{left:1125.434979px;}
.x13{left:1146.674979px;}
@media print{
.v2{vertical-align:-72.320000pt;}
.v5{vertical-align:-28.800000pt;}
.v8{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:22.400000pt;}
.v4{vertical-align:28.800000pt;}
.v3{vertical-align:32.000000pt;}
.v7{vertical-align:38.400000pt;}
.v9{vertical-align:57.600000pt;}
.v1{vertical-align:72.320000pt;}
.ls4c{letter-spacing:-11.200000pt;}
.ls49{letter-spacing:-2.368000pt;}
.ls21{letter-spacing:-1.930667pt;}
.ls2f{letter-spacing:-1.909333pt;}
.ls14{letter-spacing:-1.829333pt;}
.ls3b{letter-spacing:-1.701333pt;}
.ls32{letter-spacing:-1.034667pt;}
.ls17{letter-spacing:-0.624000pt;}
.ls38{letter-spacing:-0.544000pt;}
.ls35{letter-spacing:-0.435733pt;}
.ls18{letter-spacing:-0.392533pt;}
.ls2e{letter-spacing:-0.321067pt;}
.ls39{letter-spacing:-0.289067pt;}
.ls11{letter-spacing:-0.275200pt;}
.ls16{letter-spacing:-0.265067pt;}
.ls2{letter-spacing:-0.259200pt;}
.ls45{letter-spacing:-0.256000pt;}
.ls3a{letter-spacing:-0.251200pt;}
.ls24{letter-spacing:-0.224000pt;}
.ls22{letter-spacing:-0.222933pt;}
.ls19{letter-spacing:-0.197333pt;}
.ls3c{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.152533pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls30{letter-spacing:-0.077333pt;}
.ls4a{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls1a{letter-spacing:-0.008320pt;}
.ls25{letter-spacing:-0.008053pt;}
.lsf{letter-spacing:-0.005109pt;}
.ls20{letter-spacing:-0.004992pt;}
.ls1e{letter-spacing:-0.000005pt;}
.ls1{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.026987pt;}
.ls42{letter-spacing:0.053867pt;}
.ls7{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.069888pt;}
.ls46{letter-spacing:0.077333pt;}
.ls31{letter-spacing:0.088533pt;}
.ls10{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.155200pt;}
.ls1d{letter-spacing:0.168448pt;}
.ls41{letter-spacing:0.182400pt;}
.ls33{letter-spacing:0.194133pt;}
.ls2d{letter-spacing:0.204267pt;}
.ls15{letter-spacing:0.224000pt;}
.ls34{letter-spacing:0.233600pt;}
.ls43{letter-spacing:0.310400pt;}
.ls47{letter-spacing:11.992320pt;}
.lsc{letter-spacing:15.963648pt;}
.lsb{letter-spacing:16.065280pt;}
.ls13{letter-spacing:19.776000pt;}
.ls8{letter-spacing:25.216000pt;}
.ls44{letter-spacing:25.220224pt;}
.ls48{letter-spacing:35.200000pt;}
.ls4b{letter-spacing:35.840000pt;}
.ls37{letter-spacing:41.920000pt;}
.ls4{letter-spacing:54.963200pt;}
.ls5{letter-spacing:55.008000pt;}
.ls28{letter-spacing:58.547200pt;}
.ls27{letter-spacing:58.592000pt;}
.ls12{letter-spacing:58.698667pt;}
.lsd{letter-spacing:60.865280pt;}
.ls1b{letter-spacing:62.355200pt;}
.ls1c{letter-spacing:62.400000pt;}
.ls29{letter-spacing:70.027947pt;}
.ls36{letter-spacing:82.912000pt;}
.lse{letter-spacing:86.720000pt;}
.ls3{letter-spacing:87.008000pt;}
.ls40{letter-spacing:88.115200pt;}
.ls3f{letter-spacing:88.160000pt;}
.ls2c{letter-spacing:93.606315pt;}
.ls2b{letter-spacing:98.726315pt;}
.ls2a{letter-spacing:98.827947pt;}
.ls26{letter-spacing:110.528000pt;}
.ls3d{letter-spacing:136.160000pt;}
.ls3e{letter-spacing:146.355200pt;}
.ws41{word-spacing:-73.193472pt;}
.ws3c{word-spacing:-73.105920pt;}
.ws7e{word-spacing:-65.664000pt;}
.ws87{word-spacing:-64.000000pt;}
.ws83{word-spacing:-43.776000pt;}
.ws21{word-spacing:-35.327995pt;}
.ws82{word-spacing:-35.200000pt;}
.ws50{word-spacing:-29.728341pt;}
.ws76{word-spacing:-29.498880pt;}
.ws75{word-spacing:-29.467520pt;}
.ws4e{word-spacing:-29.320192pt;}
.ws17{word-spacing:-29.285120pt;}
.ws1d{word-spacing:-29.276800pt;}
.ws4d{word-spacing:-29.242859pt;}
.ws81{word-spacing:-26.531328pt;}
.wse{word-spacing:-26.528000pt;}
.ws80{word-spacing:-26.496000pt;}
.ws11{word-spacing:-26.400000pt;}
.ws6{word-spacing:-26.339072pt;}
.ws10{word-spacing:-26.304000pt;}
.ws84{word-spacing:-23.936000pt;}
.ws7{word-spacing:-20.661771pt;}
.ws4{word-spacing:-20.517120pt;}
.ws8{word-spacing:-20.391680pt;}
.ws5{word-spacing:-17.600000pt;}
.ws23{word-spacing:-17.571072pt;}
.ws24{word-spacing:-17.566080pt;}
.ws3{word-spacing:-17.536000pt;}
.ws85{word-spacing:-16.032000pt;}
.ws86{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.161920pt;}
.ws22{word-spacing:-11.749120pt;}
.ws56{word-spacing:-1.546240pt;}
.ws30{word-spacing:-1.267968pt;}
.ws2e{word-spacing:-1.216000pt;}
.ws52{word-spacing:-1.188224pt;}
.ws58{word-spacing:-1.170773pt;}
.ws66{word-spacing:-1.135445pt;}
.ws1c{word-spacing:-1.134080pt;}
.ws35{word-spacing:-1.116800pt;}
.ws5d{word-spacing:-1.088000pt;}
.ws55{word-spacing:-1.082773pt;}
.ws64{word-spacing:-1.049856pt;}
.ws3d{word-spacing:-1.032960pt;}
.ws74{word-spacing:-0.992000pt;}
.ws4f{word-spacing:-0.976128pt;}
.ws51{word-spacing:-0.924160pt;}
.ws71{word-spacing:-0.864000pt;}
.ws1e{word-spacing:-0.856960pt;}
.ws42{word-spacing:-0.840704pt;}
.ws37{word-spacing:-0.826453pt;}
.ws54{word-spacing:-0.735573pt;}
.ws1f{word-spacing:-0.717440pt;}
.ws3e{word-spacing:-0.638080pt;}
.wsc{word-spacing:-0.626773pt;}
.ws62{word-spacing:-0.611712pt;}
.ws44{word-spacing:-0.597504pt;}
.ws5c{word-spacing:-0.590763pt;}
.ws1a{word-spacing:-0.577280pt;}
.ws36{word-spacing:-0.561280pt;}
.ws57{word-spacing:-0.544683pt;}
.wsd{word-spacing:-0.544000pt;}
.ws3b{word-spacing:-0.476800pt;}
.wsf{word-spacing:-0.448000pt;}
.ws40{word-spacing:-0.442816pt;}
.ws2f{word-spacing:-0.437333pt;}
.wsa{word-spacing:-0.436480pt;}
.ws2c{word-spacing:-0.416000pt;}
.ws20{word-spacing:-0.316800pt;}
.ws28{word-spacing:-0.301696pt;}
.ws5f{word-spacing:-0.288000pt;}
.ws31{word-spacing:-0.258475pt;}
.ws73{word-spacing:-0.256000pt;}
.ws70{word-spacing:-0.251520pt;}
.ws72{word-spacing:-0.245333pt;}
.ws12{word-spacing:-0.238720pt;}
.ws25{word-spacing:-0.210816pt;}
.ws2d{word-spacing:-0.160000pt;}
.ws32{word-spacing:-0.126016pt;}
.ws1b{word-spacing:-0.107008pt;}
.ws3f{word-spacing:-0.060928pt;}
.ws5e{word-spacing:-0.032000pt;}
.ws1{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.001920pt;}
.ws18{word-spacing:0.086400pt;}
.ws29{word-spacing:0.161152pt;}
.ws61{word-spacing:0.256000pt;}
.ws27{word-spacing:0.265088pt;}
.ws2b{word-spacing:0.320000pt;}
.ws53{word-spacing:0.364608pt;}
.ws19{word-spacing:0.388480pt;}
.ws60{word-spacing:0.448000pt;}
.ws67{word-spacing:0.513984pt;}
.ws63{word-spacing:0.531584pt;}
.ws7d{word-spacing:0.560640pt;}
.ws39{word-spacing:0.604160pt;}
.ws34{word-spacing:0.723627pt;}
.ws6f{word-spacing:0.849493pt;}
.ws33{word-spacing:0.980907pt;}
.ws2{word-spacing:1.284480pt;}
.ws38{word-spacing:3.087616pt;}
.ws65{word-spacing:3.113856pt;}
.wsb{word-spacing:3.637760pt;}
.ws43{word-spacing:3.727616pt;}
.ws26{word-spacing:3.753856pt;}
.ws7c{word-spacing:5.229867pt;}
.ws78{word-spacing:6.217600pt;}
.ws7a{word-spacing:6.462720pt;}
.ws77{word-spacing:6.535360pt;}
.ws79{word-spacing:6.683520pt;}
.ws45{word-spacing:6.847360pt;}
.ws46{word-spacing:7.583360pt;}
.ws49{word-spacing:7.651840pt;}
.ws4b{word-spacing:8.062720pt;}
.ws4c{word-spacing:8.068480pt;}
.ws47{word-spacing:8.170027pt;}
.ws13{word-spacing:8.266240pt;}
.ws15{word-spacing:8.387200pt;}
.ws48{word-spacing:8.671040pt;}
.ws16{word-spacing:9.095040pt;}
.ws2a{word-spacing:9.184000pt;}
.ws14{word-spacing:9.311040pt;}
.ws7f{word-spacing:9.920000pt;}
.ws4a{word-spacing:9.994880pt;}
.ws7b{word-spacing:10.037760pt;}
.ws6b{word-spacing:12.814507pt;}
.ws6e{word-spacing:13.083520pt;}
.ws68{word-spacing:13.187413pt;}
.ws69{word-spacing:13.486720pt;}
.ws6d{word-spacing:13.667840pt;}
.ws6c{word-spacing:14.468480pt;}
.ws6a{word-spacing:16.160427pt;}
.ws88{word-spacing:22.638080pt;}
.ws9{word-spacing:27.951787pt;}
.ws59{word-spacing:40.067413pt;}
.ws5a{word-spacing:40.269867pt;}
.ws5b{word-spacing:41.348480pt;}
._c{margin-left:-15.356373pt;}
._7{margin-left:-12.056960pt;}
._f{margin-left:-10.787627pt;}
._9{margin-left:-8.870400pt;}
._3{margin-left:-7.878400pt;}
._e{margin-left:-6.660693pt;}
._5{margin-left:-5.284693pt;}
._8{margin-left:-3.049813pt;}
._0{margin-left:-2.080000pt;}
._4{margin-left:-0.989653pt;}
._1{width:1.109333pt;}
._2{width:2.407680pt;}
._6{width:3.414400pt;}
._16{width:4.488960pt;}
._d{width:16.152320pt;}
._14{width:24.349653pt;}
._15{width:25.354667pt;}
._11{width:26.717653pt;}
._19{width:27.831680pt;}
._10{width:29.825920pt;}
._a{width:30.760320pt;}
._b{width:34.003200pt;}
._13{width:36.514987pt;}
._17{width:37.849387pt;}
._12{width:38.756480pt;}
._1a{width:44.013653pt;}
._18{width:71.054720pt;}
.fs18{font-size:31.992358pt;}
.fs19{font-size:42.880000pt;}
.fs15{font-size:49.920000pt;}
.fsf{font-size:64.000000pt;}
.fs10{font-size:64.128000pt;}
.fs4{font-size:71.040000pt;}
.fs11{font-size:74.880000pt;}
.fs12{font-size:75.008000pt;}
.fs5{font-size:85.120000pt;}
.fs1a{font-size:85.248000pt;}
.fs13{font-size:96.000000pt;}
.fs14{font-size:96.128000pt;}
.fsa{font-size:99.840000pt;}
.fs3{font-size:106.880000pt;}
.fse{font-size:107.008000pt;}
.fsc{font-size:117.120000pt;}
.fsd{font-size:117.248000pt;}
.fs17{font-size:128.000000pt;}
.fs9{font-size:138.880000pt;}
.fs2{font-size:149.120000pt;}
.fs1{font-size:160.000000pt;}
.fs7{font-size:181.120000pt;}
.fs8{font-size:181.248000pt;}
.fsb{font-size:192.000000pt;}
.fs16{font-size:192.128000pt;}
.fs6{font-size:213.120000pt;}
.fs0{font-size:240.768000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:3.840000pt;}
.yc0{bottom:8.480000pt;}
.y4c{bottom:9.737065pt;}
.y15{bottom:14.592000pt;}
.y1e{bottom:14.848000pt;}
.yc1{bottom:15.584000pt;}
.y2e{bottom:19.264000pt;}
.y85{bottom:19.872000pt;}
.y4e{bottom:28.992000pt;}
.y8d{bottom:29.824000pt;}
.y14{bottom:33.792000pt;}
.y1d{bottom:34.048000pt;}
.y89{bottom:34.272000pt;}
.ya5{bottom:34.946667pt;}
.ybf{bottom:37.786667pt;}
.y2d{bottom:38.464000pt;}
.y9d{bottom:38.533333pt;}
.y84{bottom:39.072000pt;}
.y69{bottom:40.288000pt;}
.ya6{bottom:40.293333pt;}
.yb7{bottom:41.373333pt;}
.ycb{bottom:43.072000pt;}
.yb6{bottom:43.133333pt;}
.y40{bottom:45.280000pt;}
.ya4{bottom:46.493333pt;}
.ybd{bottom:47.133333pt;}
.y9e{bottom:47.386667pt;}
.y9a{bottom:48.293333pt;}
.ybe{bottom:49.346667pt;}
.ya7{bottom:50.053333pt;}
.yb4{bottom:50.240000pt;}
.ya2{bottom:50.946667pt;}
.ybb{bottom:52.893333pt;}
.y4d{bottom:52.992000pt;}
.ya8{bottom:53.600000pt;}
.yaa{bottom:53.626667pt;}
.y9b{bottom:55.386667pt;}
.ya1{bottom:56.253333pt;}
.yba{bottom:56.453333pt;}
.yb8{bottom:56.506667pt;}
.y9c{bottom:58.053333pt;}
.ya9{bottom:58.080000pt;}
.yb5{bottom:58.240000pt;}
.y9f{bottom:58.906667pt;}
.y68{bottom:59.488000pt;}
.ybc{bottom:60.893333pt;}
.yb9{bottom:61.786667pt;}
.y3{bottom:78.144000pt;}
.ya3{bottom:79.426667pt;}
.yca{bottom:81.472000pt;}
.yab{bottom:82.080000pt;}
.y4b{bottom:82.837415pt;}
.y83{bottom:86.080000pt;}
.y8{bottom:87.232000pt;}
.y88{bottom:89.152000pt;}
.yc2{bottom:91.813333pt;}
.y8e{bottom:99.520000pt;}
.y8f{bottom:100.866667pt;}
.y3f{bottom:101.280000pt;}
.yad{bottom:103.706667pt;}
.y7{bottom:112.832000pt;}
.yc9{bottom:119.872000pt;}
.y90{bottom:119.933333pt;}
.y73{bottom:126.080000pt;}
.y2{bottom:126.944000pt;}
.y36{bottom:129.024000pt;}
.yae{bottom:131.746667pt;}
.y75{bottom:131.776000pt;}
.y91{bottom:139.013333pt;}
.y5e{bottom:151.546667pt;}
.y3e{bottom:157.306667pt;}
.yac{bottom:157.600000pt;}
.y92{bottom:158.080000pt;}
.yc8{bottom:158.306667pt;}
.yaf{bottom:159.813333pt;}
.y7b{bottom:162.880000pt;}
.y74{bottom:163.773333pt;}
.y72{bottom:168.186667pt;}
.y93{bottom:177.146667pt;}
.y78{bottom:178.586667pt;}
.y67{bottom:182.560000pt;}
.yb0{bottom:187.840000pt;}
.y94{bottom:196.253333pt;}
.y5d{bottom:205.946667pt;}
.y7a{bottom:206.106667pt;}
.y71{bottom:210.266667pt;}
.y3d{bottom:213.306667pt;}
.y95{bottom:215.333333pt;}
.yb1{bottom:215.866667pt;}
.y77{bottom:221.786667pt;}
.y43{bottom:228.293333pt;}
.y66{bottom:232.960000pt;}
.y96{bottom:234.400000pt;}
.yb2{bottom:243.933333pt;}
.y1c{bottom:246.373333pt;}
.y42{bottom:247.493333pt;}
.y79{bottom:249.306667pt;}
.y70{bottom:252.506667pt;}
.y97{bottom:253.466667pt;}
.yc{bottom:253.506667pt;}
.y5c{bottom:260.346667pt;}
.y3c{bottom:261.306667pt;}
.y41{bottom:266.693333pt;}
.y6{bottom:271.453333pt;}
.yb3{bottom:271.973333pt;}
.y98{bottom:272.546667pt;}
.y1b{bottom:275.173333pt;}
.y65{bottom:287.360000pt;}
.y99{bottom:291.613333pt;}
.y1a{bottom:303.973333pt;}
.y5{bottom:304.893333pt;}
.yb{bottom:308.226667pt;}
.y34{bottom:311.453333pt;}
.y35{bottom:312.453333pt;}
.y5b{bottom:314.786667pt;}
.y3b{bottom:317.306667pt;}
.y22{bottom:317.573333pt;}
.y19{bottom:332.773333pt;}
.y4a{bottom:335.200000pt;}
.y6f{bottom:336.706667pt;}
.y4{bottom:338.173333pt;}
.y64{bottom:340.346667pt;}
.y21{bottom:346.373333pt;}
.y52{bottom:352.506667pt;}
.y33{bottom:354.653333pt;}
.y18{bottom:361.573333pt;}
.y11{bottom:366.653333pt;}
.y5a{bottom:369.186667pt;}
.y3a{bottom:372.066667pt;}
.y56{bottom:373.853333pt;}
.y49{bottom:374.426667pt;}
.y20{bottom:375.173333pt;}
.yc7{bottom:377.413333pt;}
.y6e{bottom:378.946667pt;}
.yc6{bottom:385.186667pt;}
.y63{bottom:389.306667pt;}
.y17{bottom:390.400000pt;}
.y51{bottom:396.986667pt;}
.y32{bottom:397.853333pt;}
.y2c{bottom:401.306667pt;}
.y1f{bottom:403.973333pt;}
.ya{bottom:410.720000pt;}
.y48{bottom:419.066667pt;}
.y16{bottom:419.200000pt;}
.y10{bottom:419.453333pt;}
.y82{bottom:420.253333pt;}
.y39{bottom:423.266667pt;}
.y59{bottom:423.586667pt;}
.y7e{bottom:427.706667pt;}
.y6d{bottom:431.746667pt;}
.y2b{bottom:434.946667pt;}
.yc5{bottom:437.986667pt;}
.y62{bottom:438.266667pt;}
.y31{bottom:441.053333pt;}
.y55{bottom:445.853333pt;}
.y50{bottom:448.186667pt;}
.y8c{bottom:449.146667pt;}
.y7d{bottom:456.546667pt;}
.y47{bottom:462.266667pt;}
.y2a{bottom:468.546667pt;}
.yf{bottom:472.293333pt;}
.y81{bottom:473.053333pt;}
.y87{bottom:473.946667pt;}
.y4f{bottom:474.106667pt;}
.y13{bottom:474.853333pt;}
.y38{bottom:475.746667pt;}
.y58{bottom:478.013333pt;}
.y30{bottom:484.293333pt;}
.y6c{bottom:484.573333pt;}
.y7c{bottom:485.346667pt;}
.y25{bottom:488.093333pt;}
.y61{bottom:488.706667pt;}
.y27{bottom:489.026667pt;}
.y54{bottom:489.093333pt;}
.yc4{bottom:490.813333pt;}
.y1{bottom:492.826667pt;}
.y9{bottom:496.000000pt;}
.y8b{bottom:501.986667pt;}
.y29{bottom:502.146667pt;}
.y46{bottom:513.506667pt;}
.y24{bottom:514.653333pt;}
.y26{bottom:515.586667pt;}
.ye{bottom:525.093333pt;}
.y37{bottom:525.853333pt;}
.y80{bottom:525.893333pt;}
.y86{bottom:526.786667pt;}
.y2f{bottom:527.493333pt;}
.y53{bottom:532.293333pt;}
.y57{bottom:532.413333pt;}
.y28{bottom:535.746667pt;}
.y6b{bottom:537.373333pt;}
.y6a{bottom:537.946667pt;}
.y12{bottom:538.853333pt;}
.y60{bottom:543.106667pt;}
.yc3{bottom:543.613333pt;}
.y23{bottom:544.093333pt;}
.y45{bottom:554.466667pt;}
.y8a{bottom:554.786667pt;}
.y7f{bottom:616.933333pt;}
.y5f{bottom:619.453333pt;}
.y76{bottom:623.586667pt;}
.yd{bottom:624.133333pt;}
.y44{bottom:626.373333pt;}
.h1e{height:31.820524pt;}
.h1f{height:37.080312pt;}
.h26{height:44.687500pt;}
.h27{height:44.776875pt;}
.hf{height:55.343750pt;}
.h10{height:55.454437pt;}
.h11{height:64.752187pt;}
.h12{height:64.862875pt;}
.h16{height:65.592500pt;}
.h17{height:65.603167pt;}
.h5{height:73.607188pt;}
.h29{height:73.759500pt;}
.h18{height:79.116250pt;}
.h1a{height:79.211000pt;}
.h13{height:83.015625pt;}
.h22{height:83.062500pt;}
.h15{height:83.126312pt;}
.h23{height:83.173250pt;}
.h14{height:84.143750pt;}
.h9{height:86.385000pt;}
.h4{height:90.336562pt;}
.h19{height:92.424062pt;}
.hd{height:92.476250pt;}
.he{height:92.534750pt;}
.h20{height:92.587000pt;}
.h21{height:93.431562pt;}
.h3{height:93.674375pt;}
.hb{height:101.279062pt;}
.hc{height:101.389750pt;}
.h1c{height:112.048750pt;}
.h8{height:120.163750pt;}
.h2{height:126.038437pt;}
.h7{height:156.733500pt;}
.ha{height:166.031250pt;}
.h1b{height:166.141938pt;}
.h24{height:168.287500pt;}
.h6{height:184.294687pt;}
.h1{height:211.226250pt;}
.h1d{height:226.119908pt;}
.h28{height:299.200000pt;}
.h25{height:335.200000pt;}
.h0{height:720.000000pt;}
.w2{width:322.426667pt;}
.w4{width:553.600000pt;}
.w3{width:564.640000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x54{left:27.040000pt;}
.x6b{left:38.373333pt;}
.x55{left:45.440000pt;}
.x59{left:48.573333pt;}
.x58{left:56.573333pt;}
.x3d{left:57.693333pt;}
.x2d{left:62.527981pt;}
.x57{left:64.573333pt;}
.x3c{left:65.693333pt;}
.x25{left:69.727981pt;}
.x2e{left:70.783981pt;}
.x3b{left:72.607981pt;}
.x39{left:75.615981pt;}
.x1{left:77.535981pt;}
.x1f{left:78.687981pt;}
.x3a{left:79.615981pt;}
.x32{left:80.735981pt;}
.x2c{left:83.167981pt;}
.xa{left:87.487981pt;}
.x34{left:89.567981pt;}
.x38{left:90.623981pt;}
.x14{left:91.775981pt;}
.x23{left:94.015981pt;}
.x9{left:97.599981pt;}
.x30{left:100.735981pt;}
.x3e{left:101.826667pt;}
.x2{left:106.207981pt;}
.x1a{left:114.239981pt;}
.x31{left:117.503981pt;}
.x3f{left:120.160000pt;}
.x2f{left:122.143981pt;}
.xe{left:127.807981pt;}
.x35{left:129.503981pt;}
.x27{left:137.919981pt;}
.x5{left:144.093314pt;}
.x26{left:156.666667pt;}
.x5a{left:164.160000pt;}
.x6{left:172.893314pt;}
.x40{left:175.106667pt;}
.x5b{left:184.893333pt;}
.x41{left:193.440000pt;}
.x17{left:204.733314pt;}
.x5c{left:205.666667pt;}
.x42{left:211.746667pt;}
.x3{left:218.399981pt;}
.x5d{left:226.400000pt;}
.x43{left:230.080000pt;}
.x5e{left:247.133333pt;}
.x44{left:248.386667pt;}
.x45{left:266.693333pt;}
.x5f{left:267.866667pt;}
.x16{left:272.733314pt;}
.x46{left:285.026667pt;}
.x60{left:288.640000pt;}
.x47{left:303.333333pt;}
.x61{left:309.373333pt;}
.x24{left:310.559981pt;}
.xd{left:319.013314pt;}
.x48{left:321.666667pt;}
.x8{left:324.133314pt;}
.x62{left:330.106667pt;}
.x49{left:339.973333pt;}
.x63{left:350.853333pt;}
.x6c{left:355.813314pt;}
.x4a{left:358.306667pt;}
.xf{left:364.933314pt;}
.x4{left:367.773314pt;}
.x64{left:371.586667pt;}
.x4b{left:376.613333pt;}
.x10{left:383.813314pt;}
.x65{left:392.346667pt;}
.x4c{left:394.906667pt;}
.x4d{left:413.253333pt;}
.x7{left:420.293314pt;}
.x4e{left:431.546667pt;}
.x66{left:433.826667pt;}
.x4f{left:449.893333pt;}
.x67{left:454.560000pt;}
.x50{left:468.186667pt;}
.x68{left:475.333333pt;}
.x51{left:486.533333pt;}
.x69{left:496.066667pt;}
.x52{left:504.826667pt;}
.x36{left:506.466648pt;}
.x1d{left:514.106648pt;}
.x6a{left:516.800000pt;}
.x15{left:522.853314pt;}
.x1e{left:523.839981pt;}
.x53{left:541.466667pt;}
.x20{left:594.719981pt;}
.x22{left:618.746648pt;}
.x21{left:642.746648pt;}
.x2a{left:666.973314pt;}
.x56{left:676.480000pt;}
.x1b{left:683.386648pt;}
.x2b{left:690.973314pt;}
.xc{left:708.613314pt;}
.x1c{left:713.466648pt;}
.x11{left:722.693314pt;}
.x33{left:736.506648pt;}
.x28{left:783.839981pt;}
.x18{left:892.253314pt;}
.x37{left:908.546648pt;}
.x29{left:918.853314pt;}
.x19{left:922.333314pt;}
.xb{left:943.839981pt;}
.x12{left:1000.386648pt;}
.x13{left:1019.266648pt;}
}




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