
    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_a24510168b4fe4b1ee49efda.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.101000;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_62ef42fb5875fedef0978419.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.063000;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_730fd62b39139d2919d5aa23.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064000;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_52d0679b490d1a09df4cbc8b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.063000;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_aea9df3b721fd73b19059bce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.083000;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_62ef42fb5875fedef0978419.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.063000;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_31fe3c4e2639c2fa3f63abfa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.812000;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_8c3147cd0e7cc9531593c9e8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063000;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_46091bd60e944e58092540b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.083000;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_97fee6a2b5427b41cc65a69a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.730469;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_8d9656a022a22fb63a4110ed.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.014648;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.876000px;}
.ls3b{letter-spacing:-3.300000px;}
.ls39{letter-spacing:-1.980000px;}
.ls3c{letter-spacing:-1.914000px;}
.ls1f{letter-spacing:-1.584000px;}
.ls3a{letter-spacing:-1.518000px;}
.ls20{letter-spacing:-1.452000px;}
.ls3e{letter-spacing:-1.386000px;}
.ls1e{letter-spacing:-1.254000px;}
.ls2e{letter-spacing:-1.122000px;}
.ls2c{letter-spacing:-0.990000px;}
.ls2f{letter-spacing:-0.858000px;}
.ls1d{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.768000px;}
.lsf{letter-spacing:-0.726000px;}
.ls30{letter-spacing:-0.660000px;}
.ls2d{letter-spacing:-0.594000px;}
.ls10{letter-spacing:-0.528000px;}
.ls12{letter-spacing:-0.480000px;}
.lsb{letter-spacing:-0.462000px;}
.ls13{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.396000px;}
.ls14{letter-spacing:-0.336000px;}
.lse{letter-spacing:-0.330000px;}
.ls34{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.264000px;}
.ls15{letter-spacing:-0.240000px;}
.ls1c{letter-spacing:-0.198000px;}
.ls33{letter-spacing:-0.192000px;}
.ls21{letter-spacing:-0.132000px;}
.lsa{letter-spacing:-0.066000px;}
.ls6{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.033000px;}
.ls32{letter-spacing:0.048000px;}
.ls2{letter-spacing:0.066000px;}
.ls2a{letter-spacing:0.096000px;}
.ls3{letter-spacing:0.132000px;}
.ls31{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.165000px;}
.ls19{letter-spacing:0.174000px;}
.ls18{letter-spacing:0.192000px;}
.ls1{letter-spacing:0.198000px;}
.ls17{letter-spacing:0.240000px;}
.ls1b{letter-spacing:0.244200px;}
.ls28{letter-spacing:0.264000px;}
.ls1a{letter-spacing:0.336000px;}
.ls27{letter-spacing:0.384000px;}
.ls9{letter-spacing:0.396000px;}
.ls22{letter-spacing:0.462000px;}
.ls16{letter-spacing:0.528000px;}
.ls0{letter-spacing:0.594000px;}
.ls24{letter-spacing:0.660000px;}
.ls25{letter-spacing:0.792000px;}
.ls23{letter-spacing:0.858000px;}
.ls7{letter-spacing:0.990000px;}
.ls4{letter-spacing:1.008000px;}
.ls5{letter-spacing:1.099200px;}
.ls35{letter-spacing:1.254000px;}
.ls36{letter-spacing:1.848000px;}
.ls2b{letter-spacing:2.193600px;}
.ls38{letter-spacing:2.640000px;}
.ls37{letter-spacing:3.036000px;}
.ls3d{letter-spacing:3.762000px;}
.ls8{letter-spacing:4.026000px;}
.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;}
}
.ws1{word-spacing:-19.404000px;}
.ws85{word-spacing:-18.414000px;}
.ws86{word-spacing:-18.018000px;}
.ws83{word-spacing:-17.226000px;}
.ws89{word-spacing:-16.632000px;}
.ws81{word-spacing:-15.972000px;}
.ws2{word-spacing:-15.774000px;}
.ws84{word-spacing:-15.378000px;}
.ws82{word-spacing:-15.180000px;}
.ws8b{word-spacing:-14.850000px;}
.ws99{word-spacing:-14.256000px;}
.ws8f{word-spacing:-13.992000px;}
.ws88{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.530000px;}
.ws8a{word-spacing:-13.464000px;}
.ws87{word-spacing:-13.398000px;}
.ws6f{word-spacing:-12.804000px;}
.ws6{word-spacing:-12.192000px;}
.ws8c{word-spacing:-12.012000px;}
.ws8e{word-spacing:-11.748000px;}
.ws4d{word-spacing:-11.715000px;}
.ws39{word-spacing:-11.682000px;}
.ws22{word-spacing:-11.550000px;}
.ws24{word-spacing:-11.520000px;}
.ws8d{word-spacing:-11.484000px;}
.ws4e{word-spacing:-11.280000px;}
.ws70{word-spacing:-11.232000px;}
.ws5{word-spacing:-11.184000px;}
.ws4{word-spacing:-11.154000px;}
.ws71{word-spacing:-10.896000px;}
.ws3{word-spacing:-8.965374px;}
.ws97{word-spacing:-3.762000px;}
.ws61{word-spacing:-3.300000px;}
.ws63{word-spacing:-3.168000px;}
.ws12{word-spacing:-3.102000px;}
.wsd{word-spacing:-3.036000px;}
.ws92{word-spacing:-2.970000px;}
.ws25{word-spacing:-2.904000px;}
.ws6d{word-spacing:-2.838000px;}
.ws9{word-spacing:-2.772000px;}
.ws14{word-spacing:-2.640000px;}
.ws54{word-spacing:-2.574000px;}
.ws2e{word-spacing:-2.442000px;}
.ws51{word-spacing:-2.376000px;}
.ws30{word-spacing:-2.310000px;}
.ws1d{word-spacing:-2.256000px;}
.ws2c{word-spacing:-2.244000px;}
.ws20{word-spacing:-2.208000px;}
.ws55{word-spacing:-2.178000px;}
.ws3a{word-spacing:-2.112000px;}
.ws2d{word-spacing:-2.046000px;}
.ws31{word-spacing:-1.980000px;}
.ws4c{word-spacing:-1.968000px;}
.ws5d{word-spacing:-1.920000px;}
.ws11{word-spacing:-1.914000px;}
.ws96{word-spacing:-1.848000px;}
.ws93{word-spacing:-1.716000px;}
.ws78{word-spacing:-1.650000px;}
.ws67{word-spacing:-1.584000px;}
.ws33{word-spacing:-1.518000px;}
.ws3f{word-spacing:-1.452000px;}
.ws27{word-spacing:-1.386000px;}
.ws77{word-spacing:-1.320000px;}
.ws60{word-spacing:-1.254000px;}
.ws7b{word-spacing:-1.122000px;}
.ws38{word-spacing:-1.104000px;}
.ws2b{word-spacing:-1.056000px;}
.ws1c{word-spacing:-1.008000px;}
.ws48{word-spacing:-0.990000px;}
.ws49{word-spacing:-0.792000px;}
.ws68{word-spacing:-0.726000px;}
.ws66{word-spacing:-0.660000px;}
.ws98{word-spacing:-0.594000px;}
.ws80{word-spacing:-0.528000px;}
.ws59{word-spacing:-0.396000px;}
.ws95{word-spacing:-0.330000px;}
.ws56{word-spacing:-0.264000px;}
.ws36{word-spacing:-0.240000px;}
.ws3c{word-spacing:-0.198000px;}
.ws35{word-spacing:-0.192000px;}
.ws7c{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.132000px;}
.ws5c{word-spacing:-0.096000px;}
.ws74{word-spacing:-0.066000px;}
.ws7d{word-spacing:-0.048000px;}
.ws23{word-spacing:-0.033600px;}
.ws7{word-spacing:0.000000px;}
.ws15{word-spacing:0.066000px;}
.ws5b{word-spacing:0.096000px;}
.ws62{word-spacing:0.132000px;}
.ws7e{word-spacing:0.192000px;}
.ws75{word-spacing:0.198000px;}
.ws21{word-spacing:0.240000px;}
.wsf{word-spacing:0.264000px;}
.ws18{word-spacing:0.330000px;}
.ws9d{word-spacing:0.396000px;}
.ws7f{word-spacing:0.432000px;}
.ws73{word-spacing:0.462000px;}
.ws57{word-spacing:0.528000px;}
.ws6c{word-spacing:0.594000px;}
.ws29{word-spacing:0.660000px;}
.ws6e{word-spacing:0.672000px;}
.ws4f{word-spacing:0.726000px;}
.ws64{word-spacing:0.792000px;}
.ws65{word-spacing:0.858000px;}
.ws53{word-spacing:0.924000px;}
.ws10{word-spacing:0.990000px;}
.wse{word-spacing:1.056000px;}
.ws4a{word-spacing:1.122000px;}
.ws1e{word-spacing:1.248000px;}
.ws5f{word-spacing:1.254000px;}
.ws13{word-spacing:1.320000px;}
.ws9c{word-spacing:1.386000px;}
.ws5e{word-spacing:1.440000px;}
.ws2f{word-spacing:1.452000px;}
.ws1a{word-spacing:1.518000px;}
.ws3d{word-spacing:1.584000px;}
.ws19{word-spacing:1.650000px;}
.ws79{word-spacing:1.716000px;}
.ws37{word-spacing:1.728000px;}
.ws28{word-spacing:1.782000px;}
.ws6b{word-spacing:1.914000px;}
.ws43{word-spacing:1.980000px;}
.ws72{word-spacing:2.046000px;}
.ws34{word-spacing:2.208000px;}
.ws1f{word-spacing:2.256000px;}
.ws58{word-spacing:2.310000px;}
.ws7a{word-spacing:2.376000px;}
.ws40{word-spacing:2.442000px;}
.ws17{word-spacing:2.508000px;}
.ws32{word-spacing:2.574000px;}
.ws4b{word-spacing:2.592000px;}
.ws16{word-spacing:2.640000px;}
.ws94{word-spacing:2.706000px;}
.ws26{word-spacing:2.772000px;}
.ws50{word-spacing:2.838000px;}
.ws42{word-spacing:2.904000px;}
.wsb{word-spacing:3.036000px;}
.wsc{word-spacing:3.102000px;}
.ws69{word-spacing:3.234000px;}
.ws3b{word-spacing:3.300000px;}
.ws5a{word-spacing:3.366000px;}
.ws76{word-spacing:3.432000px;}
.ws6a{word-spacing:3.498000px;}
.ws2a{word-spacing:3.696000px;}
.ws8{word-spacing:3.762000px;}
.ws3e{word-spacing:3.960000px;}
.ws46{word-spacing:4.026000px;}
.ws44{word-spacing:4.224000px;}
.ws47{word-spacing:4.290000px;}
.ws9a{word-spacing:4.620000px;}
.ws90{word-spacing:4.818000px;}
.ws45{word-spacing:5.148000px;}
.ws52{word-spacing:5.610000px;}
.ws41{word-spacing:5.808000px;}
.ws1b{word-spacing:6.720000px;}
.ws91{word-spacing:6.996000px;}
.ws9b{word-spacing:7.458000px;}
._2{margin-left:-7.565400px;}
._8{margin-left:-5.643000px;}
._6{margin-left:-4.534200px;}
._9{margin-left:-3.471600px;}
._0{margin-left:-1.782000px;}
._5{width:1.564200px;}
._7{width:3.128400px;}
._4{width:4.626600px;}
._16{width:7.114800px;}
._3{width:8.640000px;}
._1{width:11.232000px;}
._f{width:37.620000px;}
._14{width:42.576000px;}
._e{width:47.982000px;}
._15{width:53.616000px;}
._b{width:58.950000px;}
._12{width:62.160000px;}
._10{width:64.512000px;}
._13{width:65.568000px;}
._d{width:67.824000px;}
._c{width:70.272000px;}
._a{width:73.440000px;}
._11{width:74.778000px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:33.600000px;}
.fs3{font-size:38.478000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:19.178250px;}
.y2d{bottom:19.284600px;}
.y7b{bottom:78.661650px;}
.yb7{bottom:78.673500px;}
.y2c{bottom:78.673950px;}
.y9f{bottom:78.679500px;}
.y55{bottom:78.679650px;}
.yde{bottom:78.691500px;}
.y102{bottom:85.400850px;}
.y7a{bottom:92.905650px;}
.yb6{bottom:92.917500px;}
.y2b{bottom:92.917950px;}
.y9e{bottom:92.923500px;}
.y54{bottom:92.923650px;}
.ydd{bottom:92.935500px;}
.y101{bottom:104.144850px;}
.yb5{bottom:107.161500px;}
.y79{bottom:107.161650px;}
.y9d{bottom:107.167500px;}
.y53{bottom:107.167650px;}
.y2a{bottom:107.173950px;}
.ydc{bottom:107.179500px;}
.y9c{bottom:121.411650px;}
.y29{bottom:121.417950px;}
.ydb{bottom:121.423500px;}
.y52{bottom:121.423650px;}
.y100{bottom:122.888850px;}
.y9b{bottom:135.655650px;}
.y28{bottom:135.661950px;}
.yda{bottom:135.667500px;}
.y51{bottom:135.667650px;}
.yb4{bottom:141.616350px;}
.yff{bottom:141.632850px;}
.y78{bottom:141.659850px;}
.y27{bottom:149.905950px;}
.yd9{bottom:149.911500px;}
.y9a{bottom:149.911650px;}
.y50{bottom:149.917650px;}
.yb3{bottom:160.360350px;}
.y77{bottom:160.403850px;}
.y4f{bottom:164.161650px;}
.y26{bottom:164.161950px;}
.y25{bottom:178.405950px;}
.yb2{bottom:179.104350px;}
.yfe{bottom:179.137350px;}
.y76{bottom:179.147850px;}
.y24{bottom:192.661950px;}
.y4e{bottom:197.770350px;}
.y99{bottom:197.837850px;}
.yb1{bottom:197.848350px;}
.yfd{bottom:197.881350px;}
.y75{bottom:197.891850px;}
.yd8{bottom:197.903850px;}
.y4d{bottom:216.514350px;}
.y98{bottom:216.581850px;}
.yb0{bottom:216.592350px;}
.y74{bottom:216.635850px;}
.yd7{bottom:216.647850px;}
.y4c{bottom:235.258350px;}
.y23{bottom:235.288350px;}
.y97{bottom:235.325850px;}
.yaf{bottom:235.336350px;}
.y73{bottom:235.379850px;}
.yfc{bottom:235.385850px;}
.yd6{bottom:235.391850px;}
.y4b{bottom:254.002350px;}
.y22{bottom:254.032350px;}
.y96{bottom:254.069850px;}
.yae{bottom:254.080350px;}
.y72{bottom:254.123850px;}
.yfb{bottom:254.129850px;}
.yd5{bottom:254.135850px;}
.y4a{bottom:272.746350px;}
.y21{bottom:272.776350px;}
.y95{bottom:272.813850px;}
.yad{bottom:272.824350px;}
.y71{bottom:272.867850px;}
.yfa{bottom:272.873850px;}
.yd4{bottom:272.879850px;}
.y49{bottom:291.490350px;}
.y20{bottom:291.520350px;}
.y94{bottom:291.557850px;}
.yac{bottom:291.568350px;}
.y70{bottom:291.611850px;}
.yf9{bottom:291.617850px;}
.yd3{bottom:291.623850px;}
.y48{bottom:310.234350px;}
.y1f{bottom:310.264350px;}
.y93{bottom:310.301850px;}
.yab{bottom:310.312350px;}
.y6f{bottom:310.355850px;}
.yf8{bottom:310.361850px;}
.yd2{bottom:310.367850px;}
.y47{bottom:328.978350px;}
.y1e{bottom:329.008350px;}
.y92{bottom:329.045850px;}
.yaa{bottom:329.056350px;}
.y6e{bottom:329.099850px;}
.yf7{bottom:329.105850px;}
.yd1{bottom:329.111850px;}
.y46{bottom:347.722350px;}
.y1d{bottom:347.752350px;}
.y91{bottom:347.789850px;}
.ya9{bottom:347.800350px;}
.y6d{bottom:347.843850px;}
.yf6{bottom:347.849850px;}
.yd0{bottom:347.855850px;}
.y1c{bottom:366.496350px;}
.y90{bottom:366.533850px;}
.ya8{bottom:366.544350px;}
.y45{bottom:366.565350px;}
.y6c{bottom:366.587850px;}
.yf5{bottom:366.593850px;}
.ycf{bottom:366.599850px;}
.y1b{bottom:385.240350px;}
.y8f{bottom:385.277850px;}
.ya7{bottom:385.288350px;}
.y44{bottom:385.309350px;}
.y6b{bottom:385.331850px;}
.yf4{bottom:385.337850px;}
.yce{bottom:385.343850px;}
.y1a{bottom:403.984350px;}
.y8e{bottom:404.021850px;}
.ya6{bottom:404.032350px;}
.y43{bottom:404.053350px;}
.y6a{bottom:404.075850px;}
.yf3{bottom:404.081850px;}
.ycd{bottom:404.087850px;}
.y19{bottom:422.728350px;}
.y8d{bottom:422.765850px;}
.ya5{bottom:422.776350px;}
.y42{bottom:422.797350px;}
.y69{bottom:422.819850px;}
.yf2{bottom:422.825850px;}
.ycc{bottom:422.831850px;}
.y18{bottom:441.503850px;}
.ya4{bottom:441.520350px;}
.y41{bottom:441.541350px;}
.y68{bottom:441.563850px;}
.yf1{bottom:441.569850px;}
.ycb{bottom:441.575850px;}
.y17{bottom:460.247850px;}
.ya3{bottom:460.264350px;}
.y8c{bottom:460.270350px;}
.y67{bottom:460.307850px;}
.yca{bottom:460.319850px;}
.y16{bottom:478.991850px;}
.ya2{bottom:479.008350px;}
.y8b{bottom:479.014350px;}
.y40{bottom:479.045850px;}
.y66{bottom:479.051850px;}
.yc9{bottom:479.063850px;}
.yf0{bottom:479.074350px;}
.ya1{bottom:497.752350px;}
.y8a{bottom:497.758350px;}
.y3f{bottom:497.789850px;}
.y65{bottom:497.795850px;}
.yc8{bottom:497.807850px;}
.yef{bottom:497.818350px;}
.y10c{bottom:516.436350px;}
.y15{bottom:516.496350px;}
.y89{bottom:516.502350px;}
.y3e{bottom:516.533850px;}
.y64{bottom:516.539850px;}
.yc7{bottom:516.551850px;}
.yee{bottom:516.562350px;}
.y10b{bottom:535.192350px;}
.y14{bottom:535.240350px;}
.y88{bottom:535.246350px;}
.y3d{bottom:535.277850px;}
.y63{bottom:535.283850px;}
.yc6{bottom:535.295850px;}
.yed{bottom:535.306350px;}
.y13{bottom:553.984350px;}
.y87{bottom:553.990350px;}
.y3c{bottom:554.021850px;}
.y62{bottom:554.027850px;}
.yc5{bottom:554.039850px;}
.yec{bottom:554.050350px;}
.y10a{bottom:572.686350px;}
.y12{bottom:572.728350px;}
.y86{bottom:572.734350px;}
.y3b{bottom:572.765850px;}
.y61{bottom:572.771850px;}
.yc4{bottom:572.783850px;}
.yeb{bottom:572.794350px;}
.y109{bottom:591.442350px;}
.ya0{bottom:591.472350px;}
.y85{bottom:591.478350px;}
.y11{bottom:591.484350px;}
.y3a{bottom:591.509850px;}
.y60{bottom:591.515850px;}
.yc3{bottom:591.527850px;}
.yea{bottom:591.538350px;}
.y108{bottom:610.198350px;}
.y10{bottom:610.228350px;}
.y39{bottom:610.253850px;}
.y5f{bottom:610.259850px;}
.ye9{bottom:610.282350px;}
.y84{bottom:610.306350px;}
.y107{bottom:628.954350px;}
.yf{bottom:628.972350px;}
.y38{bottom:628.997850px;}
.y5e{bottom:629.003850px;}
.ye8{bottom:629.026350px;}
.yc2{bottom:629.032350px;}
.y83{bottom:629.050350px;}
.y106{bottom:647.710350px;}
.y37{bottom:647.741850px;}
.y5d{bottom:647.747850px;}
.ye{bottom:647.752350px;}
.ye7{bottom:647.770350px;}
.yc1{bottom:647.776350px;}
.y82{bottom:647.794350px;}
.y105{bottom:666.466350px;}
.y36{bottom:666.485850px;}
.y5c{bottom:666.491850px;}
.yd{bottom:666.496350px;}
.ye6{bottom:666.514350px;}
.yc0{bottom:666.520350px;}
.y81{bottom:666.538350px;}
.y104{bottom:685.222350px;}
.y35{bottom:685.229850px;}
.y5b{bottom:685.235850px;}
.yc{bottom:685.240350px;}
.ye5{bottom:685.258350px;}
.ybf{bottom:685.264350px;}
.y80{bottom:685.282350px;}
.y5a{bottom:703.979850px;}
.yb{bottom:703.984350px;}
.ye4{bottom:704.002350px;}
.ybe{bottom:704.008350px;}
.y7f{bottom:704.026350px;}
.y59{bottom:722.723850px;}
.ya{bottom:722.728350px;}
.y34{bottom:722.734350px;}
.ye3{bottom:722.746350px;}
.ybd{bottom:722.752350px;}
.y103{bottom:722.753850px;}
.y7e{bottom:722.770350px;}
.y33{bottom:741.478350px;}
.ye2{bottom:741.490350px;}
.ybc{bottom:741.496350px;}
.y9{bottom:741.497850px;}
.y7d{bottom:741.514350px;}
.y32{bottom:760.222350px;}
.y58{bottom:760.228350px;}
.ye1{bottom:760.234350px;}
.ybb{bottom:760.240350px;}
.y8{bottom:760.241850px;}
.y7c{bottom:760.258350px;}
.y57{bottom:778.972350px;}
.ye0{bottom:778.978350px;}
.yba{bottom:778.984350px;}
.y7{bottom:778.985850px;}
.y31{bottom:779.002350px;}
.ydf{bottom:797.722350px;}
.yb9{bottom:797.728350px;}
.y6{bottom:797.729850px;}
.y30{bottom:797.746350px;}
.yb8{bottom:816.472350px;}
.y2f{bottom:816.490350px;}
.y5{bottom:835.234350px;}
.y4{bottom:853.978350px;}
.y3{bottom:872.722350px;}
.y56{bottom:947.721750px;}
.y2e{bottom:947.722350px;}
.y1{bottom:969.485850px;}
.hc{height:38.064000px;}
.h11{height:38.074219px;}
.hb{height:39.168000px;}
.h2{height:39.648000px;}
.h3{height:42.822000px;}
.he{height:44.064000px;}
.h12{height:49.218750px;}
.h5{height:52.338000px;}
.ha{height:52.365054px;}
.h8{height:52.371054px;}
.hd{height:52.371654px;}
.h6{height:52.389054px;}
.hf{height:52.419654px;}
.h9{height:52.443054px;}
.h10{height:52.443654px;}
.h7{height:53.856000px;}
.h4{height:54.516000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330000px;}
.x0{left:0.000000px;}
.x6{left:53.946900px;}
.xf{left:73.023900px;}
.x7{left:76.535400px;}
.xb{left:102.043650px;}
.x3{left:106.299150px;}
.x5{left:131.823150px;}
.x9{left:136.063050px;}
.xa{left:163.057050px;}
.x4{left:165.826800px;}
.xd{left:192.825150px;}
.x12{left:382.191900px;}
.x8{left:432.709500px;}
.x10{left:446.235900px;}
.x11{left:526.245900px;}
.x2{left:539.309250px;}
.xe{left:574.017900px;}
.xc{left:625.099500px;}
.x1{left:626.551500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.445333pt;}
.ls3b{letter-spacing:-2.933333pt;}
.ls39{letter-spacing:-1.760000pt;}
.ls3c{letter-spacing:-1.701333pt;}
.ls1f{letter-spacing:-1.408000pt;}
.ls3a{letter-spacing:-1.349333pt;}
.ls20{letter-spacing:-1.290667pt;}
.ls3e{letter-spacing:-1.232000pt;}
.ls1e{letter-spacing:-1.114667pt;}
.ls2e{letter-spacing:-0.997333pt;}
.ls2c{letter-spacing:-0.880000pt;}
.ls2f{letter-spacing:-0.762667pt;}
.ls1d{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.682667pt;}
.lsf{letter-spacing:-0.645333pt;}
.ls30{letter-spacing:-0.586667pt;}
.ls2d{letter-spacing:-0.528000pt;}
.ls10{letter-spacing:-0.469333pt;}
.ls12{letter-spacing:-0.426667pt;}
.lsb{letter-spacing:-0.410667pt;}
.ls13{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.352000pt;}
.ls14{letter-spacing:-0.298667pt;}
.lse{letter-spacing:-0.293333pt;}
.ls34{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.234667pt;}
.ls15{letter-spacing:-0.213333pt;}
.ls1c{letter-spacing:-0.176000pt;}
.ls33{letter-spacing:-0.170667pt;}
.ls21{letter-spacing:-0.117333pt;}
.lsa{letter-spacing:-0.058667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.029333pt;}
.ls32{letter-spacing:0.042667pt;}
.ls2{letter-spacing:0.058667pt;}
.ls2a{letter-spacing:0.085333pt;}
.ls3{letter-spacing:0.117333pt;}
.ls31{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.146667pt;}
.ls19{letter-spacing:0.154667pt;}
.ls18{letter-spacing:0.170667pt;}
.ls1{letter-spacing:0.176000pt;}
.ls17{letter-spacing:0.213333pt;}
.ls1b{letter-spacing:0.217067pt;}
.ls28{letter-spacing:0.234667pt;}
.ls1a{letter-spacing:0.298667pt;}
.ls27{letter-spacing:0.341333pt;}
.ls9{letter-spacing:0.352000pt;}
.ls22{letter-spacing:0.410667pt;}
.ls16{letter-spacing:0.469333pt;}
.ls0{letter-spacing:0.528000pt;}
.ls24{letter-spacing:0.586667pt;}
.ls25{letter-spacing:0.704000pt;}
.ls23{letter-spacing:0.762667pt;}
.ls7{letter-spacing:0.880000pt;}
.ls4{letter-spacing:0.896000pt;}
.ls5{letter-spacing:0.977067pt;}
.ls35{letter-spacing:1.114667pt;}
.ls36{letter-spacing:1.642667pt;}
.ls2b{letter-spacing:1.949867pt;}
.ls38{letter-spacing:2.346667pt;}
.ls37{letter-spacing:2.698667pt;}
.ls3d{letter-spacing:3.344000pt;}
.ls8{letter-spacing:3.578667pt;}
.ws1{word-spacing:-17.248000pt;}
.ws85{word-spacing:-16.368000pt;}
.ws86{word-spacing:-16.016000pt;}
.ws83{word-spacing:-15.312000pt;}
.ws89{word-spacing:-14.784000pt;}
.ws81{word-spacing:-14.197333pt;}
.ws2{word-spacing:-14.021333pt;}
.ws84{word-spacing:-13.669333pt;}
.ws82{word-spacing:-13.493333pt;}
.ws8b{word-spacing:-13.200000pt;}
.ws99{word-spacing:-12.672000pt;}
.ws8f{word-spacing:-12.437333pt;}
.ws88{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.026667pt;}
.ws8a{word-spacing:-11.968000pt;}
.ws87{word-spacing:-11.909333pt;}
.ws6f{word-spacing:-11.381333pt;}
.ws6{word-spacing:-10.837333pt;}
.ws8c{word-spacing:-10.677333pt;}
.ws8e{word-spacing:-10.442667pt;}
.ws4d{word-spacing:-10.413333pt;}
.ws39{word-spacing:-10.384000pt;}
.ws22{word-spacing:-10.266667pt;}
.ws24{word-spacing:-10.240000pt;}
.ws8d{word-spacing:-10.208000pt;}
.ws4e{word-spacing:-10.026667pt;}
.ws70{word-spacing:-9.984000pt;}
.ws5{word-spacing:-9.941333pt;}
.ws4{word-spacing:-9.914667pt;}
.ws71{word-spacing:-9.685333pt;}
.ws3{word-spacing:-7.969221pt;}
.ws97{word-spacing:-3.344000pt;}
.ws61{word-spacing:-2.933333pt;}
.ws63{word-spacing:-2.816000pt;}
.ws12{word-spacing:-2.757333pt;}
.wsd{word-spacing:-2.698667pt;}
.ws92{word-spacing:-2.640000pt;}
.ws25{word-spacing:-2.581333pt;}
.ws6d{word-spacing:-2.522667pt;}
.ws9{word-spacing:-2.464000pt;}
.ws14{word-spacing:-2.346667pt;}
.ws54{word-spacing:-2.288000pt;}
.ws2e{word-spacing:-2.170667pt;}
.ws51{word-spacing:-2.112000pt;}
.ws30{word-spacing:-2.053333pt;}
.ws1d{word-spacing:-2.005333pt;}
.ws2c{word-spacing:-1.994667pt;}
.ws20{word-spacing:-1.962667pt;}
.ws55{word-spacing:-1.936000pt;}
.ws3a{word-spacing:-1.877333pt;}
.ws2d{word-spacing:-1.818667pt;}
.ws31{word-spacing:-1.760000pt;}
.ws4c{word-spacing:-1.749333pt;}
.ws5d{word-spacing:-1.706667pt;}
.ws11{word-spacing:-1.701333pt;}
.ws96{word-spacing:-1.642667pt;}
.ws93{word-spacing:-1.525333pt;}
.ws78{word-spacing:-1.466667pt;}
.ws67{word-spacing:-1.408000pt;}
.ws33{word-spacing:-1.349333pt;}
.ws3f{word-spacing:-1.290667pt;}
.ws27{word-spacing:-1.232000pt;}
.ws77{word-spacing:-1.173333pt;}
.ws60{word-spacing:-1.114667pt;}
.ws7b{word-spacing:-0.997333pt;}
.ws38{word-spacing:-0.981333pt;}
.ws2b{word-spacing:-0.938667pt;}
.ws1c{word-spacing:-0.896000pt;}
.ws48{word-spacing:-0.880000pt;}
.ws49{word-spacing:-0.704000pt;}
.ws68{word-spacing:-0.645333pt;}
.ws66{word-spacing:-0.586667pt;}
.ws98{word-spacing:-0.528000pt;}
.ws80{word-spacing:-0.469333pt;}
.ws59{word-spacing:-0.352000pt;}
.ws95{word-spacing:-0.293333pt;}
.ws56{word-spacing:-0.234667pt;}
.ws36{word-spacing:-0.213333pt;}
.ws3c{word-spacing:-0.176000pt;}
.ws35{word-spacing:-0.170667pt;}
.ws7c{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.117333pt;}
.ws5c{word-spacing:-0.085333pt;}
.ws74{word-spacing:-0.058667pt;}
.ws7d{word-spacing:-0.042667pt;}
.ws23{word-spacing:-0.029867pt;}
.ws7{word-spacing:0.000000pt;}
.ws15{word-spacing:0.058667pt;}
.ws5b{word-spacing:0.085333pt;}
.ws62{word-spacing:0.117333pt;}
.ws7e{word-spacing:0.170667pt;}
.ws75{word-spacing:0.176000pt;}
.ws21{word-spacing:0.213333pt;}
.wsf{word-spacing:0.234667pt;}
.ws18{word-spacing:0.293333pt;}
.ws9d{word-spacing:0.352000pt;}
.ws7f{word-spacing:0.384000pt;}
.ws73{word-spacing:0.410667pt;}
.ws57{word-spacing:0.469333pt;}
.ws6c{word-spacing:0.528000pt;}
.ws29{word-spacing:0.586667pt;}
.ws6e{word-spacing:0.597333pt;}
.ws4f{word-spacing:0.645333pt;}
.ws64{word-spacing:0.704000pt;}
.ws65{word-spacing:0.762667pt;}
.ws53{word-spacing:0.821333pt;}
.ws10{word-spacing:0.880000pt;}
.wse{word-spacing:0.938667pt;}
.ws4a{word-spacing:0.997333pt;}
.ws1e{word-spacing:1.109333pt;}
.ws5f{word-spacing:1.114667pt;}
.ws13{word-spacing:1.173333pt;}
.ws9c{word-spacing:1.232000pt;}
.ws5e{word-spacing:1.280000pt;}
.ws2f{word-spacing:1.290667pt;}
.ws1a{word-spacing:1.349333pt;}
.ws3d{word-spacing:1.408000pt;}
.ws19{word-spacing:1.466667pt;}
.ws79{word-spacing:1.525333pt;}
.ws37{word-spacing:1.536000pt;}
.ws28{word-spacing:1.584000pt;}
.ws6b{word-spacing:1.701333pt;}
.ws43{word-spacing:1.760000pt;}
.ws72{word-spacing:1.818667pt;}
.ws34{word-spacing:1.962667pt;}
.ws1f{word-spacing:2.005333pt;}
.ws58{word-spacing:2.053333pt;}
.ws7a{word-spacing:2.112000pt;}
.ws40{word-spacing:2.170667pt;}
.ws17{word-spacing:2.229333pt;}
.ws32{word-spacing:2.288000pt;}
.ws4b{word-spacing:2.304000pt;}
.ws16{word-spacing:2.346667pt;}
.ws94{word-spacing:2.405333pt;}
.ws26{word-spacing:2.464000pt;}
.ws50{word-spacing:2.522667pt;}
.ws42{word-spacing:2.581333pt;}
.wsb{word-spacing:2.698667pt;}
.wsc{word-spacing:2.757333pt;}
.ws69{word-spacing:2.874667pt;}
.ws3b{word-spacing:2.933333pt;}
.ws5a{word-spacing:2.992000pt;}
.ws76{word-spacing:3.050667pt;}
.ws6a{word-spacing:3.109333pt;}
.ws2a{word-spacing:3.285333pt;}
.ws8{word-spacing:3.344000pt;}
.ws3e{word-spacing:3.520000pt;}
.ws46{word-spacing:3.578667pt;}
.ws44{word-spacing:3.754667pt;}
.ws47{word-spacing:3.813333pt;}
.ws9a{word-spacing:4.106667pt;}
.ws90{word-spacing:4.282667pt;}
.ws45{word-spacing:4.576000pt;}
.ws52{word-spacing:4.986667pt;}
.ws41{word-spacing:5.162667pt;}
.ws1b{word-spacing:5.973333pt;}
.ws91{word-spacing:6.218667pt;}
.ws9b{word-spacing:6.629333pt;}
._2{margin-left:-6.724800pt;}
._8{margin-left:-5.016000pt;}
._6{margin-left:-4.030400pt;}
._9{margin-left:-3.085867pt;}
._0{margin-left:-1.584000pt;}
._5{width:1.390400pt;}
._7{width:2.780800pt;}
._4{width:4.112533pt;}
._16{width:6.324267pt;}
._3{width:7.680000pt;}
._1{width:9.984000pt;}
._f{width:33.440000pt;}
._14{width:37.845333pt;}
._e{width:42.650667pt;}
._15{width:47.658667pt;}
._b{width:52.400000pt;}
._12{width:55.253333pt;}
._10{width:57.344000pt;}
._13{width:58.282667pt;}
._d{width:60.288000pt;}
._c{width:62.464000pt;}
._a{width:65.280000pt;}
._11{width:66.469333pt;}
.fs4{font-size:29.866667pt;}
.fs3{font-size:34.202667pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:17.047333pt;}
.y2d{bottom:17.141867pt;}
.y7b{bottom:69.921467pt;}
.yb7{bottom:69.932000pt;}
.y2c{bottom:69.932400pt;}
.y9f{bottom:69.937333pt;}
.y55{bottom:69.937467pt;}
.yde{bottom:69.948000pt;}
.y102{bottom:75.911867pt;}
.y7a{bottom:82.582800pt;}
.yb6{bottom:82.593333pt;}
.y2b{bottom:82.593733pt;}
.y9e{bottom:82.598667pt;}
.y54{bottom:82.598800pt;}
.ydd{bottom:82.609333pt;}
.y101{bottom:92.573200pt;}
.yb5{bottom:95.254667pt;}
.y79{bottom:95.254800pt;}
.y9d{bottom:95.260000pt;}
.y53{bottom:95.260133pt;}
.y2a{bottom:95.265733pt;}
.ydc{bottom:95.270667pt;}
.y9c{bottom:107.921467pt;}
.y29{bottom:107.927067pt;}
.ydb{bottom:107.932000pt;}
.y52{bottom:107.932133pt;}
.y100{bottom:109.234533pt;}
.y9b{bottom:120.582800pt;}
.y28{bottom:120.588400pt;}
.yda{bottom:120.593333pt;}
.y51{bottom:120.593467pt;}
.yb4{bottom:125.881200pt;}
.yff{bottom:125.895867pt;}
.y78{bottom:125.919867pt;}
.y27{bottom:133.249733pt;}
.yd9{bottom:133.254667pt;}
.y9a{bottom:133.254800pt;}
.y50{bottom:133.260133pt;}
.yb3{bottom:142.542533pt;}
.y77{bottom:142.581200pt;}
.y4f{bottom:145.921467pt;}
.y26{bottom:145.921733pt;}
.y25{bottom:158.583067pt;}
.yb2{bottom:159.203867pt;}
.yfe{bottom:159.233200pt;}
.y76{bottom:159.242533pt;}
.y24{bottom:171.255067pt;}
.y4e{bottom:175.795867pt;}
.y99{bottom:175.855867pt;}
.yb1{bottom:175.865200pt;}
.yfd{bottom:175.894533pt;}
.y75{bottom:175.903867pt;}
.yd8{bottom:175.914533pt;}
.y4d{bottom:192.457200pt;}
.y98{bottom:192.517200pt;}
.yb0{bottom:192.526533pt;}
.y74{bottom:192.565200pt;}
.yd7{bottom:192.575867pt;}
.y4c{bottom:209.118533pt;}
.y23{bottom:209.145200pt;}
.y97{bottom:209.178533pt;}
.yaf{bottom:209.187867pt;}
.y73{bottom:209.226533pt;}
.yfc{bottom:209.231867pt;}
.yd6{bottom:209.237200pt;}
.y4b{bottom:225.779867pt;}
.y22{bottom:225.806533pt;}
.y96{bottom:225.839867pt;}
.yae{bottom:225.849200pt;}
.y72{bottom:225.887867pt;}
.yfb{bottom:225.893200pt;}
.yd5{bottom:225.898533pt;}
.y4a{bottom:242.441200pt;}
.y21{bottom:242.467867pt;}
.y95{bottom:242.501200pt;}
.yad{bottom:242.510533pt;}
.y71{bottom:242.549200pt;}
.yfa{bottom:242.554533pt;}
.yd4{bottom:242.559867pt;}
.y49{bottom:259.102533pt;}
.y20{bottom:259.129200pt;}
.y94{bottom:259.162533pt;}
.yac{bottom:259.171867pt;}
.y70{bottom:259.210533pt;}
.yf9{bottom:259.215867pt;}
.yd3{bottom:259.221200pt;}
.y48{bottom:275.763867pt;}
.y1f{bottom:275.790533pt;}
.y93{bottom:275.823867pt;}
.yab{bottom:275.833200pt;}
.y6f{bottom:275.871867pt;}
.yf8{bottom:275.877200pt;}
.yd2{bottom:275.882533pt;}
.y47{bottom:292.425200pt;}
.y1e{bottom:292.451867pt;}
.y92{bottom:292.485200pt;}
.yaa{bottom:292.494533pt;}
.y6e{bottom:292.533200pt;}
.yf7{bottom:292.538533pt;}
.yd1{bottom:292.543867pt;}
.y46{bottom:309.086533pt;}
.y1d{bottom:309.113200pt;}
.y91{bottom:309.146533pt;}
.ya9{bottom:309.155867pt;}
.y6d{bottom:309.194533pt;}
.yf6{bottom:309.199867pt;}
.yd0{bottom:309.205200pt;}
.y1c{bottom:325.774533pt;}
.y90{bottom:325.807867pt;}
.ya8{bottom:325.817200pt;}
.y45{bottom:325.835867pt;}
.y6c{bottom:325.855867pt;}
.yf5{bottom:325.861200pt;}
.ycf{bottom:325.866533pt;}
.y1b{bottom:342.435867pt;}
.y8f{bottom:342.469200pt;}
.ya7{bottom:342.478533pt;}
.y44{bottom:342.497200pt;}
.y6b{bottom:342.517200pt;}
.yf4{bottom:342.522533pt;}
.yce{bottom:342.527867pt;}
.y1a{bottom:359.097200pt;}
.y8e{bottom:359.130533pt;}
.ya6{bottom:359.139867pt;}
.y43{bottom:359.158533pt;}
.y6a{bottom:359.178533pt;}
.yf3{bottom:359.183867pt;}
.ycd{bottom:359.189200pt;}
.y19{bottom:375.758533pt;}
.y8d{bottom:375.791867pt;}
.ya5{bottom:375.801200pt;}
.y42{bottom:375.819867pt;}
.y69{bottom:375.839867pt;}
.yf2{bottom:375.845200pt;}
.ycc{bottom:375.850533pt;}
.y18{bottom:392.447867pt;}
.ya4{bottom:392.462533pt;}
.y41{bottom:392.481200pt;}
.y68{bottom:392.501200pt;}
.yf1{bottom:392.506533pt;}
.ycb{bottom:392.511867pt;}
.y17{bottom:409.109200pt;}
.ya3{bottom:409.123867pt;}
.y8c{bottom:409.129200pt;}
.y67{bottom:409.162533pt;}
.yca{bottom:409.173200pt;}
.y16{bottom:425.770533pt;}
.ya2{bottom:425.785200pt;}
.y8b{bottom:425.790533pt;}
.y40{bottom:425.818533pt;}
.y66{bottom:425.823867pt;}
.yc9{bottom:425.834533pt;}
.yf0{bottom:425.843867pt;}
.ya1{bottom:442.446533pt;}
.y8a{bottom:442.451867pt;}
.y3f{bottom:442.479867pt;}
.y65{bottom:442.485200pt;}
.yc8{bottom:442.495867pt;}
.yef{bottom:442.505200pt;}
.y10c{bottom:459.054533pt;}
.y15{bottom:459.107867pt;}
.y89{bottom:459.113200pt;}
.y3e{bottom:459.141200pt;}
.y64{bottom:459.146533pt;}
.yc7{bottom:459.157200pt;}
.yee{bottom:459.166533pt;}
.y10b{bottom:475.726533pt;}
.y14{bottom:475.769200pt;}
.y88{bottom:475.774533pt;}
.y3d{bottom:475.802533pt;}
.y63{bottom:475.807867pt;}
.yc6{bottom:475.818533pt;}
.yed{bottom:475.827867pt;}
.y13{bottom:492.430533pt;}
.y87{bottom:492.435867pt;}
.y3c{bottom:492.463867pt;}
.y62{bottom:492.469200pt;}
.yc5{bottom:492.479867pt;}
.yec{bottom:492.489200pt;}
.y10a{bottom:509.054533pt;}
.y12{bottom:509.091867pt;}
.y86{bottom:509.097200pt;}
.y3b{bottom:509.125200pt;}
.y61{bottom:509.130533pt;}
.yc4{bottom:509.141200pt;}
.yeb{bottom:509.150533pt;}
.y109{bottom:525.726533pt;}
.ya0{bottom:525.753200pt;}
.y85{bottom:525.758533pt;}
.y11{bottom:525.763867pt;}
.y3a{bottom:525.786533pt;}
.y60{bottom:525.791867pt;}
.yc3{bottom:525.802533pt;}
.yea{bottom:525.811867pt;}
.y108{bottom:542.398533pt;}
.y10{bottom:542.425200pt;}
.y39{bottom:542.447867pt;}
.y5f{bottom:542.453200pt;}
.ye9{bottom:542.473200pt;}
.y84{bottom:542.494533pt;}
.y107{bottom:559.070533pt;}
.yf{bottom:559.086533pt;}
.y38{bottom:559.109200pt;}
.y5e{bottom:559.114533pt;}
.ye8{bottom:559.134533pt;}
.yc2{bottom:559.139867pt;}
.y83{bottom:559.155867pt;}
.y106{bottom:575.742533pt;}
.y37{bottom:575.770533pt;}
.y5d{bottom:575.775867pt;}
.ye{bottom:575.779867pt;}
.ye7{bottom:575.795867pt;}
.yc1{bottom:575.801200pt;}
.y82{bottom:575.817200pt;}
.y105{bottom:592.414533pt;}
.y36{bottom:592.431867pt;}
.y5c{bottom:592.437200pt;}
.yd{bottom:592.441200pt;}
.ye6{bottom:592.457200pt;}
.yc0{bottom:592.462533pt;}
.y81{bottom:592.478533pt;}
.y104{bottom:609.086533pt;}
.y35{bottom:609.093200pt;}
.y5b{bottom:609.098533pt;}
.yc{bottom:609.102533pt;}
.ye5{bottom:609.118533pt;}
.ybf{bottom:609.123867pt;}
.y80{bottom:609.139867pt;}
.y5a{bottom:625.759867pt;}
.yb{bottom:625.763867pt;}
.ye4{bottom:625.779867pt;}
.ybe{bottom:625.785200pt;}
.y7f{bottom:625.801200pt;}
.y59{bottom:642.421200pt;}
.ya{bottom:642.425200pt;}
.y34{bottom:642.430533pt;}
.ye3{bottom:642.441200pt;}
.ybd{bottom:642.446533pt;}
.y103{bottom:642.447867pt;}
.y7e{bottom:642.462533pt;}
.y33{bottom:659.091867pt;}
.ye2{bottom:659.102533pt;}
.ybc{bottom:659.107867pt;}
.y9{bottom:659.109200pt;}
.y7d{bottom:659.123867pt;}
.y32{bottom:675.753200pt;}
.y58{bottom:675.758533pt;}
.ye1{bottom:675.763867pt;}
.ybb{bottom:675.769200pt;}
.y8{bottom:675.770533pt;}
.y7c{bottom:675.785200pt;}
.y57{bottom:692.419867pt;}
.ye0{bottom:692.425200pt;}
.yba{bottom:692.430533pt;}
.y7{bottom:692.431867pt;}
.y31{bottom:692.446533pt;}
.ydf{bottom:709.086533pt;}
.yb9{bottom:709.091867pt;}
.y6{bottom:709.093200pt;}
.y30{bottom:709.107867pt;}
.yb8{bottom:725.753200pt;}
.y2f{bottom:725.769200pt;}
.y5{bottom:742.430533pt;}
.y4{bottom:759.091867pt;}
.y3{bottom:775.753200pt;}
.y56{bottom:842.419333pt;}
.y2e{bottom:842.419867pt;}
.y1{bottom:861.765200pt;}
.hc{height:33.834667pt;}
.h11{height:33.843750pt;}
.hb{height:34.816000pt;}
.h2{height:35.242667pt;}
.h3{height:38.064000pt;}
.he{height:39.168000pt;}
.h12{height:43.750000pt;}
.h5{height:46.522667pt;}
.ha{height:46.546715pt;}
.h8{height:46.552048pt;}
.hd{height:46.552581pt;}
.h6{height:46.568048pt;}
.hf{height:46.595248pt;}
.h9{height:46.616048pt;}
.h10{height:46.616581pt;}
.h7{height:47.872000pt;}
.h4{height:48.458667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960000pt;}
.x0{left:0.000000pt;}
.x6{left:47.952800pt;}
.xf{left:64.910133pt;}
.x7{left:68.031467pt;}
.xb{left:90.705467pt;}
.x3{left:94.488133pt;}
.x5{left:117.176133pt;}
.x9{left:120.944933pt;}
.xa{left:144.939600pt;}
.x4{left:147.401600pt;}
.xd{left:171.400133pt;}
.x12{left:339.726133pt;}
.x8{left:384.630667pt;}
.x10{left:396.654133pt;}
.x11{left:467.774133pt;}
.x2{left:479.386000pt;}
.xe{left:510.238133pt;}
.xc{left:555.644000pt;}
.x1{left:556.934667pt;}
}




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