
    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_c276bb1e84d07474bda04c6f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_c8ecb183862310c178af4d9b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_7b6e34ca9fafe90a422368dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.431000;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_93a9dcc6937c9afc00c16503.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727000;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_96c6f7593ee214c571d5afe6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_20c73d81482a66ac2a0dd67e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_1a35bfc5c13c47af8625f9ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.685000;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_607a68cf2a7855b7e994a615.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.725000;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_c62efe6bf8c1b04650dcad2c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.901000;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_6e1ac372e3cc46c293cb985e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.390000;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_eb44ff0493ea4724e06ec7b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_5c413abba257fb0bea51d4c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.955000;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_8856c304c03cfeb5af482672.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.932000;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_2a778e7d06ae0b5055c2f186.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.999000;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_b98af11187727a9fcdca2132.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_61eaf3412822f5268f083d32.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_783ddc94e20b7f26ce9a4ee4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.431000;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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-22.854000px;}
.v6{vertical-align:-10.794000px;}
.v3{vertical-align:-8.964000px;}
.v7{vertical-align:-5.976000px;}
.v8{vertical-align:-1.824000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.964000px;}
.v1{vertical-align:21.696000px;}
.v2{vertical-align:22.854000px;}
.v5{vertical-align:24.684000px;}
.ls20{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000065px;}
.lsa{letter-spacing:0.001690px;}
.ls36{letter-spacing:0.002387px;}
.ls35{letter-spacing:0.003652px;}
.ls41{letter-spacing:0.032784px;}
.lsc{letter-spacing:0.239102px;}
.ls18{letter-spacing:1.075961px;}
.ls1b{letter-spacing:1.135736px;}
.ls19{letter-spacing:1.554166px;}
.ls10{letter-spacing:1.613941px;}
.ls12{letter-spacing:1.673717px;}
.ls45{letter-spacing:1.882944px;}
.ls3e{letter-spacing:2.151922px;}
.ls2b{letter-spacing:2.988532px;}
.ls1a{letter-spacing:3.227882px;}
.ls11{letter-spacing:3.407209px;}
.ls13{letter-spacing:3.466985px;}
.ls17{letter-spacing:4.076525px;}
.lsf{letter-spacing:4.303843px;}
.ls14{letter-spacing:9.922750px;}
.ls25{letter-spacing:9.982525px;}
.ls7{letter-spacing:10.813478px;}
.lsb{letter-spacing:13.270183px;}
.ls22{letter-spacing:13.329959px;}
.ls6{letter-spacing:15.386342px;}
.ls16{letter-spacing:16.617617px;}
.ls26{letter-spacing:16.796944px;}
.ls15{letter-spacing:16.976270px;}
.ls23{letter-spacing:17.036046px;}
.ls40{letter-spacing:17.095822px;}
.ls1{letter-spacing:18.560448px;}
.ls3b{letter-spacing:18.709763px;}
.ls1d{letter-spacing:18.769538px;}
.ls42{letter-spacing:19.586525px;}
.ls1e{letter-spacing:19.905275px;}
.ls21{letter-spacing:20.024826px;}
.ls3f{letter-spacing:20.084602px;}
.ls5{letter-spacing:23.025715px;}
.lse{letter-spacing:23.252525px;}
.ls34{letter-spacing:23.551586px;}
.ls8{letter-spacing:23.910240px;}
.ls3c{letter-spacing:24.687323px;}
.ls24{letter-spacing:24.926425px;}
.ls9{letter-spacing:26.002386px;}
.ls33{letter-spacing:26.241488px;}
.ls1f{letter-spacing:26.540366px;}
.ls44{letter-spacing:26.897468px;}
.ls31{letter-spacing:27.018571px;}
.ls43{letter-spacing:27.437000px;}
.ls2f{letter-spacing:27.496776px;}
.ls4{letter-spacing:28.297958px;}
.lsd{letter-spacing:28.692288px;}
.ls3d{letter-spacing:29.469371px;}
.ls30{letter-spacing:29.648698px;}
.ls38{letter-spacing:30.007351px;}
.ls3{letter-spacing:31.248532px;}
.ls2{letter-spacing:31.418266px;}
.ls32{letter-spacing:31.860395px;}
.ls0{letter-spacing:34.054387px;}
.ls2e{letter-spacing:34.430746px;}
.ls1c{letter-spacing:36.283789px;}
.ls2d{letter-spacing:37.060872px;}
.ls2c{letter-spacing:37.837955px;}
.ls39{letter-spacing:44.233944px;}
.ls3a{letter-spacing:48.657338px;}
.ls28{letter-spacing:145.793664px;}
.ls27{letter-spacing:146.923430px;}
.ls29{letter-spacing:152.303270px;}
.ls2a{letter-spacing:165.968064px;}
.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;}
}
.ws2b{word-spacing:-38.937826px;}
.wsb{word-spacing:-36.071827px;}
.ws58{word-spacing:-28.378656px;}
.ws56{word-spacing:-26.872301px;}
.ws69{word-spacing:-22.379985px;}
.ws10{word-spacing:-20.362694px;}
.ws16{word-spacing:-17.683534px;}
.ws35{word-spacing:-16.605662px;}
.ws62{word-spacing:-15.386239px;}
.ws15{word-spacing:-15.359443px;}
.ws34{word-spacing:-6.623136px;}
.ws12{word-spacing:-4.545965px;}
.ws8a{word-spacing:-3.909324px;}
.ws2a{word-spacing:-3.335478px;}
.ws4f{word-spacing:-3.275703px;}
.wsbe{word-spacing:-2.609222px;}
.ws88{word-spacing:-2.414934px;}
.wsb8{word-spacing:-2.394029px;}
.ws89{word-spacing:-2.139966px;}
.wsb2{word-spacing:-2.017440px;}
.wsb4{word-spacing:-1.963642px;}
.wsbb{word-spacing:-1.640851px;}
.ws8b{word-spacing:-1.422659px;}
.ws7e{word-spacing:-1.303108px;}
.wsc5{word-spacing:-1.210464px;}
.wsa5{word-spacing:-1.156666px;}
.wsa6{word-spacing:-1.102867px;}
.ws9b{word-spacing:-0.887674px;}
.wsbd{word-spacing:-0.618682px;}
.ws3d{word-spacing:-0.526025px;}
.ws81{word-spacing:-0.406474px;}
.ws18{word-spacing:-0.286923px;}
.ws6a{word-spacing:-0.227147px;}
.ws7d{word-spacing:-0.107596px;}
.ws4e{word-spacing:-0.047820px;}
.ws57{word-spacing:-0.026899px;}
.ws4b{word-spacing:0.000000px;}
.ws1c{word-spacing:0.011955px;}
.ws11{word-spacing:0.026899px;}
.ws68{word-spacing:0.071731px;}
.ws37{word-spacing:0.370609px;}
.wsa0{word-spacing:0.726278px;}
.ws4a{word-spacing:0.812948px;}
.ws91{word-spacing:0.968365px;}
.ws86{word-spacing:1.028140px;}
.wsc4{word-spacing:1.264262px;}
.wsa8{word-spacing:1.533254px;}
.ws43{word-spacing:1.566121px;}
.wse{word-spacing:1.748448px;}
.ws42{word-spacing:1.769358px;}
.ws1a{word-spacing:1.805223px;}
.wsaf{word-spacing:2.017440px;}
.ws73{word-spacing:2.163877px;}
.ws17{word-spacing:2.223652px;}
.wsf{word-spacing:2.340230px;}
.wscb{word-spacing:2.501626px;}
.ws79{word-spacing:2.582306px;}
.wsb0{word-spacing:2.609222px;}
.ws19{word-spacing:2.642082px;}
.wsc8{word-spacing:2.985811px;}
.ws3{word-spacing:3.039610px;}
.ws52{word-spacing:3.093408px;}
.ws9{word-spacing:3.201005px;}
.ws1b{word-spacing:3.299613px;}
.ws39{word-spacing:3.359389px;}
.wsbc{word-spacing:3.416198px;}
.ws80{word-spacing:3.419164px;}
.ws98{word-spacing:3.469997px;}
.ws83{word-spacing:3.478940px;}
.ws32{word-spacing:3.513036px;}
.ws36{word-spacing:3.538716px;}
.ws25{word-spacing:3.566834px;}
.ws13{word-spacing:3.577594px;}
.ws38{word-spacing:3.598491px;}
.wsa2{word-spacing:3.631392px;}
.ws33{word-spacing:3.801728px;}
.ws74{word-spacing:3.861504px;}
.wsa9{word-spacing:3.900384px;}
.ws0{word-spacing:4.483200px;}
.ws72{word-spacing:4.614676px;}
.ws94{word-spacing:4.674452px;}
.wsaa{word-spacing:4.976352px;}
.ws9c{word-spacing:5.030150px;}
.wsa7{word-spacing:5.137747px;}
.ws9e{word-spacing:5.191546px;}
.ws31{word-spacing:5.511310px;}
.wsa4{word-spacing:5.568134px;}
.ws3a{word-spacing:6.080677px;}
.ws6e{word-spacing:6.288393px;}
.wsc7{word-spacing:6.321312px;}
.ws7a{word-spacing:6.467720px;}
.wsbf{word-spacing:6.644102px;}
.ws7f{word-spacing:6.647047px;}
.ws1d{word-spacing:6.706822px;}
.ws41{word-spacing:6.826374px;}
.ws60{word-spacing:7.005700px;}
.ws64{word-spacing:7.125252px;}
.wsa3{word-spacing:7.128288px;}
.wsad{word-spacing:7.289683px;}
.ws87{word-spacing:7.304578px;}
.wsc1{word-spacing:7.343482px;}
.ws90{word-spacing:7.364354px;}
.wsc2{word-spacing:7.397280px;}
.ws5f{word-spacing:7.483905px;}
.ws63{word-spacing:7.543681px;}
.ws78{word-spacing:7.663232px;}
.ws40{word-spacing:7.806693px;}
.wsc3{word-spacing:8.258054px;}
.ws1f{word-spacing:8.320764px;}
.ws28{word-spacing:8.440315px;}
.ws61{word-spacing:8.559866px;}
.ws26{word-spacing:8.798968px;}
.wsba{word-spacing:8.957434px;}
.ws27{word-spacing:9.157622px;}
.ws14{word-spacing:9.226426px;}
.ws67{word-spacing:9.277173px;}
.ws24{word-spacing:9.396724px;}
.ws20{word-spacing:9.576051px;}
.ws93{word-spacing:9.695602px;}
.ws66{word-spacing:9.994480px;}
.ws2e{word-spacing:10.412910px;}
.ws30{word-spacing:10.472685px;}
.ws7b{word-spacing:10.532461px;}
.ws92{word-spacing:10.592236px;}
.wsd{word-spacing:10.786579px;}
.ws3b{word-spacing:11.070441px;}
.ws5e{word-spacing:11.189992px;}
.wsab{word-spacing:11.324563px;}
.ws75{word-spacing:11.369319px;}
.ws9d{word-spacing:11.539757px;}
.ws48{word-spacing:11.572556px;}
.wsb6{word-spacing:11.701152px;}
.wsb7{word-spacing:11.754950px;}
.ws2f{word-spacing:11.847524px;}
.wsb9{word-spacing:11.916346px;}
.wsc0{word-spacing:12.023942px;}
.wsa{word-spacing:12.454330px;}
.ws7{word-spacing:12.508128px;}
.wsc{word-spacing:12.884717px;}
.ws3c{word-spacing:12.983260px;}
.ws59{word-spacing:14.059221px;}
.ws49{word-spacing:14.118997px;}
.ws1{word-spacing:14.298324px;}
.ws22{word-spacing:14.417875px;}
.ws21{word-spacing:14.477650px;}
.ws4{word-spacing:14.606266px;}
.wsb3{word-spacing:15.009754px;}
.ws9f{word-spacing:15.198048px;}
.ws6{word-spacing:15.251846px;}
.ws5{word-spacing:15.574637px;}
.ws71{word-spacing:15.613387px;}
.ws8{word-spacing:15.682234px;}
.ws77{word-spacing:15.732938px;}
.ws2c{word-spacing:16.220330px;}
.ws8e{word-spacing:16.653482px;}
.ws5c{word-spacing:16.689348px;}
.ws51{word-spacing:16.704403px;}
.ws23{word-spacing:17.227328px;}
.ws82{word-spacing:17.346879px;}
.wsa1{word-spacing:17.538278px;}
.ws70{word-spacing:17.585982px;}
.ws5a{word-spacing:17.825084px;}
.ws8f{word-spacing:18.183738px;}
.ws3f{word-spacing:18.303289px;}
.ws7c{word-spacing:18.602167px;}
.wsb5{word-spacing:18.856339px;}
.ws9a{word-spacing:19.017734px;}
.wsb1{word-spacing:19.259827px;}
.ws50{word-spacing:19.551029px;}
.ws29{word-spacing:19.558228px;}
.ws65{word-spacing:19.569218px;}
.wsc6{word-spacing:19.609517px;}
.ws6c{word-spacing:19.618352px;}
.ws84{word-spacing:20.036781px;}
.ws99{word-spacing:20.793082px;}
.ws3e{word-spacing:21.076877px;}
.ws5d{word-spacing:22.487581px;}
.wsac{word-spacing:23.160211px;}
.wsae{word-spacing:23.563699px;}
.ws6f{word-spacing:23.802644px;}
.ws96{word-spacing:25.297034px;}
.ws6b{word-spacing:27.150078px;}
.wsca{word-spacing:27.894470px;}
.wsc9{word-spacing:27.948269px;}
.ws85{word-spacing:29.720428px;}
.ws8c{word-spacing:30.401870px;}
.ws2{word-spacing:30.772685px;}
.ws5b{word-spacing:31.394145px;}
.ws8d{word-spacing:31.872350px;}
.ws46{word-spacing:35.303469px;}
.ws76{word-spacing:35.578437px;}
.ws95{word-spacing:37.431481px;}
.ws47{word-spacing:37.790134px;}
.ws97{word-spacing:41.902696px;}
.ws4c{word-spacing:43.169938px;}
.ws2d{word-spacing:45.646253px;}
.ws45{word-spacing:46.876026px;}
.ws1e{word-spacing:51.060318px;}
.ws44{word-spacing:53.953457px;}
.ws6d{word-spacing:60.445087px;}
.ws53{word-spacing:75.461482px;}
.ws55{word-spacing:99.015955px;}
.ws4d{word-spacing:264.041740px;}
.ws54{word-spacing:426.486816px;}
._2a{margin-left:-27.114394px;}
._29{margin-left:-26.044262px;}
._1{margin-left:-6.671002px;}
._4{margin-left:-4.961375px;}
._a{margin-left:-3.837619px;}
._2{margin-left:-2.295398px;}
._6{margin-left:-1.225441px;}
._b{width:1.022170px;}
._0{width:2.223667px;}
._f{width:3.337909px;}
._23{width:9.553365px;}
._26{width:14.525471px;}
._d{width:17.615888px;}
._2c{width:21.639053px;}
._14{width:23.336410px;}
._5{width:24.585869px;}
._e{width:26.026312px;}
._c{width:27.096352px;}
._1b{width:28.244160px;}
._2b{width:30.055373px;}
._13{width:32.446001px;}
._8{width:33.480538px;}
._3{width:36.009062px;}
._2e{width:38.746944px;}
._27{width:40.940302px;}
._2d{width:43.522906px;}
._28{width:46.409791px;}
._9{width:47.769744px;}
._1a{width:50.516698px;}
._25{width:53.319835px;}
._19{width:55.143360px;}
._10{width:56.691214px;}
._21{width:57.833280px;}
._15{width:59.775600px;}
._7{width:61.473638px;}
._12{width:62.525278px;}
._11{width:64.832657px;}
._2f{width:74.409272px;}
._22{width:75.784013px;}
._1d{width:81.074189px;}
._17{width:93.238712px;}
._24{width:95.474227px;}
._16{width:101.140315px;}
._1c{width:106.090445px;}
._1e{width:118.141286px;}
._20{width:168.281395px;}
._18{width:227.621030px;}
._1f{width:244.029542px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y2a{bottom:102.664500px;}
.y69{bottom:105.654000px;}
.yd2{bottom:111.367500px;}
.y29{bottom:120.597000px;}
.y8e{bottom:123.586500px;}
.y68{bottom:128.070000px;}
.y44{bottom:130.207500px;}
.y28{bottom:138.531000px;}
.y43{bottom:148.141500px;}
.y67{bottom:150.486000px;}
.y8d{bottom:152.770500px;}
.yb0{bottom:153.865500px;}
.y8c{bottom:170.703000px;}
.y27{bottom:173.064000px;}
.y42{bottom:175.684500px;}
.y66{bottom:178.783500px;}
.yaf{bottom:184.143000px;}
.y41{bottom:193.617000px;}
.y65{bottom:196.716000px;}
.y8b{bottom:199.888500px;}
.yd1{bottom:200.736000px;}
.yae{bottom:202.075500px;}
.y8a{bottom:217.821000px;}
.y40{bottom:221.160000px;}
.y26{bottom:225.531000px;}
.yd0{bottom:231.001500px;}
.yad{bottom:232.485000px;}
.y64{bottom:235.908000px;}
.y3f{bottom:239.092500px;}
.y25{bottom:243.463500px;}
.y89{bottom:246.301500px;}
.yac{bottom:250.417500px;}
.ycf{bottom:261.267000px;}
.y24{bottom:261.396000px;}
.y88{bottom:274.783500px;}
.y3e{bottom:278.286000px;}
.yab{bottom:280.825500px;}
.y63{bottom:284.827500px;}
.yce{bottom:291.532500px;}
.y87{bottom:292.716000px;}
.y23{bottom:301.140000px;}
.y62{bottom:302.760000px;}
.yaa{bottom:311.104500px;}
.ycd{bottom:321.702000px;}
.y86{bottom:321.900000px;}
.y3d{bottom:326.983500px;}
.y61{bottom:330.816000px;}
.y22{bottom:338.644500px;}
.ycc{bottom:339.636000px;}
.y85{bottom:339.832500px;}
.y60{bottom:348.748500px;}
.ya9{bottom:350.427000px;}
.y3c{bottom:354.526500px;}
.ycb{bottom:357.568500px;}
.y84{bottom:369.018000px;}
.y3b{bottom:372.459000px;}
.yca{bottom:375.501000px;}
.y5f{bottom:376.806000px;}
.y21{bottom:391.281000px;}
.y5e{bottom:394.738500px;}
.y83{bottom:397.498500px;}
.y3a{bottom:400.002000px;}
.ya8{bottom:400.825500px;}
.y20{bottom:409.213500px;}
.yc9{bottom:414.787500px;}
.y82{bottom:415.431000px;}
.y39{bottom:417.936000px;}
.ya7{bottom:418.758000px;}
.y5d{bottom:420.963000px;}
.y1f{bottom:427.146000px;}
.y1e{bottom:445.080000px;}
.y38{bottom:445.479000px;}
.ya6{bottom:449.166000px;}
.y81{bottom:454.624500px;}
.y5c{bottom:460.858500px;}
.y37{bottom:463.411500px;}
.yc8{bottom:464.995500px;}
.ya5{bottom:467.100000px;}
.y5b{bottom:476.548500px;}
.y1d{bottom:476.623500px;}
.yc7{bottom:482.928000px;}
.y36{bottom:490.426500px;}
.y5a{bottom:492.240000px;}
.y1c{bottom:494.557500px;}
.ya4{bottom:497.508000px;}
.yc6{bottom:500.860500px;}
.y80{bottom:504.028500px;}
.y59{bottom:507.931500px;}
.y35{bottom:508.359000px;}
.ya3{bottom:515.440500px;}
.yc5{bottom:518.793000px;}
.y7f{bottom:521.961000px;}
.y58{bottom:523.623000px;}
.y1b{bottom:526.654500px;}
.y57{bottom:539.313000px;}
.y1a{bottom:544.587000px;}
.ya2{bottom:545.719500px;}
.y34{bottom:547.552500px;}
.y7e{bottom:551.145000px;}
.yc4{bottom:558.081000px;}
.y56{bottom:563.016000px;}
.y7d{bottom:569.077500px;}
.ya1{bottom:575.998500px;}
.y19{bottom:576.684000px;}
.y55{bottom:586.476000px;}
.y18{bottom:594.616500px;}
.y33{bottom:596.250000px;}
.y7c{bottom:598.263000px;}
.ya0{bottom:606.406500px;}
.yc3{bottom:608.287500px;}
.yf6{bottom:608.517000px;}
.yf1{bottom:608.518500px;}
.y32{bottom:614.182500px;}
.y7b{bottom:616.195500px;}
.yf0{bottom:624.208500px;}
.yc2{bottom:626.220000px;}
.y17{bottom:626.713500px;}
.y9f{bottom:636.816000px;}
.yef{bottom:639.900000px;}
.y31{bottom:641.197500px;}
.yc1{bottom:644.154000px;}
.y16{bottom:644.646000px;}
.y7a{bottom:644.676000px;}
.y54{bottom:650.736000px;}
.y9e{bottom:654.748500px;}
.yee{bottom:655.591500px;}
.yc0{bottom:662.086500px;}
.y30{bottom:668.212500px;}
.yed{bottom:671.283000px;}
.y79{bottom:673.158000px;}
.y15{bottom:676.191000px;}
.y9d{bottom:685.026000px;}
.y2f{bottom:686.145000px;}
.yec{bottom:686.973000px;}
.y78{bottom:691.090500px;}
.y14{bottom:694.675500px;}
.ybf{bottom:695.340000px;}
.yeb{bottom:702.664500px;}
.y2e{bottom:704.079000px;}
.y13{bottom:712.609500px;}
.ybe{bottom:713.272500px;}
.y9c{bottom:715.305000px;}
.yea{bottom:718.356000px;}
.y53{bottom:718.852500px;}
.y77{bottom:720.274500px;}
.y2d{bottom:722.011500px;}
.y12{bottom:730.542000px;}
.ye9{bottom:734.047500px;}
.y52{bottom:734.542500px;}
.y76{bottom:738.207000px;}
.y2c{bottom:739.944000px;}
.ybd{bottom:743.538000px;}
.y9b{bottom:745.713000px;}
.y11{bottom:748.474500px;}
.yf5{bottom:749.737500px;}
.ye8{bottom:749.739000px;}
.y51{bottom:750.234000px;}
.ybc{bottom:761.470500px;}
.y9a{bottom:763.647000px;}
.ye7{bottom:765.429000px;}
.y50{bottom:765.925500px;}
.y10{bottom:766.407000px;}
.y2b{bottom:766.959000px;}
.y75{bottom:767.392500px;}
.ye6{bottom:781.120500px;}
.y4f{bottom:781.617000px;}
.y74{bottom:785.325000px;}
.ybb{bottom:791.736000px;}
.y99{bottom:794.055000px;}
.ye5{bottom:796.812000px;}
.y4e{bottom:804.811500px;}
.yf{bottom:806.152500px;}
.yba{bottom:809.668500px;}
.y98{bottom:811.987500px;}
.ye4{bottom:812.503500px;}
.y73{bottom:813.805500px;}
.ye3{bottom:828.193500px;}
.y4d{bottom:829.017000px;}
.yb9{bottom:839.934000px;}
.y97{bottom:842.266500px;}
.y72{bottom:842.286000px;}
.ye2{bottom:843.885000px;}
.y4c{bottom:844.708500px;}
.ye{bottom:854.346000px;}
.yb8{bottom:857.866500px;}
.ye1{bottom:859.576500px;}
.y71{bottom:860.220000px;}
.y96{bottom:860.329500px;}
.yd{bottom:870.037500px;}
.ye0{bottom:875.268000px;}
.y70{bottom:878.152500px;}
.y95{bottom:878.262000px;}
.yc{bottom:885.729000px;}
.yf4{bottom:890.958000px;}
.ydf{bottom:890.959500px;}
.yb7{bottom:891.121500px;}
.y4b{bottom:900.838500px;}
.yb{bottom:901.419000px;}
.yde{bottom:906.649500px;}
.y6f{bottom:907.336500px;}
.yb6{bottom:909.054000px;}
.ya{bottom:917.110500px;}
.y94{bottom:917.584500px;}
.ydd{bottom:922.341000px;}
.y4a{bottom:923.254500px;}
.y6e{bottom:925.269000px;}
.yb5{bottom:926.986500px;}
.y9{bottom:932.802000px;}
.ydc{bottom:938.032500px;}
.y49{bottom:945.670500px;}
.y8{bottom:948.493500px;}
.ydb{bottom:953.724000px;}
.y6d{bottom:954.454500px;}
.y7{bottom:964.185000px;}
.yb4{bottom:966.273000px;}
.y93{bottom:967.983000px;}
.y48{bottom:968.086500px;}
.yda{bottom:969.414000px;}
.y6c{bottom:972.387000px;}
.y6{bottom:979.875000px;}
.yd9{bottom:985.105500px;}
.y92{bottom:985.915500px;}
.y47{bottom:990.502500px;}
.yd8{bottom:1000.797000px;}
.y6b{bottom:1000.867500px;}
.y5{bottom:1006.027500px;}
.y91{bottom:1016.323500px;}
.yb3{bottom:1016.481000px;}
.yd7{bottom:1016.488500px;}
.y6a{bottom:1018.800000px;}
.y4{bottom:1021.719000px;}
.yf3{bottom:1032.178500px;}
.yd6{bottom:1032.180000px;}
.y90{bottom:1034.257500px;}
.y3{bottom:1037.409000px;}
.yb2{bottom:1046.746500px;}
.yd5{bottom:1047.870000px;}
.y46{bottom:1057.993500px;}
.yd4{bottom:1063.561500px;}
.y8f{bottom:1064.665500px;}
.yb1{bottom:1064.679000px;}
.y2{bottom:1074.022500px;}
.yd3{bottom:1079.253000px;}
.yf2{bottom:1094.943000px;}
.y1{bottom:1094.944500px;}
.y45{bottom:1133.799000px;}
.h9{height:17.494800px;}
.h6{height:37.658880px;}
.h3{height:37.927872px;}
.h4{height:40.348800px;}
.h2{height:44.831700px;}
.h5{height:48.103382px;}
.h1{height:50.211840px;}
.h7{height:53.078100px;}
.h8{height:56.066100px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:81.000000px;}
.x1c{left:83.989500px;}
.x2a{left:87.912000px;}
.x1e{left:90.042000px;}
.xf{left:91.672500px;}
.x9{left:95.944500px;}
.x1d{left:100.093500px;}
.xb{left:104.911500px;}
.x1a{left:106.279500px;}
.x2b{left:108.480000px;}
.xc{left:118.360500px;}
.x1{left:124.462500px;}
.x19{left:125.646000px;}
.x1b{left:127.924500px;}
.x20{left:130.725000px;}
.x21{left:132.163500px;}
.xd{left:144.283500px;}
.x26{left:145.675500px;}
.x7{left:163.192500px;}
.x1f{left:167.692500px;}
.x6{left:177.015000px;}
.x25{left:179.995500px;}
.xe{left:187.902000px;}
.x8{left:199.654500px;}
.x2{left:228.159000px;}
.x3{left:333.058500px;}
.x4{left:379.636500px;}
.x5{left:381.703500px;}
.x12{left:475.521000px;}
.x14{left:482.992500px;}
.x23{left:484.051500px;}
.x11{left:490.464000px;}
.x28{left:495.279000px;}
.x15{left:498.714000px;}
.x10{left:500.080500px;}
.x2c{left:503.001000px;}
.x16{left:512.880000px;}
.x29{left:529.911000px;}
.x24{left:570.577500px;}
.x17{left:571.593000px;}
.x27{left:605.137500px;}
.x22{left:609.918000px;}
.x13{left:824.047500px;}
.x18{left:835.669500px;}
@media print{
.v9{vertical-align:-20.314667pt;}
.v6{vertical-align:-9.594667pt;}
.v3{vertical-align:-7.968000pt;}
.v7{vertical-align:-5.312000pt;}
.v8{vertical-align:-1.621333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.968000pt;}
.v1{vertical-align:19.285333pt;}
.v2{vertical-align:20.314667pt;}
.v5{vertical-align:21.941333pt;}
.ls20{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000058pt;}
.lsa{letter-spacing:0.001503pt;}
.ls36{letter-spacing:0.002122pt;}
.ls35{letter-spacing:0.003246pt;}
.ls41{letter-spacing:0.029142pt;}
.lsc{letter-spacing:0.212535pt;}
.ls18{letter-spacing:0.956410pt;}
.ls1b{letter-spacing:1.009543pt;}
.ls19{letter-spacing:1.381481pt;}
.ls10{letter-spacing:1.434614pt;}
.ls12{letter-spacing:1.487748pt;}
.ls45{letter-spacing:1.673728pt;}
.ls3e{letter-spacing:1.912819pt;}
.ls2b{letter-spacing:2.656473pt;}
.ls1a{letter-spacing:2.869229pt;}
.ls11{letter-spacing:3.028630pt;}
.ls13{letter-spacing:3.081764pt;}
.ls17{letter-spacing:3.623578pt;}
.lsf{letter-spacing:3.825638pt;}
.ls14{letter-spacing:8.820222pt;}
.ls25{letter-spacing:8.873356pt;}
.ls7{letter-spacing:9.611981pt;}
.lsb{letter-spacing:11.795718pt;}
.ls22{letter-spacing:11.848852pt;}
.ls6{letter-spacing:13.676749pt;}
.ls16{letter-spacing:14.771215pt;}
.ls26{letter-spacing:14.930617pt;}
.ls15{letter-spacing:15.090018pt;}
.ls23{letter-spacing:15.143152pt;}
.ls40{letter-spacing:15.196286pt;}
.ls1{letter-spacing:16.498176pt;}
.ls3b{letter-spacing:16.630900pt;}
.ls1d{letter-spacing:16.684034pt;}
.ls42{letter-spacing:17.410245pt;}
.ls1e{letter-spacing:17.693578pt;}
.ls21{letter-spacing:17.799845pt;}
.ls3f{letter-spacing:17.852979pt;}
.ls5{letter-spacing:20.467302pt;}
.lse{letter-spacing:20.668911pt;}
.ls34{letter-spacing:20.934743pt;}
.ls8{letter-spacing:21.253547pt;}
.ls3c{letter-spacing:21.944287pt;}
.ls24{letter-spacing:22.156822pt;}
.ls9{letter-spacing:23.113232pt;}
.ls33{letter-spacing:23.325767pt;}
.ls1f{letter-spacing:23.591437pt;}
.ls44{letter-spacing:23.908861pt;}
.ls31{letter-spacing:24.016508pt;}
.ls43{letter-spacing:24.388445pt;}
.ls2f{letter-spacing:24.441579pt;}
.ls4{letter-spacing:25.153741pt;}
.lsd{letter-spacing:25.504256pt;}
.ls3d{letter-spacing:26.194996pt;}
.ls30{letter-spacing:26.354398pt;}
.ls38{letter-spacing:26.673201pt;}
.ls3{letter-spacing:27.776473pt;}
.ls2{letter-spacing:27.927347pt;}
.ls32{letter-spacing:28.320351pt;}
.ls0{letter-spacing:30.270566pt;}
.ls2e{letter-spacing:30.605107pt;}
.ls1c{letter-spacing:32.252257pt;}
.ls2d{letter-spacing:32.942997pt;}
.ls2c{letter-spacing:33.633738pt;}
.ls39{letter-spacing:39.319061pt;}
.ls3a{letter-spacing:43.250967pt;}
.ls28{letter-spacing:129.594368pt;}
.ls27{letter-spacing:130.598605pt;}
.ls29{letter-spacing:135.380685pt;}
.ls2a{letter-spacing:147.527168pt;}
.ws2b{word-spacing:-34.611401pt;}
.wsb{word-spacing:-32.063846pt;}
.ws58{word-spacing:-25.225472pt;}
.ws56{word-spacing:-23.886490pt;}
.ws69{word-spacing:-19.893320pt;}
.ws10{word-spacing:-18.100173pt;}
.ws16{word-spacing:-15.718697pt;}
.ws35{word-spacing:-14.760588pt;}
.ws62{word-spacing:-13.676657pt;}
.ws15{word-spacing:-13.652838pt;}
.ws34{word-spacing:-5.887232pt;}
.ws12{word-spacing:-4.040858pt;}
.ws8a{word-spacing:-3.474955pt;}
.ws2a{word-spacing:-2.964870pt;}
.ws4f{word-spacing:-2.911736pt;}
.wsbe{word-spacing:-2.319309pt;}
.ws88{word-spacing:-2.146608pt;}
.wsb8{word-spacing:-2.128026pt;}
.ws89{word-spacing:-1.902192pt;}
.wsb2{word-spacing:-1.793280pt;}
.wsb4{word-spacing:-1.745459pt;}
.wsbb{word-spacing:-1.458534pt;}
.ws8b{word-spacing:-1.264586pt;}
.ws7e{word-spacing:-1.158318pt;}
.wsc5{word-spacing:-1.075968pt;}
.wsa5{word-spacing:-1.028147pt;}
.wsa6{word-spacing:-0.980326pt;}
.ws9b{word-spacing:-0.789043pt;}
.wsbd{word-spacing:-0.549939pt;}
.ws3d{word-spacing:-0.467578pt;}
.ws81{word-spacing:-0.361310pt;}
.ws18{word-spacing:-0.255043pt;}
.ws6a{word-spacing:-0.201909pt;}
.ws7d{word-spacing:-0.095641pt;}
.ws4e{word-spacing:-0.042507pt;}
.ws57{word-spacing:-0.023910pt;}
.ws4b{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.010627pt;}
.ws11{word-spacing:0.023910pt;}
.ws68{word-spacing:0.063761pt;}
.ws37{word-spacing:0.329430pt;}
.wsa0{word-spacing:0.645581pt;}
.ws4a{word-spacing:0.722621pt;}
.ws91{word-spacing:0.860769pt;}
.ws86{word-spacing:0.913903pt;}
.wsc4{word-spacing:1.123789pt;}
.wsa8{word-spacing:1.362893pt;}
.ws43{word-spacing:1.392107pt;}
.wse{word-spacing:1.554176pt;}
.ws42{word-spacing:1.572762pt;}
.ws1a{word-spacing:1.604643pt;}
.wsaf{word-spacing:1.793280pt;}
.ws73{word-spacing:1.923446pt;}
.ws17{word-spacing:1.976580pt;}
.wsf{word-spacing:2.080205pt;}
.wscb{word-spacing:2.223667pt;}
.ws79{word-spacing:2.295383pt;}
.wsb0{word-spacing:2.319309pt;}
.ws19{word-spacing:2.348517pt;}
.wsc8{word-spacing:2.654054pt;}
.ws3{word-spacing:2.701875pt;}
.ws52{word-spacing:2.749696pt;}
.ws9{word-spacing:2.845338pt;}
.ws1b{word-spacing:2.932989pt;}
.ws39{word-spacing:2.986123pt;}
.wsbc{word-spacing:3.036621pt;}
.ws80{word-spacing:3.039257pt;}
.ws98{word-spacing:3.084442pt;}
.ws83{word-spacing:3.092391pt;}
.ws32{word-spacing:3.122698pt;}
.ws36{word-spacing:3.145525pt;}
.ws25{word-spacing:3.170519pt;}
.ws13{word-spacing:3.180083pt;}
.ws38{word-spacing:3.198659pt;}
.wsa2{word-spacing:3.227904pt;}
.ws33{word-spacing:3.379314pt;}
.ws74{word-spacing:3.432448pt;}
.wsa9{word-spacing:3.467008pt;}
.ws0{word-spacing:3.985067pt;}
.ws72{word-spacing:4.101935pt;}
.ws94{word-spacing:4.155068pt;}
.wsaa{word-spacing:4.423424pt;}
.ws9c{word-spacing:4.471245pt;}
.wsa7{word-spacing:4.566886pt;}
.ws9e{word-spacing:4.614707pt;}
.ws31{word-spacing:4.898943pt;}
.wsa4{word-spacing:4.949453pt;}
.ws3a{word-spacing:5.405046pt;}
.ws6e{word-spacing:5.589683pt;}
.wsc7{word-spacing:5.618944pt;}
.ws7a{word-spacing:5.749084pt;}
.wsbf{word-spacing:5.905869pt;}
.ws7f{word-spacing:5.908486pt;}
.ws1d{word-spacing:5.961620pt;}
.ws41{word-spacing:6.067888pt;}
.ws60{word-spacing:6.227289pt;}
.ws64{word-spacing:6.333557pt;}
.wsa3{word-spacing:6.336256pt;}
.wsad{word-spacing:6.479718pt;}
.ws87{word-spacing:6.492959pt;}
.wsc1{word-spacing:6.527539pt;}
.ws90{word-spacing:6.546092pt;}
.wsc2{word-spacing:6.575360pt;}
.ws5f{word-spacing:6.652360pt;}
.ws63{word-spacing:6.705494pt;}
.ws78{word-spacing:6.811762pt;}
.ws40{word-spacing:6.939283pt;}
.wsc3{word-spacing:7.340493pt;}
.ws1f{word-spacing:7.396234pt;}
.ws28{word-spacing:7.502502pt;}
.ws61{word-spacing:7.608770pt;}
.ws26{word-spacing:7.821305pt;}
.wsba{word-spacing:7.962163pt;}
.ws27{word-spacing:8.140108pt;}
.ws14{word-spacing:8.201267pt;}
.ws67{word-spacing:8.246376pt;}
.ws24{word-spacing:8.352644pt;}
.ws20{word-spacing:8.512045pt;}
.ws93{word-spacing:8.618313pt;}
.ws66{word-spacing:8.883983pt;}
.ws2e{word-spacing:9.255920pt;}
.ws30{word-spacing:9.309053pt;}
.ws7b{word-spacing:9.362187pt;}
.ws92{word-spacing:9.415321pt;}
.wsd{word-spacing:9.588070pt;}
.ws3b{word-spacing:9.840392pt;}
.ws5e{word-spacing:9.946660pt;}
.wsab{word-spacing:10.066278pt;}
.ws75{word-spacing:10.106061pt;}
.ws9d{word-spacing:10.257562pt;}
.ws48{word-spacing:10.286717pt;}
.wsb6{word-spacing:10.401024pt;}
.wsb7{word-spacing:10.448845pt;}
.ws2f{word-spacing:10.531132pt;}
.wsb9{word-spacing:10.592307pt;}
.wsc0{word-spacing:10.687949pt;}
.wsa{word-spacing:11.070515pt;}
.ws7{word-spacing:11.118336pt;}
.wsc{word-spacing:11.453082pt;}
.ws3c{word-spacing:11.540676pt;}
.ws59{word-spacing:12.497085pt;}
.ws49{word-spacing:12.550219pt;}
.ws1{word-spacing:12.709621pt;}
.ws22{word-spacing:12.815889pt;}
.ws21{word-spacing:12.869023pt;}
.ws4{word-spacing:12.983347pt;}
.wsb3{word-spacing:13.342003pt;}
.ws9f{word-spacing:13.509376pt;}
.ws6{word-spacing:13.557197pt;}
.ws5{word-spacing:13.844122pt;}
.ws71{word-spacing:13.878566pt;}
.ws8{word-spacing:13.939763pt;}
.ws77{word-spacing:13.984834pt;}
.ws2c{word-spacing:14.418071pt;}
.ws8e{word-spacing:14.803095pt;}
.ws5c{word-spacing:14.834976pt;}
.ws51{word-spacing:14.848358pt;}
.ws23{word-spacing:15.313180pt;}
.ws82{word-spacing:15.419448pt;}
.wsa1{word-spacing:15.589581pt;}
.ws70{word-spacing:15.631984pt;}
.ws5a{word-spacing:15.844519pt;}
.ws8f{word-spacing:16.163322pt;}
.ws3f{word-spacing:16.269590pt;}
.ws7c{word-spacing:16.535259pt;}
.wsb5{word-spacing:16.761190pt;}
.ws9a{word-spacing:16.904653pt;}
.wsb1{word-spacing:17.119846pt;}
.ws50{word-spacing:17.378692pt;}
.ws29{word-spacing:17.385091pt;}
.ws65{word-spacing:17.394861pt;}
.wsc6{word-spacing:17.430682pt;}
.ws6c{word-spacing:17.438535pt;}
.ws84{word-spacing:17.810472pt;}
.ws99{word-spacing:18.482739pt;}
.ws3e{word-spacing:18.735001pt;}
.ws5d{word-spacing:19.988961pt;}
.wsac{word-spacing:20.586854pt;}
.wsae{word-spacing:20.945510pt;}
.ws6f{word-spacing:21.157906pt;}
.ws96{word-spacing:22.486252pt;}
.ws6b{word-spacing:24.133402pt;}
.wsca{word-spacing:24.795085pt;}
.wsc9{word-spacing:24.842906pt;}
.ws85{word-spacing:26.418159pt;}
.ws8c{word-spacing:27.023885pt;}
.ws2{word-spacing:27.353498pt;}
.ws5b{word-spacing:27.905907pt;}
.ws8d{word-spacing:28.330978pt;}
.ws46{word-spacing:31.380862pt;}
.ws76{word-spacing:31.625277pt;}
.ws95{word-spacing:33.272427pt;}
.ws47{word-spacing:33.591231pt;}
.ws97{word-spacing:37.246841pt;}
.ws4c{word-spacing:38.373279pt;}
.ws2d{word-spacing:40.574447pt;}
.ws45{word-spacing:41.667578pt;}
.ws1e{word-spacing:45.386949pt;}
.ws44{word-spacing:47.958628pt;}
.ws6d{word-spacing:53.728966pt;}
.ws53{word-spacing:67.076873pt;}
.ws55{word-spacing:88.014182pt;}
.ws4d{word-spacing:234.703769pt;}
.ws54{word-spacing:379.099392pt;}
._2a{margin-left:-24.101683pt;}
._29{margin-left:-23.150455pt;}
._1{margin-left:-5.929779pt;}
._4{margin-left:-4.410111pt;}
._a{margin-left:-3.411217pt;}
._2{margin-left:-2.040354pt;}
._6{margin-left:-1.089281pt;}
._b{width:0.908595pt;}
._0{width:1.976593pt;}
._f{width:2.967031pt;}
._23{width:8.491880pt;}
._26{width:12.911530pt;}
._d{width:15.658567pt;}
._2c{width:19.234714pt;}
._14{width:20.743475pt;}
._5{width:21.854106pt;}
._e{width:23.134499pt;}
._c{width:24.085646pt;}
._1b{width:25.105920pt;}
._2b{width:26.715887pt;}
._13{width:28.840890pt;}
._8{width:29.760478pt;}
._3{width:32.008055pt;}
._2e{width:34.441728pt;}
._27{width:36.391379pt;}
._2d{width:38.687027pt;}
._28{width:41.253148pt;}
._9{width:42.461995pt;}
._1a{width:44.903731pt;}
._25{width:47.395409pt;}
._19{width:49.016320pt;}
._10{width:50.392190pt;}
._21{width:51.407360pt;}
._15{width:53.133867pt;}
._7{width:54.643234pt;}
._12{width:55.578025pt;}
._11{width:57.629028pt;}
._2f{width:66.141575pt;}
._22{width:67.363567pt;}
._1d{width:72.065946pt;}
._17{width:82.878855pt;}
._24{width:84.865980pt;}
._16{width:89.902502pt;}
._1c{width:94.302618pt;}
._1e{width:105.014477pt;}
._20{width:149.583462pt;}
._18{width:202.329805pt;}
._1f{width:216.915149pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:91.257333pt;}
.y69{bottom:93.914667pt;}
.yd2{bottom:98.993333pt;}
.y29{bottom:107.197333pt;}
.y8e{bottom:109.854667pt;}
.y68{bottom:113.840000pt;}
.y44{bottom:115.740000pt;}
.y28{bottom:123.138667pt;}
.y43{bottom:131.681333pt;}
.y67{bottom:133.765333pt;}
.y8d{bottom:135.796000pt;}
.yb0{bottom:136.769333pt;}
.y8c{bottom:151.736000pt;}
.y27{bottom:153.834667pt;}
.y42{bottom:156.164000pt;}
.y66{bottom:158.918667pt;}
.yaf{bottom:163.682667pt;}
.y41{bottom:172.104000pt;}
.y65{bottom:174.858667pt;}
.y8b{bottom:177.678667pt;}
.yd1{bottom:178.432000pt;}
.yae{bottom:179.622667pt;}
.y8a{bottom:193.618667pt;}
.y40{bottom:196.586667pt;}
.y26{bottom:200.472000pt;}
.yd0{bottom:205.334667pt;}
.yad{bottom:206.653333pt;}
.y64{bottom:209.696000pt;}
.y3f{bottom:212.526667pt;}
.y25{bottom:216.412000pt;}
.y89{bottom:218.934667pt;}
.yac{bottom:222.593333pt;}
.ycf{bottom:232.237333pt;}
.y24{bottom:232.352000pt;}
.y88{bottom:244.252000pt;}
.y3e{bottom:247.365333pt;}
.yab{bottom:249.622667pt;}
.y63{bottom:253.180000pt;}
.yce{bottom:259.140000pt;}
.y87{bottom:260.192000pt;}
.y23{bottom:267.680000pt;}
.y62{bottom:269.120000pt;}
.yaa{bottom:276.537333pt;}
.ycd{bottom:285.957333pt;}
.y86{bottom:286.133333pt;}
.y3d{bottom:290.652000pt;}
.y61{bottom:294.058667pt;}
.y22{bottom:301.017333pt;}
.ycc{bottom:301.898667pt;}
.y85{bottom:302.073333pt;}
.y60{bottom:309.998667pt;}
.ya9{bottom:311.490667pt;}
.y3c{bottom:315.134667pt;}
.ycb{bottom:317.838667pt;}
.y84{bottom:328.016000pt;}
.y3b{bottom:331.074667pt;}
.yca{bottom:333.778667pt;}
.y5f{bottom:334.938667pt;}
.y21{bottom:347.805333pt;}
.y5e{bottom:350.878667pt;}
.y83{bottom:353.332000pt;}
.y3a{bottom:355.557333pt;}
.ya8{bottom:356.289333pt;}
.y20{bottom:363.745333pt;}
.yc9{bottom:368.700000pt;}
.y82{bottom:369.272000pt;}
.y39{bottom:371.498667pt;}
.ya7{bottom:372.229333pt;}
.y5d{bottom:374.189333pt;}
.y1f{bottom:379.685333pt;}
.y1e{bottom:395.626667pt;}
.y38{bottom:395.981333pt;}
.ya6{bottom:399.258667pt;}
.y81{bottom:404.110667pt;}
.y5c{bottom:409.652000pt;}
.y37{bottom:411.921333pt;}
.yc8{bottom:413.329333pt;}
.ya5{bottom:415.200000pt;}
.y5b{bottom:423.598667pt;}
.y1d{bottom:423.665333pt;}
.yc7{bottom:429.269333pt;}
.y36{bottom:435.934667pt;}
.y5a{bottom:437.546667pt;}
.y1c{bottom:439.606667pt;}
.ya4{bottom:442.229333pt;}
.yc6{bottom:445.209333pt;}
.y80{bottom:448.025333pt;}
.y59{bottom:451.494667pt;}
.y35{bottom:451.874667pt;}
.ya3{bottom:458.169333pt;}
.yc5{bottom:461.149333pt;}
.y7f{bottom:463.965333pt;}
.y58{bottom:465.442667pt;}
.y1b{bottom:468.137333pt;}
.y57{bottom:479.389333pt;}
.y1a{bottom:484.077333pt;}
.ya2{bottom:485.084000pt;}
.y34{bottom:486.713333pt;}
.y7e{bottom:489.906667pt;}
.yc4{bottom:496.072000pt;}
.y56{bottom:500.458667pt;}
.y7d{bottom:505.846667pt;}
.ya1{bottom:511.998667pt;}
.y19{bottom:512.608000pt;}
.y55{bottom:521.312000pt;}
.y18{bottom:528.548000pt;}
.y33{bottom:530.000000pt;}
.y7c{bottom:531.789333pt;}
.ya0{bottom:539.028000pt;}
.yc3{bottom:540.700000pt;}
.yf6{bottom:540.904000pt;}
.yf1{bottom:540.905333pt;}
.y32{bottom:545.940000pt;}
.y7b{bottom:547.729333pt;}
.yf0{bottom:554.852000pt;}
.yc2{bottom:556.640000pt;}
.y17{bottom:557.078667pt;}
.y9f{bottom:566.058667pt;}
.yef{bottom:568.800000pt;}
.y31{bottom:569.953333pt;}
.yc1{bottom:572.581333pt;}
.y16{bottom:573.018667pt;}
.y7a{bottom:573.045333pt;}
.y54{bottom:578.432000pt;}
.y9e{bottom:581.998667pt;}
.yee{bottom:582.748000pt;}
.yc0{bottom:588.521333pt;}
.y30{bottom:593.966667pt;}
.yed{bottom:596.696000pt;}
.y79{bottom:598.362667pt;}
.y15{bottom:601.058667pt;}
.y9d{bottom:608.912000pt;}
.y2f{bottom:609.906667pt;}
.yec{bottom:610.642667pt;}
.y78{bottom:614.302667pt;}
.y14{bottom:617.489333pt;}
.ybf{bottom:618.080000pt;}
.yeb{bottom:624.590667pt;}
.y2e{bottom:625.848000pt;}
.y13{bottom:633.430667pt;}
.ybe{bottom:634.020000pt;}
.y9c{bottom:635.826667pt;}
.yea{bottom:638.538667pt;}
.y53{bottom:638.980000pt;}
.y77{bottom:640.244000pt;}
.y2d{bottom:641.788000pt;}
.y12{bottom:649.370667pt;}
.ye9{bottom:652.486667pt;}
.y52{bottom:652.926667pt;}
.y76{bottom:656.184000pt;}
.y2c{bottom:657.728000pt;}
.ybd{bottom:660.922667pt;}
.y9b{bottom:662.856000pt;}
.y11{bottom:665.310667pt;}
.yf5{bottom:666.433333pt;}
.ye8{bottom:666.434667pt;}
.y51{bottom:666.874667pt;}
.ybc{bottom:676.862667pt;}
.y9a{bottom:678.797333pt;}
.ye7{bottom:680.381333pt;}
.y50{bottom:680.822667pt;}
.y10{bottom:681.250667pt;}
.y2b{bottom:681.741333pt;}
.y75{bottom:682.126667pt;}
.ye6{bottom:694.329333pt;}
.y4f{bottom:694.770667pt;}
.y74{bottom:698.066667pt;}
.ybb{bottom:703.765333pt;}
.y99{bottom:705.826667pt;}
.ye5{bottom:708.277333pt;}
.y4e{bottom:715.388000pt;}
.yf{bottom:716.580000pt;}
.yba{bottom:719.705333pt;}
.y98{bottom:721.766667pt;}
.ye4{bottom:722.225333pt;}
.y73{bottom:723.382667pt;}
.ye3{bottom:736.172000pt;}
.y4d{bottom:736.904000pt;}
.yb9{bottom:746.608000pt;}
.y97{bottom:748.681333pt;}
.y72{bottom:748.698667pt;}
.ye2{bottom:750.120000pt;}
.y4c{bottom:750.852000pt;}
.ye{bottom:759.418667pt;}
.yb8{bottom:762.548000pt;}
.ye1{bottom:764.068000pt;}
.y71{bottom:764.640000pt;}
.y96{bottom:764.737333pt;}
.yd{bottom:773.366667pt;}
.ye0{bottom:778.016000pt;}
.y70{bottom:780.580000pt;}
.y95{bottom:780.677333pt;}
.yc{bottom:787.314667pt;}
.yf4{bottom:791.962667pt;}
.ydf{bottom:791.964000pt;}
.yb7{bottom:792.108000pt;}
.y4b{bottom:800.745333pt;}
.yb{bottom:801.261333pt;}
.yde{bottom:805.910667pt;}
.y6f{bottom:806.521333pt;}
.yb6{bottom:808.048000pt;}
.ya{bottom:815.209333pt;}
.y94{bottom:815.630667pt;}
.ydd{bottom:819.858667pt;}
.y4a{bottom:820.670667pt;}
.y6e{bottom:822.461333pt;}
.yb5{bottom:823.988000pt;}
.y9{bottom:829.157333pt;}
.ydc{bottom:833.806667pt;}
.y49{bottom:840.596000pt;}
.y8{bottom:843.105333pt;}
.ydb{bottom:847.754667pt;}
.y6d{bottom:848.404000pt;}
.y7{bottom:857.053333pt;}
.yb4{bottom:858.909333pt;}
.y93{bottom:860.429333pt;}
.y48{bottom:860.521333pt;}
.yda{bottom:861.701333pt;}
.y6c{bottom:864.344000pt;}
.y6{bottom:871.000000pt;}
.yd9{bottom:875.649333pt;}
.y92{bottom:876.369333pt;}
.y47{bottom:880.446667pt;}
.yd8{bottom:889.597333pt;}
.y6b{bottom:889.660000pt;}
.y5{bottom:894.246667pt;}
.y91{bottom:903.398667pt;}
.yb3{bottom:903.538667pt;}
.yd7{bottom:903.545333pt;}
.y6a{bottom:905.600000pt;}
.y4{bottom:908.194667pt;}
.yf3{bottom:917.492000pt;}
.yd6{bottom:917.493333pt;}
.y90{bottom:919.340000pt;}
.y3{bottom:922.141333pt;}
.yb2{bottom:930.441333pt;}
.yd5{bottom:931.440000pt;}
.y46{bottom:940.438667pt;}
.yd4{bottom:945.388000pt;}
.y8f{bottom:946.369333pt;}
.yb1{bottom:946.381333pt;}
.y2{bottom:954.686667pt;}
.yd3{bottom:959.336000pt;}
.yf2{bottom:973.282667pt;}
.y1{bottom:973.284000pt;}
.y45{bottom:1007.821333pt;}
.h9{height:15.550933pt;}
.h6{height:33.474560pt;}
.h3{height:33.713664pt;}
.h4{height:35.865600pt;}
.h2{height:39.850400pt;}
.h5{height:42.758562pt;}
.h1{height:44.632747pt;}
.h7{height:47.180533pt;}
.h8{height:49.836533pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:72.000000pt;}
.x1c{left:74.657333pt;}
.x2a{left:78.144000pt;}
.x1e{left:80.037333pt;}
.xf{left:81.486667pt;}
.x9{left:85.284000pt;}
.x1d{left:88.972000pt;}
.xb{left:93.254667pt;}
.x1a{left:94.470667pt;}
.x2b{left:96.426667pt;}
.xc{left:105.209333pt;}
.x1{left:110.633333pt;}
.x19{left:111.685333pt;}
.x1b{left:113.710667pt;}
.x20{left:116.200000pt;}
.x21{left:117.478667pt;}
.xd{left:128.252000pt;}
.x26{left:129.489333pt;}
.x7{left:145.060000pt;}
.x1f{left:149.060000pt;}
.x6{left:157.346667pt;}
.x25{left:159.996000pt;}
.xe{left:167.024000pt;}
.x8{left:177.470667pt;}
.x2{left:202.808000pt;}
.x3{left:296.052000pt;}
.x4{left:337.454667pt;}
.x5{left:339.292000pt;}
.x12{left:422.685333pt;}
.x14{left:429.326667pt;}
.x23{left:430.268000pt;}
.x11{left:435.968000pt;}
.x28{left:440.248000pt;}
.x15{left:443.301333pt;}
.x10{left:444.516000pt;}
.x2c{left:447.112000pt;}
.x16{left:455.893333pt;}
.x29{left:471.032000pt;}
.x24{left:507.180000pt;}
.x17{left:508.082667pt;}
.x27{left:537.900000pt;}
.x22{left:542.149333pt;}
.x13{left:732.486667pt;}
.x18{left:742.817333pt;}
}




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