
    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_561a94aea2c53b242c003ba8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_c8cc4482560ba3fb18196b94.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_7f33a4bb74115fe0f60b282d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_277f7a10476a44eb03dfc6c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_66927f93fbcefcf6dfe3437b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_e991465b694bdd86cb33d4a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.974609;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_0902d7530b3270f5ab2c13d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906250;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_4eb41d1b80a0a6ba9f593545.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_42496e4caa06ef61170f2e3b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.056641;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_4fceb9ac173e39f180ce0556.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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_8bdfbfa095c5e7b874947ec8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.311035;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_4b25f7c509d746556b18a6c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.740234;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_5ff58a4ec6f8945cc56d7ae9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.158691;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_a4482d6252ba87b60f43b36d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.207031;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_37df05d4ea548ef4feddfdb8.woff2')format("woff");}.fff{font-family:fff;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-115.920000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.376200px;}
.ls7{letter-spacing:-0.325200px;}
.ls1e{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.280200px;}
.ls35{letter-spacing:-0.244200px;}
.ls28{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.160200px;}
.ls34{letter-spacing:-0.152400px;}
.ls16{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.064200px;}
.ls2d{letter-spacing:-0.042600px;}
.ls10{letter-spacing:-0.037440px;}
.ls11{letter-spacing:-0.028080px;}
.ls30{letter-spacing:-0.021300px;}
.ls0{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.018720px;}
.lse{letter-spacing:0.028080px;}
.ls4{letter-spacing:0.036000px;}
.ls2a{letter-spacing:0.037440px;}
.ls12{letter-spacing:0.064080px;}
.ls15{letter-spacing:0.064200px;}
.ls2b{letter-spacing:0.101400px;}
.lsf{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.108000px;}
.ls37{letter-spacing:0.117600px;}
.ls2e{letter-spacing:0.208200px;}
.ls23{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.245400px;}
.ls36{letter-spacing:0.261600px;}
.ls1a{letter-spacing:0.325200px;}
.ls2c{letter-spacing:0.341400px;}
.ls1f{letter-spacing:0.539780px;}
.ls1d{letter-spacing:23.002560px;}
.ls1c{letter-spacing:23.068080px;}
.ls25{letter-spacing:25.237440px;}
.ls26{letter-spacing:26.677440px;}
.ls2f{letter-spacing:27.378720px;}
.ls21{letter-spacing:28.828224px;}
.ls20{letter-spacing:28.942560px;}
.ls24{letter-spacing:29.736000px;}
.ls27{letter-spacing:29.916000px;}
.ls22{letter-spacing:29.952000px;}
.ls5{letter-spacing:30.348000px;}
.ls2{letter-spacing:30.464064px;}
.ls1{letter-spacing:33.226560px;}
.ls29{letter-spacing:78.192000px;}
.lsb{letter-spacing:85.966560px;}
.ls18{letter-spacing:103.233600px;}
.ls17{letter-spacing:103.284000px;}
.ls13{letter-spacing:105.514560px;}
.ls14{letter-spacing:106.234560px;}
.lsa{letter-spacing:120.009600px;}
.ls8{letter-spacing:120.060000px;}
.ls19{letter-spacing:124.149600px;}
.ls9{letter-spacing:124.200000px;}
.ls3{letter-spacing:124.344000px;}
.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;}
}
.ws27{word-spacing:-73.458720px;}
.ws2{word-spacing:-66.693312px;}
.ws12{word-spacing:-66.653280px;}
.ws72{word-spacing:-66.007680px;}
.ws74{word-spacing:-65.863680px;}
.ws73{word-spacing:-65.746080px;}
.ws1a{word-spacing:-60.048000px;}
.wsa{word-spacing:-53.442720px;}
.ws19{word-spacing:-46.677312px;}
.ws18{word-spacing:-46.637280px;}
.ws6f{word-spacing:-42.172080px;}
.ws70{word-spacing:-42.130968px;}
.ws77{word-spacing:-41.122080px;}
.ws2a{word-spacing:-40.072032px;}
.ws30{word-spacing:-40.032000px;}
.ws76{word-spacing:-38.016000px;}
.ws1{word-spacing:-33.426720px;}
.ws4{word-spacing:-30.024000px;}
.ws9{word-spacing:-26.661312px;}
.ws2e{word-spacing:-26.621280px;}
.ws6e{word-spacing:-26.618712px;}
.ws26{word-spacing:-23.930247px;}
.ws28{word-spacing:-23.418720px;}
.wsf{word-spacing:-23.390640px;}
.ws38{word-spacing:-20.016000px;}
.ws36{word-spacing:-6.192000px;}
.ws29{word-spacing:-4.487616px;}
.ws2f{word-spacing:-4.464000px;}
.ws11{word-spacing:-2.528640px;}
.ws10{word-spacing:-1.950720px;}
.ws2b{word-spacing:-1.584000px;}
.ws1e{word-spacing:-1.070640px;}
.ws1b{word-spacing:-1.013280px;}
.ws2d{word-spacing:-1.008000px;}
.ws14{word-spacing:-0.947160px;}
.ws58{word-spacing:-0.838800px;}
.ws37{word-spacing:-0.816000px;}
.ws69{word-spacing:-0.790272px;}
.ws25{word-spacing:-0.708000px;}
.ws1d{word-spacing:-0.684000px;}
.ws46{word-spacing:-0.682560px;}
.ws4f{word-spacing:-0.655200px;}
.ws6d{word-spacing:-0.632880px;}
.ws47{word-spacing:-0.626760px;}
.ws57{word-spacing:-0.480240px;}
.ws24{word-spacing:-0.438624px;}
.ws68{word-spacing:-0.434880px;}
.ws71{word-spacing:-0.405504px;}
.ws56{word-spacing:-0.360360px;}
.ws21{word-spacing:-0.350640px;}
.ws6a{word-spacing:-0.338400px;}
.ws34{word-spacing:-0.324000px;}
.ws32{word-spacing:-0.303840px;}
.ws4d{word-spacing:-0.290400px;}
.ws66{word-spacing:-0.249840px;}
.ws6c{word-spacing:-0.240360px;}
.ws48{word-spacing:-0.178080px;}
.ws54{word-spacing:-0.124800px;}
.ws23{word-spacing:-0.084240px;}
.ws55{word-spacing:-0.069840px;}
.ws15{word-spacing:-0.048240px;}
.ws50{word-spacing:-0.022848px;}
.ws49{word-spacing:-0.018720px;}
.ws0{word-spacing:0.000000px;}
.ws4e{word-spacing:0.021240px;}
.ws52{word-spacing:0.032160px;}
.ws78{word-spacing:0.072000px;}
.ws45{word-spacing:0.161280px;}
.ws44{word-spacing:0.276480px;}
.ws43{word-spacing:0.285120px;}
.ws20{word-spacing:0.324000px;}
.ws4a{word-spacing:0.378720px;}
.ws53{word-spacing:0.507600px;}
.ws3b{word-spacing:0.560016px;}
.ws3a{word-spacing:0.648000px;}
.ws6b{word-spacing:0.677376px;}
.ws31{word-spacing:0.680160px;}
.ws4c{word-spacing:0.701280px;}
.ws51{word-spacing:0.757440px;}
.ws67{word-spacing:0.758160px;}
.ws42{word-spacing:0.779040px;}
.ws35{word-spacing:0.792000px;}
.ws2c{word-spacing:0.948000px;}
.ws33{word-spacing:1.250640px;}
.ws22{word-spacing:1.296000px;}
.ws4b{word-spacing:2.258640px;}
.ws60{word-spacing:10.439640px;}
.ws61{word-spacing:10.458720px;}
.ws64{word-spacing:10.781280px;}
.ws63{word-spacing:11.198160px;}
.ws65{word-spacing:11.270160px;}
.ws62{word-spacing:11.501280px;}
.ws3c{word-spacing:12.277440px;}
.ws3d{word-spacing:12.333240px;}
.ws3e{word-spacing:12.580320px;}
.ws3f{word-spacing:12.941280px;}
.ws40{word-spacing:13.430160px;}
.ws41{word-spacing:13.581120px;}
.ws5e{word-spacing:18.285120px;}
.ws5c{word-spacing:18.701280px;}
.ws5b{word-spacing:18.702480px;}
.ws5a{word-spacing:18.881280px;}
.ws5d{word-spacing:18.886320px;}
.ws59{word-spacing:18.996480px;}
.ws5f{word-spacing:19.368480px;}
.ws3{word-spacing:20.135520px;}
.ws5{word-spacing:32.373360px;}
.ws1f{word-spacing:36.972000px;}
.ws16{word-spacing:64.475280px;}
.ws17{word-spacing:64.554552px;}
.ws7{word-spacing:65.405376px;}
.ws6{word-spacing:65.493360px;}
.ws75{word-spacing:75.096000px;}
.ws13{word-spacing:75.204720px;}
.ws8{word-spacing:88.533360px;}
.wsc{word-spacing:135.173880px;}
.wsb{word-spacing:135.277848px;}
.wsd{word-spacing:147.503520px;}
.ws1c{word-spacing:162.972000px;}
.wse{word-spacing:189.948240px;}
.ws39{word-spacing:384.600000px;}
._9{margin-left:-16.200000px;}
._10{margin-left:-11.088000px;}
._8{margin-left:-8.640000px;}
._d{margin-left:-7.508880px;}
._12{margin-left:-6.129600px;}
._11{margin-left:-4.896000px;}
._7{margin-left:-3.798240px;}
._1{margin-left:-2.404800px;}
._0{margin-left:-1.322640px;}
._2{width:1.082160px;}
._3{width:2.188800px;}
._5{width:3.583440px;}
._c{width:6.619499px;}
._6{width:20.606640px;}
._15{width:27.245520px;}
._14{width:28.343520px;}
._e{width:29.439360px;}
._f{width:30.489840px;}
._17{width:38.293920px;}
._13{width:40.631040px;}
._16{width:46.854240px;}
._18{width:54.511920px;}
._19{width:113.046624px;}
._4{width:121.960080px;}
._a{width:152.628000px;}
._b{width:397.778640px;}
.fc8{color:rgb(0,102,153);}
.fc7{color:rgb(0,102,102);}
.fc4{color:rgb(153,204,0);}
.fc6{color:rgb(0,0,102);}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc5{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs13{font-size:71.970667px;}
.fs17{font-size:72.000000px;}
.fs18{font-size:72.144000px;}
.fs10{font-size:84.240000px;}
.fs11{font-size:84.384000px;}
.fs12{font-size:95.720987px;}
.fs9{font-size:95.760000px;}
.fsa{font-size:95.904000px;}
.fs3{font-size:108.000000px;}
.fs8{font-size:108.144000px;}
.fs1{font-size:120.240000px;}
.fs2{font-size:120.384000px;}
.fsb{font-size:144.000000px;}
.fsc{font-size:144.144000px;}
.fsd{font-size:167.760000px;}
.fsf{font-size:167.904000px;}
.fs16{font-size:180.000000px;}
.fs14{font-size:180.144000px;}
.fs6{font-size:192.240000px;}
.fs7{font-size:192.384000px;}
.fse{font-size:216.000000px;}
.fs5{font-size:239.760000px;}
.fs4{font-size:239.904000px;}
.fs0{font-size:264.240000px;}
.fs1a{font-size:396.000000px;}
.fs19{font-size:396.144000px;}
.fs15{font-size:540.144000px;}
.y0{bottom:0.000000px;}
.yf3{bottom:9.468000px;}
.y9e{bottom:23.047117px;}
.y53{bottom:31.752000px;}
.yd1{bottom:51.084000px;}
.yf2{bottom:52.704000px;}
.y52{bottom:60.552000px;}
.y9d{bottom:62.091204px;}
.ybb{bottom:63.792000px;}
.y8c{bottom:78.300000px;}
.yf7{bottom:90.612000px;}
.yba{bottom:92.592000px;}
.yf1{bottom:95.904000px;}
.y8d{bottom:96.479990px;}
.yb4{bottom:96.588000px;}
.y123{bottom:99.720000px;}
.ya9{bottom:100.800000px;}
.y9c{bottom:102.934557px;}
.ye0{bottom:106.452000px;}
.ydf{bottom:109.620000px;}
.y116{bottom:112.320000px;}
.y12e{bottom:113.400000px;}
.y1b{bottom:116.100000px;}
.y5a{bottom:118.980000px;}
.yb9{bottom:121.392000px;}
.yd0{bottom:125.424000px;}
.yb3{bottom:128.988000px;}
.y51{bottom:129.708000px;}
.y122{bottom:132.120000px;}
.ya{bottom:132.660000px;}
.y7e{bottom:133.236000px;}
.y71{bottom:133.380000px;}
.y6b{bottom:134.280000px;}
.yde{bottom:134.748000px;}
.y10c{bottom:135.000000px;}
.y27{bottom:135.540000px;}
.y3b{bottom:138.780000px;}
.y11{bottom:139.860000px;}
.y8b{bottom:140.400000px;}
.y105{bottom:141.480000px;}
.yef{bottom:144.432000px;}
.ya8{bottom:146.160000px;}
.ycf{bottom:147.024000px;}
.y9b{bottom:147.556371px;}
.y1a{bottom:148.500000px;}
.y12d{bottom:149.040000px;}
.y44{bottom:154.260000px;}
.y50{bottom:158.505000px;}
.y59{bottom:159.870000px;}
.y121{bottom:164.550000px;}
.y3a{bottom:167.970000px;}
.y8a{bottom:168.150000px;}
.y9{bottom:168.690000px;}
.y7d{bottom:168.870000px;}
.yee{bottom:173.235000px;}
.y10{bottom:175.890000px;}
.yb2{bottom:177.585000px;}
.y115{bottom:183.630000px;}
.y12c{bottom:184.710000px;}
.y9a{bottom:186.419032px;}
.y4f{bottom:187.305000px;}
.yf6{bottom:193.395000px;}
.y2e{bottom:193.890000px;}
.y6a{bottom:194.790000px;}
.y89{bottom:195.870000px;}
.y120{bottom:196.950000px;}
.y39{bottom:197.130000px;}
.y43{bottom:197.490000px;}
.ya7{bottom:201.630000px;}
.yed{bottom:202.035000px;}
.y7c{bottom:204.510000px;}
.y8{bottom:204.690000px;}
.y104{bottom:206.310000px;}
.y58{bottom:211.710000px;}
.yce{bottom:211.860000px;}
.yf{bottom:211.890000px;}
.y26{bottom:213.330000px;}
.y76{bottom:214.410000px;}
.ydc{bottom:218.910000px;}
.y12b{bottom:220.350000px;}
.y88{bottom:223.590000px;}
.ybf{bottom:224.715000px;}
.y62{bottom:225.000000px;}
.y99{bottom:225.103266px;}
.y19{bottom:226.290000px;}
.yec{bottom:230.865000px;}
.y38{bottom:232.770000px;}
.yfc{bottom:232.950000px;}
.y22{bottom:234.750000px;}
.y11f{bottom:235.830000px;}
.yc0{bottom:236.910000px;}
.y7b{bottom:240.150000px;}
.ycd{bottom:244.260000px;}
.y7{bottom:247.890000px;}
.y114{bottom:254.910000px;}
.y69{bottom:255.270000px;}
.y12a{bottom:255.990000px;}
.y4e{bottom:256.425000px;}
.ya6{bottom:257.070000px;}
.y18{bottom:258.690000px;}
.y75{bottom:259.770000px;}
.y70{bottom:260.130000px;}
.y61{bottom:261.000000px;}
.y37{bottom:261.930000px;}
.ydb{bottom:262.155000px;}
.yb1{bottom:262.800000px;}
.y98{bottom:264.012408px;}
.y11e{bottom:268.230000px;}
.y103{bottom:271.110000px;}
.y2d{bottom:273.090000px;}
.yeb{bottom:274.065000px;}
.ybe{bottom:275.295000px;}
.y7a{bottom:275.835000px;}
.y10b{bottom:277.590000px;}
.y68{bottom:280.470000px;}
.y42{bottom:283.890000px;}
.y113{bottom:284.070000px;}
.y87{bottom:288.210000px;}
.y6{bottom:291.090000px;}
.y129{bottom:291.630000px;}
.yb0{bottom:295.200000px;}
.ye{bottom:298.290000px;}
.ya5{bottom:302.475000px;}
.y97{bottom:302.876568px;}
.y21{bottom:303.915000px;}
.y74{bottom:305.175000px;}
.yda{bottom:305.355000px;}
.y11d{bottom:307.155000px;}
.ycc{bottom:309.090000px;}
.y57{bottom:315.435000px;}
.yfb{bottom:319.395000px;}
.yab{bottom:319.755000px;}
.y4d{bottom:325.590000px;}
.y41{bottom:327.135000px;}
.y36{bottom:333.255000px;}
.yd{bottom:334.335000px;}
.y102{bottom:335.955000px;}
.y17{bottom:336.495000px;}
.yea{bottom:338.220000px;}
.y67{bottom:341.355000px;}
.ycb{bottom:341.490000px;}
.y96{bottom:341.560802px;}
.y11c{bottom:346.035000px;}
.y60{bottom:347.400000px;}
.yd9{bottom:348.555000px;}
.y10a{bottom:348.915000px;}
.y86{bottom:350.355000px;}
.y79{bottom:350.535000px;}
.y2c{bottom:352.335000px;}
.y4c{bottom:354.390000px;}
.y112{bottom:355.395000px;}
.ya4{bottom:357.915000px;}
.y56{bottom:358.635000px;}
.y20{bottom:361.515000px;}
.y35{bottom:362.415000px;}
.ye9{bottom:367.020000px;}
.y128{bottom:367.635000px;}
.y16{bottom:368.895000px;}
.yca{bottom:373.890000px;}
.ybd{bottom:381.495000px;}
.y95{bottom:382.404155px;}
.y5f{bottom:383.430000px;}
.y111{bottom:384.555000px;}
.y11b{bottom:384.915000px;}
.y6f{bottom:386.895000px;}
.yac{bottom:389.130000px;}
.yaf{bottom:390.270000px;}
.yd8{bottom:391.785000px;}
.yc2{bottom:395.790000px;}
.yf5{bottom:397.440000px;}
.y34{bottom:398.055000px;}
.ydd{bottom:398.445000px;}
.yaa{bottom:398.985000px;}
.y101{bottom:400.755000px;}
.y15{bottom:401.295000px;}
.y55{bottom:401.835000px;}
.yfa{bottom:405.795000px;}
.y78{bottom:405.975000px;}
.yc9{bottom:406.290000px;}
.y85{bottom:407.055000px;}
.ye8{bottom:410.220000px;}
.ya3{bottom:413.355000px;}
.y40{bottom:413.535000px;}
.y110{bottom:413.715000px;}
.y109{bottom:420.195000px;}
.y4b{bottom:423.540000px;}
.y11a{bottom:423.795000px;}
.y33{bottom:427.215000px;}
.ybc{bottom:427.395000px;}
.y3e{bottom:427.935000px;}
.y94{bottom:429.005162px;}
.y1f{bottom:430.635000px;}
.y2b{bottom:431.535000px;}
.yd7{bottom:434.985000px;}
.yc8{bottom:438.690000px;}
.y127{bottom:442.155000px;}
.y66{bottom:442.335000px;}
.y54{bottom:445.035000px;}
.y25{bottom:446.655000px;}
.y4a{bottom:452.340000px;}
.y3f{bottom:456.765000px;}
.y77{bottom:461.445000px;}
.y119{bottom:463.425000px;}
.y5{bottom:463.965000px;}
.y100{bottom:465.585000px;}
.ya2{bottom:468.825000px;}
.y84{bottom:469.185000px;}
.y73{bottom:471.525000px;}
.y93{bottom:473.806903px;}
.y126{bottom:477.825000px;}
.y14{bottom:479.085000px;}
.ye7{bottom:484.995000px;}
.y10f{bottom:485.025000px;}
.yd6{bottom:490.350000px;}
.y108{bottom:491.505000px;}
.yf9{bottom:492.225000px;}
.y83{bottom:496.905000px;}
.y32{bottom:498.525000px;}
.y4{bottom:499.965000px;}
.ye1{bottom:501.090000px;}
.yc7{bottom:503.535000px;}
.yc{bottom:507.165000px;}
.ye6{bottom:507.855000px;}
.yb8{bottom:509.400000px;}
.y2a{bottom:510.765000px;}
.y13{bottom:511.485000px;}
.y92{bottom:512.701051px;}
.y5e{bottom:513.030000px;}
.y125{bottom:513.465000px;}
.y6e{bottom:513.645000px;}
.y72{bottom:516.885000px;}
.y10e{bottom:520.665000px;}
.y49{bottom:521.460000px;}
.ya1{bottom:524.265000px;}
.yc6{bottom:525.135000px;}
.y31{bottom:527.685000px;}
.y65{bottom:528.765000px;}
.yd5{bottom:529.890000px;}
.yff{bottom:530.385000px;}
.yc1{bottom:531.930000px;}
.ye5{bottom:536.655000px;}
.yf4{bottom:541.650000px;}
.yb{bottom:543.165000px;}
.y5d{bottom:549.075000px;}
.y118{bottom:549.825000px;}
.y48{bottom:550.260000px;}
.y3d{bottom:550.365000px;}
.y91{bottom:551.385284px;}
.y82{bottom:553.605000px;}
.y10d{bottom:556.305000px;}
.y24{bottom:556.845000px;}
.yb7{bottom:560.010000px;}
.yc5{bottom:561.930000px;}
.y107{bottom:562.785000px;}
.y30{bottom:563.325000px;}
.ye4{bottom:565.485000px;}
.y2{bottom:568.470000px;}
.y9f{bottom:568.838170px;}
.yd4{bottom:575.310000px;}
.ya0{bottom:579.705000px;}
.yd3{bottom:583.020000px;}
.y1e{bottom:585.510000px;}
.y117{bottom:585.825000px;}
.y3c{bottom:586.365000px;}
.y12{bottom:589.245000px;}
.y124{bottom:589.425000px;}
.y29{bottom:589.965000px;}
.y106{bottom:591.945000px;}
.y90{bottom:592.048711px;}
.y2f{bottom:592.485000px;}
.ye3{bottom:594.285000px;}
.yc4{bottom:594.330000px;}
.yfe{bottom:595.230000px;}
.yd2{bottom:611.820000px;}
.y6d{bottom:614.370000px;}
.yae{bottom:617.325000px;}
.y47{bottom:619.410000px;}
.yf0{bottom:631.335000px;}
.y8f{bottom:638.649718px;}
.y1{bottom:647.715000px;}
.y46{bottom:648.210000px;}
.y81{bottom:657.465000px;}
.y1d{bottom:657.510000px;}
.yf8{bottom:657.825000px;}
.y5c{bottom:663.405000px;}
.y8e{bottom:668.337615px;}
.y3{bottom:685.365000px;}
.y6c{bottom:686.415000px;}
.y23{bottom:687.705000px;}
.y64{bottom:689.865000px;}
.y7f{bottom:690.990000px;}
.y28{bottom:692.205000px;}
.y63{bottom:694.365000px;}
.yb6{bottom:704.085000px;}
.ye2{bottom:705.525000px;}
.y45{bottom:708.450000px;}
.yfd{bottom:709.665000px;}
.y12f{bottom:719.025000px;}
.y5b{bottom:721.005000px;}
.y80{bottom:722.265000px;}
.yc3{bottom:722.445000px;}
.y1c{bottom:729.540000px;}
.yad{bottom:730.440000px;}
.yb5{bottom:747.285000px;}
.h19{height:70.635274px;}
.h1e{height:75.093750px;}
.h1f{height:75.243937px;}
.h18{height:83.288476px;}
.ha{height:85.847344px;}
.hd{height:85.976438px;}
.h15{height:87.859687px;}
.h16{height:88.009875px;}
.h1a{height:96.468808px;}
.hb{height:99.874688px;}
.hc{height:100.024875px;}
.h11{height:107.793281px;}
.h29{height:108.052734px;}
.h28{height:108.196805px;}
.h4{height:112.640625px;}
.h9{height:112.790813px;}
.h26{height:120.298711px;}
.h27{height:120.442781px;}
.h2{height:125.406562px;}
.h3{height:125.556750px;}
.he{height:130.007812px;}
.h22{height:139.955977px;}
.h23{height:140.060812px;}
.h25{height:144.070312px;}
.hf{height:150.187500px;}
.h10{height:150.337688px;}
.h12{height:174.968437px;}
.h14{height:175.118625px;}
.h1d{height:187.734375px;}
.h1b{height:187.884563px;}
.h24{height:192.333867px;}
.h2a{height:193.640625px;}
.h7{height:200.500313px;}
.h8{height:200.650500px;}
.h13{height:225.281250px;}
.h6{height:250.062187px;}
.h5{height:250.212375px;}
.h1{height:275.594063px;}
.h21{height:303.187500px;}
.h20{height:303.297750px;}
.h1c{height:413.547750px;}
.h17{height:616.698665px;}
.h0{height:810.000000px;}
.w2{width:1062.190254px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x38{left:3.059468px;}
.x36{left:8.999999px;}
.x19{left:10.799984px;}
.x40{left:23.543984px;}
.x41{left:25.991984px;}
.x4c{left:32.003984px;}
.x2f{left:40.427984px;}
.x4d{left:48.059984px;}
.x1a{left:51.299984px;}
.x27{left:57.491984px;}
.x48{left:61.667984px;}
.x47{left:63.143984px;}
.x4{left:64.799984px;}
.x30{left:66.131984px;}
.x25{left:69.191984px;}
.x14{left:79.811984px;}
.x31{left:96.875984px;}
.x1c{left:99.719984px;}
.xc{left:105.335984px;}
.x42{left:106.559984px;}
.x1e{left:113.075984px;}
.xb{left:114.335984px;}
.xd{left:121.895984px;}
.x1d{left:123.155984px;}
.x21{left:124.595984px;}
.x13{left:125.675984px;}
.x4a{left:127.439984px;}
.x28{left:129.491984px;}
.x2b{left:134.495984px;}
.xa{left:139.967984px;}
.x1f{left:145.115984px;}
.x45{left:150.659984px;}
.x3{left:156.344984px;}
.x3d{left:159.509984px;}
.x4e{left:163.109984px;}
.x44{left:165.959984px;}
.x6{left:172.829984px;}
.x1{left:178.844984px;}
.xe{left:180.389984px;}
.xf{left:183.884984px;}
.x23{left:195.764984px;}
.x11{left:197.069984px;}
.x10{left:198.509984px;}
.x2d{left:202.244984px;}
.x18{left:215.024984px;}
.x32{left:218.984984px;}
.x26{left:226.724984px;}
.x3a{left:236.054984px;}
.x39{left:237.674984px;}
.x29{left:244.184984px;}
.x43{left:246.959984px;}
.x15{left:249.044984px;}
.x46{left:251.279984px;}
.x51{left:255.674984px;}
.x2a{left:275.864984px;}
.x50{left:280.829984px;}
.x4f{left:290.234984px;}
.x52{left:299.909984px;}
.x2{left:323.789984px;}
.x37{left:328.832806px;}
.x4b{left:341.609984px;}
.x12{left:360.359984px;}
.x33{left:361.409984px;}
.x2e{left:368.969984px;}
.x1b{left:370.589984px;}
.x22{left:409.934984px;}
.x24{left:449.249984px;}
.x20{left:472.394984px;}
.x3c{left:474.374984px;}
.x7{left:493.814984px;}
.x53{left:496.874984px;}
.x3b{left:508.034984px;}
.x8{left:518.654984px;}
.x9{left:521.534984px;}
.x3e{left:526.679984px;}
.x16{left:559.904984px;}
.x49{left:577.979984px;}
.x17{left:600.404984px;}
.x5{left:604.904984px;}
.x2c{left:663.224984px;}
.x3f{left:673.589984px;}
.x34{left:726.944984px;}
.x35{left:738.644984px;}
@media print{
.v1{vertical-align:-103.040000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.334400pt;}
.ls7{letter-spacing:-0.289067pt;}
.ls1e{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.249067pt;}
.ls35{letter-spacing:-0.217067pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.142400pt;}
.ls34{letter-spacing:-0.135467pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.057067pt;}
.ls2d{letter-spacing:-0.037867pt;}
.ls10{letter-spacing:-0.033280pt;}
.ls11{letter-spacing:-0.024960pt;}
.ls30{letter-spacing:-0.018933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.016640pt;}
.lse{letter-spacing:0.024960pt;}
.ls4{letter-spacing:0.032000pt;}
.ls2a{letter-spacing:0.033280pt;}
.ls12{letter-spacing:0.056960pt;}
.ls15{letter-spacing:0.057067pt;}
.ls2b{letter-spacing:0.090133pt;}
.lsf{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.096000pt;}
.ls37{letter-spacing:0.104533pt;}
.ls2e{letter-spacing:0.185067pt;}
.ls23{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.218133pt;}
.ls36{letter-spacing:0.232533pt;}
.ls1a{letter-spacing:0.289067pt;}
.ls2c{letter-spacing:0.303467pt;}
.ls1f{letter-spacing:0.479804pt;}
.ls1d{letter-spacing:20.446720pt;}
.ls1c{letter-spacing:20.504960pt;}
.ls25{letter-spacing:22.433280pt;}
.ls26{letter-spacing:23.713280pt;}
.ls2f{letter-spacing:24.336640pt;}
.ls21{letter-spacing:25.625088pt;}
.ls20{letter-spacing:25.726720pt;}
.ls24{letter-spacing:26.432000pt;}
.ls27{letter-spacing:26.592000pt;}
.ls22{letter-spacing:26.624000pt;}
.ls5{letter-spacing:26.976000pt;}
.ls2{letter-spacing:27.079168pt;}
.ls1{letter-spacing:29.534720pt;}
.ls29{letter-spacing:69.504000pt;}
.lsb{letter-spacing:76.414720pt;}
.ls18{letter-spacing:91.763200pt;}
.ls17{letter-spacing:91.808000pt;}
.ls13{letter-spacing:93.790720pt;}
.ls14{letter-spacing:94.430720pt;}
.lsa{letter-spacing:106.675200pt;}
.ls8{letter-spacing:106.720000pt;}
.ls19{letter-spacing:110.355200pt;}
.ls9{letter-spacing:110.400000pt;}
.ls3{letter-spacing:110.528000pt;}
.ws27{word-spacing:-65.296640pt;}
.ws2{word-spacing:-59.282944pt;}
.ws12{word-spacing:-59.247360pt;}
.ws72{word-spacing:-58.673493pt;}
.ws74{word-spacing:-58.545493pt;}
.ws73{word-spacing:-58.440960pt;}
.ws1a{word-spacing:-53.376000pt;}
.wsa{word-spacing:-47.504640pt;}
.ws19{word-spacing:-41.490944pt;}
.ws18{word-spacing:-41.455360pt;}
.ws6f{word-spacing:-37.486293pt;}
.ws70{word-spacing:-37.449749pt;}
.ws77{word-spacing:-36.552960pt;}
.ws2a{word-spacing:-35.619584pt;}
.ws30{word-spacing:-35.584000pt;}
.ws76{word-spacing:-33.792000pt;}
.ws1{word-spacing:-29.712640pt;}
.ws4{word-spacing:-26.688000pt;}
.ws9{word-spacing:-23.698944pt;}
.ws2e{word-spacing:-23.663360pt;}
.ws6e{word-spacing:-23.661077pt;}
.ws26{word-spacing:-21.271331pt;}
.ws28{word-spacing:-20.816640pt;}
.wsf{word-spacing:-20.791680pt;}
.ws38{word-spacing:-17.792000pt;}
.ws36{word-spacing:-5.504000pt;}
.ws29{word-spacing:-3.988992pt;}
.ws2f{word-spacing:-3.968000pt;}
.ws11{word-spacing:-2.247680pt;}
.ws10{word-spacing:-1.733973pt;}
.ws2b{word-spacing:-1.408000pt;}
.ws1e{word-spacing:-0.951680pt;}
.ws1b{word-spacing:-0.900693pt;}
.ws2d{word-spacing:-0.896000pt;}
.ws14{word-spacing:-0.841920pt;}
.ws58{word-spacing:-0.745600pt;}
.ws37{word-spacing:-0.725333pt;}
.ws69{word-spacing:-0.702464pt;}
.ws25{word-spacing:-0.629333pt;}
.ws1d{word-spacing:-0.608000pt;}
.ws46{word-spacing:-0.606720pt;}
.ws4f{word-spacing:-0.582400pt;}
.ws6d{word-spacing:-0.562560pt;}
.ws47{word-spacing:-0.557120pt;}
.ws57{word-spacing:-0.426880pt;}
.ws24{word-spacing:-0.389888pt;}
.ws68{word-spacing:-0.386560pt;}
.ws71{word-spacing:-0.360448pt;}
.ws56{word-spacing:-0.320320pt;}
.ws21{word-spacing:-0.311680pt;}
.ws6a{word-spacing:-0.300800pt;}
.ws34{word-spacing:-0.288000pt;}
.ws32{word-spacing:-0.270080pt;}
.ws4d{word-spacing:-0.258133pt;}
.ws66{word-spacing:-0.222080pt;}
.ws6c{word-spacing:-0.213653pt;}
.ws48{word-spacing:-0.158293pt;}
.ws54{word-spacing:-0.110933pt;}
.ws23{word-spacing:-0.074880pt;}
.ws55{word-spacing:-0.062080pt;}
.ws15{word-spacing:-0.042880pt;}
.ws50{word-spacing:-0.020309pt;}
.ws49{word-spacing:-0.016640pt;}
.ws0{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.018880pt;}
.ws52{word-spacing:0.028587pt;}
.ws78{word-spacing:0.064000pt;}
.ws45{word-spacing:0.143360pt;}
.ws44{word-spacing:0.245760pt;}
.ws43{word-spacing:0.253440pt;}
.ws20{word-spacing:0.288000pt;}
.ws4a{word-spacing:0.336640pt;}
.ws53{word-spacing:0.451200pt;}
.ws3b{word-spacing:0.497792pt;}
.ws3a{word-spacing:0.576000pt;}
.ws6b{word-spacing:0.602112pt;}
.ws31{word-spacing:0.604587pt;}
.ws4c{word-spacing:0.623360pt;}
.ws51{word-spacing:0.673280pt;}
.ws67{word-spacing:0.673920pt;}
.ws42{word-spacing:0.692480pt;}
.ws35{word-spacing:0.704000pt;}
.ws2c{word-spacing:0.842667pt;}
.ws33{word-spacing:1.111680pt;}
.ws22{word-spacing:1.152000pt;}
.ws4b{word-spacing:2.007680pt;}
.ws60{word-spacing:9.279680pt;}
.ws61{word-spacing:9.296640pt;}
.ws64{word-spacing:9.583360pt;}
.ws63{word-spacing:9.953920pt;}
.ws65{word-spacing:10.017920pt;}
.ws62{word-spacing:10.223360pt;}
.ws3c{word-spacing:10.913280pt;}
.ws3d{word-spacing:10.962880pt;}
.ws3e{word-spacing:11.182507pt;}
.ws3f{word-spacing:11.503360pt;}
.ws40{word-spacing:11.937920pt;}
.ws41{word-spacing:12.072107pt;}
.ws5e{word-spacing:16.253440pt;}
.ws5c{word-spacing:16.623360pt;}
.ws5b{word-spacing:16.624427pt;}
.ws5a{word-spacing:16.783360pt;}
.ws5d{word-spacing:16.787840pt;}
.ws59{word-spacing:16.885760pt;}
.ws5f{word-spacing:17.216427pt;}
.ws3{word-spacing:17.898240pt;}
.ws5{word-spacing:28.776320pt;}
.ws1f{word-spacing:32.864000pt;}
.ws16{word-spacing:57.311360pt;}
.ws17{word-spacing:57.381824pt;}
.ws7{word-spacing:58.138112pt;}
.ws6{word-spacing:58.216320pt;}
.ws75{word-spacing:66.752000pt;}
.ws13{word-spacing:66.848640pt;}
.ws8{word-spacing:78.696320pt;}
.wsc{word-spacing:120.154560pt;}
.wsb{word-spacing:120.246976pt;}
.wsd{word-spacing:131.114240pt;}
.ws1c{word-spacing:144.864000pt;}
.wse{word-spacing:168.842880pt;}
.ws39{word-spacing:341.866667pt;}
._9{margin-left:-14.400000pt;}
._10{margin-left:-9.856000pt;}
._8{margin-left:-7.680000pt;}
._d{margin-left:-6.674560pt;}
._12{margin-left:-5.448533pt;}
._11{margin-left:-4.352000pt;}
._7{margin-left:-3.376213pt;}
._1{margin-left:-2.137600pt;}
._0{margin-left:-1.175680pt;}
._2{width:0.961920pt;}
._3{width:1.945600pt;}
._5{width:3.185280pt;}
._c{width:5.883999pt;}
._6{width:18.317013pt;}
._15{width:24.218240pt;}
._14{width:25.194240pt;}
._e{width:26.168320pt;}
._f{width:27.102080pt;}
._17{width:34.039040pt;}
._13{width:36.116480pt;}
._16{width:41.648213pt;}
._18{width:48.455040pt;}
._19{width:100.485888pt;}
._4{width:108.408960pt;}
._a{width:135.669333pt;}
._b{width:353.581013pt;}
.fs13{font-size:63.973926pt;}
.fs17{font-size:64.000000pt;}
.fs18{font-size:64.128000pt;}
.fs10{font-size:74.880000pt;}
.fs11{font-size:75.008000pt;}
.fs12{font-size:85.085322pt;}
.fs9{font-size:85.120000pt;}
.fsa{font-size:85.248000pt;}
.fs3{font-size:96.000000pt;}
.fs8{font-size:96.128000pt;}
.fs1{font-size:106.880000pt;}
.fs2{font-size:107.008000pt;}
.fsb{font-size:128.000000pt;}
.fsc{font-size:128.128000pt;}
.fsd{font-size:149.120000pt;}
.fsf{font-size:149.248000pt;}
.fs16{font-size:160.000000pt;}
.fs14{font-size:160.128000pt;}
.fs6{font-size:170.880000pt;}
.fs7{font-size:171.008000pt;}
.fse{font-size:192.000000pt;}
.fs5{font-size:213.120000pt;}
.fs4{font-size:213.248000pt;}
.fs0{font-size:234.880000pt;}
.fs1a{font-size:352.000000pt;}
.fs19{font-size:352.128000pt;}
.fs15{font-size:480.128000pt;}
.y0{bottom:0.000000pt;}
.yf3{bottom:8.416000pt;}
.y9e{bottom:20.486326pt;}
.y53{bottom:28.224000pt;}
.yd1{bottom:45.408000pt;}
.yf2{bottom:46.848000pt;}
.y52{bottom:53.824000pt;}
.y9d{bottom:55.192181pt;}
.ybb{bottom:56.704000pt;}
.y8c{bottom:69.600000pt;}
.yf7{bottom:80.544000pt;}
.yba{bottom:82.304000pt;}
.yf1{bottom:85.248000pt;}
.y8d{bottom:85.759991pt;}
.yb4{bottom:85.856000pt;}
.y123{bottom:88.640000pt;}
.ya9{bottom:89.600000pt;}
.y9c{bottom:91.497384pt;}
.ye0{bottom:94.624000pt;}
.ydf{bottom:97.440000pt;}
.y116{bottom:99.840000pt;}
.y12e{bottom:100.800000pt;}
.y1b{bottom:103.200000pt;}
.y5a{bottom:105.760000pt;}
.yb9{bottom:107.904000pt;}
.yd0{bottom:111.488000pt;}
.yb3{bottom:114.656000pt;}
.y51{bottom:115.296000pt;}
.y122{bottom:117.440000pt;}
.ya{bottom:117.920000pt;}
.y7e{bottom:118.432000pt;}
.y71{bottom:118.560000pt;}
.y6b{bottom:119.360000pt;}
.yde{bottom:119.776000pt;}
.y10c{bottom:120.000000pt;}
.y27{bottom:120.480000pt;}
.y3b{bottom:123.360000pt;}
.y11{bottom:124.320000pt;}
.y8b{bottom:124.800000pt;}
.y105{bottom:125.760000pt;}
.yef{bottom:128.384000pt;}
.ya8{bottom:129.920000pt;}
.ycf{bottom:130.688000pt;}
.y9b{bottom:131.161219pt;}
.y1a{bottom:132.000000pt;}
.y12d{bottom:132.480000pt;}
.y44{bottom:137.120000pt;}
.y50{bottom:140.893333pt;}
.y59{bottom:142.106667pt;}
.y121{bottom:146.266667pt;}
.y3a{bottom:149.306667pt;}
.y8a{bottom:149.466667pt;}
.y9{bottom:149.946667pt;}
.y7d{bottom:150.106667pt;}
.yee{bottom:153.986667pt;}
.y10{bottom:156.346667pt;}
.yb2{bottom:157.853333pt;}
.y115{bottom:163.226667pt;}
.y12c{bottom:164.186667pt;}
.y9a{bottom:165.705806pt;}
.y4f{bottom:166.493333pt;}
.yf6{bottom:171.906667pt;}
.y2e{bottom:172.346667pt;}
.y6a{bottom:173.146667pt;}
.y89{bottom:174.106667pt;}
.y120{bottom:175.066667pt;}
.y39{bottom:175.226667pt;}
.y43{bottom:175.546667pt;}
.ya7{bottom:179.226667pt;}
.yed{bottom:179.586667pt;}
.y7c{bottom:181.786667pt;}
.y8{bottom:181.946667pt;}
.y104{bottom:183.386667pt;}
.y58{bottom:188.186667pt;}
.yce{bottom:188.320000pt;}
.yf{bottom:188.346667pt;}
.y26{bottom:189.626667pt;}
.y76{bottom:190.586667pt;}
.ydc{bottom:194.586667pt;}
.y12b{bottom:195.866667pt;}
.y88{bottom:198.746667pt;}
.ybf{bottom:199.746667pt;}
.y62{bottom:200.000000pt;}
.y99{bottom:200.091792pt;}
.y19{bottom:201.146667pt;}
.yec{bottom:205.213333pt;}
.y38{bottom:206.906667pt;}
.yfc{bottom:207.066667pt;}
.y22{bottom:208.666667pt;}
.y11f{bottom:209.626667pt;}
.yc0{bottom:210.586667pt;}
.y7b{bottom:213.466667pt;}
.ycd{bottom:217.120000pt;}
.y7{bottom:220.346667pt;}
.y114{bottom:226.586667pt;}
.y69{bottom:226.906667pt;}
.y12a{bottom:227.546667pt;}
.y4e{bottom:227.933333pt;}
.ya6{bottom:228.506667pt;}
.y18{bottom:229.946667pt;}
.y75{bottom:230.906667pt;}
.y70{bottom:231.226667pt;}
.y61{bottom:232.000000pt;}
.y37{bottom:232.826667pt;}
.ydb{bottom:233.026667pt;}
.yb1{bottom:233.600000pt;}
.y98{bottom:234.677696pt;}
.y11e{bottom:238.426667pt;}
.y103{bottom:240.986667pt;}
.y2d{bottom:242.746667pt;}
.yeb{bottom:243.613333pt;}
.ybe{bottom:244.706667pt;}
.y7a{bottom:245.186667pt;}
.y10b{bottom:246.746667pt;}
.y68{bottom:249.306667pt;}
.y42{bottom:252.346667pt;}
.y113{bottom:252.506667pt;}
.y87{bottom:256.186667pt;}
.y6{bottom:258.746667pt;}
.y129{bottom:259.226667pt;}
.yb0{bottom:262.400000pt;}
.ye{bottom:265.146667pt;}
.ya5{bottom:268.866667pt;}
.y97{bottom:269.223616pt;}
.y21{bottom:270.146667pt;}
.y74{bottom:271.266667pt;}
.yda{bottom:271.426667pt;}
.y11d{bottom:273.026667pt;}
.ycc{bottom:274.746667pt;}
.y57{bottom:280.386667pt;}
.yfb{bottom:283.906667pt;}
.yab{bottom:284.226667pt;}
.y4d{bottom:289.413333pt;}
.y41{bottom:290.786667pt;}
.y36{bottom:296.226667pt;}
.yd{bottom:297.186667pt;}
.y102{bottom:298.626667pt;}
.y17{bottom:299.106667pt;}
.yea{bottom:300.640000pt;}
.y67{bottom:303.426667pt;}
.ycb{bottom:303.546667pt;}
.y96{bottom:303.609601pt;}
.y11c{bottom:307.586667pt;}
.y60{bottom:308.800000pt;}
.yd9{bottom:309.826667pt;}
.y10a{bottom:310.146667pt;}
.y86{bottom:311.426667pt;}
.y79{bottom:311.586667pt;}
.y2c{bottom:313.186667pt;}
.y4c{bottom:315.013333pt;}
.y112{bottom:315.906667pt;}
.ya4{bottom:318.146667pt;}
.y56{bottom:318.786667pt;}
.y20{bottom:321.346667pt;}
.y35{bottom:322.146667pt;}
.ye9{bottom:326.240000pt;}
.y128{bottom:326.786667pt;}
.y16{bottom:327.906667pt;}
.yca{bottom:332.346667pt;}
.ybd{bottom:339.106667pt;}
.y95{bottom:339.914805pt;}
.y5f{bottom:340.826667pt;}
.y111{bottom:341.826667pt;}
.y11b{bottom:342.146667pt;}
.y6f{bottom:343.906667pt;}
.yac{bottom:345.893333pt;}
.yaf{bottom:346.906667pt;}
.yd8{bottom:348.253333pt;}
.yc2{bottom:351.813333pt;}
.yf5{bottom:353.280000pt;}
.y34{bottom:353.826667pt;}
.ydd{bottom:354.173333pt;}
.yaa{bottom:354.653333pt;}
.y101{bottom:356.226667pt;}
.y15{bottom:356.706667pt;}
.y55{bottom:357.186667pt;}
.yfa{bottom:360.706667pt;}
.y78{bottom:360.866667pt;}
.yc9{bottom:361.146667pt;}
.y85{bottom:361.826667pt;}
.ye8{bottom:364.640000pt;}
.ya3{bottom:367.426667pt;}
.y40{bottom:367.586667pt;}
.y110{bottom:367.746667pt;}
.y109{bottom:373.506667pt;}
.y4b{bottom:376.480000pt;}
.y11a{bottom:376.706667pt;}
.y33{bottom:379.746667pt;}
.ybc{bottom:379.906667pt;}
.y3e{bottom:380.386667pt;}
.y94{bottom:381.337922pt;}
.y1f{bottom:382.786667pt;}
.y2b{bottom:383.586667pt;}
.yd7{bottom:386.653333pt;}
.yc8{bottom:389.946667pt;}
.y127{bottom:393.026667pt;}
.y66{bottom:393.186667pt;}
.y54{bottom:395.586667pt;}
.y25{bottom:397.026667pt;}
.y4a{bottom:402.080000pt;}
.y3f{bottom:406.013333pt;}
.y77{bottom:410.173333pt;}
.y119{bottom:411.933333pt;}
.y5{bottom:412.413333pt;}
.y100{bottom:413.853333pt;}
.ya2{bottom:416.733333pt;}
.y84{bottom:417.053333pt;}
.y73{bottom:419.133333pt;}
.y93{bottom:421.161691pt;}
.y126{bottom:424.733333pt;}
.y14{bottom:425.853333pt;}
.ye7{bottom:431.106667pt;}
.y10f{bottom:431.133333pt;}
.yd6{bottom:435.866667pt;}
.y108{bottom:436.893333pt;}
.yf9{bottom:437.533333pt;}
.y83{bottom:441.693333pt;}
.y32{bottom:443.133333pt;}
.y4{bottom:444.413333pt;}
.ye1{bottom:445.413333pt;}
.yc7{bottom:447.586667pt;}
.yc{bottom:450.813333pt;}
.ye6{bottom:451.426667pt;}
.yb8{bottom:452.800000pt;}
.y2a{bottom:454.013333pt;}
.y13{bottom:454.653333pt;}
.y92{bottom:455.734267pt;}
.y5e{bottom:456.026667pt;}
.y125{bottom:456.413333pt;}
.y6e{bottom:456.573333pt;}
.y72{bottom:459.453333pt;}
.y10e{bottom:462.813333pt;}
.y49{bottom:463.520000pt;}
.ya1{bottom:466.013333pt;}
.yc6{bottom:466.786667pt;}
.y31{bottom:469.053333pt;}
.y65{bottom:470.013333pt;}
.yd5{bottom:471.013333pt;}
.yff{bottom:471.453333pt;}
.yc1{bottom:472.826667pt;}
.ye5{bottom:477.026667pt;}
.yf4{bottom:481.466667pt;}
.yb{bottom:482.813333pt;}
.y5d{bottom:488.066667pt;}
.y118{bottom:488.733333pt;}
.y48{bottom:489.120000pt;}
.y3d{bottom:489.213333pt;}
.y91{bottom:490.120253pt;}
.y82{bottom:492.093333pt;}
.y10d{bottom:494.493333pt;}
.y24{bottom:494.973333pt;}
.yb7{bottom:497.786667pt;}
.yc5{bottom:499.493333pt;}
.y107{bottom:500.253333pt;}
.y30{bottom:500.733333pt;}
.ye4{bottom:502.653333pt;}
.y2{bottom:505.306667pt;}
.y9f{bottom:505.633929pt;}
.yd4{bottom:511.386667pt;}
.ya0{bottom:515.293333pt;}
.yd3{bottom:518.240000pt;}
.y1e{bottom:520.453333pt;}
.y117{bottom:520.733333pt;}
.y3c{bottom:521.213333pt;}
.y12{bottom:523.773333pt;}
.y124{bottom:523.933333pt;}
.y29{bottom:524.413333pt;}
.y106{bottom:526.173333pt;}
.y90{bottom:526.265521pt;}
.y2f{bottom:526.653333pt;}
.ye3{bottom:528.253333pt;}
.yc4{bottom:528.293333pt;}
.yfe{bottom:529.093333pt;}
.yd2{bottom:543.840000pt;}
.y6d{bottom:546.106667pt;}
.yae{bottom:548.733333pt;}
.y47{bottom:550.586667pt;}
.yf0{bottom:561.186667pt;}
.y8f{bottom:567.688638pt;}
.y1{bottom:575.746667pt;}
.y46{bottom:576.186667pt;}
.y81{bottom:584.413333pt;}
.y1d{bottom:584.453333pt;}
.yf8{bottom:584.733333pt;}
.y5c{bottom:589.693333pt;}
.y8e{bottom:594.077880pt;}
.y3{bottom:609.213333pt;}
.y6c{bottom:610.146667pt;}
.y23{bottom:611.293333pt;}
.y64{bottom:613.213333pt;}
.y7f{bottom:614.213333pt;}
.y28{bottom:615.293333pt;}
.y63{bottom:617.213333pt;}
.yb6{bottom:625.853333pt;}
.ye2{bottom:627.133333pt;}
.y45{bottom:629.733333pt;}
.yfd{bottom:630.813333pt;}
.y12f{bottom:639.133333pt;}
.y5b{bottom:640.893333pt;}
.y80{bottom:642.013333pt;}
.yc3{bottom:642.173333pt;}
.y1c{bottom:648.480000pt;}
.yad{bottom:649.280000pt;}
.yb5{bottom:664.253333pt;}
.h19{height:62.786910pt;}
.h1e{height:66.750000pt;}
.h1f{height:66.883500pt;}
.h18{height:74.034201pt;}
.ha{height:76.308750pt;}
.hd{height:76.423500pt;}
.h15{height:78.097500pt;}
.h16{height:78.231000pt;}
.h1a{height:85.750051pt;}
.hb{height:88.777500pt;}
.hc{height:88.911000pt;}
.h11{height:95.816250pt;}
.h29{height:96.046875pt;}
.h28{height:96.174937pt;}
.h4{height:100.125000pt;}
.h9{height:100.258500pt;}
.h26{height:106.932187pt;}
.h27{height:107.060250pt;}
.h2{height:111.472500pt;}
.h3{height:111.606000pt;}
.he{height:115.562500pt;}
.h22{height:124.405313pt;}
.h23{height:124.498500pt;}
.h25{height:128.062500pt;}
.hf{height:133.500000pt;}
.h10{height:133.633500pt;}
.h12{height:155.527500pt;}
.h14{height:155.661000pt;}
.h1d{height:166.875000pt;}
.h1b{height:167.008500pt;}
.h24{height:170.963437pt;}
.h2a{height:172.125000pt;}
.h7{height:178.222500pt;}
.h8{height:178.356000pt;}
.h13{height:200.250000pt;}
.h6{height:222.277500pt;}
.h5{height:222.411000pt;}
.h1{height:244.972500pt;}
.h21{height:269.500000pt;}
.h20{height:269.598000pt;}
.h1c{height:367.598000pt;}
.h17{height:548.176591pt;}
.h0{height:720.000000pt;}
.w2{width:944.169114pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x38{left:2.719527pt;}
.x36{left:7.999999pt;}
.x19{left:9.599986pt;}
.x40{left:20.927986pt;}
.x41{left:23.103986pt;}
.x4c{left:28.447986pt;}
.x2f{left:35.935986pt;}
.x4d{left:42.719986pt;}
.x1a{left:45.599986pt;}
.x27{left:51.103986pt;}
.x48{left:54.815986pt;}
.x47{left:56.127986pt;}
.x4{left:57.599986pt;}
.x30{left:58.783986pt;}
.x25{left:61.503986pt;}
.x14{left:70.943986pt;}
.x31{left:86.111986pt;}
.x1c{left:88.639986pt;}
.xc{left:93.631986pt;}
.x42{left:94.719986pt;}
.x1e{left:100.511986pt;}
.xb{left:101.631986pt;}
.xd{left:108.351986pt;}
.x1d{left:109.471986pt;}
.x21{left:110.751986pt;}
.x13{left:111.711986pt;}
.x4a{left:113.279986pt;}
.x28{left:115.103986pt;}
.x2b{left:119.551986pt;}
.xa{left:124.415986pt;}
.x1f{left:128.991986pt;}
.x45{left:133.919986pt;}
.x3{left:138.973319pt;}
.x3d{left:141.786652pt;}
.x4e{left:144.986652pt;}
.x44{left:147.519986pt;}
.x6{left:153.626652pt;}
.x1{left:158.973319pt;}
.xe{left:160.346652pt;}
.xf{left:163.453319pt;}
.x23{left:174.013319pt;}
.x11{left:175.173319pt;}
.x10{left:176.453319pt;}
.x2d{left:179.773319pt;}
.x18{left:191.133319pt;}
.x32{left:194.653319pt;}
.x26{left:201.533319pt;}
.x3a{left:209.826652pt;}
.x39{left:211.266652pt;}
.x29{left:217.053319pt;}
.x43{left:219.519986pt;}
.x15{left:221.373319pt;}
.x46{left:223.359986pt;}
.x51{left:227.266652pt;}
.x2a{left:245.213319pt;}
.x50{left:249.626652pt;}
.x4f{left:257.986652pt;}
.x52{left:266.586652pt;}
.x2{left:287.813319pt;}
.x37{left:292.295828pt;}
.x4b{left:303.653319pt;}
.x12{left:320.319986pt;}
.x33{left:321.253319pt;}
.x2e{left:327.973319pt;}
.x1b{left:329.413319pt;}
.x22{left:364.386652pt;}
.x24{left:399.333319pt;}
.x20{left:419.906652pt;}
.x3c{left:421.666652pt;}
.x7{left:438.946652pt;}
.x53{left:441.666652pt;}
.x3b{left:451.586652pt;}
.x8{left:461.026652pt;}
.x9{left:463.586652pt;}
.x3e{left:468.159986pt;}
.x16{left:497.693319pt;}
.x49{left:513.759986pt;}
.x17{left:533.693319pt;}
.x5{left:537.693319pt;}
.x2c{left:589.533319pt;}
.x3f{left:598.746652pt;}
.x34{left:646.173319pt;}
.x35{left:656.573319pt;}
}




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